body .is-prod-menu-wrapper .is-prod-menu-open[type="button"]  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 35px 50px !important;
    border: 0;
    background: #E30110 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.is-prod-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: all 0.25s ease;
}

.is-prod-menu-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: min(1180px, 94vw);
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

body.is-prod-menu-active {
    overflow: hidden;
}

body.is-prod-menu-active .is-prod-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.is-prod-menu-active .is-prod-menu-offcanvas {
    transform: translateX(0);
}

.is-prod-menu-header {
    height: 72px;
    padding: 0 28px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.is-prod-menu-header strong {
    font-size: 22px;
    font-weight: 700;
}

.is-prod-menu-close {
    border: 0;
    background: transparent !important;
    color: #111;
    font-size: 16px;
    cursor: pointer;
}

.is-prod-menu-content {
    display: grid;
    grid-template-columns: 330px 1fr;
    height: calc(100vh - 72px);
}

.is-prod-menu-top {
    padding: 24px 16px;
    border-right: 1px solid #eee;
    overflow-y: auto;
}

.is-prod-menu-top-item {
    width: 100%;
    min-height: 78px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #f5f5f5;
    color: #111;
    display: grid;
    grid-template-columns: 1fr 58px 18px;
    align-items: center;
    gap: 12px;
    text-align: left !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.is-prod-menu-top-item:hover,
.is-prod-menu-top-item.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.is-prod-menu-top-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    text-align:left !important;
}

.is-prod-menu-top-image {
    width: 58px;
    height: 48px;
    display: block;
}

.is-prod-menu-arrow {
    font-size: 24px;
    line-height: 1;
}

.is-prod-menu-panels {
    overflow-y: auto;
    padding: 32px 36px;
}

.is-prod-menu-panel {
    display: none;
}

.is-prod-menu-panel.is-active {
    display: block;
}

.is-prod-menu-view-all {
    display: inline-block;
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 700;
    color: #E30110;
    text-decoration: none;
}

.is-prod-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 44px;
}

.is-prod-menu-column {
    min-width: 0;
}

.is-prod-menu-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.is-prod-menu-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.is-prod-menu-column li {
    margin-bottom: 7px;
}

.is-prod-menu-column a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.35;
}

.is-prod-menu-column a:hover {
    color: #0057d8;
}

.is-prod-menu-empty {
    color: #777;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .is-prod-menu-offcanvas {
        width: 100vw;
        overflow-y: auto;
    }

    .is-prod-menu-content {
        display: block;
        height: auto;
    }

    .is-prod-menu-top {
        padding: 18px;
        border-right: 0;
        overflow: visible;
    }

    .is-prod-menu-top-item {
        grid-template-columns: 1fr 54px 20px;
    }

    .is-prod-menu-panels {
        display: none;
    }

    .is-prod-menu-mobile-panel {
        display: none;
        padding: 18px;
        margin: -4px 0 12px;
        border: 1px solid #eee;
        border-radius: 8px;
        background: #fff;
    }

    .is-prod-menu-mobile-panel.is-active {
        display: block;
    }

    .is-prod-menu-mobile-panel .is-prod-menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (min-width: 1025px) {
    .is-prod-menu-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .is-prod-menu-header {
        height: 64px;
        padding: 0 18px;
    }

    .is-prod-menu-header strong {
        font-size: 20px;
    }

    .is-prod-menu-top-title {
        font-size: 15px;
    }

    .is-prod-menu-top-item {
        min-height: 68px;
    }
}