@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* CSS For the Countrylist */
/* country selection page */
.popup-layout {
    max-width: 540px;
    padding: 25px 20px;
    border-radius: 26px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: var(--white-color);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translatey(-50%);
    width: calc(100% - 20px);
    text-align: left;
}

.country-selection-main .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #A6A6A6;
}

.country-selection-main .country-search-box {
    padding: 8px 16px;
    border-radius: 32px;
    background: #0000000D;
    max-width: 296px;
    width: 100%;
    border: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
}

.country-selection-main .country-search-box::placeholder {
    color: #797979;
    font-size: 14px;
    font-weight: 400;
}

.country-selection-main .header .country-search-box input {
    outline: none;
    border: none;
    background-color: transparent;
    color: #797979;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    padding: 0;
}

.country-selection-main .header .country-search-box input:focus {
    outline: none;
    bottom: none;
}

.country-selection-main h1 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    align-self: center;
}

.country-selection-main h2 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin-top: 15px;
}

.country-selection-main .country-card {
    display: flex;
    align-items: center;
    padding: 8px;
    margin-bottom: 25px;
}

.country-selection-main .country-card img {
    margin-right: 12px;
}

.country-selection-main .country-card a {
    color: var(--blue-primary);
    text-decoration: none;
    font-size: 14px;
}

.country-selection-main .country-card span {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
}

.country-selection-main .country-columns {
    display: flex;
    margin-top: 20px;
}

.country-selection-main .country-col {
    width: 25%;
    margin-right: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {

    .container {
        padding: 20px 15px;
    }

    .country-selection-main .country-columns {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .country-selection-main .country-col {
        width: calc(33.333% - 20px);
        margin-right: 20px;
    }

    .country-selection-main h1 {
        font-size: 19px;
    }

    .country-selection-main h2 {
        font-size: 22px;
    }

}

@media (max-width: 768px) {

    .country-selection-main .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .country-selection-main .country-search-box {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0;
        max-width: 100%;
    }

    .country-selection-main .country-card {
        margin-bottom: 15px;
    }

    .country-selection-main h1 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .country-selection-main h2 {
        font-size: 20px;
    }

    .country-selection-main .country-card span {
        font-size: 15px;
    }

    .country-selection-main .country-card a {
        font-size: 13px;
    }

}

@media (max-width:640px) {

    .country-selection-main .country-col {
        width: 45%;
    }

}

@media (max-width: 480px) {

    .country-selection-main .country-search-box {
        padding: 6px 12px;
    }

    .country-selection-main .country-search-box input {
        font-size: 14px;
    }

    .country-selection-main .country-search-box::placeholder {
        font-size: 13px;
    }

    .country-selection-main .country-card {
        padding: 6px;
        margin-bottom: 10px;
    }

    .country-selection-main .country-card img {
        margin-right: 10px;
    }

    .country-selection-main h2 {
        font-size: 18px;
        margin-top: 15px !important;
    }

    .country-selection-main .country-card span {
        font-size: 14px;
    }

    .country-selection-main .country-card a {
        font-size: 12px;
    }

    .country-selection-main .country-col {
        width: 100%;
        margin-right: 0;
    }

    .country-selection-main .country-columns {
        gap: 0;
    }

}

/* country selection page css end */
/* country selector main popup css */
.country-selector-popup-container, .recommendation-popup-container {
    text-align: center;
    position: fixed;
    height: 100%;
    width: 100%;
    background: var(--box-shadow-color-one) none repeat scroll 0% 0%;
    z-index: 10000;
    top: 0;
    display: none;
    left: 0;
}

.recommendation-popup-container .select-items.show::-webkit-scrollbar {
    width: 5px;
}

.recommendation-popup-container .select-items.show::-webkit-scrollbar-track {
    background: #FFF;
    border-radius: 10px;
}

.recommendation-popup-container .select-items.show::-webkit-scrollbar-thumb {
    background-color: #DDD;
    border-radius: 10px;
}

.country-selector-popup {
    background: #FFFFFFF0;
    backdrop-filter: blur(32px);
    border-radius: 48px;
    width: calc(100% - 30px);
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    max-width: 840px;
    max-height: 90vh;
}

.country-selector-popup .left-section {
    padding: 30px;
    width: 48%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.country-selector-popup .logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    max-width: 140.5px;
}

.country-selector-popup .left-section h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.country-selector-popup .left-section p {
    margin-bottom: 20px;
    margin-top: 0;
    color: #000;
    font-size: 16px;
}

.country-selector-popup .location-box {
    border: 1px solid #DDD;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0px 0px 4px 0px #00000026;
    background: #00000008;
    width: 100%;
    max-width: 310px;
    box-sizing: border-box;
}

.country-selector-popup .flag-and-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-selector-popup .flag {
    width: 30px;
    height: auto;
}

.country-selector-popup .country-name {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    text-align: left;
}

.country-selector-popup .site-link {
    color: #007AFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.country-selector-popup .change-btn {
    background: transparent;
    border: none;
    color: #303030;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.country-selector-popup .primary-btn {
    display: inline-block;
    background-color: #F10600;
    color: #FFF;
    text-decoration: none;
    padding: 10px 32px;
    width: 100%;
    max-width: 290px;
    border-radius: 32px;
    font-weight: 500;
    font-size: 16px;
    box-sizing: border-box;
}

.country-selector-popup .primary-btn:hover {
    background: #E50600;
}

.country-selector-popup .stay-link {
    margin-top: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.country-selector-popup .right-section {
    width: 50%;
    padding: 16px 16px 16px 0;
    position: relative;
    box-sizing: border-box;
}

.country-selector-popup .eu-flag {
    position: static;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 0;
}

.search-box {
    display: flex;
    width: 100%;
    position: relative;
    padding: 16px 12px 8px 16px;
}

.search-box input {
    background: var(--gray-bg);
    border: none;
    outline: none;
    width: 100%;
    position: relative;
    border-radius: 32px;
    height: 36px;
    padding: 0px 0px 0px 38px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--dark-gray-text);
}

.search-box svg {
    width: 14px;
    height: 15px;
    position: absolute;
    top: 25px;
    z-index: 1;
    margin-left: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .country-selector-popup {
        flex-direction: column;
        height: auto;
        border-radius: 24px;
    }

    .country-selector-popup .left-section {
        width: 100%;
        padding: 20px;
    }

    .country-selector-popup .right-section {
        width: 100%;
        padding: 0;
        object-fit: cover;
        height: 100%;
        padding-bottom: 10px;
    }

    .country-selector-popup .eu-flag {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0 0 24px 24px;
        max-height: 300px;
    }

    .country-selector-popup .logo {
        width: 120px;
    }

    .country-selector-popup .location-box {
        width: 100%;
        padding: 12px;
    }

    .country-selector-popup .primary-btn {
        width: 100%;
        padding: 10px 20px;
    }

    .country-selector-popup .left-section h2 {
        font-size: 18px;
    }

    .country-selector-popup .left-section p {
        font-size: 14px;
    }

    .country-selector-popup .country-name {
        font-size: 14px;
    }

    .country-selector-popup .site-link, .country-selector-popup .change-btn {
        font-size: 13px;
    }

    .country-selector-popup .stay-link {
        font-size: 15px;
    }

}

@media (max-width: 480px) {

    .country-selector-popup {
        border-radius: 16px;
    }

    .country-selector-popup .left-section {
        padding: 15px;
    }

    .country-selector-popup .right-section {
        height: 150px;
    }

    .country-selector-popup .eu-flag {
        border-radius: 0 0 16px 16px;
    }

    .country-selector-popup .logo {
        width: 100px;
        margin-bottom: 15px;
    }

    .country-selector-popup .location-box {
        padding: 10px;
    }

    .country-selector-popup .primary-btn {
        padding: 8px 15px;
    }

    .country-selector-popup .left-section h2 {
        font-size: 16px;
    }

    .country-selector-popup .left-section p {
        font-size: 13px;
    }

    .country-selector-popup .country-name {
        font-size: 13px;
    }

    .country-selector-popup .site-link, .country-selector-popup .change-btn {
        font-size: 12px;
    }

    .country-selector-popup .stay-link {
        font-size: 14px;
    }

    .country-selector-popup .flag {
        width: 25px;
    }

}

/* country selector main popup css end */
/* country selector sub popup css */
.recommendation-popup-container .recommendation-popup {
    background: #FFF;
    backdrop-filter: blur(32px);
    border-radius: 48px;
    height: auto;
    max-width: 444px;
    width: 100%;
    display: flex;
    overflow: hidden;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.recommendation-popup .left-section {
    padding: 32px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recommendation-popup .logo {
    width: 140.5px;
    height: auto;
    margin-bottom: 25px;
}

.recommendation-popup .left-section h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Inter", sans-serif;
}

.recommendation-popup .left-section p {
    margin-bottom: 19px;
    margin-top: 0;
    color: var(--color-black);
    font-weight: 400;
    line-height: 1.2;
}

.recommendation-popup .left-section p strong {
    font-weight: 600;
}

.recommendation-popup .location-box {
    border: 1px solid #DDD;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0px 0px 4px 0px #00000026;
    background: #00000008;
    max-width: 310px;
    width: 100%;
}

.recommendation-popup .flag-and-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommendation-popup .flag {
    width: 30px;
    height: auto;
}

.recommendation-popup .country-name {
    font-weight: 500;
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 5px;
    text-align: left;
    line-height: 100%;
}

.recommendation-popup .site-link {
    color: #007AFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.recommendation-popup .change-btn {
    background: transparent;
    border: none;
    color: #303030;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.recommendation-popup .cform-checkbox input:checked+label:after {
    top: 2px;
    left: 5px;
    width: 3px;
    height: 7px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
}

.recommendation-popup .primary-btn {
    display: inline-block;
    background-color: #F10600;
    color: #FFF;
    text-decoration: none;
    padding: 10px 32px;
    width: 100%;
    border-radius: 32px;
    font-weight: 500;
    font-size: 16px;
}

.recommendation-popup .primary-btn:hover {
    background: #E50600;
}

.recommendation-popup .stay-link {
    margin-top: 12px;
    color: var(---secondary-color);
    font-size: 14px;
    font-weight: 500;
}

.recommendation-popup .stay-link:hover,
.country-selector-popup .stay-link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.recommendation-popup .cform-group .nice-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 11px 12px 12px 12px;
    background-position: 98%;
    background-repeat: no-repeat;
    font-size: 14px;
    font-weight: 400;
    height: 43px;
    background-size: 14px;
}

.recommendation-popup .cform-group .nice-select span {
    -webkit-line-clamp: 1;
}

.recommendation-popup .cform-group .nice-select:after {
    height: 8px;
    margin-top: -7px;
    right: 11px;
    width: 8px;
}

.recommendation-popup .nice-select.open .nice-select-search-box +.list {
    margin-top: 5px !important;
    border: 1px solid #DDD;
    border-radius: 10px;
    max-height: 150px;
}

.recommendation-popup .nice-select.open .nice-select-search-box {
    display: none;
}

/* contry select dropdown start */
.recommendation-popup .language.cform-group, .recommendation-popup .currency.cform-group {
    padding: 0px;
}

.recommendation-popup .cform-checkbox label:before {
    height: 14px;
    width: 14px;
    border-radius: 4px;
    border: 1px solid #DEDEDE;
    top: 0px;
}

.custom-select {
    position: relative;
}

.website, .language, .currency {
    width: 100%;
    margin-bottom: 12px;
}

.recommendation-popup .select-selected {
    border-radius: 10px;
    padding: 8px 8px 8px 12px;
    cursor: pointer;
    border: 1px solid var(--grey-color-tone-seven);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.recommendation-popup .cform-checkbox {
    margin: 9px 0px 21px 0px;
    display: block;
    width: 100%;
    text-align: left;
}

.select-selected span {
    display: flex;
    align-items: center;
}

.select-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    margin-right: 10px;
    background-position: center;
}

.recommendation-popup .cform-checkbox label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    padding-left: 24px;
}

.select-label {
    color: var(--blue-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}

.select-items {
    position: absolute;
    background-color: var(--white-color);
    border-radius: 10px;
    width: 100%;
    z-index: 1;
    display: none;
    margin-top: 5px;
    overflow-y: auto;
    max-height: 200px;
    box-shadow: 0px 0px 4px 0px #00000026;
}

.select-items .dropdown-items {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.select-items .dropdown-items:hover {
    background-color: var(--gray-bg);
}

.select-arrow {
    border: solid #000;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
    margin-right: 3px;
    margin-bottom: 6px;
}

.show {
    display: block;
}

.lable-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    line-height: 100%;
    text-transform: capitalize;
}

.lable-name a {
    color: var(--blue-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* contry select dropdown end */
/* Responsive adjustments */
@media (max-width: 768px) {

    .recommendation-popup-container .recommendation-popup {
        width: 90vw;
        height: auto;
        border-radius: 24px;
        max-height: 95vh;
    }

    .recommendation-popup .left-section {
        padding: 20px;
    }

    .recommendation-popup .logo {
        width: min(120px, 35vw);
        margin-bottom: 15px;
    }

    .recommendation-popup .location-box {
        width: 100%;
        padding: 12px;
    }

    .recommendation-popup .primary-btn {
        width: 100%;
        padding: 10px 20px;
    }

    .recommendation-popup .left-section h2 {
        font-size: clamp(18px, 5vw, 20px);
    }

    .recommendation-popup .left-section p {
        font-size: clamp(14px, 4vw, 15px);
    }

    .recommendation-popup .country-name {
        font-size: clamp(14px, 4vw, 15px);
    }

    .recommendation-popup .site-link, .recommendation-popup .change-btn {
        font-size: clamp(12px, 3.5vw, 13px);
    }

    .recommendation-popup .stay-link {
        font-size: clamp(14px, 4vw, 15px);
    }

}

@media (max-width: 480px) {

    .recommendation-popup-container .recommendation-popup {
        border-radius: 16px;
    }

    .recommendation-popup .left-section {
        padding: 15px;
    }

    .recommendation-popup .logo {
        width: min(100px, 30vw);
        margin-bottom: 12px;
    }

    .recommendation-popup .location-box {
        padding: 10px;
    }

    .recommendation-popup .primary-btn {
        padding: 8px 15px;
    }

    .recommendation-popup .left-section h2 {
        font-size: clamp(16px, 4.5vw, 18px);
    }

    .recommendation-popup .left-section p {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .recommendation-popup .country-name {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .recommendation-popup .site-link, .recommendation-popup .change-btn {
        font-size: clamp(11px, 3vw, 12px);
    }

    .recommendation-popup .stay-link {
        font-size: clamp(12px, 3.5vw, 14px);
    }

    .recommendation-popup .flag {
        width: 25px;
    }

    .recommendation-popup .cform-checkbox label {
        font-size: 13px;
    }

}
