@charset "utf-8";

:root {
    --dark_purple: hsl(245, 23%, 21%);
    --medium_purple: hsl(244, 11%, 50%);
    --light_purple: hsl(240, 22%, 90%);
    --red: hsl(0, 57%, 58%);
    --beige: hsl(0, 10%, 90%);
    --button: rgba(133, 133, 168, 95%);
    --title: hsl(245, 23%, 70%);
}

.prices_page {
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.manipulations {
    background-color: var(--light_purple);
    padding: 2rem 2rem 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.initial_appointment {
    background-image: url(/media/original_images/prices_bgr.svg);
    padding: 2rem 2rem 3rem 2rem;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 10px;
    text-align: center;
}

.initial_appointment > h2 {
    margin-bottom: 0;
    line-height: 1;
}

.initial_appointment_subtitle {
    color: var(--button);
    font-weight: 500;
    font-size: 1.8rem;
}

.initial_appointment_list {
    margin: 2rem 0;
    line-height: 1;
}

.initial_appointment_list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--medium_purple);
}

.initial_appointment_price {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.docvoinov_price .initial_appointment_price::after,
.docvoinov_price .price::after {
    content: '₽';
    margin-left: 5px;
}

.proctolog_price .initial_appointment_price::after,
.proctolog_price .price::after {
    content: '$';
    margin-left: 5px;
}

.table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price_item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid hsl(245, 23%, 85%);
    padding-bottom: 1rem;
}

.service {
    text-align: left;
}

.manipulations > p {
    color: var(--medium_purple);
    text-align: left;
    font-size: 12px;
    margin-top: 1rem;
}

@media (max-width: 1025px) {

    .initial_appointment > h2 {
        font-size: 1.9rem;
    }

    .prices_page {
        padding: 0 10px;
        gap: 1rem;
    }

    .table {
        font-size: 14px;
    }

}