.esim .custom-select {
    position: relative;
    width: 100%;
    text-align: left;
    outline: none;
    height: 47px;
    line-height: 47px;
  }
  
  .esim .custom-select .selected {
    background-color:var(--white);
    border-radius: 10px;
    border: 1px solid var(--color-border-form);
    color: var(--black);
    padding-left: 1em;
    cursor: pointer;
    user-select: none;
  }
  
  .esim .custom-select .selected.open {
    border: 1px solid var(--color-border-form);
    border-radius:10px 10px 0px 0px;
  }
  
  .esim .custom-select .selected:after {
    position: absolute;
    content: "";
    top: 22px;
    right: 1em;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: var(--black) transparent transparent transparent;
  }
  
  .esim .custom-select .items {
    color: var(--black);
    border-radius: 0px 0px 6px 6px;
    overflow: hidden;
    border-right: 1px solid var(--color-border-form);
    border-left: 1px solid var(--color-border-form);
    border-bottom: 1px solid var(--color-border-form);
    position: absolute;
    background-color: #f0dddd;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .esim.custom-select .items div {
    color: #fff;
    padding-left: 1em;
    cursor: pointer;
    user-select: none;
  }
  
  .esim .custom-select .items div:hover {
    background-color: var(--color-border-form);
   
  }
  
  .esim .selectHide {
    display: none;
  }