﻿main {
    position: relative;
}
main h1 span {
    padding-bottom: 0px;
    font-weight: 900;
}

.accordion-item {
    border-width: var(--padding-box);
}
.accordion-item:not(:first-of-type) {

}
.accordion-item:first-of-type, .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion-button:not(.collapsed) {
    color: var(--color-white);
    background-color: var(--color-theme);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: none;
    content: "▼";
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-60deg);
}

.accordion-body .box-prices {
    line-height: 35px;
}

@media (max-width: 991px) {
    .accordion-body .box-prices {
        font-size: 13px;
        line-height: 30px;
    }
}