/* ==========================================
   Country
========================================== */

.country-group{

    position:relative;

}

.country-list{

    position:absolute;

    top:100%;

    left:0;

    right:0;

    margin-top:6px;

    display:none;

    background:#ffffff;

    border:1px solid var(--register-border);

    border-radius:14px;

    max-height:260px;

    overflow-y:auto;

    z-index:999;

    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.country-list.show{

    display:block;

}

.country-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px 16px;

    cursor:pointer;

    transition:.25s;

}

.country-item:hover{

    background:#F3FAFA;

}

.country-item img{

    width:22px;

    height:16px;

    object-fit:cover;

}

/* Scroll */

.country-list::-webkit-scrollbar{

    width:8px;

}

.country-list::-webkit-scrollbar-thumb{

    background:#BFD9DD;

    border-radius:20px;

}

.country-list::-webkit-scrollbar-track{

    background:#F5F8FA;

}