.price__box{}
.price__category{
    border-radius: 24px;
    padding: 10px 20px;
    background: #f5f8fa;
}
.price__category:not(:last-child){
	margin-bottom: 4px;
}
.price__category-title {
	display:flex;
	align-items: center;
	justify-content: space-between;
    gap:30px;
    font-weight: 600;
    font-size: 17px;
    line-height: 141%;
    color: #2d2c38;
	cursor:pointer;
    margin-bottom: 0;
}

.price__category-title-text{
	width: 100%;
}
.price__category-title-text__desc{
    font-weight: 400;
    font-size: 14px;
    color: #8d8ba2;
    margin-top: 4px;
}

.price__category-item{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
    font-weight: 500;
    font-size: 15px;
    line-height: 147%;
    gap: 4px 14px;
    color: #2d2c38;
    padding: 16px 0;
}
.price__category-item:not(:last-child){
    border-bottom: 1px solid #e2e3e7;
}

.price__category-item-title{
	width: 100%;
}
.price__category-item-price-btn{
    font-weight: 600;
    font-size: 16px;
    line-height: 138%;
    color: #2d2c38;
    text-align: right;
	white-space: nowrap;
}
.price__category-item-link,
.price__category-item-link:hover{
    color: #00b0e9;
    text-decoration: none;
}
.price__category-item-link{
    white-space: nowrap;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.price__category-title-arrow__icon{
    width: 56px;
    height: 56px;
    border-radius: 999px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(42, 48, 71, 0.1);
}
.price__category__text__control{
    display: none;
}

.price__category__text__control:not(:checked) ~ .price__category__inner .price__category__content,
.price__category__text__control:not(:checked) ~ .price__category__inner .price__category-title-arrow__icon__to-hide,
.price__category__text__control:checked ~ .price__category__inner .price__category-title-arrow__icon__to-open{
    display: none;
}
.price__category-notice{
    display: flex;
    gap: 12px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 147%;
    color: #2d2c38;
}
@media (max-width: 500px) {

}

@media (max-width: 991px) {
    .price__category-item{
        flex-wrap: wrap;
        align-items: center;
    }
    .price__category-item-title{
        width: calc(100% - 115px);
        flex: none;
    }
    .price__category-item-price{
        width: 100px;
        flex: none;
    }
    .price__category-item-links{
        width: 100%;
    }
}
@media (min-width: 992px) {
    .price__category {
        padding: 25px 40px;
    }
    .price__category-title {
        gap: 10px;
        font-size: 20px;
        line-height: 120%;
    }
    .price__category-item {
        font-size: 16px;
        line-height: 150%;
        gap: 70px;
    }
    .price__category-item:hover,
    .price__category-item:hover .price__category-item-price-btn,
    .price__category-item:hover a {
        color: #fff;
    }
    .price__category-item:hover {
        background: #00b0e9;
        margin: 0 -40px;
        padding: 16px 40px;
    }
    .price__category-item-links{
        width: 130px;
        flex: none;
    }
    .price__category-notice{
        margin-top: 30px;
        font-size: 16px;
    }
}