@media screen and (min-width: 1200px){
	#uList {
		padding-left: 8.333333333333332%;
	}
}

.uListItem {
	margin-bottom: 25px;
}

.u-l-section-wrap {
    border: 1px solid rgba(56, 56, 56, 0.15);
    border-radius: 5px;
    padding: 30px 40px 35px 35px;
    transition: all 0.3s ease-out 0s;
    	-o-transition: all 0.3s ease-out 0s;
    	-moz-transition: all 0.3s ease-out 0s;
    	-webkit-transition: all 0.3s ease-out 0s;
	float: left;
	width: 100%;
}
.u-l-section-wrap:hover {
	box-shadow: 0px 10px 30px rgba(56, 56, 56, 0.15);
}

.u-l-section-wrap .u-l-s_title {
    line-height: 39px;
    font-size: 24px;
    color: #383838;
    font-weight: bold;
    margin-bottom: 15px;
}

.u-l-section-wrap .u-l-p_item,
.u-order-wrap .u-o-list .u-l-p_item {
    margin-bottom: 15px;
}
.u-l-section-wrap .u-l-p_item:last-child,
.u-order-wrap .u-o-list .u-l-p_item:last-child {
	margin-bottom: 0px;
}

.u-l-section-wrap .u-l-p_item .u-l-p_i,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i {
	display: inline-block;
	vertical-align: top;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-name,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-name {
    padding-left: 15px;
    width: 66%;
    font-size: 15px;
    color: #383838;
    line-height: 20px;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-price,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-price {
	float: right;
    font-size: 19px;
    color: #383838;
    font-weight: bold;
    line-height: 26px;
    transition: color 0.3s ease-out 0s;
    	-o-transition: color 0.3s ease-out 0s;
    	-moz-transition: color 0.3s ease-out 0s;
    	-webkit-transition: color 0.3s ease-out 0s;
}
.u-l-section-wrap .u-l-p_item.active .u-l-p_i-price {
	color: #F05824;
}

.u-l-section-wrap .u-l-p_item .u-l-p_i-check,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check {
	width:24px;
	height: 24px;
	position: relative;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-check label,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check label {
    cursor: pointer;
    border: 1px solid rgba(240, 88, 36, 0.35);
    border-radius: 4px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-out 0s;
    	-o-transition: all 0.3s ease-out 0s;
    	-moz-transition: all 0.3s ease-out 0s;
    	-webkit-transition: all 0.3s ease-out 0s;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-check label:hover,
.u-l-section-wrap .u-l-p_item .u-l-p_i-check input[type="checkbox"]:checked + label,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check label:hover,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check input[type="checkbox"]:checked + label {
	background: #F05824;
    border-color: #f05824;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-check input[type="checkbox"]:checked + label::before,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check input[type="checkbox"]:checked + label::before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    z-index: 3;
    left: 1px;
    width: 6px;
    height: 17px;
    border-radius: 2px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    opacity: 1;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-check input[type="checkbox"]:checked + label::before,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check input[type="checkbox"]:checked + label::before {
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}
.u-l-section-wrap .u-l-p_item .u-l-p_i-check > input,
.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-check > input {
    width: 22px;
    height: 22px;
    margin-top: 0px;
    opacity: 0;
}

.u-order-block {
    display: none;
}

.u-order-block.active {
    display: block;
}

@media screen and (max-width: 767px){
	.u-l-section-wrap {
		padding: 20px 25px;
	}
	.u-l-section-wrap .u-l-p_item, 
	.u-order-wrap .u-o-list .u-l-p_item {
		float: left;
	}
	.u-l-section-wrap .u-l-p_item .u-l-p_i-name, 
	.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-name {
		width: calc(100% - 40px);
		font-size: 14px;
	}
	.u-l-section-wrap .u-l-p_item .u-l-p_i-price, 
	.u-order-wrap .u-o-list .u-l-p_item .u-l-p_i-price {
		width: 100%;
    	padding-left: 40px;
	}
}

.table-services{
    display: flex!important;
    align-items: flex-start;
    flex-wrap: wrap;
    height: 3465px;
    flex-direction: column
}

.table-services__item{
    width: 50%;
}
.table-services__item:not(:first-child){
    margin: -1px 0 0 -1px;
}

@media (max-width: 1399.98px) {
    .table-services {
        height: 3707px;
    }
}

@media (max-width: 1199.98px){
    .table-services {
        height: 3970px;
    }
}

@media (max-width: 991.98px) {
    .table-services {
        height: 5344px;
    }
}

@media (max-width: 767.98px) {
    .table-services {
        height: auto;
    }
    .table-services__item {
        width: 100%;
        margin-bottom: 10px;
    }
}