.services-section {
	overflow: hidden;
}

.department-wrap {
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
}
.service {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	padding-bottom: 30px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service:hover {
	cursor: pointer;
}

/*@media (min-width: 768px) {*/
/*	.service {*/
/*		border-right: 1px solid rgba(0, 0, 0, 0.1);*/
/*		border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
/*		-moz-transition: all 0.3s ease;*/
/*		-o-transition: all 0.3s ease;*/
/*		-webkit-transition: all 0.3s ease;*/
/*		-ms-transition: all 0.3s ease;*/
/*		transition: all 0.3s ease;*/
/*	}*/
/*}*/
/*.service svg {*/
/*	fill: #207dff;*/
/*	background-color: #207dff;*/
/*	-moz-transition: all 0.3s ease;*/
/*	-o-transition: all 0.3s ease;*/
/*	-webkit-transition: all 0.3s ease;*/
/*	-ms-transition: all 0.3s ease;*/
/*	transition: all 0.3s ease;*/
/*}*/
.icon-without-hover {
	display: block;
	max-height: 65px;
}
.icon-on-hover {
	display: none;
	max-height: 65px;
}
.service:hover .icon-without-hover {
	display: none;
	max-height: 65px;
}
.service:hover .icon-on-hover {
	display: block;
	max-height: 65px;
}
/*.service:hover svg, .service:focus svg {*/
/*	fill: #ffffff;*/
/*}*/
/*.department-wrap .text .icon span {*/
/*	color: #207dff;*/
/*	font-size: 40px;*/
/*}*/
.department-wrap .text h3 {
	font-size: 24px;
}
.department-wrap .text h3 a {
	color: #000000;
}
.service:hover, .service:focus {
	background: #207dff;
}
.service:hover .text, .service:focus .text {
	color: rgba(255, 255, 255, 0.7);
}
.service:hover .text h3, .service:focus .text h3 {
	color: #fff;
}
/*.service:hover .icon span svg, .service:focus .icon span svg {*/
/*	fill: #fff;*/
/*}*/

#service-bg-1,
#service-bg-2,
#service-bg-3,
#service-bg-4,
#service-bg-5,
#service-bg-6,
#service-bg-7,
#service-bg-8 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.service:hover #service-bg-1,
.service:hover #service-bg-2,
.service:hover #service-bg-3,
.service:hover #service-bg-4,
.service:hover #service-bg-5,
.service:hover #service-bg-6,
.service:hover #service-bg-7,
.service:hover #service-bg-8 {
	opacity: 1;
}

.service-shadow {
	position: absolute;
	left: 0;
	top: 0;
	background: #207dff;
	opacity: 0;
	width: 100%;
	height: 100%;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.services-section .root-categories {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.services-section .root-category {
	margin: 15px auto;
	width: 150px;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	background: #7FB4FF;
	border: 1px solid #7FB4FF;
	border-radius: 50px;
	cursor: pointer;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.services-section .root-category:hover,
.services-section .root-category.active {
	background: #207dff;
	box-shadow: 0 0 5px 3px #7FB4FF;
}

.service:hover .service-shadow {
	opacity: 0.7;
}

.service .btn-show-price {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 30px;
}

.modal-body .price-list__body .price-item {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #999999;
	padding: 5px;
}

.modal-body .price-list__body .price-item:last-child {
	border-bottom: none;
}

.modal-body .price-list__body .price-item .item-price {
	flex: 0 0 150px;
    display: flex;
    justify-content: flex-end;
}

.modal-body__search-term {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	flex-direction: column;
}

@media (min-width: 992px) {
	.modal-body__search-term {
		display: flex;
		flex: 1 1 auto;
		flex-direction: row;
	}
}

.modal-body label {
	margin-right: 10px;
	white-space: nowrap;
}

.modal-body #search-term {
	padding: 5px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	border: 1px solid #999999;
	margin-bottom: 20px;
	width: 100%;
}

.modal-body #search-term:focus {
	outline: unset;
	border: 1px solid #999999;
}

[v-cloak] {
	display: none;
}