/* new-website/new-design — companion CSS (works with Tailwind CDN) */

:root {
    --card-radius: 0.75rem;
}

main img {
    border: none;
    outline: none;
    border-radius: 0;
}

.nav-link {
    display: inline-block;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 16px;
    font-weight: 600;
    color: #0d3d5c;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link--active {
    position: relative;
    color: #03aded;
    font-weight: 700;
}

.nav-link--active::after {
    content: '';
    position: absolute;
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.2rem;
    height: 2px;
    background: #03aded;
    border-radius: 1px;
}

.nav-link--active:hover {
    color: #0288c7;
    background: #e8f7fd;
}

.nav-link--active:hover::after {
    background: #0288c7;
}

.nav-link:hover {
    background: #e8f7fd;
    color: #0288c7;
}

.nav-dropdown-menu {
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 50;
    margin-top: 6px;
    min-width: 170px;
    transform: translateY(-4px);
    opacity: 0;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #fff;
    padding: 6px;
    box-shadow: 0 12px 40px rgba(13, 61, 92, 0.12);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.nav-dropdown-menu a {
    display: block;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 500;
    color: #0d3d5c;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: #e8f7fd;
    color: #0288c7;
}

.nav-dropdown-menu a.is-active {
    position: relative;
    color: #03aded;
    font-weight: 700;
    background: #e8f7fd;
}

.nav-dropdown-menu a.is-active::after {
    content: '';
    position: absolute;
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.35rem;
    height: 2px;
    background: #03aded;
    border-radius: 1px;
}

.mobile-link {
    display: block;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    color: #0d3d5c;
    text-decoration: none;
}

.mobile-link--active {
    color: #03aded;
    font-weight: 700;
    border-bottom: 2px solid #03aded;
}

.mobile-link:hover { background: #e8f7fd; }

.mobile-link-sub {
    display: block;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    padding-right: 1.5rem;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
}

.mobile-link-sub--active {
    color: #03aded;
    font-weight: 700;
    border-bottom: 2px solid #03aded;
}

.mobile-link-sub:hover { background: #e8f7fd; color: #0d3d5c; }

.footer-title {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding-bottom: 0.375rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.35);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.footer-link {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.site-footer .footer-text,
.site-footer .footer-contact,
.site-footer .footer-copyright {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer .footer-contact i {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-bottom {
    border-color: rgba(255, 255, 255, 0.2);
}

.site-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-logo {
    height: 7rem;
}

.site-footer .footer-socials {
    gap: 0.625rem;
}

.site-footer .social-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.125rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(4px);
}

.site-footer .social-icon:hover {
    border-color: #fff;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px);
}

.site-footer .social-icon--facebook:hover { color: #1877f2; }
.site-footer .social-icon--instagram:hover { color: #e4405f; }
.site-footer .social-icon--x:hover { color: #000; }
.site-footer .social-icon--youtube:hover { color: #ff0000; }

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.section-head {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-right: 3px solid #03aded;
    padding-right: 1rem;
}

.section-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    color: #03aded;
}

.section-title {
    font-size: 16px;
    font-weight: 800;
    color: #0d3d5c;
}

/* All h2 headings — same size as nav links */
main h2 {
    font-size: 16px !important;
}

/* Hero banner titles stay larger */
main .hero-slide h2 {
    font-size: 1.125rem !important;
    line-height: 1.375;
}

@media (min-width: 640px) {
    main .hero-slide h2 { font-size: 1.25rem !important; }
}

@media (min-width: 800px) {
    main .hero-slide h2 { font-size: 1.875rem !important; }
}

@media (min-width: 1280px) {
    main .hero-slide h2 { font-size: 2.25rem !important; }
}

.card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f7fd;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* ── Site cards — unified border radius ── */
main .legacy-content article,
main .legacy-content .about-card,
main .legacy-content a.overflow-hidden.shadow-md,
main .legacy-content div.overflow-hidden.bg-white.shadow-sm {
    border-radius: var(--card-radius);
}

main .legacy-content article,
main .legacy-content a.overflow-hidden.shadow-md,
main .legacy-content div.overflow-hidden.bg-white.shadow-sm {
    overflow: hidden;
}

main .legacy-content div.border.bg-white.shadow-sm {
    border-radius: var(--card-radius);
}

.group:hover .card-media img {
    transform: scale(1.05);
}

.hero-slide.hidden { display: none; }

.hero-slide:not(.hidden) {
    display: grid;
}

.hero-dot {
    height: 6px;
    width: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    width: 20px;
    background: #fff;
}

.about-card {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(13, 61, 92, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 61, 92, 0.1);
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    background: #e8f7fd;
    color: #03aded;
    border-radius: calc(var(--card-radius) - 0.125rem);
}

.about-card-title {
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0d3d5c;
}

.about-card-text {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
}

.article-content {
    font-size: 14px;
    line-height: 1.9;
    color: #475569;
}

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 13px;
    font-weight: 600;
    color: #0d3d5c;
}

.form-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.625rem 0.875rem;
    font-size: 14px;
    color: #0d3d5c;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #03aded;
}

.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #0d3d5c;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-embed--html iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image lightbox */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.image-lightbox.hidden {
    display: none;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 42, 64, 0.92);
    cursor: zoom-out;
}

.image-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 56rem);
    max-height: 90vh;
}

.image-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    margin: 0 auto;
    object-fit: contain;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.image-lightbox-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0d3d5c;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.image-lightbox-close:hover {
    background: #fff;
}

.image-lightbox-trigger {
    border: none;
    padding: 0;
    cursor: zoom-in;
    text-align: inherit;
}

/* ── Hero shell (banner 65% + stats 35% — tablet/desktop فقط) ── */
.hero-shell__backdrop {
    pointer-events: none;
}

.hero-shell__frame {
    display: flex;
    flex-direction: column;
    height: auto;
    isolation: isolate;
}

@media (min-width: 800px) {
    .hero-shell__frame {
        display: grid;
        grid-template-rows: minmax(0, 65fr) minmax(0, 35fr);
        height: calc(100svh - 3.75rem);
        min-height: 0;
    }
}

@media (max-width: 799px) {
    /* موبايل: قسمان منفصلان — بانر كامل ثم إحصائيات */
    .hero-shell {
        background: #f8fafc;
        overflow: visible;
    }

    .hero-shell__backdrop {
        right: 0;
        left: 0;
        top: 0;
        bottom: auto;
        height: calc(100svh - 3.75rem);
        min-height: 32rem;
        background: linear-gradient(to bottom left, var(--color-brand-dark, #0a263a), var(--color-brand, #03aded), #02b8f5);
    }

    .hero-shell__frame {
        gap: 0;
    }

    .hero-shell__banner {
        position: relative;
        flex: none;
        width: 100%;
        max-height: none;
    }

    .home-stats--embedded {
        position: relative;
        flex: none;
        width: 100%;
        height: auto;
        min-height: auto;
        margin-top: 0;
        border-top: 3px solid #03aded;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    }

    .home-stats--embedded .home-stats__curve {
        display: none;
    }

    .home-stats--embedded .home-stats__overlay {
        background: rgba(10, 38, 58, 0.96);
    }

    .home-stats__inner {
        height: auto;
        min-height: auto;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        gap: 0.75rem;
    }

    .home-stats__toolbar {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .home-stats__badge {
        text-align: center;
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .home-stats__timeline--inline {
        justify-content: center;
        gap: 0.75rem;
        padding: 0.35rem 0.65rem;
    }

    .home-stats__year-text {
        font-size: 0.78rem;
    }

    .home-stats__cell {
        padding: 0.5rem 0.35rem;
        min-height: 4rem;
    }

    .home-stats__cell-title {
        font-size: 0.65rem;
        line-height: 1.3;
        margin-bottom: 0.2rem;
    }

    .home-stats__cell-value {
        font-size: 1rem;
    }

    .home-stats__cell--featured .home-stats__cell-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 479px) {
    .hero-shell__backdrop,
    .hero-shell__banner {
        min-height: 28rem;
    }

    .home-stats__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .home-stats__timeline--inline {
        width: 100%;
        justify-content: center;
    }
}

.hero-shell__banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: calc(100svh - 3.75rem);
    min-height: 32rem;
}

@media (min-width: 800px) {
    .hero-shell__banner {
        height: 100%;
        min-height: 0;
    }
}

/* ── Home yearly statistics ── */
.home-stats {
    color: #fff;
}

.home-stats--embedded {
    min-height: 0;
    height: auto;
}

@media (min-width: 800px) {
    .home-stats--embedded {
        height: 100%;
    }
}

.home-stats__overlay {
    background: rgba(10, 38, 58, 0.92);
}

.home-stats__curve {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.25rem;
    z-index: 1;
    pointer-events: none;
}

.home-stats__inner {
    position: relative;
    z-index: 3;
    min-height: 0;
    height: auto;
    gap: 0.65rem;
}

@media (min-width: 800px) {
    .home-stats__inner {
        height: 100%;
    }
}

.home-stats__toolbar {
    flex-shrink: 0;
}

.home-stats__badge {
    white-space: nowrap;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.18);
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    min-height: 0;
    flex: 1;
    align-content: start;
    align-items: stretch;
}

@media (min-width: 800px) {
    .home-stats__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        align-content: end;
    }
}

.home-stats__cell {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--card-radius) - 0.125rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.35rem;
    text-align: center;
}

.home-stats__cell--featured {
    border-color: rgba(3, 173, 237, 0.45);
    background: rgba(3, 173, 237, 0.12);
}

.home-stats__cell-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.35rem;
    border-radius: 9999px;
    background: rgba(3, 173, 237, 0.18);
    color: #03aded;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.home-stats__cell--featured .home-stats__cell-icon {
    background: rgba(246, 211, 101, 0.18);
    color: #f6d365;
}

.home-stats__cell-title {
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.35;
    color: #03aded;
}

.home-stats__cell-value {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.home-stats__cell--featured .home-stats__cell-value {
    color: #f6d365;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.home-stats__timeline--inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-stats__year-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.15rem 0.25rem;
    font-family: inherit;
    transition: opacity 0.2s ease;
}

.home-stats__year-btn:hover {
    opacity: 0.9;
}

.home-stats__year-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(10, 38, 58, 0.9);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.home-stats__year-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

.home-stats__year-btn.is-active .home-stats__year-dot {
    border-color: #03aded;
    background: #03aded;
    box-shadow: 0 0 0 3px rgba(3, 173, 237, 0.25);
}

.home-stats__year-btn.is-active .home-stats__year-text {
    color: #fff;
    font-weight: 800;
}

.home-stats__cell-value {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-stats.is-updating .home-stats__cell-value {
    opacity: 0.35;
    transform: translateY(3px);
}

/* ── Home tabs section ── */
.home-tabs {
    border-radius: var(--card-radius);
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 24px rgba(13, 61, 92, 0.06);
    overflow: hidden;
}

.home-tabs__nav-wrap {
    position: relative;
    border-bottom: 1px solid #e2e8f0;
    background: #fafbfc;
}

.home-tabs__nav-wrap::before,
.home-tabs__nav-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.5rem;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.home-tabs__nav-wrap::before {
    right: 0;
    background: linear-gradient(to left, #fafbfc, transparent);
}

.home-tabs__nav-wrap::after {
    left: 0;
    background: linear-gradient(to right, #fafbfc, transparent);
}

.home-tabs__nav-wrap.is-scrollable::before,
.home-tabs__nav-wrap.is-scrollable::after {
    opacity: 1;
}

.home-tabs__nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-tabs__nav::-webkit-scrollbar {
    display: none;
}

.home-tabs__btn {
    position: relative;
    flex-shrink: 0;
    border: none;
    background: transparent;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 640px) {
    .home-tabs__btn {
        padding: 1.125rem 1.5rem;
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    .home-tabs__nav {
        justify-content: center;
    }

    .home-tabs__btn {
        flex: 1;
        max-width: 11rem;
    }
}

.home-tabs__btn:hover {
    color: #0d3d5c;
    background: rgba(3, 173, 237, 0.06);
}

.home-tabs__btn.is-active {
    color: #03aded;
    font-weight: 800;
}

.home-tabs__btn.is-active::after {
    content: '';
    position: absolute;
    right: 1rem;
    left: 1rem;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: #03aded;
}

.home-tabs__panels {
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .home-tabs__panels {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .home-tabs__panels {
        padding: 1.75rem 2rem 2rem;
    }
}

.home-tabs__panel {
    display: none;
    animation: homeTabFadeIn 0.28s ease;
}

.home-tabs__panel.is-active {
    display: block;
}

.home-tabs__panel[hidden] {
    display: none !important;
}

@keyframes homeTabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-tabs__footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    padding-top: 0.25rem;
}

.home-tabs__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 9999px;
    border: 1.5px solid #03aded;
    background: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 13px;
    font-weight: 700;
    color: #03aded;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-tabs__view-all:hover {
    background: #03aded;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(3, 173, 237, 0.28);
}

.home-tabs__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Tom Select — searchable dropdowns (nationality, etc.) */
.ts-wrapper.single {
    width: 100%;
}

.ts-wrapper.single .ts-control {
    border: 1px solid #e2e8f0;
    border-radius: 0;
    background: #fff;
    padding: 0.5rem 0.875rem;
    font-size: 14px;
    color: #0d3d5c;
    font-family: inherit;
    box-shadow: none;
    min-height: 44px;
}

.ts-wrapper.single.focus .ts-control,
.ts-wrapper.single .ts-control:focus {
    border-color: #03aded;
    box-shadow: none;
}

.ts-wrapper.single .ts-control input {
    font-size: 14px;
    color: #0d3d5c;
}

.ts-wrapper.single .ts-dropdown {
    border: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(13, 61, 92, 0.12);
    font-size: 14px;
}

.ts-wrapper.single .ts-dropdown .option {
    padding: 0.5rem 0.875rem;
}

.ts-wrapper.single .ts-dropdown .active {
    background: #e8f7fd;
    color: #0d3d5c;
}

.ts-wrapper.single .ts-dropdown .option:hover,
.ts-wrapper.single .ts-dropdown .option.active {
    background: #e8f7fd;
    color: #0288c7;
}

.ts-wrapper.border-red-400 .ts-control {
    border-color: #f87171;
}

.country-select-wrap.is-invalid .ts-control {
    border-color: #f87171;
}

