.sticky-wms-menu {
    --sticky-wms-red: #bf0017;
    --sticky-wms-text: #333333;
    --sticky-wms-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    position: fixed;
    top: 90px;
    right: 0;
    z-index: 9990;
    font-family: Roboto, Arial, sans-serif;
}

.sticky-wms-menu,
.sticky-wms-menu * {
    box-sizing: border-box;
}

.sticky-wms-menu__panel {
    position: relative;
    width: 250px;
    padding: 25px 25px 28px;
    background: #ffffff;
    box-shadow: var(--sticky-wms-shadow);
    transition: transform 0.24s ease;
}

.sticky-wms-menu.is-collapsed .sticky-wms-menu__panel {
    transform: translateX(100%);
}

.sticky-wms-menu__links {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 15px;
}

.sticky-wms-menu__links a,
.sticky-wms-menu__links a:visited,
.sticky-wms-menu__links a:hover,
.sticky-wms-menu__links a:focus {
    color: var(--sticky-wms-text) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sticky-wms-menu__request {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    margin-bottom: 20px;
    padding: 14px 15px;
    background: var(--sticky-wms-red);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.sticky-wms-menu__request:hover {
    background: #a90014;
    color: #ffffff !important;
}

.sticky-wms-menu__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-wms-menu__socials a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 0;
}

.sticky-wms-menu__socials img {
    display: block;
    width: 30px;
    height: 30px;
}

.sticky-wms-menu__backdrop {
    display: none;
}

.sticky-wms-menu__toggle {
    position: absolute;
    top: 0;
    right: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 36px;
    height: 184px;
    padding: 0;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.12);
    color: var(--sticky-wms-text);
    cursor: pointer;
    outline: none;
    z-index: 1;
}

.sticky-wms-menu:not(.is-open) .sticky-wms-menu__toggle {
    background: #ffffff;
    color: var(--sticky-wms-text);
}

.sticky-wms-menu__toggle:focus-visible {
    box-shadow: -4px 3px 10px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(51, 51, 51, 0.25);
}

.sticky-wms-menu__toggle span {
    display: block;
    color: currentColor;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.sticky-wms-menu__toggle svg {
    width: 9px;
    height: 16px;
    flex: 0 0 auto;
}

.sticky-wms-menu.is-open .sticky-wms-menu__toggle {
    background: var(--sticky-wms-red);
    border-color: var(--sticky-wms-red);
    color: #ffffff;
    box-shadow: none;
}

.sticky-wms-menu.is-open .sticky-wms-menu__toggle svg {
    transform: rotate(180deg);
}

@media (max-width: 1279px) {
    .sticky-wms-menu {
        top: 100px;
        right: 0;
    }

    .sticky-wms-menu__backdrop {
        position: fixed;
        inset: 0;
        display: block;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .sticky-wms-menu__panel {
        width: 250px;
        padding: 27px 25px 31px;
        transform: translateX(100%);
    }

    .sticky-wms-menu.is-open .sticky-wms-menu__panel {
        transform: translateX(0);
    }

    .sticky-wms-menu.is-open .sticky-wms-menu__backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

}

@media (max-width: 480px) {
    .sticky-wms-menu {
        top: 86px;
    }

    .sticky-wms-menu__panel {
        width: min(250px, calc(100vw - 44px));
    }
}
