.select-box {
    
}

.select-box input {
    width: 100%;
    background-color: transparent;
    
    border-left: none;
    outline: none;
}

.border-input{border: none !important;}

/* input[type="tel"] {
    border-radius: 0 .5rem .5rem 0;
} */

.select-box input:focus {
    
}

.selected-option {
    /* background-color: #eee; */
    border-radius:5px;
    overflow: hidden;
 border: 1px solid #e1e1e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-option div{
    position: relative;
    width: 65px;
    padding: 0 44px 0 8px;
    text-align: center;
    cursor: pointer;
}

.selected-option div::after{
    position: absolute;
    content: "";
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    
    width:10px;
    height:10px;
    border-right: 1.5px solid #000;
    border-bottom: 1.5px solid #000;

    transition: .2s;
}

.selected-option div.active::after{
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    width:250px;
    background-color: #fff;
    border-radius: .5rem;
    display: none;
    z-index: 1;
}

.select-box .options.active {
    display: block;
}

.select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.2rem;

    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: var(--primary);
}

input.search-box {
    background-color:#000;
    color: #fff;
    border-radius: .5rem .5rem 0 0;
    padding: 5px 10px;
}

.select-box ol {
    list-style: none;
    max-height: 23rem;
    overflow: overlay;
    padding-left: 0px;
    height: 100px;
    margin-bottom:2px;
}

.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ccc;
    border-radius: .4rem;
}

.select-box ol li {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.select-box ol li.hide {
    display: none;
}

.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
}

.select-box ol li:hover {
    background-image: linear-gradient(to top,#ddeafb,#cee1fa);
}

.select-box ol li .country-name {
    margin-left: .4rem;
}