.short-menu-button {
    display: none;
    font: 13px/1.2 'Montserrat', uppercase, sans-serif;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    background: none;
    border: none;
    height: 20px;
    align-items: center;
    letter-spacing: 0;
    padding: 0;
    gap: 2px;
}

@media (max-width: 1184px) {
    .short-menu-button {
        display: flex;
    }
}

.short-menu-button:after {
    content: url(/images/menu-ece9a86e043a16ed71e62cc1a82c04ad.svg);
}

.short-menu-wrapper {
    position: relative;
    display: none;
    width: 100%;
}

@media (max-width: 1184px) {
    .short-menu-wrapper {
        display: flex;
    }
}

.short-menu {
    position: absolute;
    top: 15px;
    left: -5vw;
    display: none;
    flex-direction: column;
    align-items: center;
    background: #FFFFFFCC;
    box-shadow: -2px 8px 10px 0 #0000001F;
    backdrop-filter: blur(8px);
    width: calc(100% + 10vw);
    padding: 15px;
    gap: 15px;
    z-index: 99;
}

.short-menu-item {
    font: 13px/1.2 'Montserrat', uppercase, sans-serif;
    font-weight: 600;
    color: #35003D;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

.short-menu-item.selected {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #35003D;
}