.main--price-background {
    background-color: #0B342F;
    padding-bottom: 70px;
    position: relative;
    overflow: hidden;
}


.price-figure {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}


.price {
    text-align: center;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}



.price__title {
    text-align: center;
    color: #fff;
    padding: 58px 0 30px;
}

.price__subtitle {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
}

.price__link {
    text-decoration: underline;
    color: #fff;
}

.price .button-primary {
    margin-top: 50px;
}

.price__container {
    min-height: 40vh;
    position: relative;
}

.price__bg {
    background-color: white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 45px 30px 15px 30px;
    min-height: 40vh;
}

.price__container--no-shadow {
    box-shadow: none;
}

.price__category {
    color: #777;
    text-align: left;
}

.price__category-button {
    border: 1px solid #124F47;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 8px 24px 8px 8px;
    cursor: pointer;
    position: relative;

}

.price__category-button:before {
    content: " ";
    background-image: url(../images/home-page/slider/arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: 24px;
    position: absolute;
    right: 8px;
    transform: rotate(180deg);
}

.price__category-button.selected {
    background-color: #124F47;
    color: white;
}

.price__category-button.selected::before {
    transform: rotate(-90deg);
}

.price__ul.closed {
    display: none;
}

.price__category-title {
    font-size: 18px;
    color: #333;
    margin: -5px 20px 20px 20px;
}

.price__category ul {
    border-top: 2px solid #124F47;
    padding: 20px;
}

.price__category ul li {
    font-size: 18px;
    margin-bottom: 15px;
    content: "";
    display: table;
    clear: both;
    width: 100%;
}

.price__service-name {
    float: left;
    width: 85%;
}

.price__service-time {
    float: right;
}

.price__service-cost {
    float: right;
}

@media screen and (min-width: 1540px) {}

@media screen and (max-width: 1024px) {
    .price__subtitle {
        max-width: 90%;
        margin: 0 auto 40px;
    }
}


@media screen and (max-width: 480px) {


    .price__title {
        font-size: 30px;
        line-height: 40px;
        padding: 44px 0 30px;
    }

    .price__container {
        box-shadow: none;
        padding: 0;
    }

    .price__category-title {
        margin-bottom: 5px;
    }

    .price__category ul li {
        font-size: 16px;
        line-height: 24px;
    }

    .price__category ul li>div:first-child {
        width: 80%;
        float: left;
    }

    .price__service-name {
        float: left;
        width: auto;
    }

    .price__service-time {
        float: none;
        display: inline-block;
        position: relative;
    }

    .price__service-time::before {
        content: '(';
    }

    .price__service-time::after {
        content: ')';
    }
}