.tabs_with_services {
	margin-top: 10px;
}

.tabs_with_services .btn_wrap {
	margin: 0;
}

.tabs_with_services .tab_title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tabs_with_services .tab_title li {
	flex-basis: calc( ( 100% - 60px ) / 4 );
	box-sizing: border-box;
	cursor: pointer;
	background: #f6f6f6;
	padding: 35px 10px;
	display: block;
	text-align: center;
	position: relative;
}

.tabs_with_services .tab_title li.active:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -20px;
	left: 0;
	width: 100%;
	background: #f6f6f6;
	height: 20px;
}

.tabs_with_services .tab_title li .caption {
	font-weight: bold;
	font-size: 14px;
}

.tabs_with_services .tab_title li img {
	margin-top: 25px;
}

.tabs_with_services .tab_content {
	background: #f6f6f6;
	margin-top: 20px;
}

.tabs_with_services .tab_content .tabs_item {
	padding: 50px;
	display: none;
}

.tabs_with_services .tab_content .tabs_item.active {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-animation: opacity 0.3s;
	animation: opacity 0.3s;
}

.tabs_with_services .tab_content .tabs_item ul li {
	position: relative;
	margin-bottom: 25px;
	padding-left: 40px;
}

.tabs_with_services .tab_content .tabs_item ul li:last-of-type {
	margin-bottom: 0;
}

.tabs_with_services .tab_content .tabs_item ul li:before {
	content: "";
	width: 20px;
	height: 2px;
	background: #3ab1dd;
	position: absolute;
	top: 9px;
	left: 0;
}

.tabs_with_services .tab_content .tabs_item .price_container .price {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 28px;
}

.tabs_with_services .tab_content .tabs_item .price_container .price span {
	font-size: 40px;
	margin: 0 5px;
}

.tabs_with_services .tab_content .tabs_item .blue_btn {
	margin-top: 10px;
	background: #10a1d7;
	padding: 15px 30px;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	display: inline-block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #10a1d7;
	text-transform: uppercase;
}

.tabs_with_services .tab_content .tabs_item .blue_btn:hover {
	background: transparent;
	color: #10a1d7;
}

.drop_down_list {
	margin-top: 60px;
}

.drop_down_list .main_caption {
	text-align: center;
	font-size: 30px;
	background: #f6f6f6;
	padding: 45px 10px;
	font-weight: 300;
	border-bottom: 1px solid #e5e5e5;
	line-height: 30px;
}

.drop_down_list .drop_down_item {
	border-bottom: 1px solid #e5e5e5;
}

.drop_down_list .drop_down_item.active .head {
	background: #fbfbfb;
	border-left: 1px solid #f7f7f7;
	border-right: 1px solid #f7f7f7;
}

.drop_down_list .drop_down_item.active .head .arrow {
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}

.drop_down_list .drop_down_item .head {
	padding: 0 35px 0 70px;
	height: 75px;
	background: #f6f6f6;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-left: 1px solid #f6f6f6;
	border-right: 1px solid #f6f6f6;
	transition: background 0.5s ease;
}

.drop_down_list .drop_down_item .head .caption {
	width: 73%;
	font-weight: bold;
	font-size: 14px;
}

.drop_down_list .drop_down_item .head .price {
	font-size: 20px;
	margin-left: 60px;
}

.drop_down_list .drop_down_item .head .price span {
	font-weight: bold;
	margin-right: 5px;
}

.drop_down_list .drop_down_item .head .arrow {
	height: 10px;
	width: 10px;
	border-bottom: 2px solid #10a1d7;
	border-right: 2px solid #10a1d7;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: auto;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.drop_down_list .drop_down_item .content {
	padding: 0 35px 30px 70px;
	background: #fbfbfb;
	border-left: 1px solid #f7f7f7;
	border-right: 1px solid #f7f7f7;
	display: none;
}

.drop_down_list .drop_down_item .content .content_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.drop_down_list .drop_down_item .content .text {
	line-height: 30px;
	font-weight: 300;
	width: 73%;
}

.drop_down_list .drop_down_item .content .blue_btn {
	margin-left: 60px;
	background: #10a1d7;
	padding: 15px 30px;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	display: inline-block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border: 1px solid #10a1d7;
	text-transform: uppercase;
}

.drop_down_list .drop_down_item .content .blue_btn:hover {
	background: transparent;
	color: #10a1d7;
}

.merits_icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.merits_icons-item {
	text-align: center;
}

.shop_creation_steps {
	display: flex;
	flex-flow: column wrap;
}

.shop_creation_steps-item {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 40px;
}

.shop_creation_steps-img {
	width: 300px;
}

.shop_creation_steps-text {
	width: calc( 100% - 300px );
	padding-left: 40px;
	box-sizing: border-box;
}

@-webkit-keyframes opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes opacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@media (max-width: 1024px) {

	.tabs_with_services .tab_content .tabs_item .blue_btn {
		padding: 15px 20px;
	}

	.drop_down_list .drop_down_item .head .price {
		margin-left: auto;
	}

	.merits_icons {
		justify-content: center;
	}
	.merits_icons-item {
		margin: 10px;
	}

}

@media (max-width: 992px) {

	.drop_down_list .drop_down_item .head {
		padding: 0 30px;
	}

	.drop_down_list .drop_down_item .content {
		padding: 0 30px 30px;
	}

	.drop_down_list .drop_down_item .head .caption {
		width: 60%;
	}

	.tabs_with_services .tab_content .tabs_item.active {
		display: block;
	}

	.drop_down_list .drop_down_item .content {
		padding: 0 20px 20px 20px;
	}

	.drop_down_list .drop_down_item .content .content_block {
		display: block;
	}

	.drop_down_list .drop_down_item .content .text {
		width: 100%;
	}

	.tabs_with_services .tab_content .tabs_item.active ul li:last-of-type {
		margin-bottom: 25px;
	}

	.tabs_with_services .tab_content .tabs_item .price_container .price {
		margin: 20px 0;
	}

	.drop_down_list .drop_down_item .content .blue_btn {
		margin-left: 0;
		margin-top: 20px;
	}

}

@media (max-width: 768px) {

	.tabs_with_services {
		padding-top: 40px;
		padding-bottom: 20px;
	}

	.tabs_with_services .tab_title li {
		flex-basis: calc( ( 100% - 30px ) / 4 );
		padding: 20px 10px;
	}

	.tabs_with_services .tab_title li .caption {
		min-height: 2em;
	}

	.shop_creation_steps-item {
		flex-direction: column;
	}
	.shop_creation_steps-text {
		width: 100%;
		padding: 0;
	}
	.shop_creation_steps-img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

}

@media (max-width: 576px) {

	.tabs_with_services .tab_title {
		flex-wrap: wrap;
	}

	.tabs_with_services .tab_title li {
		flex-basis: 100%;
		margin-bottom: 15px;
	}

	.tabs_with_services .tab_title li.active:after {
		display: none;
	}

	.tabs_with_services .tab_title li .caption {
		min-height: 0;
	}

	.tabs_with_services .tab_title li img {
		display: none;
		margin: 0;
	}

	.tabs_with_services .tab_content {
		margin-top: 0;
	}

	.tabs_with_services .tab_title li.active {
		border: 1px solid #10a1d7;
	}

	.drop_down_list .main_caption {
		font-size: 24px;
	}

	.drop_down_list .drop_down_item .head {
		flex-direction: column;
		position: relative;
		padding: 10px 20px;
		height: 80px;
	}

	.drop_down_list .drop_down_item .head .caption, .drop_down_list .drop_down_item .head .price {
		margin: auto auto auto 0;
	}

	.drop_down_list .drop_down_item .head .arrow {
		position: absolute;
		right: 30px;
		top: 40%;
	}

	.drop_down_list .drop_down_item .content {
		padding: 0 20px 20px;
	}

}

@media (max-width: 480px) {

	.merits_icons-item {
		width: 50%;
		margin: 10px 0;
	}

}