/* ========== SQTLOT Custom Styles ========== */
/* 1:1 replica of sdtanyue.com visual design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: '微软雅黑','Microsoft YaHei', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Override Kadence site content */
.site .site-content,
.site.content-width-fullwidth .site-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-width: 100% !important;
}

.content-area .site-main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== SECTION COMMON ===== */
.sqtlot-section {
    width: 100%;
}

.sqtlot-section .container {
    max-width: 1200px;
    margin: 0 auto; text-align:center; justify-items:center;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    margin-bottom: 15px;
}

.section-title .subtitle {
    font-size: 14px;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
}

.hero-banner .hero-bg {
    position: absolute;
    top: 0;
    left: 50%; transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 50%; transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-banner .hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-banner .hero-content .hero-lines {
    font-size: 16px;
    line-height: 2.2;
    font-weight: 300;
    opacity: 0.9;
}

/* ===== FOCUS SECTION ===== */
.focus-section {
    padding: 50px 0;
    text-align: center;
    background: #fff;
}

.focus-section .focus-text {
    max-width: 900px;
    margin: 0 auto; text-align:center; justify-items:center;
    font-size: 15px;
    color: #666;
    line-height: 2;
}

/* ===== PRODUCT CATEGORIES ===== */
.products-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-card .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-card .card-body {
    padding: 25px;
}

.product-card .card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.product-card .card-body p {
    font-size: 15px;
    color: #888;
    line-height: 1.8;
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 60px 0;
    background: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.solution-card:hover {
    background: #1a73e8;
    color: #fff;
}

.solution-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0fe;
    border-radius: 50%;
    font-size: 28px;
}

.solution-card:hover .icon {
    background: rgba(255,255,255,0.2);
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.solution-card:hover p {
    color: rgba(255,255,255,0.8);
}

/* ===== ABOUT SECTION (Dark Blue) ===== */
.about-section {
    padding: 60px 0;
    background: #043491;
    color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-grid .about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-grid .about-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-grid .about-text .en-title {
    font-size: 13px;
    opacity: 0.6;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-grid .about-text p {
    font-size: 15px;
    line-height: 2;
    opacity: 0.9;
    margin-bottom: 25px;
}

.about-grid .about-text .cert-badges {
    display: flex;
    gap: 15px;
}

.about-grid .about-text .cert-badges img {
    height: 40px;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: #f0f4ff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item .number {
    font-size: 42px;
    font-weight: 900;
    color: #1a73e8;
}

.stat-item .label {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

/* ===== SPECIAL SCENARIOS ===== */
.scenarios-section {
    padding: 60px 0;
    background: #fff;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.scenario-card {
    text-align: center;
    padding: 30px 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    color: #fff;
    transition: transform 0.3s;
}

.scenario-card:hover {
    transform: translateY(-5px);
}

.scenario-card .sc-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.scenario-card h3 {
    font-size: 16px;
    font-weight: 500;
}

/* ===== NEWS SECTION ===== */
.news-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.news-card .news-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .news-body {
    padding: 20px;
}

.news-card .news-date {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.news-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* ===== CONTACT + FOOTER SECTION ===== */
.contact-section {
    padding: 60px 0 30px;
    background: #1a1a2e;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info .info-item {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.contact-info .info-item strong {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.5;
}

.footer-copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 12px;
    font-size: 13px;
}

.footer-copyright a:hover {
    color: #fff;
}

/* Hide Kadence theme footer and header */
.site-footer {
    display: none !important;
}
.site-header {
    display: none !important;
}

/* ===== CUSTOM HEADER ===== */
.sdt-header {
    position: fixed;
    top: 0;
    left: 50%; transform: translateX(-50%);
    width: 100%;
    height: 108px;
    background: #fff;
    z-index: 99999;
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.sdt-header-inner {
    max-width: 1200px;
    margin: 0 auto; text-align:center; justify-items:center;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sdt-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sdt-header .logo img {
    height: 48px;
    width: auto;
}
.sdt-header .logo span {
    font-size: 22px;
    font-weight: 700;
    color: #043491;
    letter-spacing: 2px;
}
.sdt-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}
.sdt-nav > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.sdt-nav > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: color .3s;
}
.sdt-nav > li > a::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 3px;
    background: #043491;
    opacity: 0;
    transition: opacity .3s;
}
.sdt-nav > li > a:hover::after,
.sdt-nav > li:hover > a::after { opacity: 1; }
.sdt-nav > li > a:hover,
.sdt-nav > li:hover > a { color: #043491; }
.sdt-nav .sdt-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%; transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #043491;
    padding: 20px 25px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    border-radius: 0 0 6px 6px;
}
.sdt-nav > li:hover .sdt-submenu { display: flex; }
.sdt-nav .sdt-submenu.solutions-sub {
    flex-direction: column;
    min-width: 160px;
}
.sdt-nav .sdt-submenu .submenu-col {
    flex: 1;
    padding: 0;
    min-width: 160px;
}
.sdt-nav .sdt-submenu .submenu-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #043491;
    margin: 0 0 8px;
    padding: 0 0 5px;
    border-bottom: 1px solid #eee;
    text-transform: none;
    letter-spacing: normal;
}
.sdt-nav .sdt-submenu a {
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
    border-radius: 0;
}
.sdt-nav .sdt-submenu a:hover {
    background: none;
    color: #043491;
    padding-left: 5px;
}
.sdt-nav .sdt-submenu.solutions-sub a {
    padding: 6px 0;
}

body.admin-bar .sdt-header { top: 32px; }

/* ===== CUSTOM FOOTER ===== */
.sdt-footer-contact {
    background: #043491;
    color: rgba(255,255,255,.85);
    padding: 0;
    background-image: url('sdtanyue-assets/images/footer-bg.jpg');
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center top;
}
.sdt-footer-contact a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .3s;
}
.sdt-footer-contact a:hover { color: #fff; }
.sdt-footer-contact .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto; text-align:center; justify-items:center;
    padding: 50px 20px 30px;
}
.sdt-footer-contact .footer-brand {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.sdt-footer-contact .footer-logo-img {
    display: block;
    max-width: 180px;
    height: auto;
    margin: 0 auto 10px;
}
.sdt-footer-contact .footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    opacity: .85;
}
.sdt-footer-contact .footer-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}
.sdt-footer-contact .footer-title::after {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,.3);
}
.sdt-footer-contact .footer-item {
    display: flex;
    align-items: center; justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.sdt-footer-contact .footer-item .fi {
    color: rgba(255,255,255,.8);
    font-size: 13px;
    width: 18px;
    flex-shrink: 0;
    text-align: center;
}
.sdt-footer-contact .footer-item span { color: rgba(255,255,255,.8); }
.sdt-footer-contact .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 18px 20px;
    text-align: center;
    font-size: 13px;
}
.sdt-footer-contact .footer-bottom-inner {
    max-width: 1140px;
    margin: 0 auto; text-align:center; justify-items:center;
}

/* Hide Kadence footer completely */
#colophon { display: none !important; }
.site-footer .footer-html-inner { display: none !important; }
footer.site-footer { display: none !important; }

/* Hide Kadence mobile menu toggle */
#mobile-toggle { display: none !important; }

body.single #mobile-toggle, body.single-post #mobile-toggle { display: block !important; }
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .products-grid,
    .solutions-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-banner .hero-content h1 {
        font-size: 32px;
    }
}


/* ===== SDT-MEGA DROPDOWN (replaces old sdt-submenu) ===== */
.sdt-mega {
    position: absolute;
    top: 100%;
    left: 50%; transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    border-radius: 0 0 8px 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
    z-index: 9999;
    text-align: left;
}
.sdt-nav > li:hover .sdt-mega {
    opacity: 1;
    visibility: visible;
}
.sdt-mega a {
    display: block;
    padding: 8px 25px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all .2s;
}
.sdt-mega a:hover {
    background: #f0f4ff;
    color: #043491;
}
.sdt-mega .group-title {
    padding: 8px 25px 4px;
    font-size: 13px;
    color: #043491;
    font-weight: 700;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

/* ===== FLOATING CONTACT BAR ===== */
.sdt-float-bar {
    position: fixed;
    right: 0;
    top: 500px;
    z-index: 10001;
    width: 57px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sdt-float-bar li {
    position: relative;
    list-style: none;
    float: left;
    height: 54px;
    width: 57px;
    background-color: #DA241D;
    cursor: pointer;
}
.sdt-float-bar li:hover .icons {
    width: auto;
    background-color: #DA241D;
}
.sdt-float-bar .icons {
    height: 54px;
    width: 57px;
    float: left;
    position: absolute;
    right: 0;
    transition: .3s;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    display: block;
}
.sdt-float-bar i.icon {
    display: inline-block;
    width: 57px;
    height: 54px;
    text-align: center;
    line-height: 54px;
    vertical-align: top;
}
.sdt-float-bar i.icon svg {
    display: inline-block;
    vertical-align: middle;
}
.sdt-float-bar span.title {
    padding-right: 10px;
    color: #fff;
    position: relative;
    font-size: 16px;
    top: -20px;
    font-family: "Microsoft YaHei", sans-serif;
    white-space: nowrap;
}
.sdt-float-bar .top-icon {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 54px;
    overflow: visible;
}
.sdt-float-bar .top-icon i.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    line-height: 1;
}
.sdt-float-bar .top-label {
    display: block;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    margin-top: 3px;
    text-align: center;
    font-family: "Microsoft YaHei", sans-serif;
}
.sdt-float-bar .qr {
    position: absolute;
    left: -215px;
    top: -48px;
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    display: none;
    z-index: 10002;
}
.sdt-float-bar .qr img {
    width: 134px;
    height: 134px;
    display: block;
}
.sdt-float-bar li:hover .qr {
    display: block !important;
}


/* ===== SINGLE POST CLEANUP ===== */
.single .entry-hero, .single .entry-header .entry-meta,
.single .entry-taxonomies, .single .entry-tags,
.single .post-navigation, .single .comments-area,
.single .comment-respond, #respond,
.single .entry-related, .similar-posts,
.single .kadence-related-posts,
.single nav.post-navigation,
.single .site-footer .footer-widget-area {
    display: none !important;
}


/* ============================================
   MOBILE RESPONSIVE — added 2026-07-22
   ============================================ */

/* --- Hamburger button --- */
/* (orphan rule removed 2026-08-07) */


/* ===== PRODUCT SPEC TABLE — custom solar panel products ===== */
/* Desktop: clean professional table */
.product-specs {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 13px;
    line-height: 1.5;
}
.product-specs th {
    background: #043491;
    color: #fff;
    padding: 10px 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid #3a6ab5;
}
.product-specs td {
    padding: 9px 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 13px;
}
.product-specs tr:nth-child(even) td {
    background: #f5f7fa;
}
.product-specs tr:hover td {
    background: #eef2fa;
}
.product-specs td:first-child {
    font-weight: 700;
    color: #043491;
    white-space: nowrap;
}

/* Mobile: rows become spec cards */
@media (max-width: 767px) {
    .product-specs,
    .product-specs thead,
    .product-specs tbody,
    .product-specs tr,
    .product-specs th,
    .product-specs td {
        display: block;
    }
    .product-specs thead {
        display: none !important;
    }
    .product-specs tbody {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .product-specs tr {
        background: #fff;
        border: 1px solid #d0d0d0;
        border-radius: 10px;
        padding: 14px 16px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.07);
    }
    .product-specs tr:nth-child(even) td {
        background: transparent;
    }
    .product-specs tr:hover td {
        background: transparent;
    }
    .product-specs td {
        border: none;
        padding: 5px 0;
        text-align: left;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed #eee;
    }
    .product-specs td:last-child {
        border-bottom: none;
    }
    /* Model name as card title */
    .product-specs td:first-child {
        font-weight: 700;
        color: #043491;
        font-size: 16px;
        padding: 6px 0 10px 0;
        border-bottom: 2px solid #043491;
        margin-bottom: 8px;
        display: flex;
        justify-content: center;
        text-align: center;
    }
    /* Label before value */
    .product-specs td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: 600;
        color: #888;
        font-size: 12px;
        flex-shrink: 0;
    }
    .product-specs td:not(:first-child) {
        justify-content: space-between;
    }

    /* Glass spec table - transposed, show as rows with model-grade cards */
    .glass-specs td:first-child {
        font-weight: 700;
        color: #043491;
        font-size: 13px;
        padding: 5px 0;
        border-bottom: 1px dashed #eee;
        margin-bottom: 0;
        display: flex;
        justify-content: flex-start;
        text-align: left;
        min-width: 70px;
        flex-shrink: 0;
    }
    .glass-specs tr {
        padding: 10px 14px;
    }
}

/* Scrollable wrapper for desktop too — keep consistent */
.product-specs + br,
.product-specs + p {
    clear: both;
}

/* ===== Nav menu bold (ZH + EN all pages) ===== */
.sdt-nav > li > a { font-weight:700 !important; }
.sdt-nav.open > li > a { font-weight:700 !important; }
/* ===== Hide Kadence default menus (templates ship own header/nav) ===== */
.main-navigation, .primary-menu-container, .mobile-navigation, .drawer-navigation { display:none !important; }

/* ========== 2026-08-06: Fix English long-word overflow in feature-grid cards ========== */
/* English long words (e.g. Monocrystalline) stretch grid cards beyond viewport on mobile.
   Allow cards to shrink and break words. Applies to all product page feature grids. */
div[style*="display:grid"] > div[style*="background:#f9fafc"] {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Mobile: float-bar becomes bottom bar (2026-08-07) */
@media (max-width: 767px) {
    .sdt-float-bar {
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 52px;
        display: -webkit-flex;
        display: flex;
    }
    .sdt-float-bar li {
        -webkit-flex: 1;
        flex: 1;
        width: auto;
        height: 52px;
        float: none;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
    .sdt-float-bar li .icons {
        position: static !important;
        width: auto;
        height: 52px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        overflow: visible;
    }
    .sdt-float-bar li .qr { display: none; }
    .sdt-float-bar li:hover .qr, .sdt-float-bar li:active .qr { display: block !important; }
    .sdt-float-bar li.wa .qr { left: 100% !important; top: -58px !important; }
    .sdt-float-bar i.icon { width: auto !important; height: auto !important; }
    .sdt-float-bar span.title { display: block; font-size: 12px; }
    .sdt-float-bar .top-icon { width: auto !important; height: auto !important; }
    .sdt-float-bar .top-icon i.icon { width: auto !important; height: auto !important; }
    html body { padding-bottom: 52px !important; }
}
