.box{
    width: 400px;
}

.input-wrapper--phone select{
    max-width: 100px;
}
.input-wrapper.input-wrapper--phone{
    display: flex;
    margin-bottom: 20px;
    height: 38px;
}

.input-wrapper.input-wrapper--phone input{
    color: #B3B3B3;
    height: 38px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 10px;
    border-radius: 0;
    font-size: 16px;
}
.custom-select-country{
    width: auto;
    cursor: pointer;
    position: relative;
}

.custom-select-country .custom-select-country-value{
    position: relative;
    width: 100%;
    height: 38px;
    background-color: white;
    width: 60px;
    /* border: 1px solid black; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8px;
    border-right: 1px solid #e6e6e6;
    pointer-events: none;
}
.custom-select-country .custom-select-country-value img{
    border: 1px solid #e6e6e6;
}
.custom-select-country.open .custom-select-country-value::after{

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: %23adadad;transform: ;msFilter:;'%3E%3Cpath d='m6.293 13.293 1.414 1.414L12 10.414l4.293 4.293 1.414-1.414L12 7.586z'%3E%3C/path%3E%3C/svg%3E");

}
.custom-select-country .custom-select-country-value::after{
    content: '';
    position: absolute;
    width: 15px;
    height: 16px;
    transform: translateY(-50%);
    right: 2px;
    top: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: %23adadad;transform: ;msFilter:;'%3E%3Cpath d='M16.293 9.293 12 13.586 7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z'%3E%3C/path%3E%3C/svg%3E");

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  
}
.custom-select-country .custom-select-country-options{
    max-height: 0;
    width: 200px;
    bottom: -2px;
}
.custom-select-country.open .custom-select-country-options{
    max-height: 250px;
}

.custom-select-country-options{
    /* background-color: red; */
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    transform: translateY(100%);
}

.custom-select-country-option{
    background-color: white;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    padding: 4px 0 4px 8px;
}

.custom-select-country-option img{
    border: 1px solid #e6e6e6;
}
.custom-select-country-option span{
    margin-left: 6px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.custom-select-country-option:hover{
    background-color: rgba(0, 0, 0, 0.05);
}


.custom-select-country ::-webkit-scrollbar {
    width: 0px;
  }
  
  .custom-select-country ::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
  }
  
  .custom-select-country ::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }
  
  .custom-select-country ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }