.fees caption,
.fees .therapy__fee,
.fees .assessment__fee {
    font-family: var(--font-heading-family);
    line-height: 1;
    text-align: left;
    background-color: rgb(var(--color-accent));
    padding: 20px;
    border-radius: 20px;

    position: sticky;
    left: 0;
}

.fees__wrapper h3 {
    font-size: 24px;
}

.fees caption {
    max-width: calc(100vw - 32px);
}

@media screen and (min-width: 750px) {
    .assessment__fee {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .fees__wrapper h3 {
        font-size: 28px;
    }
}

.fees th,
.fees td {
    font-size: 14px;
    padding: 14px 0;
    background: white;
    border-bottom: 1px dashed rgb(var(--color-beige));
    vertical-align: middle;
}

.fees th:not(:first-of-type),
.fees td {
    padding: 14px 20px;
}

.fees td {
    text-wrap-mode: nowrap;
}

@media screen and (min-width: 750px) {
    .fees th,
    .fees td {
        font-size: 18px;
        padding: 12px 0;
    }

    .fees th:not(:first-of-type),
    .fees td {
        padding: 12px 32px;
        width: 180px;
    }

    .fees caption {
        font-size: 32px;
        padding: 20px 32px;
        border-radius: 100px;
    }
}

.fees li {
    font-weight: var(--type-medium);
    background-image: url(checkbox.svg);
    background-position: left center;
    background-repeat: no-repeat;
    padding: 4px 0 4px 45px;
    list-style: none;
    margin-bottom: 16px;
}

.fees li:last-of-type {
    margin-bottom: 0;
}

.fees table {
    border-collapse: separate;
    position: relative;
}

.assessment__process {
    background: white;
    padding: 24px 32px;
    border-radius: 24px;
    position: sticky;
    left: 0;
}

.assessment__process p {
    font-family: var(--font-heading-family);
    font-size: 16px;
    margin-top: 32px;
    background-image: url(exclamation.svg);
    background-repeat: no-repeat;
    background-position: left center;
    min-height: 38px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    padding-left: 46px;
}

@media screen and (min-width: 750px) {
    .assessment__process p {
        font-size: 18px;
    }
}

.fees th:first-of-type {
    min-width: 260px;
}

.fees tr:first-of-type th,
.fees tr:first-of-type td {
    padding-top: 24px;
    padding-bottom: 24px;
    text-wrap-mode: nowrap;
}

.fees tr:last-of-type th,
.fees tr:last-of-type td {
    padding-bottom: 24px;
}

.fees th {
    font-weight: var(--type-medium);
    text-align: left;
}



.fees th[scope="row"] .fees__therapist:before {
    content: "";
    height: 32px;
    width: 32px;
    flex: 0 0 32px;

    background-image: url(flower.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.fees__therapist {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 749px) {
    .fees__wrapper {
        /*margin-left: -16px;*/
        /*margin-right: -16px;*/
        /*padding-left: 16px;*/
        /*padding-right: 16px;*/
    }

    .fees__table-wrapper {
        overflow: scroll;
    }
}

.fees__table-wrapper {
    background: white;
    padding: 0 32px;
    border-radius: 24px;
    overflow: scroll;
}

.fees__button {
    padding-top: 32px;
}


@media screen and (min-width: 750px) {
    .fees th[scope="row"] .fees__therapist:before {
        height: 36px;
        width: 36px;
        flex: 0 0 36px;
    }

    .fees__button {
        padding-top: 72px;
    }
}