@media (min-width: 1440px) {
    .burger__bg,
    .burger__menu {
        display: none;
    }
}

.burger__bg {
    background-color: rgba(31, 41, 55, 0.4);
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    width: 100%;
    height: stretch;
    display: none;
}

.burger__bg.active {
    display: block;
}

.burger__menu {
    position: fixed;
    z-index: 45;
    top: 0;
    left: 0;
    background: white;
    max-width: 345px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: stretch;
    transform: translateX(-100%);
}

.burger__menu.active {
    transform: translateX(0);
}

.burger__menu.active {
    transform: translateX(0) !important;
}

.burger__icon {
    padding: 16px 16px 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.burger__scroll {
    overflow-y: auto;
    border-top: 1px solid var(--gray);
    padding-bottom: 24px;
    height: stretch;
}

.burger__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 16px;
}

.burger__collection-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 700;
    text-align: left;
}

.burger__collection-button svg {
    transform: rotate(0deg);
    transition: transform 0.2s;
}
.burger__collection-button.active svg {
    transform: rotate(180deg);
}

.burger__list__wrapper {
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: grid;
    grid-template-rows: 0fr;
}

.burger__list__wrapper.active {
    grid-template-rows: 1fr;
}

.burger__list {
    overflow: hidden;
}

.burger__link {
    transition: all 0.2s ease-in-out;
}
.burger__link:hover {
    color: var(--red);
}

.burger__links-wrapper {
    border-top: 1px solid var(--gray);
    padding: 16px 16px 0;
}

.burger__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger__info {
    background: var(--gray);
    margin: 24px 16px 0;
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.burger__address {
    display: flex;
    align-items: center;
    gap: 8px;
}
