.flyers-page {
    max-width: 1216px;
    margin: 0 auto;
    width: 100%;
    padding: 38px 20px 60px;
}

.flyers-toggle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 0 0 28px;
}

.flyers-toggle__btn {
    display: block;
    width: 100%;
    margin: 0;
    padding: 9px 20px;
    border: 1px solid transparent;
    background: var(--white, #ffffff);
    color: var(--pitch-black, #000000);
    font-family: var(--font-body, 'Roboto', sans-serif);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.flyers-toggle__btn:not(.is-active) {
    border-color: var(--pitch-black, #000000);
    background: #f7f7f7;
}

.flyers-toggle__btn.is-active {
    border-color: transparent;
    background: var(--mint, #a8c7b8);
    color: #202020;
}

.flyers-toggle__btn:hover,
.flyers-toggle__btn:focus {
    background: var(--mint, #a8c7b8);
    border-color: transparent;
    color: #202020;
    outline: none;
}

.flyers-panels {
    width: 100%;
}

.flyers-panel {
    display: none;
}

.flyers-panel.is-active {
    display: block;
}

.flyers-flipbook {
    width: 100%;
    margin: 0 auto;

    .df-bg {
        background-color: transparent!important;
    }
}

.flyers-flipbook ._df_book {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .flyers-toggle {
        flex-direction: row;
        width: auto;
        max-width: 420px;
        margin-left: 0;
        margin-right: auto;
    }

    .flyers-toggle__btn {
        flex: 1 1 50%;
        min-width: 180px;
    }
}
