.flyer {
    position: relative;
}

.flyer__button {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 2.5rem;
    width: 2.5rem;
    margin: 0;
    padding: 0;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.flyer__button.flyer__button--next {
    right: 0;
}

.flyer__button.flyer__button--previous {
    left: 0;
}

.flyer__button svg {
    fill: var(--color-primary);
}

.flyer__page {
    display: none;
}

.flyer__page.flyer__page--active {
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    overflow: hidden;
}

.flyer__header {
    padding: 1.5rem;
    background-color: var(--color-primary);
}

.flyer__cutout {
    transform: translateY(10px);
}

.flyer__cutout svg {
    fill: var(--color-primary);
}

.flyer__title {
    font-size: 2.25rem;
    font-weight: 100;
    color: var(--color-on-primary);
}

.flyer__checkmark {
    color: var(--color-secondary);
    fill: var(--color-secondary);
}

.flyer__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-on-primary);
}

.flyer__content {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--color-surface);
}

.flyer__placeholder {
    flex-direction: column;
    row-gap: 2rem;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 60%;
}

.flyer__placeholder-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .75rem;
    width: 100%;
}

.flyer__placeholder-row svg {
    fill: #d7dddb;
}

.flyer__placeholder-line {
    flex-grow: 1;
    height: 1rem;
    border-radius: .75rem;
    background-color: #d7dddb;
}

.flyer__section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.flyer__list {
    display: flex;
    flex-direction: column;
    row-gap: .75rem;
}

.flyer__list,
.flyer__sublist {
    margin: 0;
    padding: 0;
}

.flyer__sublist {
    display: flex;
    flex-direction: column;
    row-gap: .25rem;
}

.flyer__list-item,
.flyer__sublist-item {
    list-style: none;
}

.flyer__list-item-title {
    font-size: 1rem;
    font-weight: 600;
}

.flyer__sublist-item {
    line-height: 1.2;
}

.flyer__sublist-item label {
    font-size: .875rem;
    font-weight: 300;
}

.flyer__sublist-item:has(input:checked) label {
    color: var(--color-primary);
    font-style: italic;
    text-decoration: line-through;
}

.flyer-section__note {
    margin-top: 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-on-surface);
}

.flyer__footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--color-surface-darker);
}