@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/* Font-Family Tag  */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary-color: #0176FF;
    --secondary-color: #ffffff;
    --tertiary-color: #171717;
    --black-color: #131313;
    --quaternary-color: #818181;
    --gray-color: #8b8b8b;
    --quinary-color: #394256;
    --border-color: #d7e2eb;
    --senary-color: #01FFD1;
    --badge-post-bg: #000;
    --badge-get-bg: #F9C201;
    --badge-patch-bg: #87B02B;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: 0.25s ease;
    transition: 0.25s ease;
    overflow: hidden;
    position: relative;
    color: var(--tertiary-color);
    background-color: var(--secondary-color);
    font-family: "Figtree", sans-serif !important;
    font-size: calc(0.5 * (1.5vh + 1.1vw)) !important;
    letter-spacing: 0.4px;
}

.navbar-light .navbar-toggler {
    border: 1px solid var(--secondary-color) !important;
    color: var(--secondary-color) !important;
}

.navbar-light .navbar-toggler:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.logo {
    max-width: 10em;
}

.header-nav-center {
    padding: 0.5em 0;
    background-color: #141F3E;
    box-shadow: 0px 2px 4px 0px #0000000D;
    position: relative;
    z-index: 9;
}

.header-nav-center .navbar .nav-item .nav-link {
    font-size: .9em;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    padding: 0.8em 1em !important;
    position: relative;
    transition: transform 0.5s;
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.header-nav-center .navbar .navbar-nav {
    gap: 0.5em;
    align-items: center;
}

.open-header-btn {
    background: var(--secondary-color);
    color: var(--tertiary-color) !important;
    font-weight: 600;
    font-size: .9em !important;
    padding: 0.5em 1.5em !important;
    border-radius: 6px;
    border: none;
}

.header-nav-center .form-select {
    border-radius: 20px;
    border: none;
    font-size: .9em;
    font-weight: 500;
    color: var(--black-color);
}

.header-nav-center .form-select:focus {
    box-shadow: none;
    border: none;
}

.header-nav-center .header-searchbar {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 0;
    padding: 0.8em 1em;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 40px;
}

.header-nav-center .header-searchbar .form-control {
    border: none;
    font-size: 1em;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    padding: 0;
}

.header-nav-center .header-searchbar .form-control:focus {
    box-shadow: none;
    border: none;
}

.header-nav-center .header-searchbar .form-control::placeholder {
    color: var(--secondary-color);
    opacity: 0.7;
    font-size: 0.9em;
    font-weight: 500;
}

.header-nav-center .header-searchbar button {
    background: none;
    border: none;
    padding: 0;
}

/* Moblie Nav Style  */
.mobile-nav-header {
    display: none;
}

.mobile-nav-header .navbar {
    background: var(--tertiary-color);
}

/* sidebar start */

.sidebar-main {
    position: relative;
    height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1.5em 1.2em;
    border-right: 1px solid #e2e2e2;
}

.sidebar-main::-webkit-scrollbar {
    display: none !important;
}

.search-api-token-sec {
    margin-bottom: .8em;
}

.search-api-token-sec .open-modal-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #f1f1f1;
    background: none;
    padding: .5em;
    border-radius: 6px;
}

.search-api-token-sec .open-modal-btn span {
    font-size: .75em;
    font-weight: 600;
    color: var(--gray-color);
}

.search-api-token-sec .open-modal-btn .ctrl {
    background: #f8f8f8;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
}

.api-token-sec h3 {
    font-size: .9em;
    font-weight: 600;
    color: var(--tertiary-color);
}

.api-token-list {
    display: flex;
    flex-direction: column;
    gap: .6em;
}

.api-token-btn-active {
    background: #eaece0 !important;
}

.api-token-btn-active .api-list-btn-info {
    color: var(--tertiary-color);
}

.api-list-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    background: none;
    padding: .5em 1em;
    border-radius: 4px;
    color: var(--gray-color);
}

.api-list-btn-info {
    font-size: 0.95em;
    font-weight: 500;
    color: var(--gray-color);
    text-align: left;
}

.badge {
    font-size: .8em;
    font-weight: 500;
    color: #069061;
}

.badge svg {
    margin-top: -4px;
}

.badge-post {
    /* background-color: var(--badge-post-bg); */
}

.badge-get {
    background-color: var(--badge-get-bg);
}

.badge-patch {
    background-color: var(--badge-patch-bg);
}

.accordion-item {
    border: 0 !important;
    background: none !important;
}

.api-token-list-sec .accordion-item .accordion-button {
    font-size: .4em;
    font-weight: 600;
    color: var(--tertiary-color);
    background-color: transparent;
    color: var(--gray-color);
    border-bottom: 0px !important;
    border-top: 0;
    padding: .7em 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: .6em;
}

.api-token-list-sec .accordion-button svg {
    fill: var(--gray-color);
    transition: fill 0.3s ease;
    height: 16px;
    width: 16px;
}

.api-token-list-sec .accordion-button:not(.collapsed) svg {
    fill: var(--tertiary-color);
}


.api-token-list-sec .accordion-item .accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.api-token-list-sec .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    border: none;
    color: var(--tertiary-color);
}

.api-token-list-sec .accordion-button:not(.collapsed)::after {
    background-image: url(../img/arrow-down.svg);
    transform: unset;
}

.api-token-list-sec .accordion-button::after {
    background-image: url(../img/right-arrow.svg);
}

.api-token-list-sec .accordion-body {
    padding: 0;
    margin: .5em 0;
}

/* sidebar end */

/* Code Snippit  */

.api-details-sec {
    padding: 1.5em 1.2em;
    padding-left: 0;
    height: calc(100vh - 80px);
    overflow-x: auto;
}

.api-details-sec::-webkit-scrollbar {
    display: none !important;
}

.code-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background-color: #2d2d2d;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1em;
    background-color: #000;
}

.language-tabs {
    display: flex;
    gap: 0.5rem;
}

.language-tab {
    background: transparent;
    color: #ccc;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: .85em;
    font-weight: 400;
}

.language-tab.active {
    background-color: #444;
    color: #fff;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: .5em;
    background: #444;
    border: none;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
}

.copy-btn span {
    font-size: .85em;
    font-weight: 400;
}

.copy-btn.copied {
    background-color: #388e3c;
}

.code-header-action {
    display: flex;
    align-items: center;
    gap: 1em;
}

.expend-btn {
    background: none;
    border: none;
    padding: 0;
}

pre {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    font-size: 0.85em !important;
    font-weight: 400 !important;
    line-height: 2 !important;
    max-height: 450px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: pointer;
}

pre::-webkit-scrollbar {
    display: none;
}

.response-box {
    background-color: #2d2d2d;
    border-radius: 8px;
}

.response-box pre {
    border-radius: 8px;
}

.response-tabs {
    border-radius: 8px;
}

.response-tabs {
    display: flex;
    background-color: #1f1f1f;
    border-bottom: 1px solid #444;
}


.failure-btn {
    margin-left: -.6em;
}

.response-tabs button {
    background: transparent;
    color: #ccc;
    border: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    height: 55px;
    width: 150px;
    border-top-left-radius: 15px;
    background: url(../img/bg3.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.response-tabs button.active {
    color: #fff;
    background: url(../img/bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}


.api-token-details-sec {
    padding: 1.5em;
    height: calc(100vh - 80px);
    overflow-x: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.api-token-details-sec hr {
    margin: 0;
    border-top: 1px #cecfcf solid;
}

.api-token-details-sec::-webkit-scrollbar {
    display: none !important;
}


.api-token-details-info h2 {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--tertiary-color);
    line-height: 1.2;
}

.api-token-details-info h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--tertiary-color);
    line-height: 1.6;
    margin-bottom: .8em;
}

.api-token-details-info h5 {
    font-size: 1em;
    font-weight: 600;
    color: var(--tertiary-color);
    line-height: 1.6;
    margin-bottom: .8em;
}

.api-token-details-info p {
    font-size: .95em;
    font-weight: 400;
    color: var(--quaternary-color);
    line-height: 1.8;
    margin-bottom: .8em;
}


.intro-list li {
    font-size: .95em;
    font-weight: 400;
    color: var(--quaternary-color);
    line-height: 1.8;
    margin-bottom: .5em;
}

.intro-list li strong {
    font-weight: 600;
    font-size: 1em;
    color: var(--tertiary-color);
}


/* Code Snippit  end*/

.language-picker-wrapper img {
    width: auto;
    height: 20px;
    object-fit: contain
}

@layer presentation, demo;

@layer demo {
    :root {
        --selected-color: #ffffff;
        /* White (for selected language icon) */
        --light-color: #2a2a2a;
        /* Dark gray (for option backgrounds) */
        --bg-color: #0e0e0e;
        /* Page background */
        --bg-color-center: #1a1a1a;
        /* Central gradient */

        @supports (interpolate-size: allow-keywords) {
            interpolate-size: allow-keywords;
        }
    }

    .language-picker-wrapper select {
        cursor: pointer;
        position: relative;
        display: flex;
        width: 65px;
        height: 30px;
        padding: 0;
        place-items: center;
        justify-content: center;
        font-size: .9em;
        line-height: 1;
        text-align: center;
        background: #444;
        border: none;
        aspect-ratio: 1;
        appearance: none;
        color: var(--secondary-color);

        @supports (appearance: base-select) {
            appearance: base-select;
        }

        &::picker-icon {
            display: none;
        }
    }

    @supports (appearance: base-select) {
        .language-picker-wrapper select::picker(select) {
            position: absolute;
            inset-block: anchor(top) anchor(bottom);
            z-index: auto;
            display: none;
            width: 65px;
            height: 30px;
            padding: 0;
            background: #444;
            border: 0;
            border-radius: 20px;
            overflow: clip;
            appearance: base-select;
            transition: width 0.5s ease-out, height 0.5s ease-out,
                box-shadow 0.5s ease-out, display 0.5s, overlay 0.5s,
                pointer-events 0.5s;
            transition-behavior: allow-discrete;

            @media (max-width: 600px) {
                inset-block: anchor(top) auto;
            }
        }

        .language-picker-wrapper select:open::picker(select) {
            display: flex;
            width: auto;
            height: auto;
            pointer-events: auto;

            @starting-style {
                width: 64px;
                height: 64px;
                pointer-events: none;
            }
        }
    }

    .language-picker-wrapper option {
        position: relative;
        display: flex;
        flex: 0 0 64px;
        min-width: 65px;
        min-height: 30px;
        padding: 0 1rem;
        align-items: center;
        font-size: 1em;
        font-weight: 600;
        line-height: 1;
        background: #444;
        color: white;
        cursor: pointer;
        transition: background 0.4s;

        @media (max-width: 600px) {
            justify-content: center;
        }

        &:first-child {
            border-radius: 60px 0 0 60px;

            @media (max-width: 600px) {
                border-radius: 60px 60px 0 0;
            }
        }

        &:last-child {
            border-radius: 0 60px 60px 0;

            @media (max-width: 600px) {
                border-radius: 0 0 60px 60px;
            }
        }

        &:is(:hover, :focus-visible) span {
            animation: wiggle 2s ease-out infinite;
        }

        &:checked {
            position: sticky;
            inset-block: 0;
            inset-inline-end: 0;
            z-index: 1;
            background: #444;
            color: var(--secondary-color);

            @media (max-width: 600px) {
                inset-block: auto 0;
                inset-inline: 0;
            }
        }

        &::checkmark {
            display: none;
        }

        @media (max-width: 500px) {
            padding: 0.5rem;
        }
    }

    @keyframes wiggle {
        0% {
            transform: rotate(10deg);
        }

        25% {
            transform: rotate(-10deg);
        }

        50% {
            transform: rotate(20deg);
        }

        75% {
            transform: rotate(-5deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }
}

/* warning */



.body-params-table {
    border-radius: 8px;
    border: 1px solid #d8d8d8;
    margin-bottom: 1em;
}

.body-params-table .body-params-table-row:last-child {
    border-bottom: none;
}

.body-params-table-row {
    padding: .8em;
    border-bottom: 1px solid #d8d8d8;
}

.body-params-table-row p {
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

.body-params-table-row p strong {
    font-size: .85em;
    font-weight: 600;
    color: var(--tertiary-color) !important;
    word-wrap: break-word;
    background: #f7f7f7 !important;
    padding: 8px;
    border-radius: 4px;
    margin-right: .5em;
}

.api-token-details-info .accordion {
    padding: .8em;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
}

.api-token-details-info p code,
.intro-list code {
    color: var(--primary-color);
    font-weight: 600;
}

.box-bg {
    background: #FCF3E9;
    border: 1px solid #eb7474;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.box-bg p:last-child,
.box-bg-success p:last-child {
    margin-bottom: 0;
}

.box-bg-success {
    background: #e9ffe5;
    border: 1px solid #2a7236;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.body-params-input h6 {
    font-size: .95em;
    font-style: 600;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 1.5em;
}

.feature-grid-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 1.5em;
}

.feature-item {
    padding: 1.5em;
    border: 1px solid #f4f5f7;
}

.feature-item img {
    max-width: 50px;
    margin-bottom: 1.2em;
    filter: brightness(0.5);
}

.feature-item h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.feature-item p {
    font-size: .95em;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 0;
    color: var(--quaternary-color);
}

.data-table {
    width: 100%;
    margin-bottom: 1.5em;
}

.data-table th {
    background: #f7f7ff !important;
    padding: 1em;
    font-size: 0.95em;
    font-weight: 600;
}

.data-table thead th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.data-table thead th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.data-table tbody td {
    padding: 1em;
    vertical-align: middle;
    font-size: .8em;
    font-weight: 400;
    min-width: 200px;
    border-bottom: 1px solid #e2e2e2;
    line-height: 1.8;
}

/* .data-table tbody td:first-child {
    text-align: left;
    padding-left: 1.5em;
}

.data-table tbody td:last-child {
    text-align: left;
} */

.data-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.data-table code {
    font-weight: 600;
    color: var(--primary-color) !important;
}

.naviate-btn-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1em;
    margin-bottom: -1em;
}

.naviate-btn {
    border: 1px solid #dbdcdf;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    text-decoration: none;
    background: linear-gradient(360deg, #FFFFFF 39.57%, rgba(203, 203, 203, 0.490786) 227.5%);
}

.naviate-btn-info span {
    font-size: .95em;
    font-weight: 400;
    color: var(--quaternary-color);
    line-height: 1.8;
}


.naviate-btn-info h4 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--tertiary-color);
    margin-top: .6em;
}

.naviate-btn .next-btn {
    display: flex;
    align-items: center;
    gap: 0.8em;
    background: var(--tertiary-color);
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: .95em !important;
    padding: 0.5em 1.5em !important;
    border-radius: 6px;
    border: none;
    text-decoration: none;
}

.feedback-section {
    border-radius: 6px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding-top: 1em;
}

.feedback-icons {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.feedback-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, stroke 0.3s ease;
    stroke: #666;
}

.feedback-icon:hover {
    stroke: #007bff;
}

.feedback-icon.selected {
    stroke: #007bff;
}

.feedback-message {
    font-size: .95em;
    font-weight: 600;
    color: var(--tertiary-color);
    opacity: .7;
    text-align: center;
}

.programming-lang-sec {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5em;
    margin-bottom: 1em;
}

.programming-lang-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    background: #f8f8f8;
    padding: .8em;
    border-radius: 8px;
}

.lang-icon {
    height: 3em;
    width: 3em;
    object-fit: contain;
}

.curl-icon {
    width: 4em !important;
}

.programming-lang-card h5 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--tertiary-color);
}

.country-supported-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #FAFBFC;
    padding: 1.5em;
    gap: 1.5em;
    border-radius: 12px;
}

.country-supported-card {
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #f4f5f7;
    background: var(--secondary-color);
}

.country-supported-card a {
    border: 1px solid #E9E9E9;
    background: linear-gradient(360deg, #FFFFFF 39.57%, rgba(203, 203, 203, 0.490786) 227.5%);
    padding: .6em 1.5em;
    border-radius: 6px;
    font-size: .95em;
    font-weight: 600;
    color: var(--tertiary-color);
    text-decoration: none;
    width: fit-content;
}

.footer {
    border-top: 1px solid #e2e2e2;
    padding-top: 1.5em;
}

.copy-rights p {
    font-size: .95em;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 0;
    color: var(--tertiary-color);
    text-align: center;
}

.footer-item ul {
    display: flex;
    gap: 2em;
    justify-content: center;
    align-items: center;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--secondary-color);
}

.modal-header-action {
    display: flex;
    align-items: center;
    gap: .5em;
}

.modal-header .btn-close:focus {
    box-shadow: none;
}

.list-bg {
    background: #fff5e2;
    border: 1px solid #fcc765;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.list-bg-2 {
    background: #fff6ff;
    border: 1px solid #ff4eff;
    padding: 1em;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* form country code */
.country-selector {
    position: relative;
}

.country-selector input {
    width: 100%;
    padding: 0;
    font-size: 1em;
    color: var(--tertiary-color) !important;
    border: .1rem solid transparent;
    outline: none;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background: none;
}

.country-dropdown {
    padding: .8em;
    border: 1px solid #d8d8d8;
    width: fit-content;
    border-radius: 6px;
}

input[type="number"] {
    border-radius: 0 .5rem .5rem 0;
}

.country-selector input:focus {
    border: .1rem solid var(--primary);
}

.chosen-country {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

.make-apppointment-contact-form-sec .input-group .form-control {
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}

.chosen-country div {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5em;
    padding-left: 1em;
    text-align: center;
    cursor: pointer;
}

.chosen-country div strong {
    display: none !important;
}

.chosen-country div::after {
    position: absolute;
    content: "";
    right: .8rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: .8rem;
    height: .8rem;
    border-right: .12rem solid var(--primary);
    border-bottom: .12rem solid var(--primary);
    transition: .2s;
}

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

.country-selector .country-options {
    position: absolute;
    top: 4rem;
    background-color: #fff;
    border-radius: .5rem;
    display: none;
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.country-selector .country-options.active {
    display: block;
    z-index: 999;
}

input.search-field {
    background-color: #f3f3f3;
    color: var(--tertiary-color) !important;
    border-radius: .5rem .5rem 0 0;
    padding: 1em 1.5em;
    font-size: 1em;
    font-weight: 600;
}

input.search-field::placeholder {
    color: var(--tertiary-color) !important;
}

.country-selector ol ul {
    padding-left: 0 !important;
}

.country-selector ol {
    list-style: none;
    max-height: 10rem;
    overflow: overlay;
    padding: 0 !important;
}

.country-selector ol::-webkit-scrollbar {
    width: 0.6rem;
}

.country-selector ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ccc;
    border-radius: .4rem;
}

.country-selector ol li {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: .8em;
    cursor: pointer;
}

.country-selector ol li.hidden {
    display: none;
}

.country-selector ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
}

.country-selector ol li .country-name {
    margin-left: .4rem;
}

/* end */

.header-search-option {
    display: block !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    z-index: 3 !important;
    width: 100% !important;
    position: absolute !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
    border-radius: 6px;
    background: var(--secondary-color);
    margin: 0;
    padding: 0;
    position: absolute !important;
    top: 4em;
    margin-left: -1em;
}

.header-search-option li{
     padding: .5em;
     padding-left: .8em;
     text-align: left;
     font-size: 0.95em;
    font-weight: 500;
    color: var(--gray-color);
    text-align: left;
}

.search-option-none {
    display: none !important;
}