@charset "UTF-8";
.prices__topTxt {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.prices__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    background-color: var(--primary-ivory);
    border-radius: 20px;
    border: solid 3px var(--primary-brown);
    padding: 20px;
}

.prices__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: dashed 1px var(--primary-brown);
    border-radius: 10px;
    padding: 25px 15px;
}

.prices__item__topic {
    width: fit-content;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    padding: 2px 10px;
    border-bottom: solid 2px var(--primary-orange);
}

.prices__item__txt {
    font-size: 1.4rem;
    margin-top: 5px;
}

.prices--therapy__list {
    margin-top: 10px;
    width: 100%;
    border-radius: 10px;
    background-color: var(--primary-white);
    border: solid 1px var(--primary-brown);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prices--therapy__item {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: dashed 1px var(--primary-brown);
}

.prices--therapy__item:last-of-type {
    border-bottom: none;
}

.therapy__item__topic {
    text-align: center;
    width: 33.3%;
    position: relative;
    display: block;
    padding: 4px 2px;
    border-right: dashed 1px var(--primary-brown);
}

.therapy__item__topic:last-of-type {
    border-right: none;
}

.prices--therapy__item .therapy__item__topic:first-of-type {
    border-right: none;
}
.prices--therapy__item .therapy__item__topic:nth-of-type(2) {
    border-left: dashed 1px var(--primary-brown);
}

.prices--ractore__list {
    margin-top: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 30px;
    gap: 5px;
}

.prices--ractore__item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.prices--ractore__item__txt {
    letter-spacing: 1px;
    font-weight: 500;
    width: 130px;
    text-align: right;
}

.prices--ractore__txt {
    margin-top: 20px;
    color: var(--primary-orange);
    font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
    .section--prices {
        max-width: 960px;
        align-items: flex-start;
    }

    .prices__list {
        width: 100%;
        gap: 30px;
        margin-top: 45px;
        padding: 30px;
    }

    .prices__item {
        padding: 35px 20px;
    }

    .prices__item__topic {
        font-size: 2.2rem;
        padding: 2px 15px;
    }

    .prices__item__txt {
        font-size: 1.6rem;
        margin-top: 10px;
    }

    .prices--therapy__list {
        margin-top: 20px;
    }

    .prices--therapy__item {
        font-size: 16px;
    }

    .therapy__item__topic {
        padding: 6px 4px;
    }

    .prices--ractore__list {
        margin-top: 25px;
        padding-right: 70px;
        gap: 10px;
    }

    .prices--ractore__item__txt {
        font-size: 2rem;
        width: 180px;
    }

    .prices--ractore__txt {
        margin-top: 25px;
        font-size: 1.6rem;
    }
}