/* =========================================================
   HELCU — COUNTRY DROPDOWN
========================================================= */


/* =========================================================
   COUNTRY GROUP
========================================================= */

.hc-country-group {

    position: relative;

    overflow: visible !important;

}


/* =========================================================
   COUNTRY LIST
========================================================= */

.hc-country-list {

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    margin-top: 6px;

    display: none;

    width: 100%;

    background: #FFFFFF;

    border: 1px solid #E7EBF1;

    border-radius: 14px;

    max-height: 260px;

    overflow-y: auto;

    z-index: 99999;

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

}


/* =========================================================
   SHOW COUNTRY LIST
========================================================= */

.hc-country-list.show {

    display: block !important;

}


/* =========================================================
   COUNTRY ITEM
========================================================= */

.hc-country-item {

    display: flex;

    align-items: center;

    width: 100%;

    padding: 11px 16px;

    cursor: pointer;

    color: #172033;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.4;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;

}


/* =========================================================
   COUNTRY ITEM HOVER
========================================================= */

.hc-country-item:hover {

    background: #F0FDFA;

    color: #0A9396;

}


/* =========================================================
   SCROLLBAR
========================================================= */

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

    width: 7px;

}


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

    background: #BFD9DD;

    border-radius: 20px;

}


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

    background: #F5F8FA;

}


/* =========================================================
   TABLET
   768px → 1199.98px
========================================================= */

@media (min-width: 768px) {

    .hc-country-list {

        max-height: 280px;

        border-radius: 14px;

    }


    .hc-country-item {

        padding: 12px 16px;

        font-size: 14px;

    }

}


/* =========================================================
   DESKTOP
   1200px+
========================================================= */

@media (min-width: 1200px) {

    .hc-country-list {

        max-height: 300px;

        border-radius: 15px;

    }


    .hc-country-item {

        padding: 12px 17px;

        font-size: 14px;

    }

}