.price__box{}
.price__category:not(:last-child){
	margin-bottom: 16px;
}
.price__category-title
{
	display:flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.15);
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	font-weight: 700;
	font-size: 24px;
	line-height: 125%;
	color: #000;
	cursor:pointer;
}
.price__category.is-active .price__category-title-arrow{
	transform: rotate(180deg);
}
.price__category-title-icon{
	margin-right: 10px;
}
.price__category-title-text{
	width: 100%;
}
.price__category:not(.is-active) .price__category-content{
	display: none;
}
.price__category-content{
	padding: 10px 27px;
}
.price__category-item{
	display:flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 5px 10px;
	border-radius: 10px;
	font-size: 18px;
	line-height: 167%;
	color: #000;
}
.price__category-item:hover{
	background: #efefef;
}
.price__category-item:not(:last-child){
	margin-bottom: 5px;
}
.price__category-item-title,
.price__category-item-type{
	margin-right: 25px;
}
.price__category-item-title{
	width: 100%;
}
.price__category-item-type{
	flex: none;
	width: 178px;
	text-align: center;
}

.price__category-item-price{
	flex: none;
	width: 120px;
}
.price__category-item-price-btn{
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 167%;
	color: #fff;
	border-radius: 20px;
	padding: 0px 16px;
	background: #46b3de;
	white-space: nowrap;
}
@media (max-width: 500px) {
	.price__category .price__category-item > *{
		text-align: left;
	}
	.price__category .price__category-item:not(:last-child){
		margin-bottom: 25px;
	}
	.price__category .price__category-item > *:not(:last-child){
		margin-bottom: 10px;
	}
}