.select-box {
    position: relative;
    width: auto;
    margin-bottom: 15px;
}

.select-box input {
    width: 100%;
    font-size: 1.1rem;
    border: 0 none transparent;
}

.select-box input:focus {
    width: 100%;
    font-size: 1.1rem;
    border: .12rem solid;
}

.selected-option {
    background-color: #eee;
    overflow: hidden;

    display: flex;
    align-items: left;
}

.selected-option div{
    position: relative;

    width: 10rem;
    padding-left: 10px;
    padding-top: 5px;    
    text-align: left;
    cursor: pointer;
}

.selected-option div::after{
    position: absolute;
    content: "";
    right: .8rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    
    width: .8rem;
    height: .8rem;
    border-right: .12rem solid #01273E;
    border-bottom: .12rem solid #01273E;

    transition: .2s;
}

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

.select-box .options {
    position: absolute;
    top: 3rem;
    left: 5.5rem;
    width: 85%;
    background-color: white;
    border-radius: .5rem;
    border: .1rem solid transparent;
    display: none;
}

.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: #01273E;
}

input.search-box {
    background-color: #01273E;
    color: #ffffff;
    border-radius: .5rem .5rem 0 0;
    padding: .5rem .5rem;
}

.select-box ul {
    list-style: none;
    max-height: 8rem;
    overflow: overlay;

}

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

.select-box ul::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 2rem;
    background-color: blue;
    border-radius: .4rem;
}

.select-box ul li {
    padding: .5rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding-right: 20px;
    margin-left: -40px;    
}

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

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

.select-box ul li:hover {
    background-color: #B0CCD8;
}

.select-box ul li .country-name {
    margin-right: 1rem;
}