    .creator-logo {
        width: 100%;
        max-width: 1600px;
        margin-bottom: 25px;
    }
    .creator-logo.mobile-logo{
        display:none;
    }
    .hdr-lhs img.logo-img {
        /* max-width: 120px; */
        max-width: 70%;
        margin: 0;
    }
    .video-js .vjs-big-play-button {
        background-color: rgba(0, 124, 186, 0.8);
        border-color: #007cba;
        border-radius: 50%;
    }
    .btn-holder.hide-show-circut-screen {
        display: inline;
    }
    .video-js .vjs-control-bar {
        background-color: rgba(0, 0, 0, 0.8);
    }
    
    .video-js .vjs-progress-control .vjs-progress-holder .vjs-play-progress {
        background-color: #007cba;
    }
    
    .video-js .vjs-volume-control .vjs-volume-bar .vjs-volume-level {
        background-color: #007cba;
    }
    
    .video-js .vjs-control:focus {
        text-shadow: 0px 0px 1em #007cba;
    }
    
    /* Mobile and Touch Interface Styles */
    .video-item {
        position: relative;
        cursor: pointer;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }
    
    .video-item:hover {
        /* transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
    }
    #video-circuit-container .video-js button.vjs-big-play-button {
        display: none;
    }
    .video-item.selected {
        border-color: #007cba;
        box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.3);
    }
    
    .video-item.active {
        border-color: #28a745;
        box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
    }
    
    .video-item.being-dragged {
        opacity: 0.7;
        /* transform: scale(1.05); */
        z-index: 1000;
    }
    
    /* .video-item.long-pressed {
        animation: longPressEffect 0.3s ease;
    } */
    body.page-id-2930 {
        background: #cee9f9;
    }
    @keyframes longPressEffect {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* .video-item.vibrate {
        animation: vibrate 0.2s ease-in-out;
    } */
    
    @keyframes vibrate {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-2px); }
        75% { transform: translateX(2px); }
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 8px;
    }
    
    /* .video-item:hover .video-overlay,
    .video-item.selected .video-overlay,
    .video-item.long-pressed .video-overlay {
        opacity: 1;
    } */
    
    .video-actions {
        display: flex;
        gap: 8px;
        justify-content: flex-end;
        display: none;
    }
    
    .mobile-add-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        color: white;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 124, 186, 0.9);
    }
    
    .mobile-add-btn:hover {
        background: #007cba;
        transform: scale(1.1);
    }
    
    .video-info {
        color: white;
        text-align: left;
        display: none;
    }
    
    .video-title {
        display: block;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 4px;
        line-height: 1.2;
        max-height: 2.4em;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .video-duration {
        display: block;
        font-size: 10px;
        opacity: 0.9;
        background: rgba(0,0,0,0.5);
        padding: 2px 6px;
        border-radius: 10px;
        display: inline-block;
    }
    
    .selection-indicator {
        position: absolute;
        top: 8px;
        left: 8px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: rgba(0, 124, 186, 0.9);
        color: white;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }
    
    .video-item.selected .selection-indicator {
        display: none;
    }
    .reponsive-humburg .cross{
        display: none;
    }
    .selection-indicator::after {
        content: '✓';
        opacity: 0;
    }
    
    /* Timeline slot enhancements */
    .timeline-slot {
        transition: all 0.3s ease;
        border-radius: 8px;
        border: 2px dashed transparent;
        position: relative;
    }
    
    .timeline-slot:not(.filled):not(.fixed-slot) {
        border-color: #ddd;
        cursor: pointer;
    }
    
    .timeline-slot.drag-over {
        border-color: #007cba;
        background-color: rgba(0, 124, 186, 0.1);
        /* transform: scale(1.05); */
    }
    
    .timeline-slot:not(.filled):not(.fixed-slot):hover {
        border-color: #007cba;
        background-color: rgba(0, 124, 186, 0.05);
    }
    
    /* Fixed slot styles for intro/outro */
    .fixed-slot {
        border: 2px solid #6c757d !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        cursor: not-allowed !important;
        opacity: 0.9;
    }
    
    .fixed-slot:hover {
        transform: none !important;
        background-color: #e9ecef !important;
    }
    
    .fixed-slot .timeline-video {
        pointer-events: none;
    }
    
    .fixed-slot .fixed-label {
        position: absolute;
        bottom: 5px;
        left: 5px;
        background: rgba(108, 117, 125, 0.9);
        color: white;
        padding: 2px 8px;
        border-radius: 3px;
        font-size: 10px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
    }
    
    .fixed-card {
        background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
        color: white !important;
        cursor: not-allowed !important;
        opacity: 0.8;
        font-weight: bold;
    }
    
    /* Auto-skip notification styles */
    .skip-notification {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 20px 30px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 500;
        z-index: 10001;
        display: flex;
        align-items: center;
        gap: 15px;
        opacity: 0;
        transition: all 0.3s ease;
        max-width: 90%;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        border: 2px solid #ffc107;
    }
    
    .skip-notification.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    
    .skip-icon {
        font-size: 24px;
        color: #ffc107;
    }
    
    .skip-text {
        flex: 1;
        color: white;
    }
    
    /* Mobile-friendly alerts and toasts */
    .mobile-alert {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
    }
    
    .mobile-alert-content {
        background: white;
        padding: 15px 15px;
        border-radius: 12px;
        max-width: 100%;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-alert-content p {
        margin: 0 0 10px 0;
        font-size: 16px;
        line-height: 1.4;
        color: #333;
    }
    
    .mobile-alert-close {
        background: #007cba;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        min-width: 80px;
    }
    
    .mobile-alert-close:hover {
        background: #0056b3;
    }
    
    .mobile-toast {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(100px);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        z-index: 9999;
        opacity: 0;
        transition: all 0.3s ease;
        max-width:max-content;
        width: 100%;
        text-align: center;
        pointer-events: none;
    }
    
    .mobile-toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    #timeline-track {
        cursor: grab;
        user-select: none;
      }
      #timeline-track.active {
        cursor: grabbing;
      }
    /* Mobile responsive improvements */
    @media (max-width: 768px) {
        .video-item {
            margin-bottom: 12px;
        }
        
        .video-overlay {
            opacity: 1; /* Always show on mobile for better accessibility */
        }
        
        .video-actions {
            justify-content: center; /* Center the single button */
        }
        
        .mobile-add-btn {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }
        
        .video-title {
            font-size: 14px;
        }
        
        .video-duration {
            font-size: 12px;
        }
        
        .timeline-slot {
            min-height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .timeline-slot .upload-card {
            font-size: 18px;
            padding: 20px;
        }
        
        .skip-notification {
            max-width: 85%;
            padding: 15px 20px;
            font-size: 14px;
        }
    }
    
    /* Touch-friendly improvements */
    /* @media (hover: none) and (pointer: coarse) {
        .video-item:hover {
            transform: none;
        }
        
        .video-overlay {
            opacity: 1;
        }
        
        .mobile-add-btn {
            width: 44px;
            height: 44px;
            font-size: 20px;
        }
    } */
    
    /* Mobile Actions Bar */
    #mobile-actions-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #007cba 0%, #0056b3 100%);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    #mobile-actions-bar:not([style*="display: none"]) {
        transform: translateY(0);
    }
    
    .mobile-actions-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        max-width: 100%;
    }
    
    .mobile-action-btn {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-width: 60px;
        text-align: center;
    }
    
    .mobile-action-btn:hover,
    .mobile-action-btn:active {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-1px);
    }
    
    .mobile-action-btn.primary {
        background: #28a745;
        border-color: #28a745;
    }
    
    .mobile-action-btn.primary:hover,
    .mobile-action-btn.primary:active {
        background: #218838;
        border-color: #218838;
    }
    
    #mobile-selection-count {
        color: white;
        font-size: 14px;
        font-weight: 500;
        opacity: 0.9;
        flex-shrink: 0;
    }
    
    @media (max-width: 480px) {
        .mobile-actions-content {
            gap: 8px;
        }
        
        .mobile-action-btn {
            padding: 6px 12px;
            font-size: 12px;
            min-width: 50px;
        }
        
        #mobile-selection-count {
            font-size: 12px;
        }
    }


      #music-interaction-prompt {
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 10000;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
                border-radius: 12px;
                padding: 0;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
                max-width: 300px;
                animation: slideIn 0.5s ease-out;
                display: none;
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
            }

            .music-prompt-content {
                padding: 16px 20px;
                display: flex;
                align-items: center;
                gap: 12px;
                position: relative;
            }

            .music-prompt-icon {
                font-size: 24px;
                animation: pulse 2s infinite;
            }

            .music-prompt-text {
                flex: 1;
                font-size: 14px;
                font-weight: 500;
                line-height: 1.4;
            }

            .music-prompt-close {
                position: absolute;
                top: 8px;
                right: 8px;
                background: none;
                border: none;
                color: white;
                font-size: 18px;
                font-weight: bold;
                cursor: pointer;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0.7;
                transition: opacity 0.2s ease;
            }

            .music-prompt-close:hover {
                opacity: 1;
                background: rgba(255, 255, 255, 0.1);
            }

            @keyframes slideIn {
                from {
                    transform: translateX(100%);
                    opacity: 0;
                }
                to {
                    transform: translateX(0);
                    opacity: 1;
                }
            }

            @keyframes pulse {
                0%, 100% { transform: scale(1); }
                50% { transform: scale(1.1); }
            }

            /* Skip notification styles */
            .skip-notification {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0.8);
                background: rgba(0, 0, 0, 0.9);
                color: white;
                padding: 20px 30px;
                border-radius: 10px;
                font-size: 16px;
                font-weight: 500;
                z-index: 10001;
                display: flex;
                align-items: center;
                gap: 15px;
                opacity: 0;
                transition: all 0.3s ease;
                max-width: 100%;
                text-align: center;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            }

            .skip-notification.show {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }

            .skip-icon {
                font-size: 24px;
            }

            .skip-text {
                flex: 1;
            }

            /* Fixed slot styles */
            .fixed-slot {
                position: relative;
                pointer-events: none !important;
            }

            .fixed-slot .timeline-video {
                position: relative;
                opacity: 0.9;
            }

            .fixed-label {
                position: absolute;
                bottom: 5px;
                left: 5px;
                background: rgba(0, 0, 0, 0.8);
                color: white;
                padding: 2px 8px;
                border-radius: 3px;
                font-size: 10px;
                font-weight: bold;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .fixed-card {
                background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
                color: white !important;
                cursor: not-allowed !important;
                opacity: 0.7;
            }

            .non-interactive {
                cursor: not-allowed !important;
            }

            .non-interactive:hover {
                transform: none !important;
                box-shadow: none !important;
            }

            /* Mobile responsive */
            @media (max-width: 768px) {
                #music-interaction-prompt {
                    top: 10px;
                    right: 10px;
                    left: 10px;
                    max-width: none;
                }
                
                .music-prompt-text {
                    font-size: 13px;
                }

                .skip-notification {
                    max-width: max-content;
                    padding: 15px 15px;
                    font-size: 14px;
                    width: 100%;
                }
            }

            /* Reduced motion support */
            @media (prefers-reduced-motion: reduce) {
                #music-interaction-prompt {
                    animation: none;
                }
                
                .music-prompt-icon {
                    animation: none;
                }

                .skip-notification {
                    transition: opacity 0.3s ease;
                }
            }


                    body{
            margin: 0;
            padding: 0;
        }
        .circuite-cretor-landing {
            margin: 0;
            background: linear-gradient(165deg, rgba(127, 182, 226, 1) 0%, rgba(112, 101, 175, 1) 50%, rgba(108, 47, 147, 1) 100%);
            color: #000000;
            height: 100vh;
            overflow: hidden;
            position: relative;
        }
        .circuite-cretor-wpr {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px;
            /* height: calc(100% - 80px); */
            height: 100vh;
            justify-content: center;
        }
        .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
        max-width: 1600px;
        }
        .circuite-cretor-wpr .content{
            align-items: center;
        }
        @media(min-width: 768px) {
        .content {
            flex-direction: row;
            justify-content: space-between;
        }
        }

        .instructions {
            max-width: 35%;
            width: 100%;
        }

        .instructions h1 {
        font-size:35px;
        margin-bottom: 20px;
        }

        .instructions ul {
            list-style: disc;
            padding: 0;
            padding-left: 35px;
            margin-bottom: 50px;
        }

        .instructions ul li {
            margin-bottom: 16px;
            font-size: 26px;
            font-weight: 500;
        }
        button.btn-primary {
            color: #fff;
            background-image: linear-gradient(90deg, #EACC61 0%, #D65D74 50%, #D65D74 51%, #EACC61 100%);
            background-size: 200%;
            background-position: 0 center;
            font-family: var(--secondaryFont);
            font-weight: 700;
            font-size: 17px;
            border-radius: 8px;
            padding: 15px 25px;
            border: 1px solid #d65d74;
            transition: var(--transition);
            display: inline-block;
            border: 0;
            cursor: pointer;
        }

        button.btn-primary:hover {
            background-position: 100% center;
        }

        .instructions .btn-holder {
        margin-top: 20px;
        }
    
        .app-preview {
            width: 100%;
            max-width: 60%;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            position: relative;
        }

        .app-preview video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        }

        .app-preview .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, #333, #555);
            color: white;
            font-size: 18px;
        }

        .stepTohow {
            font-size: 30px;
            font-weight: 600;
            margin: 0;
            margin-bottom: 30px;
        }

        .logo-img {
            max-width: 200px;
            height: auto;
            margin-bottom: 20px;
        }

        .circuit-background-music {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
        }

        .music-controls {
            background: rgba(0, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            color: white;
        }

        .music-toggle {
            background: none;
            border: 1px solid white;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            cursor: pointer;
            margin-right: 10px;
        }

        .music-volume {
            width: 80px;
        }

        .reponsive-humburg {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        @media only screen and (max-width: 1400px) {
            .stepTohow {
                 margin-bottom: 15px;
             }
             .logo-img {
                 max-width: 150px;
             }
             .instructions ul li {
                 margin-bottom: 10px;
                 font-size: 22px;
             }
        }
        @media only screen and (max-width: 1199px) {

            .stepTohow {
                 font-size: 25px;
                 margin-bottom: 15px;
                 line-height: 130%;
             }
             .instructions ul li {
                margin-bottom: 10px;
                font-size: 18px;
            }
        }
        @media only screen and (max-width: 1024px) {
            .instructions ul li {
                 margin-bottom: 5px;
            }
            .stepTohow {
            font-size: 22px;
            }
            .circuite-cretor-wpr {
                padding: 40px 20px;
            }
            .video-actions{
                display: block;
            }
            .video-overlay {
                opacity: 1 !important;
            }
            .reponsive-humburg .cross{
                display: block;
            }
            .mobile-add-btn {
                width: 26px;
                height: 26px;
                font-size: 18px;
            }
            .reponsive-humburg svg.cross {
                max-width: 25px;
                cursor: pointer;
            }
        }       
        @media(max-width: 768px) {
            .instructions {
                max-width: 100%;
            }
            .creator-logo {
                text-align: center;
            }

            .app-preview {
                max-width: 100%;
            }
            
            .content {
                gap: 20px;
            }
            
            .instructions h1 {
                font-size: 28px;
            }
            
            .instructions ul li {
                font-size: 16px;
                margin-bottom:8px;
            }
            .instructions ul {
                margin-bottom: 30px;
            }
        }
        @media(max-width: 767px) {
            .circuite-cretor-landing {
                height: 100vh;
                overflow: scroll;
                padding: 40px 20px;
                display: flex;
                align-items: flex-start;
            }
            .circuite-cretor-wpr {
                height: auto;
                display: block;
                padding: 0;
            }
            .logo-img.desktop-logo {
                display: none;
            }
            .creator-logo.mobile-logo {
                display: block;
                text-align: left;
                margin-bottom: 0;
            }
            .instructions ul li {
                font-size: 18px;
                margin-bottom: 10px;
            }
            .instructions ul {
                padding-left: 35px;
                margin-bottom: 20px;
            }
           .circuite-cretor-wpr .content {
                gap: 24px;
                flex-direction: column-reverse;
            }
            .logo-img {
                max-width: 120px;
            }
            .instructions ul {
                padding-left: 25px;
            }
            .app-preview {
                border-radius: 5px;
            }
            .stepTohow {
                margin-bottom: 10px;
            }
            .circuite-cretor-wpr .content button.btn-primary {
                font-size: 12px;
                border-radius: 8px;
                padding: 10px 15px;
            }
            .instructions ul li {
                font-size: 16px;
                margin-bottom: 6px;
            }
        }

        .circuit-video-creater .video-player {
      background: #000 !important;
 }

 .circuit-video-creater .header_inner,
 body:has(.circuit-video-creater) header.circuit-Creator-hdr {
      background: #000;
 }
 .circuit-video-creater .video-item {
    flex-direction: column;
}

 .circuit-video-creater .video-item .video-title-label {
    color: #000;
    font-size: 12px;
}
 body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-lhs img.logo-img {
      max-width: 370px;
      width: 100%;
 }

 body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-lhs {
      flex: 0 0 auto;
      flex-grow: 1;
      justify-content: center;
      display: flex;
      align-items: center;
 }

 body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-rhs {
      width: auto;
 }

 .circuit-video-creater div#video-sidebar ,
 .circuit-video-creater div#video-main-area {
      background: #000;
      border: 1px solid #fff;
      border-radius: 10px;
 }

 .circuit-video-creater #timeline-container,
 .circuit-video-creater #player-controls,
 .circuit-video-creater #player-options {
      background: #000;
 }

 .circuit-video-creater #video-duration-display {
      background: #000;
      color: #fff;
 }

 .circuit-video-creater .timeline-header h4 {
      color: #212936;
 }

 .circuit-video-creater #category-filter h4 {
      color: #fff;
 }

 .circuit-video-creater div#timeline-container {
      background: #93d3f5;
 }
 
 @media only screen and (max-width: 767px) {
      body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-lhs img.logo-img {
           max-width: 280px;
           width: 100%;
      }

      .circuit-video-creater div#dual-video-container {
    height: auto !important;
}

 .circuit-video-creater video#video-player-a {
    position: static !important;
    width: 100%;
    height: auto !important;
    aspect-ratio: 16/9;
    display: block !important;
} 

 }

 @media only screen and (max-width: 575px) {
      body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-lhs img.logo-img {
           max-width: 230px;
           width: 100%;
      }

 }

 @media only screen and (max-width: 420px) {
      body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-lhs img.logo-img {
           max-width: 200px;
           width: 100% ;
      }

 }

 @media only screen and (max-width: 370px) {
      body:has(.circuit-video-creater) header.circuit-Creator-hdr .hdr-lhs img.logo-img {
           max-width: 160px;
           width: 100%;
      }

 }

 body:has(.circuit-video-creater) .timeline-info {
    color: #fff;
}
body:has(.circuit-video-creater) .main-header .mb-viewer svg>rect {
    fill: #fff;
}

body:has(.circuit-video-creater) .reponsive-humburg svg line {
    stroke: #fff;
}