/* ========================================
   Checkout & Payment Result Pages
   Theme-adaptive (works with light & dark)
   ======================================== */

/* Checkout Layout */
.checkout-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.checkout-title {
    text-align: center;
    margin-bottom: 30px;
}
.checkout-title h1 {
    font-size: var(--h2-size);
    font-weight: 800;
    color: var(--heading-color);
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

/* Cards */
.checkout-card {
    background: rgb(255 255 255 / 0%);
    border: 1px solid rgba(128, 128, 128, 0.18);
    border-radius: 16px;
    padding: 25px;
}

/* Product Summary */
.product-summary {
    text-align: center;
}
.product-summary img {
    width: 100%;
    max-width: 220px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.product-summary h2 {
    font-size: var(--h3-size);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}
.product-summary .description {
    color: var(--text-color);
    font-size: var(--p-size);
    margin-bottom: 15px;
    opacity: 0.8;
}
.product-summary .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
}
.product-summary .price .currency {
    font-size: 16px;
    opacity: 0.6;
}

/* Discount price block */
.price-block {
    margin-top: 10px;
}
.price-badge {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}
.price-sale {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.1;
}
.price-sale .currency {
    font-size: 16px;
    opacity: 0.6;
    font-weight: 500;
}
.price-original {
    margin-top: 4px;
    font-size: 15px;
    color: var(--text-color);
    opacity: 0.45;
    text-decoration: line-through;
    font-weight: 400;
}

/* Button price display */
.checkout-btn .btn-price-original {
    font-size: 13px;
    opacity: 0.6;
    text-decoration: line-through;
    margin-inline-end: 6px;
    font-weight: 400;
}
.checkout-btn .btn-price-sale {
    font-weight: 700;
}

/* Checkout Form */
.checkout-form h3 {
    font-size: var(--h4-size, 24px);
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.checkout-form .form-group {
    margin-bottom: 16px;
}
.checkout-form .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 5px;
    opacity: 0.9;
}
.checkout-form .form-group label .required-star {
    color: #e74c3c;
    margin: 0 2px;
    font-weight: 700;
}
.checkout-form .form-group input,
.checkout-form .form-group select {
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    color: var(--heading-color);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.12);
}
.checkout-form .form-group input::placeholder {
    color: var(--text-color);
    opacity: 0.4;
}

/* Custom Select Dropdown (.cs-select) */
.cs-select {
    position: relative;
    width: 100%;
}
.cs-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    color: var(--heading-color);
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.cs-select__trigger:hover {
    border-color: rgba(128, 128, 128, 0.5);
}
.cs-select--open .cs-select__trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.12);
}
.cs-select--error .cs-select__trigger {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.cs-select__text {
    opacity: 0.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cs-select__text--selected {
    opacity: 1;
}
.cs-select__arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform 0.25s ease;
}
.cs-select--open .cs-select__arrow {
    transform: rotate(180deg);
    opacity: 0.8;
}
.cs-select__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow: hidden;
}
.cs-select--open .cs-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cs-select__search-wrap {
    position: relative;
    padding: 10px 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.cs-select__search-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
    z-index: 1;
}
.cs-select__search {
    width: 100%;
    padding: 9px 12px 9px 36px;
    background-color: rgba(255, 255, 255, 0.08);
    background-image: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-color);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.cs-select__search:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.12);
}
.cs-select__search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.cs-select__list {
    max-height: 240px;
    overflow-y: auto;
    padding: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(128,128,128,0.2) transparent;
}
.cs-select__list::-webkit-scrollbar {
    width: 5px;
}
.cs-select__list::-webkit-scrollbar-track {
    background: transparent;
}
.cs-select__list::-webkit-scrollbar-thumb {
    background: rgba(128,128,128,0.2);
    border-radius: 4px;
}
.cs-select__option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    user-select: none;
    gap: 0;
}
.cs-select__option img {
    flex-shrink: 0;
}
.cs-select__text {
    display: flex;
    align-items: center;
}.cs-select__option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--heading-color);
}
.cs-select__option--active {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--heading-color) !important;
    font-weight: 600;
}
.checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--button-color, var(--primary-color));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    margin-top: 10px;
}
.checkout-btn:hover { opacity: 0.9; }
.checkout-btn:active { transform: scale(0.99); }
.secure-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    opacity: 0.65;
}
.secure-brands svg { display: block; }
.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.checkout-terms {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin: 10px 0 0;
    line-height: 1.6;
}
.checkout-terms a {
    color: #888;
    text-decoration: underline;
}
.checkout-terms a:hover { color: var(--primary-color); }
.secure-note {
    text-align: center;
    font-size: 12px;
    color: #16a34a;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.card-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    opacity: 0.7;
}

/* Alert */
.alert-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Gateway Selection */
.gateway-group {
    margin-bottom: 16px;
}
.gateway-group > label {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}
.gateway-options {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.gateway-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    border: 2px solid color-mix(in srgb, var(--primary-color) 25%, #e0e0e0);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.gateway-option input[type="radio"] {
    display: none;
}
.gateway-option .gateway-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}
.gateway-option .gateway-logo img,
.gateway-option .gateway-logo svg {
    height: 22px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    display: block;
}
.card-brands img {
    height: 32px;
    width: auto;
}

/* Country Flag */
.cs-select__option img,
.cs-select__text img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    vertical-align: middle;
    flex-shrink: 0;
    margin-inline-end: 8px;
}

/* Processing Note SVG */
.processing-note svg {
    vertical-align: middle;
    opacity: 0.7;
}

/* Transaction Details */
.transaction-details {
    margin-top: 15px;
}

/* ========================================
   Payment Result Page
   ======================================== */
.result-container {
    max-width: 550px;
    margin: 60px auto 40px;
    padding: 0 20px;
    text-align: center;
}
.result-card {
    background: rgba(128, 128, 128, 0.04);
    border: 1px solid rgba(128, 128, 128, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
}

/* Result Icons */
.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.result-icon.success { background: rgba(34, 197, 94, 0.12); }
.result-icon.cancel  { background: rgba(156, 163, 175, 0.12); }
.result-icon.error   { background: rgba(239, 68, 68, 0.12); }
.result-icon svg { width: 40px; height: 40px; }
.result-icon.success svg { stroke: #16a34a; }
.result-icon.cancel svg  { stroke: #6b7280; }
.result-icon.error svg   { stroke: #dc2626; }

.result-card h1 {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.result-card .subtitle {
    color: var(--text-color);
    opacity: 0.65;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Processing / Waiting Screen */
.processing-screen {
    padding: 30px 10px 20px;
}
.processing-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}
.spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}
.spinner-ring:nth-child(1) {
    border-top-color: var(--primary-color, #1e3a8a);
    animation: spinRing 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.spinner-ring:nth-child(2) {
    inset: 8px;
    border-right-color: var(--link-color, #60a5fa);
    animation: spinRing 1.6s cubic-bezier(0.5, 0, 0.5, 1) infinite reverse;
}
.spinner-ring:nth-child(3) {
    inset: 16px;
    border-bottom-color: rgba(128, 128, 128, 0.3);
    animation: spinRing 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes spinRing {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.processing-title {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease;
}
.processing-subtitle {
    color: var(--text-color);
    font-size: 16px;
    opacity: 0.75;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}
.processing-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 128, 128, 0.06);
    border: 1px solid rgba(128, 128, 128, 0.12);
    border-radius: 10px;
    padding: 10px 18px;
    color: var(--text-color);
    font-size: 13px;
    opacity: 0.6;
    animation: fadeInUp 1s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Transaction Details */
.invoice-badge {
    display: inline-block;
    background: rgba(128, 128, 128, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: monospace;
    font-size: 14px;
    color: var(--heading-color);
    margin-bottom: 20px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    font-size: 14px;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
    color: var(--text-color);
    opacity: 0.55;
}
.detail-value {
    font-weight: 600;
    color: var(--heading-color);
}
.amount-highlight {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 15px 0;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}
.status-paid      { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.status-pending   { background: rgba(234, 179, 8, 0.12); color: #ca8a04; }
.status-cancelled { background: rgba(156, 163, 175, 0.12); color: #6b7280; }
.status-failed    { background: rgba(239, 68, 68, 0.12); color: #dc2626; }

/* Action Buttons */
.result-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.result-actions .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
    cursor: pointer;
    border: none;
}
.result-actions .btn:hover { opacity: 0.85; }
.result-actions .btn:active { transform: scale(0.98); }
.result-actions .btn-primary {
    background: var(--primary-color);
    color: #fff;
}
.result-actions .btn-secondary {
    background: rgba(128, 128, 128, 0.1);
    color: var(--heading-color);
    border: 1px solid rgba(128, 128, 128, 0.2);
}
.result-actions .btn-success {
    background: #16a34a;
    color: #fff;
}

/* ========================================
   Non-AMP Sidebar (JS-based)
   ======================================== */
.js-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
.js-sidebar-overlay.open { display: block; }

.js-sidebar {
    position: fixed;
    top: 0;
    width: 280px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}
.js-sidebar.left-side {
    left: 0;
    transform: translateX(-100%);
}
.js-sidebar.right-side {
    right: 0;
    transform: translateX(100%);
}
.js-sidebar.open {
    transform: translateX(0);
}
.js-sidebar .sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.js-sidebar .sidebar-close {
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
}
.js-sidebar .sidebar-nav ul {
    list-style: none;
    padding: 0;
}
.js-sidebar .sidebar-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
    font-weight: 500;
}
.js-sidebar .sidebar-nav a:hover,
.js-sidebar .sidebar-nav a.active {
    background: var(--primary-color);
    color: #ffffff;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .checkout-container {
        max-width: 100%;
        padding: 30px 16px;
    }
    .checkout-grid { gap: 20px; }
}

@media (max-width: 768px) {
    .checkout-container { padding: 24px 14px; }
    .checkout-title h1 { font-size: 24px; }
    .checkout-grid { grid-template-columns: 1fr; gap: 16px; }
    .checkout-card { padding: 20px 16px; border-radius: 14px; }
    .product-summary h2 { font-size: 20px; }
    .product-summary .price { font-size: 26px; }
    .price-sale { font-size: 26px; }
    .checkout-form h3 { font-size: 20px; margin-bottom: 16px; }
    .result-container { margin: 30px auto 20px; }
    .result-card { padding: 30px 20px; border-radius: 16px; }
    .result-card h1 { font-size: 20px; }
    .amount-highlight { font-size: 24px; }
}

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .checkout-container { padding: 16px 10px; }
    .checkout-title h1 { font-size: 20px; }
    .checkout-card { padding: 16px 12px; border-radius: 12px; }
    .checkout-form .form-group input,
    .checkout-form .form-group select,
    .cs-select__trigger {
        padding: 10px 12px;
        font-size: 14px;
    }
    .checkout-form .form-group label { font-size: 12px; }
    .checkout-btn { padding: 12px; font-size: 15px; border-radius: 10px; }
    .product-summary img { max-width: 160px; }
    .product-summary .price { font-size: 22px; }
    .product-summary .price .currency { font-size: 13px; }
    .price-sale { font-size: 22px; }
    .cs-select__dropdown { border-radius: 10px; }
    .cs-select__option { padding: 9px 10px; font-size: 13px; }
    .cs-select__search { padding: 8px 10px; font-size: 13px; }
    .result-container { margin: 20px auto 16px; padding: 0 10px; }
    .result-card { padding: 24px 14px; }
    .result-card h1 { font-size: 18px; }
    .result-card .subtitle { font-size: 13px; }
    .amount-highlight { font-size: 22px; }
    .detail-row { font-size: 13px; padding: 8px 0; }
    .result-actions .btn { padding: 10px 18px; font-size: 13px; }
    .alert-error { font-size: 13px; padding: 10px 12px; }
}

/* ========================================
   intl-tel-input — theme overrides
   ======================================== */
.iti { width: 100%; display: block; }
.iti__flag { display: none !important; }
.iti-local-flag { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; display: block; flex-shrink: 0; }

/* Phone field always LTR even on Arabic pages */
#phoneInputField,
#phoneInputField::placeholder { direction: ltr; text-align: left; unicode-bidi: plaintext; }

/* Dropdown container */
.iti__dropdown-content {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    overflow: hidden;
}

/* Search icon */
.iti__dropdown-content::before {
    content: '';
    position: absolute;
    top: 21px;
    left: 11px;
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat center;
    pointer-events: none;
    z-index: 2;
}

/* Search input */
.iti__search-input {
    width: 100%;
    background-color: rgba(255,255,255,0.08) !important;
    background-image: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 0 !important;
    color: var(--text-color, #e5e7eb) !important;
    padding: 10px 12px 10px 36px !important;
    font-size: 14px;
    box-sizing: border-box;
}
.iti__search-input::placeholder { color: rgba(255,255,255,0.4) !important; }
.iti__search-input:focus { outline: none !important; background-color: rgba(255,255,255,0.12) !important; }

/* Country list */
.iti__country-list {
    background: transparent !important;
    border: none !important;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.iti__country-list::-webkit-scrollbar { width: 5px; }
.iti__country-list::-webkit-scrollbar-track { background: transparent; }
.iti__country-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.iti__country { color: var(--text-color, #e5e7eb) !important; padding: 8px 12px !important; }
.iti__country:hover,
.iti__country.iti__highlight { background: rgba(255,255,255,0.08) !important; }
.iti__country-name { color: var(--text-color, #e5e7eb) !important; margin-inline-start: 8px; }
.iti-local-flag { margin-inline-end: 0; flex-shrink: 0; }
.iti__dial-code    { font-size: 12px; }
.iti__divider      { border-color: rgba(255,255,255,0.12) !important; }

/* Selected-country button */
.iti__selected-country,
.iti__selected-country-primary { background: rgba(255,255,255,0.08); border-radius: 8px 0 0 8px; }
.iti__selected-country:hover,
.iti__selected-country-primary:hover { background: rgba(255,255,255,0.14); }
.iti__arrow         { border-top-color: rgba(255,255,255,0.5) !important; }
.iti--open .iti__arrow { border-bottom-color: rgba(255,255,255,0.5) !important; }

/* Country custom-select divider */
.cs-select__divider { border-top: 1px solid rgba(255,255,255,0.12); margin: 4px 8px; }
