:root {
    --primary: #111;
    --secondary: #fd0;
}	

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

 body {    
    /* font-family: sans-serif; */
    background-color: var(--secondary);
}


.select-box {
    position: relative;
    width: 0rem;
    /* margin: 7rem auto; */
}

.select-box input {
    width: 100%;
    padding: 1rem .6rem;
    font-size: 1.1rem;
    
    border: .1rem solid transparent;
    outline: none;
}

input[type="tel"] {
    border-radius: 0 rem 0 rem 0;
    width: 250px;
}

.select-box input:focus {
    border: 1px solid var(--primary);
}

/* .selected-option {
    background-color: #eee;
    border-radius: .5rem;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.selected-option div{
    position: relative;
    /*background-color: #f6f6f6;*/
    width: 1rem;
    height: 3.1rem;
    top: 60%;

    padding: 0.7rem 3.5rem .3rem .5rem;
    text-align: left;
    font-size: 9px;
    text-justify: auto;
    cursor: pointer;
    outline-width: normal;
    outline-color: rgb(255, 255, 255);
    /*border-bottom-style: solid;*/
    /*border-bottom-color: rgb(109, 109, 109);*/
    /*border-bottom-width: 2px;*/
    /* outline-style: px; */

    /* background-color: black; */
}

.selected-option div::after{
    position: absolute;
    content: "";
    right: .8rem;
    top: 40%;
    transform: translateY(-50%) rotate(45deg);
    width: .4rem;
    height: .4rem;
    border-right: .2rem solid var(--primary);
    border-bottom: .2rem solid var(--primary);
    transition: .2s;
}

.selected-option div.active::after{
    transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
    position: absolute;
    top: 3rem;
    
    /* width: 75%; */
    background-color: #f1f1f1;
    border-radius: .5rem;

    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: var(--primary);
}

input.search-box {
    
    background-color: rgb(199, 193, 193);
    color: #000000;
    
    /* border-radius: .5rem .5rem 0 0; */
    /* padding: 1.4rem 1rem; */
    width: fit-content;
    height: fit-content;
}

.select-box ol {
    list-style: none;
    max-height: 15rem;
    overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #aca4a4;
    border-radius: .4rem;
}

.select-box ol li {
    padding: 1rem;
    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 #fefefe;
}

.select-box ol li:hover {
    background-color: rgb(132, 181, 181);
}

.select-box ol li .country-name {
    margin-left: .4rem;
}
.ht{
    padding: 50px;
    background-color: #efe7e7;
}

.iconify {
    width: 2em;
    height: 2em;
}