@import url('antiguo.css');

/* --- License Management UI (Step 2) --- */

.license-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* More marked border */
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    position: relative;
    max-width: 100%;
}

/* Active states with purple glow and stronger border */
.license-card.active {
    background: rgba(139, 92, 246, 0.02);
    border-color: rgba(139, 92, 246, 0.4);
    /* Much more marked */
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.05);
}

/* Green Glow for Free Download card */
.license-card.free-download-card.active {
    background: rgba(34, 197, 94, 0.02);
    border-color: rgba(34, 197, 94, 0.5);
    /* Much more marked */
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.05);
}

/* Inactive state - Less ghostly, more structure */
.license-card:not(.active) {
    border-color: rgba(255, 255, 255, 0.08);
    /* Marked border even when inactive */
    background: rgba(255, 255, 255, 0.015);
}

.license-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.license-left-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.offszn_nombre {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

/* Improved visibility for inactive text */
.license-card:not(.active) .offszn_nombre {
    color: rgba(255, 255, 255, 0.4);
    /* Brighter than before */
}

.license-card:not(.active) .license-status-row {
    color: rgba(255, 255, 255, 0.3);
}

.license-card:not(.active) .slider {
    background-color: rgba(255, 255, 255, 0.1);
    /* Less ghostly toggle bg */
}

/* --- Price Box Styling - Compact Pill --- */
.price-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 6px 12px;
    min-width: 100px;
    max-width: 120px;
    justify-content: space-between;
    gap: 6px;
}

.price-box .currency {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 500;
    user-select: none;
}

.license-price-input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff;
    width: 100%;
    text-align: right;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    outline: none !important;
    padding: 0;
    margin: 0;
}

/* Hide spin buttons */
.license-price-input::-webkit-outer-spin-button,
.license-price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.license-price-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Toggle Switch Styling */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: #8b5cf6;
    /* OFFSZN Purple */
}

input:checked+.slider:before {
    transform: translateX(18px) scale(1.1);
}

.toggle-switch:active .slider:before {
    width: 18px;
}

/* Status Rows */
.license-status-row {
    font-size: 11px;
    font-weight: 500;
    margin-left: 50px;
}

.status-error {
    color: #fca5a5;
    /* Even brighter red for better visibility */
}

.status-success {
    color: rgba(255, 255, 255, 0.4);
}

.free-download-card .status-success {
    color: #4ade80;
    /* Brighter green */
}

/* Free Download Specifics */
.free-download-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    margin-top: -2px;
    margin-left: 50px;
}

.free-download-description strong {
    color: rgba(255, 255, 255, 0.7);
}


/* --- Step 1 Error Messages --- */
.offszn-error-msg {
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: fadeIn 0.3s ease;
}

.offszn-error-msg i {
    font-size: 15px;
}

/* --- Vertical Volume Slider --- */
.volume-control {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.player-time {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    min-width: 80px;
}

.volume-slider-container {
    position: absolute;
    bottom: 44px;
    /* Moved closer to avoid losing hover */
    left: 50%;
    transform: translateX(-50%);
    background: #1a1b1e;
    padding: 16px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    align-items: center;
    height: 140px;
    width: 34px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Hover Bridge: ensures the menu stays open while moving mouse from icon to slider */
.volume-slider-container::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.volume-control:hover .volume-slider-container {
    display: flex;
}

.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 100%;
    background: #333336;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
}

.volume-slider::-webkit-slider-runnable-track {
    width: 6px;
    border-radius: 4px;
}

/* Bolita eliminada: thumb invisible */
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 1px;
    background: transparent;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 6px;
    height: 1px;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Circle Mute Button */
#muteBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#muteBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Loop Button Active State (White/Premium) */
#loopBtn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Tags --- */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-height: 48px;
    transition: border-color 0.2s;
}

.tags-container:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
}

.tags-input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 14px;
    flex: 1;
    min-width: 120px;
    padding: 4px 0;
}

.tag-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    animation: fadeInTag 0.2s ease-out;
}

@keyframes fadeInTag {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tag-chip span {
    cursor: pointer;
    color: #666;
    font-size: 16px;
    line-height: 1;
    margin-left: 2px;
    transition: color 0.2s;
}

.tag-chip span:hover {
    color: #ff4d4d;
}

.tags-suggestions {
    margin-top: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.tag-suggestion {
    padding: 4px 12px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    color: #a855f7;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.tag-suggestion:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-1px);
}

/* --- Collaborators UI (Step 3) --- */

.collab-search-container {
    position: relative;
    margin-bottom: 20px;
}

/*
   ==========================================================================
   NUEVO COLABORADORES UI (MATCH IMAGE 3)
   ==========================================================================
*/

.off-collab-section {
    max-width: 1040px; /* Mas ancho como pediste bro */
    margin: 0 auto;
    padding: 20px 0;
}

.off-collab-section h3 {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

.off-collab-search-wrapper {
    position: relative;
    margin-bottom: 32px; /* Mas espacio */
    width: 100%;
    max-width: 450px;
}

.off-collab-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.off-collab-search-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    outline: none;
}

.off-collab-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
}

.off-collab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.off-collab-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.off-collab-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: #222;
}

.off-collab-name {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* List Rows */
.off-collab-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.off-collab-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 20px; /* Mas padding mas ancho */
    min-height: 72px; /* Un poco mas alto tambien */
    transition: transform 0.2s;
}

.off-collab-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.off-collab-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

/* MATCH IMAGE 3: Middle Role Text */
.off-collab-mid-role {
    flex: 1;
    text-align: right;
    padding-right: 24px;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.off-collab-row.owner {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.off-collab-owner-label {
    color: #8b5cf6;
    font-weight: 600;
}

/* Controls */
.off-collab-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.off-collab-role-select {
    display: none; /* We'll use the custom one instead */
}

.off-collab-role-custom {
    position: relative;
    width: 140px;
}

.off-collab-role-trigger {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.off-collab-role-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.off-collab-role-trigger i {
    font-size: 10px;
    transition: transform 0.3s;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.off-collab-role-list {
    position: absolute;
    top: calc(100% + 8px); /* AHORA PARA ABAJO */
    left: 0;
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* Adjust position for first rows to open downwards if preferred, 
   but usually upwards is safer in these lists to not hide the next collab */

.off-collab-role-item {
    padding: 10px 14px;
    font-size: 13px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s;
}

.off-collab-role-item:hover {
    background: rgba(255, 255, 255, 0.05); /* Black and White hover */
    color: #fff;
}

.off-collab-role-item.selected {
    color: #fff; /* Black and White selected */
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08); /* Sutil highlight */
}

.off-collab-percent-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    width: 85px;
}

.off-collab-percent-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    outline: none;
}

.off-collab-percent-wrapper span {
    color: #555;
    font-size: 12px;
}

.off-collab-delete {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff; /* Blanco para que el SVG se vea */
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.off-collab-delete:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Guest Link */
.off-collab-invite-box {
    background: rgba(255, 255, 255, 0.03); /* B&W background */
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 8px;
    max-width: 450px;
}

.off-collab-invite-box p {
    font-size: 11px;
    color: #888;
    margin-top: 0;
    margin-bottom: 8px;
    font-weight: 500;
}

.off-collab-invite-row {
    display: flex;
    gap: 8px;
}

.off-collab-invite-row input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    color: #fff; /* White instead of purple */
    font-size: 13px;
    outline: none;
}

.off-collab-invite-row button {
    background: #fff; /* B&W button */
    border: none;
    color: #000;
    padding: 0 16px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.off-collab-invite-row button:hover {
    background: #e0e0e0;
}

/* Dropdown Results */
.off-collab-no-results {
    padding: 16px;
    color: #666;
    text-align: center;
    font-size: 13px;
}

/* --- Step 4: Preview & Verification --- */

#step4 {
    width: 100%;
    margin: 0;
    animation: fadeIn 0.4s ease forwards;
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
    width: 100%;
}

.marketplace-card-preview {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the card horizontally inside its column */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    min-height: 500px;
}

.marketplace-card-preview .drumkit-card {
    width: 320px; /* Standard marketplace size */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
}

.verification-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 20px;
}

.verification-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.verification-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.verification-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 700;
}

.verification-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
}

.verify-item strong {
    color: #fff;
    font-weight: 600;
}

.verify-file-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-file-row i {
    color: #22c55e;
    font-size: 16px;
}

@media (max-width: 900px) {
    .preview-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .marketplace-card-preview {
        padding: 24px;
    }

    .verification-panel {
        position: static;
    }
}

/* --- Upload Progress Bar Animations --- */

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.shimmer {
    opacity: 0.8;
}

/* --- Premium Limit Reached Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 5000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.elite-modal {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: 32px;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .elite-modal {
    transform: translateY(0) scale(1);
}

.elite-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.elite-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    margin-top: 12px;
}

.elite-btn i {
    font-size: 18px;
}

/* 🔥 Restore Green Success Indicator (Override Antiguo.css) */
.upload-zone.horizontal-upload.success.has-file {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.05) !important;
}

.upload-zone.horizontal-upload.success.has-file .upload-cta-btn {
    border-color: rgba(34, 197, 94, 0.2);
}

.upload-zone.horizontal-upload.success.has-file .upload-cta-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.4);
}

/* --- Promotion Switcher Styles --- */
.promo-switcher-desktop {
    display: flex;
    gap: 8px;
    margin-bottom: 0px;
}

.promo-tab {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #666;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 13px;
    letter-spacing: -0.2px;
}

.promo-tab:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #aaa;
    border-color: rgba(255, 255, 255, 0.15);
}

.promo-tab.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.promo-switcher-mobile {
    display: none;
    position: relative;
}

.promo-tab-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 45px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.custom-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.promo-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 4px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: rgba(255,255,255,0.1);
}

.qty-control input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    width: 30px;
    outline: none;
}

@media (max-width: 768px) {
    .promo-switcher-desktop { display: none; }
    .promo-switcher-mobile { display: block; }
}