button {
    border: none;
    outline: none;
}
.price-list-head {
    display: flex;
    padding: 16px 24px;
    background-color: #1B1A7E;
    border-radius: 8px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    box-sizing: border-box;
}
.program-spoiler__arrow {
    flex-shrink: 0;
    display: block;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(../img/arrow-spoiler.svg);
    mask-image: url(../img/arrow-spoiler.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #1B1A7E;
    transition: all 200ms ease;
}
.arrow-prev-icon {
    display: block;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(../img/arrow-prev.svg);
    mask-image: url(../img/arrow-prev.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #ffffff;
    transition: all 200ms ease;
}
.arrow-next-icon {
    display: block;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(../img/arrow-next.svg);
    mask-image: url(../img/arrow-next.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #ffffff;
    transition: all 200ms ease;
}
.price-list-controller {
    display: none;
    width: 100%;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}
.price-list-controller .price-list-controller__item {
    display: none;
    flex-grow: 1;
    font-size: 18px;
    text-align: center;
}
.price-list-controller .price-list-controller__item i{
    font-style: normal;
}
.price-list-controller .price-list-controller__item.active {
    display: block;
}
.price-list-controller .price-list-controller__btn {
    width: 24px;
    height: 24px;
    background-color: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.price-list-controller .price-list-controller__btn svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: #ffffff;
}
.price-list-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.program-spoiler {
    box-shadow: 0 4px 24px 0 rgba(51, 51, 51, 0.08);
}
.program-spoiler .program-spoiler-head {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #ffffff;
    padding: 24px;
    font-family: 'Onest', sans-serif;
    box-sizing: border-box;
}
.program-spoiler .program-spoiler__title {
    font-size: 24px;
    font-weight: 500;
    color: #1B1A7E;
    line-height: 1.2;
    text-align: left;
}
.program-spoiler .program-spoiler__arrow {
    cursor: pointer;
    transition: all 200ms ease;
}
.program-spoiler .program-spoiler__body {
    position: relative;
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: all 200ms ease;
}
.program-spoiler .program-spoiler__content {
    min-height: 0;
}
.program-spoiler .program-spoiler__content .program-spoiler-row:nth-child(2n-1) {
    background-color: #F2F8FC;
}
.program-spoiler.active .program-spoiler__arrow {
    transform: scaleY(-1);
}
.program-spoiler.active .program-spoiler__body {
    grid-template-rows: 1fr;
}
.program-spoiler-row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background-color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    box-sizing: border-box;
}
.program-spoiler-row.program-spoiler-row--title {
    padding: 11px 24px;
    background-color: #D0E3F0 !important;
}
.program-spoiler-row.program-spoiler-row--title .program-spoiler-row__label {
    font-size: 16px;
    font-weight: 400;
}
.program-spoiler-row__label {
    width: 61%;
    color: #333333;
}
.program-spoiler-row__price-box {
    display: grid;
    width: 39%;
}
.program-spoiler-row__price-box--2 {
    grid-template-columns: repeat(2, 1fr);
}
.program-spoiler-row__price-box--3 {
    grid-template-columns: repeat(3, 1fr);
}
.program-spoiler-row__price {
    color: #1B1A7E;
    text-align: center;
    white-space: nowrap;
}
.price-list-head__currency {
    display: none;
}
.dialog h3 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 24px;
    color: #333333;
    font-weight: 600;
}
.dialog .price-list-head__currency {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}
.dialog .price-list-head {
    padding: 8px 16px;
    background-color: #F2F8FC;
    margin-bottom: 16px;
    color: #333333;
    font-size: 16px;
}
.dialog .price-list-head__label, .dialog .price-list-head__name {
    display: none;
}
.dialog .price-list-controller {
    display: flex;
    width: fit-content;
    gap: 4px;
}
.dialog .price-list-controller .price-list-controller__item span {
    display: none;
}
.dialog .price-list-controller .price-list-controller__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}
.dialog .price-list-controller .price-list-controller__btn span {
    background-color: #1B1A7E;
    width: 100%;
    height: 100%;
}
.dialog .program-spoiler-row__price {
    display: none;
    margin-left: auto;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}
.dialog .program-spoiler-row__price.active {
    display: block;
}
.dialog .program-spoiler-row {
    background-color: transparent;
    padding: 8px 12px;
    color: #333333;
    gap: 50px;
    font-size: 16px;
    font-weight: 400;
}
.dialog .program-spoiler-row.program-spoiler-row--title {
    border-radius: 8px;
    background-color: #D0E3F0;
}
.dialog .program-spoiler-row.program-spoiler-row--title .program-spoiler-row__label {
    font-size: 12px;
    font-weight: 400;
}
.dialog .program-spoiler {
    box-shadow: none;
}
.dialog .program-spoiler .program-spoiler-head {
    gap: 10px;
    background-color: transparent;
    padding: 8px 0;
}
.dialog .program-spoiler .program-spoiler__title {
    font-size: 18px;
    font-weight: 600;
}
.dialog .program-spoiler .program-spoiler__content .program-spoiler-row:nth-child(2n-1) {
    background-color: transparent;
}
.dialog .program-spoiler__arrow {
    width: 16px;
    height: 16px;
}
.dialog .program-spoiler-row__label {
    width: 100%;
    max-width: 568px;
}
.dialog .program-spoiler-row__price-box {
    display: block;
    margin-left: auto;
    width: auto;
    max-width: 30%;
}
/*=================================================================================================*/
@media screen and (max-width: 800px) {
    .program-spoiler {
        position: relative;
        border: 1px solid #D0E3F0;
        border-radius: 8px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .program-spoiler .program-spoiler__title {
        font-size: 14px;
    }
    .program-spoiler .program-spoiler-head {
        padding: 12px 16px;
    }
    .dialog .program-spoiler {
        border: none;
    }
    .dialog .program-spoiler .price-list-body {
        gap: 24px;
    }
    .dialog .program-spoiler__content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .dialog .price-list-controller .price-list-controller__btn {
        width: 18px;
        height: 18px;
    }
    .dialog .price-list-controller .price-list-controller__btn span {
        background-color: #BEB400;
    }
    .program-spoiler-row {
        padding: 8px 16px;
        font-size: 12px;
    }
    .program-spoiler-row.program-spoiler-row--title {
        padding: 6px 16px;
    }
    .program-spoiler-row.program-spoiler-row--title .program-spoiler-row__label {
        font-size: 10px;
    }
    .program-spoiler-row .program-spoiler-row__price {
        font-size: 14px;
    }
    .program-spoiler__arrow {
        width: 16px;
        height: 16px;
    }
    .price-list-head {
        padding: 17px 14px;
        margin-bottom: 16px;
        font-size: 18px;
    }
    .price-list-body {
        gap: 16px;
    }
}
@media screen and (max-width: 600px) {
    .program-spoiler-row .program-spoiler-row__price {
        display: none;
        text-align: right;
    }
    .program-spoiler-row .program-spoiler-row__price.active {
        display: block;
    }
    .program-spoiler-row__price-box--2, .program-spoiler-row__price-box--3 {
        grid-template-columns: 1fr;
    }
    .price-list-controller {
        display: flex;
    }
    .price-list-head__label, .price-list-head__name {
        display: none;
    }
}
@media screen and (max-width: 440px) {
    .dialog .program-spoiler-row {
        gap: 20px;
    }
}
