:root {
    --sp-primary: #00C2E8;
    --sp-primary-d: #55d0e9;
    --sp-dark: #111827;
    --sp-muted: #6b7280;
    --sp-border: #e5e7eb;
    --sp-bg: #f9fafb;
    --sp-white: #ffffff;
    --sp-radius: 10px;
    --usj-primary: #00C2E8;
    --usj-primary-h: #47D7F3;
    --usj-dark: #111827;
    --usj-muted: #6b7280;
    --usj-border: #e5e7eb;
    --usj-bg: #f9fafb;
    --usj-white: #ffffff;
    --usj-radius: 20px;
    --usj-red: #FF4F5E;
    --usj-red-bg: #fff5f5;
    --usj-red-muted: #c0392b;
}

body.single-product {
    background-color: var(--sp-bg);
}

/* ---- Related bar ---- */
.sp-related-bar {
    background: var(--sp-bg);
    border-bottom: 1px solid var(--sp-border);
    padding: 48px 48px 24px 48px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 160px;
}

.sp-swiper {
    max-width: 1100px;
    width: 100%;
    overflow: hidden;
}

.sp-swiper-centered .swiper-wrapper {
    justify-content: center;
}

.sp-rel-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 100px;
    border: 2px solid transparent;
    overflow: hidden;
    background: var(--sp-bg);
    border-color: #e5e7eb;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.sp-rel-item:hover {
    border-color: var(--sp-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sp-rel-item.sp-rel-active {
    border-color: var(--sp-primary);
}

.sp-rel-item img,
.sp-rel-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: var(--sp-border);
}

.sp-rel-item span {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--sp-dark);
    line-height: 1.3;
    text-align: center;
    border-radius: 100px;
    text-transform: uppercase;
}

.sp-related-bar>.swiper-button-prev,
.sp-related-bar>.swiper-button-next {
    position: static;
    flex-shrink: 0;
    color: var(--sp-primary);
    width: 32px;
    height: 32px;
    background: var(--sp-white);
    border-radius: 50%;
    border: 1px solid var(--sp-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 0;
}

.sp-related-bar>.swiper-button-prev::after,
.sp-related-bar>.swiper-button-next::after {
    font-size: 13px;
    font-weight: 700;
}

/* Pagination dots */
.sp-swiper .swiper-pagination {
    position: relative;
    margin-top: 12px;
}

.sp-swiper .swiper-pagination-bullet {
    background: var(--sp-border);
    opacity: 1;
    width: 8px;
    height: 8px;
}

.sp-swiper .swiper-pagination-bullet-active {
    background: var(--sp-primary);
}

/* ---- Layout ---- */
.sp-wrap {
    background: var(--sp-bg);
    min-height: 70vh;
    padding: 40px 0 60px;
}

.sp-back-container {
    margin-bottom: 40px !important;
}

.sp-back-btn {
    display: block;
    margin: 0px;
    padding: 10px 20px;
    color: var(--sp-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    background: var(--sp-primary);
    border: 1px solid var(--sp-border);
    transition: all 0.2s ease;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-back-btn:hover {
    background: var(--sp-primary);
    color: var(--sp-white);
    border-color: var(--sp-primary);
}

.sp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.sp-container-secondary {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ---- Galería ---- */
.sp-gallery-main {
    position: relative;
    border-radius: var(--sp-radius);
    overflow: hidden;
    background: var(--sp-white);
    border: 1px solid var(--sp-border);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.18s, color 0.18s;
}

.sp-gallery-arrow svg {
    stroke: black;
}

.sp-gallery-arrow:hover,
.sp-gallery-arrow:focus,
.sp-gallery-arrow:focus-visible,
.sp-gallery-arrow:focus-within {
    background: #fff;
    color: #000;
}

.sp-gallery-arrow-prev {
    left: 12px;
}

.sp-gallery-arrow-next {
    right: 12px;
}

.sp-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sp-gallery-placeholder {
    background: var(--sp-bg);
}

.sp-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.sp-thumb {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.18s;
}

.sp-thumb-active,
.sp-thumb:hover {
    border-color: var(--sp-primary);
}

/* ---- Descripción ---- */
.sp-description {
    max-width: 1400px;
    box-sizing: border-box;
}

.sp-desc-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sp-dark);
    margin: 0 0 12px;
}

.sp-desc-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--sp-muted);
}

.sp-desc-content p {
    margin: 0 0 12px;
}

.sp-desc-content h1,
.sp-desc-content h2,
.sp-desc-content h3,
.sp-desc-content h4 {
    color: var(--sp-dark);
    font-size: 20px;
    font-weight: 600;
}

.sp-desc-content h3,
.sp-desc-content h4 {
    font-size: 18px;
}

.sp-desc-content img {
    padding: 20px 0px;
}

.sp-desc-content hr {
    margin: 20px 0px;
}

/* ---- Panel derecho ---- */
.sp-right {
    background: var(--sp-white);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 28px;
    top: 24px;
}

.sp-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sp-dark);
    margin: 0 0 24px;
    line-height: 1.3;
}

.sp-section {
    margin-bottom: 22px;
}

.sp-section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--sp-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}

/* ---- Tabs ---- */
.sp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-tab {
    padding: 8px 16px;
    border: 1.5px solid var(--sp-border);
    border-radius: 6px;
    background: var(--sp-bg);
    font-size: 13px;
    font-weight: 600;
    color: var(--sp-dark);
    cursor: pointer;
    transition: all 0.18s;
    max-width: 100%;
    white-space: normal;
    text-align: left;
}

.sp-tab:hover {
    border-color: var(--sp-primary);
    color: var(--sp-white);
    background-color: var(--sp-primary);
}

.sp-tab.sp-tab-active {
    background: var(--sp-primary);
    border-color: var(--sp-primary);
    color: var(--sp-white);
}

.sp-tab.sp-tab-unavailable,
.sp-tab:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

/* ---- Pasajeros ---- */
.sp-passengers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    background: var(--sp-bg);
    border-radius: 8px;
    border: 1px solid var(--sp-border);
}

.sp-passenger-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-passenger-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-dark);
}

.sp-passenger-price {
    font-size: 13px;
    color: var(--sp-muted);
}

.sp-qty-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--sp-border);
    background: var(--sp-white);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    color: var(--sp-dark);
}

.sp-qty-btn:hover,
.sp-qty-btn:active {
    border-color: var(--sp-primary);
    color: var(--sp-white);
    background-color: var(--sp-primary);
}

.sp-qty-val {
    font-size: 15px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--sp-dark);
}

/* ---- Total ---- */
.sp-total-wrap {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--sp-border);
    margin-top: 4px;
}

.sp-total-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sp-muted);
}

.sp-total-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--sp-primary);
}

/* ---- Botón ---- */
.sp-add-btn {
    width: 100%;
    padding: 14px;
    background: var(--sp-primary);
    color: var(--sp-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.3px;
}

.sp-add-btn:hover:not(:disabled) {
    background: var(--sp-primary-d);
    transform: translateY(-1px);
}

.sp-add-btn:hover {
    background: var(--sp-primary);
}

.sp-add-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.sp-add-hint {
    font-size: 12px;
    color: var(--sp-muted);
    text-align: center;
    margin: 8px 0 0;
}

.sp-cart-notice {
    margin-top: 12px;
    padding: 12px 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    font-size: 14px;
    color: #065f46;
    text-align: center;
}

.sp-cart-notice a {
    color: var(--sp-primary);
    font-weight: 700;
    text-decoration: underline;
}


/* ---- Mapa ---- */
.sp-map-box {
    max-width: 1400px;
    margin: 40px auto;
    box-sizing: border-box;
    background-color: var(--sp-bg);
}

.sp-map-container {
    width: 100%;
    height: 320px;
    border-radius: var(--sp-radius);
    overflow: hidden;
    border: 1px solid var(--sp-border);
}

/* Controles de navegación de Mapbox */
.mapboxgl-ctrl-group {
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10) !important;
}

.mapboxgl-ctrl-attrib {
    font-size: 11px !important;
}

.how-to-buy {
    box-sizing: border-box;
    background-color: var(--sp-bg);
}

.how-to-buy-parent {
    max-width: 1400px;
    margin: 40px auto;
}

.how-to-buy h2 {
    color: var(--sp-dark);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.how-to-buy-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
}

.how-to-buy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.how-to-buy-item img {
    border-radius: 50%;
}

.how-to-buy-item h4 {
    color: var(--sp-primary);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin: 0;
}

.how-to-buy-item p {
    color: var(--sp-muted);
    font-size: 16px;
    margin: 0;
    text-align: center;
}

/* ---- Why book section ---- */
.sp-why-section {
    background: var(--sp-white);
    border-top: 1px solid var(--sp-border);
    border-bottom: 1px solid var(--sp-border);
    padding: 64px 0;
}

.sp-why-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.sp-why-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sp-dark);
    text-align: center;
    margin: 0 0 48px;
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.sp-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.sp-why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sp-dark);
}

.sp-why-icon svg {
    width: 60px;
    height: 60px;
}

.sp-why-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--sp-primary);
    margin: 0;
}

.sp-why-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--sp-muted);
    margin: 0;
    max-width: 260px;
}

/* ---- Related cards section ---- */
.sp-rel-cards-section {
    background: var(--sp-bg);
    padding: 64px 0;
}

.sp-rel-cards-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.sp-rel-cards-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sp-dark);
    margin: 0 0 32px;
}

.sp-rel-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.sp-rel-card {
    background: var(--sp-white);
    border-radius: var(--sp-radius);
    border: 1px solid var(--sp-border);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.sp-rel-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.sp-rel-card-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.sp-rel-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.sp-rel-card:hover .sp-rel-card-img-wrap img {
    transform: scale(1.04);
}

.sp-rel-card-no-img {
    width: 100%;
    height: 100%;
    background: var(--sp-border);
}

.sp-rel-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--sp-primary);
    color: var(--sp-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.sp-rel-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.sp-rel-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--sp-dark);
    margin: 0;
    line-height: 1.3;
}

.sp-rel-card-loc {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--sp-muted);
    margin: 0;
}

.sp-rel-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--sp-primary);
    margin: auto 0 0;
    padding-top: 8px;
}

.sp-rel-card-price .woocommerce-Price-amount {
    color: inherit;
}

.sp-card-from {
    font-size: 13px;
    font-weight: 500;
    color: var(--sp-muted);
}

/* ---- Responsive ---- */

@media(max-width:1024px) {
    .sp-related-bar {
        margin-top: 100px;
    }

    .sp-rel-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    .sp-back-btn {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sp-container {
        grid-template-columns: 1fr;
        padding: 0px 24px
    }

    .sp-container-secondary {
        padding: 0px 24px
    }

    .sp-right {
        position: static;
    }

    .sp-description,
    .sp-map-box,
    .how-to-buy {
        padding-left: 0px;
        padding-right: 0px;
    }

    .sp-why-inner,
    .sp-rel-cards-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sp-why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-to-buy-container {
        display: grid;
        grid-template-columns: auto auto;
    }

    .sp-why-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .sp-wrap {
        padding: 20px 0 40px;
    }

    .sp-right {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .sp-rel-item span {
        padding: 12px;
        font-size: 14px;
    }

    .sp-description,
    .sp-map-box,
    .how-to-buy {
        padding-left: 0px;
        padding-right: 0px;
    }

    .sp-why-inner,
    .sp-rel-cards-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sp-rel-cards-grid {
        grid-template-columns: 1fr;
    }

    .sp-why-section,
    .sp-rel-cards-section {
        padding: 40px 0;
    }
}

/* ---- Date Picker (TICKETS) ---- */
.sp-date-section {
    margin-top: 16px;
}

.sp-date-input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--sp-border);
    border-radius: 6px;
    background: var(--sp-bg);
    font-size: 14px;
    font-weight: 600;
    color: var(--sp-dark);
    cursor: pointer;
    transition: border-color 0.18s;
    box-sizing: border-box;
}

.sp-date-input:focus {
    outline: none;
    border-color: var(--sp-primary);
    box-shadow: 0 0 0 3px rgba(0, 194, 232, 0.12);
}

.sp-date-hint {
    font-size: 11px;
    color: var(--sp-muted);
    margin: 6px 0 0;
}

.sp-date-notice {
    font-size: 12px;
    color: #b45309;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 6px;
    padding: 6px 10px;
    margin: 8px 0 0;
}

/* ---- Lightbox ---- */
.sp-gallery-main img {
    cursor: pointer;
}

#sp-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#sp-lightbox.sp-lb-open {
    display: flex;
}

.sp-lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.sp-lb-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 90vw;
    max-height: 90vh;
}

.sp-lb-img {
    max-width: calc(90vw - 140px);
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.sp-lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    z-index: 2;
}

.sp-lb-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.sp-lb-prev,
.sp-lb-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.15s;
    flex-shrink: 0;
}

.sp-lb-prev:hover,
.sp-lb-next:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.08);
}

.sp-lb-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sp-lb-dots {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.sp-lb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background 0.18s, transform 0.18s;
    flex-shrink: 0;
}

.sp-lb-dot.sp-lb-dot-active {
    background: #fff;
    transform: scale(1.35);
}

/* ══════════════════════════════════════════════════
   Notice / Aviso
   ══════════════════════════════════════════════════ */
.usj-notice {
    background: var(--usj-red-bg);
    border: 2px solid var(--usj-red);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 36px;
}

.usj-notice-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--usj-dark);
    margin: 0 0 10px;
}

.usj-notice-main {
    color: var(--usj-red);
    font-weight: 700;
    font-size: 14px;
    margin: 0 0 8px;
}

.usj-notice p,
.usj-notice ul {
    font-size: 13px;
    color: var(--usj-dark);
    margin: 4px 0;
    line-height: 1.6;
}

.usj-notice ul {
    padding-left: 18px;
}

.usj-notice li {
    color: black;
    margin-bottom: 4px;
}


@media (max-width: 600px) {
    .sp-lb-img {
        max-width: 95vw;
        max-height: 80vh;
    }

    .sp-lb-content {
        gap: 0;
    }

    .sp-lb-prev,
    .sp-lb-next {
        display: none;
    }

    .sp-lb-counter {
        display: none;
    }

    .sp-lb-dots {
        display: flex;
    }
}

/* ---- Slim Select overrides para sp-attr-select ---- */
.sp-slim-wrap .ss-main {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
    padding: 7px 28px 7px 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    min-height: unset;
    height: auto;
    transition: border-color 0.2s;
}

.sp-slim-wrap .ss-main:focus,
.sp-slim-wrap .ss-main.ss-open-below,
.sp-slim-wrap .ss-main.ss-open-above {
    border-bottom-color: #00C2E8;
    box-shadow: none;
    border-radius: 0;
}

.sp-slim-wrap .ss-main .placeholder {
    color: #9ca3af;
    font-weight: 600;
}

.sp-slim-wrap .ss-arrow {
    right: 2px;
    color: #9ca3af;
}

.sp-slim-wrap .ss-content {
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
    margin-top: 6px !important;
    z-index: 99999 !important;
}

.sp-slim-wrap .ss-content .ss-search {
    padding: 8px 8px 4px !important;
}

.sp-slim-wrap .ss-content .ss-search input {
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 7px 10px !important;
    font-size: 13px !important;
    outline: none !important;
}

.sp-slim-wrap .ss-content .ss-search input:focus {
    border-color: #00C2E8 !important;
    box-shadow: 0 0 0 2px rgba(0,194,232,0.12) !important;
}

.sp-slim-wrap .ss-content .ss-option:hover,
.sp-slim-wrap .ss-content .ss-option.ss-highlighted {
    background: #00C2E8 !important;
    color: #fff !important;
}

.sp-slim-wrap .ss-content .ss-option.ss-selected {
    background: rgba(0,194,232,0.08) !important;
    color: #111827 !important;
    font-weight: 600 !important;
}