* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.select-box {
    position: relative;
    width: 100%;
    /*margin: 1rem auto;*/
    border-color: #BCBCBC;
    border-width: 2px;
    border-style: solid;
    border-radius: 20px;
}

    .select-box input {
        width: 100%;
        padding: .11rem .4rem!important;
        outline: none;
        border-color: transparent!important;
        border-width: 2px;
        border-style: solid;
        border-radius: 20px;
        font-size: 14px !important;
    }

input[type="tel"] {
    border-radius: 0 20px 20px 0;  
}

.select-box input:focus {
    border-color: #00C6AA !important;
    border-width: 2px;
    border-style: solid;
}

.selected-option {
    background-color: #eee;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-color: #BCBCBC;
    border-width: 2px;
}

    .selected-option div {
        position: relative;
        width: 3.4rem;
        padding: 0 2.8rem 0 .5rem;
        text-align: center;
        cursor: pointer;
        border-radius: 20px 0 0 20px;
    }

        .selected-option div::after {
            position: absolute;
            content: "";
            right: .8rem;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            width: .5rem;
            height: .5rem;
            border-right: .12rem solid #000;
            border-bottom: .12rem solid #000;
            transition: .2s;
        }

        .selected-option div.active::after {
            transform: translateY(-50%) rotate(225deg);
        }

.select-box .options {
    position: absolute;
    top: 2.7rem;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    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: #00C6AA;
    }

input.search-box {
    background-color: #fff;
    color: #808080;
    border-radius:20px!important;
    border-color: #BCBCBC!important;
    padding: 0.4rem 1rem;
}

.select-box ol {
    list-style: none;
    border-color: #BCBCBC !important;
    max-height: 13rem;
    overflow: overlay;
    top: -0.2rem;
}

    .select-box ol::-webkit-scrollbar {
        width: 0.6rem;
        background-color: #eee;
    }

    .select-box ol::-webkit-scrollbar-thumb {
        width: 0.4rem;
        height: 1rem;
        background-color: #000;
        border-radius: .4rem;
    }

    .select-box ol li {
        padding: 0.1rem;
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        border-left: .1rem solid #eee;
        border-right: .1rem solid #eee;
        width: 100%;
    }

        .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-color: whitesmoke;
        }

        .select-box ol li .country-name {
            margin-left: .2rem;
            font-size: 14px;
        }
.select-box p {
    font-size: 14px !important;
}
.select-box li {
    width:100%;
}

.select-box ol, ul {
    padding-left: 0rem!important;
}