:root {
    --bg-pure: #000000;
    --bg-navbar-top: rgba(8, 8, 8, 0.25);  
    --bg-navbar-scroll: rgba(10, 10, 10, 0.85); 
    --bg-dropdown: rgba(12, 12, 12, 0.98);
    --text-active: #ffffff;
    --text-normal: #aaaaaa; 
    --border-cyber: rgba(255, 255, 255, 0.06); 
    --neon-laser: linear-gradient(90deg, transparent, #ffffff, #ffffff, #ffffff, transparent);
    --cubic-smooth: cubic-bezier(0.4, 0, 0.2, 1); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
    text-decoration: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html, body {
    scrollbar-width: none !important;
}

html, body {
    -ms-overflow-style: none !important;
}

body {
    background-color: var(--bg-pure);
    color: #e0e0e0;
    min-height: 100vh;
    display: block !important;
}

.netflix-bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-image: url('https://img1.pic.in.th/images/original.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2 !important; 
    opacity: 0.22;
}

.netflix-bg-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 1) 100%);
    z-index: -1 !important;
}

.navbar {
    width: 100%;
    height: 80px; 
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bg-navbar-scroll) !important;
    backdrop-filter: blur(35px) !important; 
    -webkit-backdrop-filter: blur(35px) !important;
    border-bottom: 1px solid var(--border-cyber);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; 
    padding: 0 60px; 
    z-index: 10000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95) !important;
    transition: background 0.4s ease, height 0.4s ease;
}

.navbar .logo {
    position: absolute !important;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center !important;
    cursor: pointer;
    z-index: 10002;
    flex: none !important;
}

.navbar .logo img {
    max-height: 44px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
    transition: transform 0.4s var(--cubic-smooth);
}

.navbar::after {
    display: none !important; 
}

.nav-links {
    display: flex !important;
    align-items: center !important;   
    justify-content: center !important;
    gap: 4px !important;            
    height: 100% !important;         
    flex: none !important;          
    white-space: nowrap !important; 
}

.nav-item-wrapper, .dropdown {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;         
    position: relative;
}

.nav-item {
    color: var(--text-normal) !important;
    font-size: 13.5px !important; 
    font-weight: 500 !important;
    padding: 10px 14px !important; 
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important; 
    letter-spacing: 0.5px !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0) !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    overflow: hidden; 
    white-space: nowrap !important; 
    transition: all 0.4s var(--cubic-smooth) !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.nav-item i {
    font-size: 14px !important; 
    color: var(--text-normal) !important;
    transition: all 0.4s var(--cubic-smooth) !important;
}

.nav-item:hover, .nav-item.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06) !important; 
    border-color: rgba(255, 255, 255, 0.12) !important; 
    box-shadow: 
        inset 0 1px 1px rgba(255, 255, 255, 0.1), 
        0 8px 24px rgba(0, 0, 0, 0.5) !important;
}

.nav-item:hover i, .nav-item.active i {
    color: #ffffff !important;
    transform: translateY(0) scale(1) !important; 
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4)) !important;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.nav-item:hover::before {
    left: 150%;
    transition: left 0.6s var(--cubic-smooth);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--neon-laser);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4); 
    transform: translateX(-50%);
    transition: width 0.4s var(--cubic-smooth);
    opacity: 0;
}

.nav-item:hover::after, .nav-item.active::after {
    width: 80%; 
    opacity: 1;
}

.arrow-icon {
    font-size: 9px !important;
    margin-left: -2px !important; 
    opacity: 0.4;
    transition: transform 0.4s var(--cubic-smooth) !important;
}

.dropdown:hover .arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: #ffffff; 
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 80px;                               
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--bg-dropdown);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    min-width: 180px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px; 
    z-index: 10005;
    padding: 10px 0;
    transition: opacity 0.35s var(--cubic-smooth), transform 0.35s var(--cubic-smooth), visibility 0.35s;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: #999999 !important;
    padding: 12px 24px !important;
    display: block !important;
    font-size: 13.5px !important;
    text-align: left !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    text-shadow: none;
    transition: all 0.25s ease !important;
}

.dropdown-content a:hover {
    color: var(--text-active) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    padding-left: 28px !important; 
    box-shadow: inset 4px 0 0 #ffffff; 
}

.dropdown-content a.active {
    color: #ffffff !important;
    background: rgba(224, 224, 224, 0.1) !important;
    font-weight: 600;
    box-shadow: inset 4px 0 0 #ffffff;
}

.vip-link:hover i, .vip-link.active i {
    color: #ffffff !important;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4)) !important;
}
.vip-link:hover::after, .vip-link.active::after {
    background: linear-gradient(90deg, transparent, #ffffff, transparent) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 992px) {
    .navbar {
        padding: 0 25px;
        height: 68px;
    }
    .nav-links, .navbar::after {
        display: none !important;
    }
    .navbar .logo {
    position: absolute !important;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center !important;
    cursor: pointer;
    z-index: 10002;
    flex: none !important;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#refillModal .modal-content {
    max-height: 90vh; 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 24px;
    width: 90%;
    max-width: 390px;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-overlay.closing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.modal-overlay.closing .modal-content {
    transform: translateY(15px) scale(0.95);
    transition: transform 0.25s ease-in;
}

.mk-btn-group button {
    transition: all 0.25s ease-in-out !important;
}

.dropdown-content.username {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(12, 12, 12, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95) !important;
    border-radius: 20px !important;
}

.dropdown-content.username div, 
.dropdown-content.username button {
    text-shadow: none !important;
}

.dropdown-content.username button {
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
    transition: all 0.2s ease-in-out !important;
}

.dropdown-content.username button:hover {
    filter: brightness(1.2) !important;
    transform: translateY(-1.5px) !important;
}

.btn-preview-foil {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 20px; 
    padding: 10px 18px;
    background: linear-gradient(135deg, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #fbf5b7 75%, 
        #aa771c 100%
    );
    background-size: 400% 400%;
    animation: goldFoilFlow 8s ease infinite; 
    color: #4b3505;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid #d4af37;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.ios-mobile-menu-trigger, .ios-menu-overlay {
    display: none !important;
}

    @media (max-width: 992px) {
        .ios-mobile-menu-trigger {
            display: flex !important;
            position: fixed;
            top: 18px; 
            right: 20px;
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 15px;
            cursor: pointer;
            z-index: 10000; 
            transition: background 0.2s;
            -webkit-tap-highlight-color: transparent;
        }

        .ios-menu-overlay {
            display: flex !important;
            flex-direction: column;
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 10, 10, 0.6) !important;
            backdrop-filter: blur(40px) !important;
            -webkit-backdrop-filter: blur(40px) !important;
            z-index: 200000; 
            opacity: 0;
            visibility: hidden;
            transform: translateY(-40px); 
            transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                        visibility 0.35s;
        }

        .ios-menu-overlay.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .ios-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 24px 10px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        .ios-menu-title {
            color: rgba(255,255,255,0.3);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.8px;
        }
        .ios-menu-close {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            color: #8e8e93;
            cursor: pointer;
        }

        .ios-menu-body {
            flex: 1;
            overflow-y: auto;
            padding: 20px 24px 40px 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ios-section-title {
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            font-weight: 500;
            text-align: left;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .ios-section-title i { font-size: 12px; color: rgba(255,255,255,0.4); }

        .ios-grid-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        
        .ios-grid-links a, .ios-menu-item {
            background: rgba(255, 255, 255, 0.02) !important;
            border: 1px solid rgba(255, 255, 255, 0.04) !important;
            color: #e5e5ea !important;
            padding: 12px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 400;
            text-align: center;
            transition: background 0.2s, color 0.2s;
            -webkit-tap-highlight-color: transparent;
        }
        .ios-grid-links a:active, .ios-menu-item:active {
            background: rgba(255, 255, 255, 0.08) !important;
            color: #ffffff !important;
        }

    .ios-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    margin-top: 10px;    
    margin-bottom: 10px;
    }
        .ios-menu-item i { font-size: 14px; }
        .main-link i { color: #ffffff; filter: drop-shadow(0 0 6px rgba(255,255,255,0.5)); }
        .highlight-link i { color: #ff453a; filter: drop-shadow(0 0 6px rgba(255,69,58,0.4)); }
        .vip-zone .ios-section-title { color: #ffffff; }
        .vip-zone .ios-section-title i { color: #ffffff; filter: drop-shadow(0 0 5px rgba(255,255,255,0.6)); }
        .vip-zone .ios-grid-links a {
            background: rgba(255, 255, 255, 0.06) !important;
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
        }

        .ios-user-profile-card {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.06) !important;
            padding: 14px 18px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
            -webkit-tap-highlight-color: transparent;
        }
        .profile-card-icon {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #ffffff; font-size: 14px;
        }
    }

    .mk-login-overlay {
    display: flex; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease; 
}

.mk-login-card {
    transform: scale(0.7) translateY(40px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mk-login-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mk-login-overlay.show .mk-login-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.mk-login-card {
    background-color: #2a2a2a; 
    background-image: url('https://member.ufa999999.com/images/login-backdrop.webp'); 
    background-size: cover;
    background-position: center;
    width: 90%;
    max-width: 420px;
    border-radius: 15px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.mk-login-header {
    text-align: center; 
}

.field-icon-img {
    width: 25px;      
    height: 25px;     
    object-fit: contain;
    display: block;
}

.eye-icon-img {
    width: 20px;      
    height: auto;
    cursor: pointer;
    opacity: 0.7;     
    transition: 0.3s;
}

.eye-icon-img:hover {
    opacity: 1;       
}

.mk-login-icon, .mk-login-eye {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-login-logo {
    max-width: 100%;    
    height: auto;        
    margin-bottom: 15px; 
    display: block;      
    margin-left: auto;   
    margin-right: auto;  
}

.mk-login-welcome {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}

.mk-login-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.mk-login-tab {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
}

.mk-login-tab.active {
    color: #fff;
    background: linear-gradient(to bottom, #333, #1a1a1a);
}

.mk-login-field {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.mk-login-field-inner {
    display: flex;
    align-items: center;
    padding: 8px 15px;
}

.mk-login-icon {
    width: 18px;      
    margin-right: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.mk-login-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mk-login-input-group label {
    font-size: 11px;
    color: #888;
    margin-bottom: 2px;
    display: block;
}

.mk-login-input-group input {
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    font-size: 14px;
    padding: 2px 0;
    height: auto;
}

.mk-login-eye {
    color: #666;
    cursor: pointer;
    margin-left: 10px;
}

.mk-login-btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #8c6a3b, #4e3a1d);
    border: 1px solid #d4af37;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.mk-login-btn-container {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45px; 
}

.mk-login-btn-submit {
    width: 100%;
    height: 45px;
    background-color: #ccaa00; 
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: block; 
}

.mk-login-loading-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45px; 
    background: transparent; 
}

.loading-gif-img {
    height: 200px; 
    width: auto;
    display: block;
}

.loading-gif-custom {
    height: 200px;      
    width: auto;       
    display: block;    
    margin: 0 auto;    
}

.mk-login-btn-submit:hover {
    filter: brightness(1.2);
}

.mk-login-extra {
    margin-top: 15px;
    text-align: right;
}

.mk-login-forgot {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.8;
}

.mk-login-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 18px;
    cursor: pointer;
}

.mk-login-status-msg {
    color: #ff4d4d;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .modal-content, 
    .mk-login-card {
        width: 92% !important;
        padding: 24px 16px 16px 16px !important;
        border-radius: 20px !important;
    }
    
    .modal-content h3,
    .mk-login-welcome {
        font-size: 17px !important;
        margin-bottom: 16px !important;
    }

    .mk-login-field-inner {
        padding: 6px 12px !important;
    }

    .mk-login-input-group input {
        font-size: 13.5px !important;
    }

    .mk-gold-luxury-btn,
    .mk-login-btn-submit,
    #loginBtnElement {
        height: 42px !important;
        font-size: 14px !important;
    }

    #slipFileNameDisplay {
        font-size: 11.5px !important;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .modal-content, 
    .mk-login-card {
        width: 85% !important;
        max-width: 380px !important;
        padding: 28px 20px !important;
    }
}

@media (max-height: 650px) {
    .modal-content, 
    .mk-login-card {
        padding: 20px 20px 12px 20px !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .modal-content style + *, 
    .mk-login-header {
        margin-bottom: 12px !important;
    }
    
    .mk-login-logo {
        max-height: 34px !important;
        margin-bottom: 10px !important;
    }
    
    .mk-login-tabs,
    .mk-login-welcome {
        margin-bottom: 12px !important;
    }
}

@media (min-width: 993px) {
    .navbar {
        justify-content: center !important;
        padding: 0 260px !important; 
    }

    .navbar .logo {
        position: absolute !important;
        left: 40px !important;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        justify-content: center !important;
        flex: 1 !important; 
        gap: 2px !important; 
    }

    @media (max-width: 1280px) {
        .nav-item {
            font-size: 12.5px !important;
            padding: 8px 10px !important;
        }
        .navbar {
            padding: 0 18px 0 160px !important;
        }
    }
}

@media (max-width: 992px) {
    .navbar .logo {
        position: absolute !important;
        left: 20px !important;
        top: 50%;
        transform: translateY(-50%);
    }
    .navbar .logo img {
        max-height: 36px !important;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none !important;
    }

    .ios-mobile-menu-trigger {
        display: flex !important;
        position: fixed !important;
        top: 22px !important; 
        right: 24px !important;
        width: 36px !important;
        height: 36px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-size: 16px !important;
        z-index: 10000 !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar {
        height: 72px !important;
        padding: 0 24px !important;
    }

    .navbar .logo {
        position: absolute !important;
        left: 24px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 64px !important;
    }
    .ios-mobile-menu-trigger {
        top: 14px !important;
        right: 16px !important;
    }
    .navbar .logo {
        left: 16px !important;
    }
    .navbar .logo img {
        max-height: 32px !important;
    }
}