:root {
    --dedo-yellow: #fdc400;
    --dedo-yellow-hover: #e5b200;
    --dedo-black: #1b1f2a;
    --dedo-dark: #242936;
    --dedo-gray: #393939;
    --dedo-light: #f5f5f5;
    --dedo-border: #e2e2e2;
}

html{
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dedo-gray);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    width: 100vw;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--dedo-black); }

/* ========== NAVBAR ========== */
.navbar {
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.navbar-brand img { height: 44px; }
.navbar-brand span {
    font-size: 24px;
    font-weight: 800;
    color: var(--dedo-black);
    letter-spacing: -0.5px;
}
.navbar-brand small {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-link {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--dedo-gray) !important;
    padding: 8px 18px !important;
    transition: color .2s;
}
.nav-link:hover { color: var(--dedo-black) !important; }
.nav-cta {
    background: var(--dedo-yellow) !important;
    color: var(--dedo-black) !important;
    border-radius: 6px;
    padding: 10px 28px !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    transition: background .2s, transform .15s;
}
.nav-cta:hover {
    background: var(--dedo-black) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* ========== BUTTONS ========== */
.btn-dedo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dedo-yellow);
    color: var(--dedo-black);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 38px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s, color .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
}
.btn-dedo:hover {
    background: var(--dedo-black);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-dedo-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 38px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 6px;
    cursor: pointer;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none;
}
.btn-dedo-outline:hover {
    background: #fff;
    color: var(--dedo-black);
    border-color: #fff;
}

/* ========== SECTION COMMONS ========== */
.section-padding { padding: 100px 0; }
.section-light { background: #fff; }
.section-gray { background: var(--dedo-light); }
.section-dark { background: var(--dedo-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dedo-yellow);
    margin-bottom: 12px;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.65); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dedo-dark);
    color: #fff;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    /*background: url('https://www.dedods.com/wp-content/uploads/2019/07/1_16-copia-migli-tagli-copia.jpg') center/cover no-repeat;*/
    opacity: .4;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27,31,42,.85) 0%, rgba(27,31,42,.5) 55%, rgba(27,31,42,.25) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: var(--dedo-yellow);
    color: var(--dedo-black);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 32px;
}
.hero h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 28px;
    max-width: 600px;
}
.hero h1 .highlight { color: var(--dedo-yellow); }
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.hero-desc strong { color: #fff; }
.hero-buttons { margin-top: 36px; }

/* Hero highlights strip */
.hero-highlights {
    margin-top: 56px;
    display: flex;
    gap: 40px;
}
.hero-highlights .hh-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-highlights .hh-icon {
    width: 44px;
    height: 44px;
    background: rgba(253,196,0,.15);
    border: 1px solid rgba(253,196,0,.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dedo-yellow);
    font-size: 18px;
}
.hero-highlights .hh-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    line-height: 1.3;
}
.hero-highlights .hh-text strong { color: #fff; font-weight: 700; }

/* ========== URGENCY BAR ========== */
.urgency-bar {
    background: var(--dedo-yellow);
    color: var(--dedo-black);
    text-align: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
}
.urgency-bar strong { font-weight: 800; }

/* ========== PROBLEM SECTION ========== */
.problem-text p {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 18px;
}
.solution-card {
    background: #fff;
    border: 1px solid var(--dedo-border);
    border-left: 5px solid var(--dedo-yellow);
    border-radius: 6px;
    padding: 28px 32px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow .3s, transform .2s;
}
.solution-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.solution-card .icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--dedo-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dedo-black);
}
.solution-card p { margin: 0; font-size: 16px; line-height: 1.7; }

/* Problem section image */
.problem-image {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1em;
    background: transparent;
    /*box-shadow: 8px 8px 24px rgba(0,0,0,.1);*/
}
.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.problem-image-placeholder {
    background: linear-gradient(135deg, #e8e8e8, #d4d4d4);
    border-radius: 10px;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
}

/* ========== STEP CARDS ========== */
.step-card {
    background: #fff;
    border: 1px solid var(--dedo-border);
    border-radius: 8px;
    padding: 40px 32px;
    height: 100%;
    transition: box-shadow .3s, transform .2s;
}
.step-card:hover {
    box-shadow: 6px 6px 24px rgba(0,0,0,.1);
    transform: translateY(-5px);
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--dedo-yellow);
    color: var(--dedo-black);
    font-size: 24px;
    font-weight: 800;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.step-card h3 { font-size: 21px; margin-bottom: 14px; }
.step-card p { font-size: 15px; color: #666; line-height: 1.75; margin: 0; }

/* ========== CORSO SECTION ========== */
.corso-time-badge {
    display: inline-block;
    background: rgba(253,196,0,.15);
    border: 1px solid rgba(253,196,0,.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: var(--dedo-yellow);
    margin-bottom: 32px;
}
.corso-list { list-style: none; padding: 0; margin: 0; }
.corso-list li {
    display: flex;
    /*align-items: flex-start;*/
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
}
.corso-list li:last-child { border-bottom: none; }
.corso-list .check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--dedo-yellow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dedo-black);
    font-size: 15px;
    margin-top: 2px;
}
.video-placeholder {
    background: rgba(255,255,255,.04);
    border: 2px dashed rgba(255,255,255,.12);
    border-radius: 10px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    font-size: 15px;
    gap: 10px;
}
.video-placeholder i { font-size: 56px; color: var(--dedo-yellow); opacity: .6; }

/* ========== BONUS INAIL ========== */
.bonus-card {
    background: #fff;
    border: 1px solid var(--dedo-border);
    border-radius: 8px;
    padding: 44px 28px;
    text-align: center;
    transition: box-shadow .3s, transform .2s;
}
.bonus-card:hover {
    box-shadow: 6px 6px 24px rgba(0,0,0,.1);
    transform: translateY(-4px);
}
.bonus-card .discount {
    font-size: 52px;
    font-weight: 800;
    color: var(--dedo-yellow);
    line-height: 1;
    margin-bottom: 10px;
}
.bonus-card .label {
    font-size: 15px;
    color: #888;
    font-weight: 600;
}

/* ========== TRAINER ========== */
.trainer-photo {
    background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
    border-radius: 10px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    overflow: hidden;
    box-shadow: 8px 8px 24px rgba(0,0,0,.12);
}
.trainer-stats .stat-item { text-align: center; padding: 16px 8px; }
.trainer-stats .stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--dedo-yellow);
    line-height: 1;
}
.trainer-stats .stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.trainer-bio-text {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
}

/* ========== LOGHI ========== */
.loghi-section {
    background: var(--dedo-light);
    border-top: 1px solid var(--dedo-border);
    border-bottom: 1px solid var(--dedo-border);
}
.loghi-grid {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 52px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.loghi-grid .logo-client {
    /*height: 40px;*/
    height: 7em;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .5;
    transition: filter .3s, opacity .3s;
    margin-left: auto;
    margin-right: auto;
}
.loghi-grid .logo-client:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.loghibio_cont{
    border-top:1px solid var(--dedo-border);
    justify-content: center;
}

.loghibio{
    height:4em;
    object-fit:contain;
    opacity:.7;
}

@media screen and (max-width: 991px){
    .loghi-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: scroll;
      padding-bottom: 10px;
    }
    .loghibio{
        height: 3em;
    }
}
/* ============== VIDEO ============== */

.video-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.video-grid.g-5{
  gap: 2em;
}

@media screen and (max-width: 991px){

    .video-grid{
        grid-template-columns: 1fr;
    }
}

/* ========== BANNER GIALLO ========== */
.yellow-banner {
    background: var(--dedo-yellow);
    color: var(--dedo-black);
    padding: 72px 0;
    text-align: center;
}
.yellow-banner h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}
.yellow-banner p {
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ========== CTA FINALE + FORM ========== */
.cta-section { position: relative; overflow: hidden; }
.cta-section .parallax-bg {
    position: absolute;
    inset: 0;
    background: url('https://www.dedods.com/wp-content/uploads/2019/07/1_21-copia-2-black.jpg') center/cover no-repeat;
    opacity: .25;
}
.cta-section .container { position: relative; z-index: 2; }
.form-card {
    background: #fff;
    border-radius: 10px;
    padding: 44px 40px;
    color: var(--dedo-gray);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--dedo-black);
}
.form-card .form-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 28px;
}
.form-card .form-control {
    border: 2px solid #eee;
    border-radius: 6px;
    padding: 13px 18px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color .2s, box-shadow .2s;
}
.form-card .form-control:focus {
    border-color: var(--dedo-yellow);
    box-shadow: 0 0 0 3px rgba(253,196,0,.12);
}
.form-card .form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dedo-gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.form-card .btn-dedo { width: 100%; padding: 16px; font-size: 15px; }
.form-privacy {
    font-size: 12px;
    color: #aaa;
    margin-top: 16px;
    text-align: center;
}
.form-privacy a { color: #888; text-decoration: underline; }

.cta-text-side h2 { color: #fff; font-size: 40px; line-height: 1.2; }
.cta-text-side p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.85; }
.cta-text-side .guarantee { color: rgba(255,255,255,.4); font-size: 14px; }

.choice {
  line-height: 1em;
  display: flex;
  margin-top: 16px;
}
.form-privacy {
  display: inline-block;
  margin-top: 0;
  margin-left: 5px;
  text-align: left;
}

/* ========== FOOTER ========== */
footer {
    background: #151821;
    color: rgba(255,255,255,.3);
    text-align: center;
    padding: 32px 24px;
    font-size: 13px;
}
footer a { color: var(--dedo-yellow); text-decoration: none; }

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== MOBILE STICKY CTA BAR ========== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
    border-top: 3px solid var(--dedo-yellow);
}
.mobile-sticky-cta .btn-dedo {
    width: 100%;
    padding: 14px;
    font-size: 14px;
    border-radius: 8px;
}

/* ========== MOBILE HERO HIGHLIGHTS ========== */
.hero-highlights-mobile {
    display: none;
}

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 991px) {
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 30px; }
    .hero-highlights { flex-direction: column; gap: 16px; }
    .section-padding { padding: 60px 0; }
    .cta-text-side h2 { font-size: 30px; }
    .yellow-banner h2 { font-size: 28px; }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 767px) {

    /* Navbar mobile */
    .navbar { padding: 10px 0; }
    .navbar-brand span { font-size: 20px; }
    .navbar .container {
        flex-wrap: wrap;
        overflow: visible;
    }
    .navbar-collapse {
        background: #fff;
        padding: 12px 0 8px;
        margin-top: 8px;
        border-top: 1px solid var(--dedo-border);
    }
    .navbar-nav {
        align-items: stretch !important;
        gap: 0 !important;
    }
    .navbar-nav .nav-item {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    .navbar-nav .nav-link {
        padding: 12px 0 !important;
        font-size: 14px;
        display: block;
    }
    .navbar-nav .nav-cta {
        display: block !important;
        text-align: center;
        margin: 8px 0 4px !important;
        padding: 14px !important;
        border-radius: 6px;
        font-size: 13px !important;
        letter-spacing: .5px !important;
    }

    /* Hero mobile — compatto e diretto */
    .hero {
        min-height: auto;
        padding: 80px 0 36px;
    }
    .hero::after {
        background: linear-gradient(180deg, rgba(27,31,42,.8) 0%, rgba(27,31,42,.65) 100%);
    }
    .hero-badge {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
        max-width: 100%;
    }
    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
        max-width: 100%;
    }
    .hero-buttons {
        margin-top: 24px;
        flex-direction: column;
    }
    .hero-buttons .btn-dedo {
        width: 100%;
        padding: 16px;
        font-size: 15px;
    }
    .hero-buttons .btn-dedo-outline {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }

    /* Hero highlights — versione mobile compatta */
    .hero-highlights-mobile {
        display: flex;
        gap: 0;
        margin-top: 28px;
        border-top: 1px solid rgba(255,255,255,.12);
        padding-top: 20px;
    }
    .hero-highlights-mobile .hhm-item {
        flex: 1;
        text-align: center;
        padding: 0 4px;
    }
    .hero-highlights-mobile .hhm-item i {
        font-size: 22px;
        color: var(--dedo-yellow);
        display: block;
        margin-bottom: 6px;
    }
    .hero-highlights-mobile .hhm-val {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
        display: block;
        line-height: 1.2;
    }
    .hero-highlights-mobile .hhm-label {
        font-size: 11px;
        color: rgba(255,255,255,.55);
        display: block;
        margin-top: 2px;
    }

    /* Urgency bar mobile */
    .urgency-bar {
        font-size: 13px;
        padding: 12px 16px;
        line-height: 1.5;
    }

    /* Sezioni — padding ridotto */
    .section-padding { padding: 48px 0; }

    /* Section titles mobile */
    .section-label { font-size: 11px; letter-spacing: 2px; margin-bottom: 8px; }
    .section-title { font-size: 24px; line-height: 1.25; margin-bottom: 14px; }
    .section-subtitle { font-size: 15px; line-height: 1.7; }

    /* Problem section mobile */
    .problem-text p { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
    .solution-card {
        padding: 18px 16px;
        gap: 14px;
    }
    .solution-card .icon-box {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 6px;
    }
    .solution-card p { font-size: 14px; }

    /* Step cards mobile — orizzontale compatto */
    .step-card {
        padding: 24px 20px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        flex-wrap: wrap;
        align-items: center;
    }
    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
        margin-bottom: 0;
        border-radius: 6px;
    }
    .step-card h3 { font-size: 17px; margin-bottom: 6px; width: calc(100% - 60px);}
    .step-card p { font-size: 14px; line-height: 1.6; }

    /* Corso mobile */
    .corso-time-badge {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    .corso-list li {
        font-size: 14px;
        padding: 12px 0;
        gap: 12px;
    }
    .corso-list .check-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 12px;
    }
    .video-placeholder {
        margin-top: 24px;
    }
    .video-placeholder i { font-size: 40px; }

    /* Bonus cards mobile — riga orizzontale */
    .bonus-card {
        padding: 24px 12px;
    }
    .bonus-card .discount {
        /*font-size: 36px;*/
        font-size: 28px;
        margin-bottom: 4px;
    }
    .bonus-card .label { font-size: 12px; }

    /* Trainer mobile */
    .trainer-photo {
        aspect-ratio: 16/10;
        max-height: 220px;
    }
    .trainer-bio-text { font-size: 14px; line-height: 1.75; }
    .trainer-stats .stat-item { padding: 10px 4px; }
    .trainer-stats .stat-num { font-size: 26px; }
    .trainer-stats .stat-label { font-size: 11px; }

    /* Loghi mobile */
    .loghi-grid { gap: 16px 24px; }
    .loghi-grid .logo-client {
        /*height: 28px;*/
        height: 5em;
    }

    /* Yellow banner mobile */
    .yellow-banner { padding: 40px 0; }
    .yellow-banner h2 { font-size: 22px; margin-bottom: 12px; }
    .yellow-banner p { font-size: 15px; margin-bottom: 20px; }
    .yellow-banner .btn-dedo { width: 100%; padding: 14px; font-size: 14px; }

    /* CTA section mobile */
    .cta-text-side h2 { font-size: 24px; }
    .cta-text-side p { font-size: 15px; }

    /* Form mobile */
    .form-card {
        padding: 24px 20px;
        border-radius: 10px;
    }
    .form-card h3 { font-size: 20px; }
    .form-card .form-control {
        padding: 14px 16px;
        font-size: 16px; /* previene zoom su iOS */
    }
    .form-card .form-label { font-size: 12px; }
    .form-card .btn-dedo {
        padding: 16px;
        font-size: 15px;
    }

    /* Sticky CTA bar — visibile su mobile */
    .mobile-sticky-cta { display: block; }

    /* Spazio extra in fondo per la sticky bar */
    footer { padding-bottom: 80px; }

    /* CTA finale benefit list — più compatta */
    .cta-section .d-flex.flex-column.gap-3 { gap: 12px !important; }
    .cta-section .d-flex.flex-column .d-flex span { font-size: 13px !important; }
    .cta-section .d-flex.flex-column .d-flex > div:first-child {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px;
    }
}