/* --- box-header animations --- */
.box-header.animation-slide:after
{
	visibility: hidden;
}
.box-header.slide:after
{
	animation-name: slide;
	-webkit-animation-name: slide;
	animation-timing-function: cubic-bezier(.75, 0, .25, 1);	
	-webkit-animation-timing-function: cubic-bezier(.75, 0, .25, 1);
	animation-duration: 0.6s;	
	-webkit-animation-duration: 0.6s;
	visibility: visible;
}
@keyframes slide 
{
	0% 
	{
		width: 0;	
	}
	100% 
	{
		width: 50px;	
	}		
}
@-webkit-keyframes slide 
{
	0% 
	{
		width: 0;
	}
	100% 
	{
		width: 50px;
	}		
}
/* --- animations --- */
.animated-element
{
	visibility: hidden;
	position: relative;
}
.comment-box .animated-element.date .arrow-date,
.comment-box.animated-element .arrow-comments
{
	visibility: hidden;
}
.fadeIn, .scale, .slideRight, .slideRight200, .slideRight25, .slideLeft, .slideLeft50, .slideDown, .slideDown200, .slideUp,
.comment-box .fadeIn.date .arrow-date, .comment-box .scale.date .arrow-date, .comment-box .slideRight.date .arrow-date, .comment-box .slideRight200.date .arrow-date, .comment-box .slideLeft.date .arrow-date, .comment-box .slideLeft50.date .arrow-date, .comment-box .slideDown.date .arrow-date, .comment-box .slideDown200.date .arrow-date, .comment-box .slideUp.date .arrow-date,
.comment-box.fadeIn .arrow-comments, .comment-box.scale .arrow-comments, .comment-box.slideRight .arrow-comments, .comment-box.slideRight200 .arrow-comments, .comment-box.slideLeft .arrow-comments, .comment-box.slideLeft50 .arrow-comments, .comment-box.slideDown .arrow-comments, .comment-box.slideDown200 .arrow-comments, .comment-box.slideUp .arrow-comments
{
	animation-timing-function: cubic-bezier(.75, 0, .25, 1);	
	-webkit-animation-timing-function: cubic-bezier(.75, 0, .25, 1);		
	visibility: visible !important;
}
/* --- fadeIn --- */
.fadeIn
{	
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	
}
@keyframes fadeIn 
{
	0% 
	{
		opacity: 0;
	}
	100% 
	{
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn 
{
	0% 
	{
		opacity: 0;
	}
	100% 
	{
		opacity: 1;
	}
}
/* --- scale --- */
.scale
{
	animation-name: scale;
	-webkit-animation-name: scale;
}
@keyframes scale 
{
	0% 
	{
		transform: scale(0.2);	
	}
	100% 
	{
		transform: scale(1);	
	}		
}
@-webkit-keyframes scale 
{
	0% 
	{
		-webkit-transform: scale(0.2);	
	}
	100% 
	{
		-webkit-transform: scale(1);
	}		
}
/* --- slideRight --- */
.slideRight
{
	animation-name: slideRight;
	-webkit-animation-name: slideRight;	
}
@keyframes slideRight 
{
	0% 
	{
		opacity: 0;
		transform: translateX(-100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(-100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideRight200 --- */
.slideRight200
{
	animation-name: slideRight200;
	-webkit-animation-name: slideRight200;	
}
@keyframes slideRight200 
{
	0%
	{
		opacity: 0;
		transform: translateX(-200%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight200 
{
	0%
	{
		opacity: 0;
		-webkit-transform: translateX(-200%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideRight25 --- */
.slideRight25
{
	animation-name: slideRight25;
	-webkit-animation-name: slideRight25;	
}
@keyframes slideRight25
{
	0% 
	{
		opacity: 0;
		transform: translateX(-25%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}
}
@-webkit-keyframes slideRight25
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(-25%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideLeft --- */
.slideLeft
{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;
}
@keyframes slideLeft 
{
	0% 
	{
		opacity: 0;
		transform: translateX(100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}	
}
@-webkit-keyframes slideLeft 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideLeft50 --- */
.slideLeft50
{
	animation-name: slideLeft50;
	-webkit-animation-name: slideLeft50;
}
@keyframes slideLeft50 
{
	0% 
	{
		opacity: 0;
		transform: translateX(50%);
	}
	100% 
	{
		opacity: 1;
		transform: translateX(0%);
	}	
}
@-webkit-keyframes slideLeft50 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateX(50%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
	}
}
/* --- slideDown --- */
.slideDown
{
	animation-name: slideDown;
	-webkit-animation-name: slideDown;				
}
@keyframes slideDown 
{
	0% 
	{
		opacity: 0;
		transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateY(0%);
	}		
}
@-webkit-keyframes slideDown 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}	
}
/* --- slideDown --- */
.slideDown200
{
	animation-name: slideDown200;
	-webkit-animation-name: slideDown200;				
}
@keyframes slideDown200
{
	0% 
	{
		opacity: 0;
		transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		transform: translateY(0%);
	}		
}
@-webkit-keyframes slideDown200
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateY(-100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}	
}
/* --- slideUp --- */
.slideUp
{
	animation-name: slideUp;
	-webkit-animation-name: slideUp;
}

@keyframes slideUp 
{
	0% 
	{
		opacity: 0;
		transform: translateY(100%);
	}
	100%
	{
		opacity: 1;
		transform: translateY(0%);
	}	
}

@-webkit-keyframes slideUp 
{
	0% 
	{
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	100% 
	{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}	
}/*
Theme Name:   MediCenter Child
Theme URI: https://1.envato.market/medicenter-responsive-medical-wordpress-theme
Description:  MediCenter Child Theme
Author: QuanticaLabs
Author URI: https://1.envato.market/quanticalabs
Template:     medicenter
Version:      1.2
Text Domain:  medicenter
*/
body, p, table, td {
	line-height:1.5;
	font-size: 16px;
	color: #222;
}
p {
	padding:0;
	margin-top:10px;
	padding-bottom:10px;
}
h1 {
	font-size: 36px;
	line-height: 1.1;
	font-weight:bold;
	color:#123788;
}
h2 {
	font-size: 32px;
	line-height: 1.1;
	font-weight:bold;
	color:#123788;
	margin-bottom:15px;
}
h3 {
	font-size: 24px;
	line-height: 1.1;
	font-weight:bold;
	color:#123788;
	margin-bottom:15px;
}
h4 {
	font-size: 20px;
	line-height: 1.1;
	font-weight:bold;
	color:#123788;
	margin-bottom:10px;
}
h5 {
	font-size: 17px;
	line-height: 1.1;
	font-weight:bold;
	color:#123788;
	margin-bottom:10px;
}
.padding_xxxl{padding-top:80px; padding-bottom:80px;}
.padding_xxl{padding-top:60px; padding-bottom:60px;}
.padding_xl{padding-top:50px; padding-bottom:50px;}
.padding_l{padding-top:40px; padding-bottom:40px;}
.padding_m{padding-top:30px; padding-bottom:30px;}
.padding_s{padding-top:20px; padding-bottom:20px;}
.padding_xs{padding-top:10px; padding-bottom:10px;}

.padding_bottom_xxl{padding-bottom:60px;}
.padding_bottom_xl{padding-bottom:50px;}
.padding_bottom_l{padding-bottom:40px;}
.padding_bottom_m{padding-bottom:30px;}
.padding_bottom_s{padding-bottom:20px;}
.padding_bottom_xs{padding-bottom:10px;}

.padding_top_xxl{padding-top:60px;}
.padding_top_xl{padding-top:50px;}
.padding_top_l{padding-top:40px;}
.padding_top_m{padding-top:30px;}
.padding_top_s{padding-top:20px;}
.padding_top_xs{padding-top:10px;}

@media(max-width:767px){
.padding_xxxl{padding-top:60px; padding-bottom:60px;}
.padding_xxl{padding-top:50px; padding-bottom:50px;}
.padding_xl{padding-top:40px; padding-bottom:40px;}
.padding_l{padding-top:30px; padding-bottom:30px;}
.padding_m{padding-top:20px; padding-bottom:20px;}

.padding_bottom_xxl{padding-bottom:50px;}
.padding_bottom_xl{padding-bottom:40px;}
.padding_bottom_l{padding-bottom:30px;}

.padding_top_xxl{padding-top:50px;}
.padding_top_xl{padding-top:40px;}
.padding_top_l{padding-top:30px;}

}
.header {
	padding: 28px 0;
}
.header-left a img {
	height: 70px;
}
.bread-crumb {
	padding-top: 10px;
	padding-bottom: 10px;
}
.page-header > .vc_inner {
	padding: 15px 0;
	margin-bottom: 20px !important;
}

.sf-menu li a, .sf-menu li a:visited {
	font-size: 17px;
	color: #000;
	padding: 11px 16px 11px 15px;
	line-height: 1.71429;
}
.sf-menu li.current-menu-parent a,
.sf-menu li.current-menu-item a,
.sf-menu li.current-menu-item a:visited {
	color:#fff;
}
#menu-hauptmenue.sf-menu li:hover a {
	color:#123788;
	background:transparent;
}
.mc-features-style-light p,
.mc-features-style-light h3 {
	color:#333;
}
span.number, span.odometer.number {
	font-weight: 600;
	font-size: 38px;
	line-height: 1.1;
	color: #fff;
}
.number-sign {
	font-weight: 300;
	font-size: 22px;
	line-height: 1.1;
	color: #fff;
}
.workshops_teaser {
	display:flex;
	margin-left:-1%;
	margin-right:-1%;
	flex-wrap:wrap;
}
.workshop_box {
	background:#F0F0F0;
	width:31.33%;
	margin-left:1%;
	margin-right:1%;
	padding:0;
	margin-bottom:30px !important;
	display:block;
	text-align: left;
}
.workshop_box:hover {
	text-decoration: none;
}
.workshop_box .text_wrap {
	display:flex;
	padding:20px 30px;
}
.workshop_box .image {
	overflow: hidden;
}
.workshop_box .image img {
	height:310px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
.workshop_box h3 {
	font-size:24px;
	font-weight:bold;
	line-height:1.1;
}
.workshops_right .title {
	font-weight:bold;
	font-size:22px;
	margin-bottom:15px;
}
.workshops_right .image img {
	max-width:100%;
	height:auto;
}
@media(max-width:767px){
	.workshops_teaser {
		margin-left:0;
		margin-right:0;
	}
	.workshop_box {
		width:100%;
		margin-left:0;
		margin-right:0;
	}
	.workshop_box .image img {
		height: 240px;
	}
}


.pocketguide_teaser {
	display:flex;
	margin-left:-1%;
	margin-right:-1%;
	flex-wrap:wrap;
}
.pocketguide_box {
	background:#F0F0F0;
	width:31.33%;
	margin-left:1%;
	margin-right:1%;
	padding:0;
	margin-bottom:30px !important;
	display:block;
	text-align: left;
}
.pocketguide_box:hover {
	text-decoration: none;
}
.pocketguide_box .text_wrap {
	display:flex;
	padding:20px 30px;
}
.pocketguide_box .image {
	overflow: hidden;
}
.pocketguide_box .image img {
	height:310px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
.pocketguide_box h3 {
	font-size:24px;
	font-weight:bold;
	line-height:1.1;
	margin-top:5px;
}
.kurzkategorie {
	font-size:15px;
	line-height:1.1;
	font-weight:bold;
	font-family: 'Source Sans Pro', 'Arial', sans-serif;
}
@media(max-width:767px){
	.pocketguide_teaser {
		margin-left:0;
		margin-right:0;
	}
	.pocketguide_box {
		background:#F0F0F0;
		width:100%;
		margin-left:0;
		margin-right:0;
	}
	.pocketguide_box .image img {
		height:240px;
	}
}


.news_teaser {
	display:flex;
	flex-wrap:wrap;
	margin-left:-1%;
	margin-right:-1%;
}
.news_box {
	background:#F0F0F0;
	width:31.33%;
	margin-left:1%;
	margin-right:1%;
	padding:0;
	margin-bottom:30px !important;
	display:block;
	text-align: left;
}
.news_box:hover {
	text-decoration: none;
}
.news_box .text_wrap {
	display:flex;
	padding:20px 30px;
}
.news_box .image {
	overflow: hidden;
}
.news_box .image img {
	height:310px;
	object-fit: cover;
	object-position: center;
	width: 100%;
}
.news_box h3 {
	font-size:24px;
	font-weight:bold;
	line-height:1.1;
}

@media(max-width:767px){
	.news_teaser {
		margin-left:0;
		margin-right:0;
	}
	.news_box {
		width:100%;
		margin-left:0;
		margin-right:0;
	}
	.news_box .image img {
		height:240px;
	}
}


.page-header-left {
	display: block;
}
.workshop_single {
	display:flex;
}
.workshops_right {
	background:#F0F0F0;
	padding:20px;
}
.workshops_right p {
	padding-top:5px;
	padding-bottom:5px;
}
.workshop_single .content {
	clear: both;
	padding-right:5%;
}
.download_buttons {
	display:flex;
}
.button {
	border:1px solid #123788;
	padding:10px;
	display:inline-block;
	transition:background ease 0.3s, color ease 0.3s;
}
.download_buttons .mc-button:first-of-type {
	margin-right:18px;
}
.download_buttons .mc-button {
	padding: 16px 25px 17px;
}
.add_to_cart_inline {
	overflow:hidden;
	padding:5px !important;
	padding-left:10px !important;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.workshops_right .button {
	display:block;
}
.button:hover {
	text-decoration: none;
	background:#123788;
	color:#fff;
}

.invited_speakers {
	display:flex;
	flex-wrap:wrap;
}
.invited_speakers .text {
	margin-top:5px;
	margin-bottom:5px;
	width:46%;
	margin-right:4%;
	background:#F0F0F0;
	padding:10px;
}
@media(max-width:767px){
	.invited_speakers .text {
		width:100%;
		margin-right:0;
	}
}

.faculty {
	display:flex;
	margin-top:30px;
	margin-bottom:-30px;
}
.facultybox {
	width:31.33%;
	margin-right:4%;
	margin-bottom:30px;
	background:#F0F0F0;
	padding:20px;

}
@media(max-width:767px){
	.facultybox {
		width:100%;
		margin-right:0;
	}
}
.facultybox .bild img {
	width:300px;
	height:300px;
	border-radius:12px;
	margin-bottom:10px;
	object-fit: cover;
}
.gallery {
	display:flex;
	margin:0;
	margin-top:30px;
	flex-wrap:wrap;
	background:#F0F0F0;
	padding:20px;
	clear:both;
}
.gallery.top {
	padding:0;
	background:none;
}
.gallery.top li {
	width:48%;
	margin-right:2%;
}
.gallery.top img {
	height:260px;
	width:100%;
	object-fit: cover;
}
.gallery li {
	width:23%;
	margin-right:2%;
	list-style:none;
}
.gallery img {
	border-radius:12px;
}
@media(max-width:767px){
	.gallery li {
		width:48%;
		margin-right:2%;
	}
}
.testimonial {
	display:flex;
}
.testimonials {
	width:100% !important;
}
.testimonials_teaser {
	width:100%;
	margin-bottom:20px;
	text-align: center;
	background:#fff;
}

.testimonials_teaser .image_wrap {
	width:50%;
}
.testimonials_teaser .image_wrap img {
	object-position:top;
	object-fit: cover;
	width:100%;
	max-height:750px;
}
.testimonials_teaser .text_wrap {
	width:50%;
	margin:auto;
	display:flex;
	align-content: center;
	align-items: center;
}
.testimonials_teaser .text_wrap .text {
	position: relative;
	line-height: 1.8;
	color:#444F61;
}
.testimonials_teaser .text_wrap > div {
	max-width:70%;
	margin:auto;
}
.testimonials_teaser .text_wrap .autor {
	font-weight:bold;
	color:#888;
	margin-top:30px;
}
.testimonials_teaser .text_wrap .text::before {
	content: "\45";
	color: #E5E5E5;
	font-size: 32px;
	font-family: 'template' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	vertical-align: middle;
	line-height: 1;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top:-60px;
	left:47%;
}

@media(max-width:767px){
	.testimonial {
		flex-wrap:wrap;
	}
	.testimonials_teaser .text_wrap {
		width:100%;
	}
	.testimonials_teaser .image_wrap {
		width: 100%;
	}
}

.testimonial_workshop {
	
}
.testimonial_workshop .testimonial_box {
	margin-left:30px;
	margin-right:30px;
}
.testimonial_workshop .testimonial_box .bild {
	margin:auto;
	margin-bottom:10px;
}
.testimonial_workshop .testimonial_box .bild img {
	border-radius:10px;
	width:150px;
	height:150px;
}
.page-header-right .search {
	display:none;
}
.services-list.services-icons li {
	min-height: 192px;
}
.woocommerce .related ul.products li.product:nth-child(3n){
    margin: 30px 30px 0px 0 !important;
}
.legaltext h2 {
    margin-bottom: 20px !important;
}


.products-block-post-template { list-style: none !important; }
.products-block-post-template .product .wp-block-button  {
	display:none;
}

.site-container {margin-top: 30px;}
.topbar { 
	width:100%; 
	position: fixed; 
	top:0; 
	text-align:center; 
	height:20px; 
	padding:5px; 
	z-index: 2000; 
	background:#e3eee3; 
	line-height:1.2;
}
@media(max-width:767px){
	.topbar { height:30px; }
	.header-top-sidebar .textwidget .thin-list {
		display:none;
	}
}


.wc-block-grid__products .wc-block-grid__product-image img {
	max-width:300px !important;
}@media screen and (max-width:1817px)
{
	body .background-right
	{
		background-position: 1230px 0 !important;
	}
}
@media screen and (max-width:1249px)
{
	.vc_col-sm-6 .vc_col-sm-6 table td, 
	.vc_col-sm-6 .vc_col-sm-6 table th
	{
		padding: 11px 5px;
	}
	/* --- site container --- */
	.site-container.boxed,
	.boxed .header-container.sticky.move
	{
		max-width: 1090px;
	}
	/* --- header --- */
	.header,
	.header-top-sidebar,
	.site-container .vc_row,
	.site-container .vc_row.full-width .wpb_column .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.home-box-container-list,
	.footer,
	.copyright-area
	{
		width: 990px;
	}
	.page-header-left
	{
		width: 730px;
	}
	.sf-menu>li>a
	{
		height: 24px;
	}
	.header.layout-1 .sf-menu li a, .header.layout-1 .sf-menu li a:visited
	{
		padding: 11px 10px 11px 8px;
	}
	.header.layout-1 .sf-menu>li.menu-item-has-children>a, .header.layout-1 .sf-menu>li.menu-item-has-children>a:visited
	{
		padding: 11px 3px 11px 8px;
	}
	.header.layout-1 .sf-menu>li.menu-item-has-children>a::after,
	.header.layout-1 .sf-menu>li.menu-item-has-children.current-menu-item:hover>a::after,
	.header.layout-1 .sf-menu>li.menu-item-has-children.current-menu-ancestor:hover>a::after
	{
		margin-left: 1px;
	}
	/*.sf-menu li a, .sf-menu li a:visited
	{
		padding: 11px 11px 11px 10px;
		line-height: 1.83334;
	}
	.sf-menu>li.menu-item-has-children>a, .sf-menu>li.menu-item-has-children>a:visited
	{
		padding: 11px 4px 11px 10px;
	}*/
	.sf-menu>li.menu-item-has-children>a::after,
	.sf-menu>li.menu-item-has-children.current-menu-item:hover>a::after,
	.sf-menu>li.menu-item-has-children.current-menu-ancestor:hover>a::after
	{
		vertical-align: middle;
		margin-top: -2px;
	}
	.header.layout-1 .sf-menu li ul li
	{
		width: 156px;
		padding: 0 8px;
	}
	.header.layout-1 .sf-menu li a,
	.header.layout-1 .sf-menu li a:visited,
	.header.layout-1 .sf-menu li ul li a
	{
		font-size: 13px;
	}
	.header.layout-1 .sf-menu li ul
	{
		width: 172px;
	}
	.header.layout-1 .sf-menu li.wide ul.sub-menu
	{
		width: 344px;
	}
	.header.layout-1 ul.sf-menu li li:hover ul, .header.layout-1 ul.sf-menu li li.sfHover ul,
	.header.layout-1 ul.sf-menu li li li:hover ul, .header.layout-1 ul.sf-menu li li li.sfHover ul
	{
		left: 172px;
	}
	.header.layout-1 .sf-menu li.left-flyout:hover ul ul 
	{
		left: -174px;
	}
	/* --- vertical menu --- */
	.single-ql_services .vertical-menu li a
	{
		padding: 17px 8px 19px 10px;
	}
	.single-ql_services .vertical-menu li a::after
	{
		font-size: 14px;
	}
	/* --- home box --- */
	.home-box,
	.home-box-container-list.for-home-slider .home-box,
	.home-box-container-list.float .home-box
	{
		width: 270px;
	}
	.home-box-container-list.for-home-slider
	{
		position: relative;
		margin-top: -194px;
	}
	.home-box-container
	{
		padding: 19px 30px 30px;
	}
	.home-box .news
	{
		margin-top: 22px;
	}
	.home-box .more
	{
		margin-top: 21px;
	}
	.home-box .scrolling-controls
	{
		margin-top: -59px;
		height: 36px;
	}
	.home-box .scrolling-controls .header-right
	{
		margin-top: 1px;
	}
	/* --- items list --- */
	.items-list.padding-list
	{
		padding: 30px 20px;
	}
	.padding-header
	{
		padding: 0 20px;
	}
	/* --- tabs box navigation --- */
	.vc_col-sm-3 .tabs-box-navigation.sf-menu li.wide ul.sub-menu
	{
		width: 223px;
	}
	.vc_col-sm-3 .tabs-box-navigation.sf-menu li.wide ul li
	{
		width: 203px;
	}
	.vc_col-sm-2 .tabs-box-navigation.sf-menu li.wide ul.sub-menu
	{
		width: 138px;
	}
	.vc_col-sm-2 .tabs-box-navigation.sf-menu li.wide ul li
	{
		width: 118px;
	}
	.vc_col-sm-2 .tabs-box-navigation.sf-menu li:hover ul, 
	.vc_col-sm-2 .tabs-box-navigation.sf-menu li.sfHover ul
	{
		top: 66px;
	}
	.vc_col-sm-12 .type-big>.tabs-navigation
	{
		width: 990px;
	}
	/* --- info box --- */
	.info-box
	{
		padding: 18px 30px 32px;
	}
	.info-box+.arrow-container
	{
		width: 50px;
	}
	.arrow-container .arrow
	{
		padding: 15px 17px 17px;
		right: -50px;
		bottom: -25px;
	}
	/* --- our clients --- */
	.our-clients-list li
	{
		width: 198px;
	}
	/* --- blog --- */
	.post-footer .post-footer-details li
	{
		margin-right: 5px;
	}
	.post-footer-details li.post-footer-author+li.post-footer-category,
	.post-footer-details li.post-footer-date,
	.post-footer-details li.post-footer-comments
	{	
		margin-left: 5px;
		padding-left: 10px;
	}
	.post-footer-details li.separator
	{
		margin: 0 10px 10px 5px;
	}
	.comment-box
	{
		width: 105px;
	}
	.comment-box .date .value
	{
		width: 90px;
		padding: 11px 5px 12px;
	}
	.comment-box .comments-number
	{
		width: 100px;
	}
	.comments .comments-number a
	{
		width: 90px;
	}
	#comments_list .comment-details
	{
		width: 405px;
	}
	#comments_list .children .comment-details
	{
		width: 295px;
	}
	#comments_list .comment-author-avatar,
	#comments_list .comment-author-avatar img
	{
		width: 90px;
		height: 90px;
	}
	#comments_list .comment-author-avatar
	{
		margin-right: 25px;
	}
	#comments_list .children
	{
		margin-left: 110px;
	}
	.comment-form-container
	{
		margin-left: 130px;
	}
	.vc_col-sm-12 #comments_list .comment-details 
	{
		width: 745px;
	}
	.vc_col-sm-12 #comments_list .children .comment-details
	{
		width: 635px;
	}
	.vc_col-sm-10 #comments_list .comment-details
	{
		width: 575px;
	}
	.vc_col-sm-10 #comments_list .children .comment-details
	{
		width: 465px;
	}
	.vc_col-sm-9 #comments_list .comment-details
	{
		width: 490px;
	}
	.vc_col-sm-9 #comments_list .children .comment-details
	{
		width: 380px;
	}
	.vc_col-sm-6 #comments_list .comment-details
	{
		width: 235px;
	}
	.vc_col-sm-6 #comments_list .children .comment-details
	{
		width: 205px;
	}
	.vc_col-sm-6 #comments_list .children
	{
		margin-left: 30px;
	}
	.vc_col-sm-6 .comment-form-container
	{
		margin-left: 0;
	}
	.vc_col-sm-4 #comments_list .comment-details,
	.vc_col-sm-4 #comments_list .children .comment-details
	{
		width: 100%;
	}
	.vc_col-sm-4 .comment-form input[type="submit"]
	{
		width: 140px;
	}	
	/* --- departments --- */
	.vc_col-sm-3 .accordion .ui-accordion-content .item-footer .mc-button
	{
		float: left;
	}
	.vc_col-sm-3 .accordion .ui-accordion-content .item-footer .mc-button:last-child
	{
		margin-top: 10px;
	}
	.vc_col-sm-3 .accordion .ui-accordion-content .item-footer .mc-button,
	.vc_col-sm-2 .item-content .thumb-image,
	.vc_col-sm-6 .accordion.wide .ui-accordion-content .vc_col-sm-6 .item-footer .mc-button
	{
		margin-right: 0;
	}
	.vc_col-sm-6 .accordion.wide .ui-accordion-content .vc_col-sm-6 .item-footer .mc-button:last-child
	{
		margin-top: 10px;
	}
	/* --- isotope gallery --- */
	.gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		max-width: 330px;
	}
	.vc_col-sm-10 .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		max-width: 250px;
	}
	.vc_col-sm-9 .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		max-width: 207px;
	}
	.vc_col-sm-8 .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		clear: both;
		max-width: 100%;
	}
	.vc_col-sm-8 .gallery-item-details-list .details-box .controls
	{
		position: static;
		float: left;
		margin-bottom: 15px;
	}
	.vc_col-sm-4 .controls li.separator
	{
		margin: 0 15px;
	}
	.vc_col-sm-2 .controls li.separator
	{
		margin: 0 10px;
	}
	/* --- gallery box --- */
	.mc-gallery .gallery-box,
	/*.gallery-box img,*/
	.gallery-box .mc-preloader,
	.vc_col-sm-3 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-3 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-2-columns .mc-preloader,
	.vc_col-sm-6 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-6 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-2-columns .mc-preloader,
	.vc_col-sm-9 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-9 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-3-columns .mc-preloader,
	.vc_col-sm-6 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-6 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-3-columns .mc-preloader,
	.vc_col-sm-3 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-3 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-3-columns .mc-preloader
	{
		width: 225px;
	}
	/*.gallery-box img,*/
	.wpb_column .gallery-box .mc-preloader,
	/*.vc_col-sm-3 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-6 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-9 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-3-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-6 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-3-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-3 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 150px;
	}
	.gallery-2-columns .gallery-box,
	/*.gallery-2-columns .gallery-box img,*/
	.gallery-2-columns .gallery-box .mc-preloader
	{
		width: 480px;
	}
	/*.gallery-2-columns .gallery-box img,*/
	.gallery-2-columns .gallery-box .mc-preloader
	{
		height: 320px;
	}
	.vc_col-sm-9 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-9 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-2-columns .mc-preloader
	{
		width: 352.5px;
	}
	/*.vc_col-sm-9 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-2-columns .gallery-box .mc-preloader
	{
		height: 235px;
	}
	.gallery-3-columns .gallery-box,
	/*.gallery-3-columns .gallery-box img,*/
	.gallery-3-columns .gallery-box .mc-preloader,
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box,
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader,
	.vc_col-sm-8 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-8 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-2-columns .mc-preloader,
	.vc_col-sm-4 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-4 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-2-columns .mc-preloader,
	.vc_col-sm-4 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-4 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-3-columns .mc-preloader
	{
		width: 310px;
	}
	/*.gallery-3-columns .gallery-box img,*/
	.gallery-3-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader,
	/*.vc_col-sm-8 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-4 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-4 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 206.667px;
	}
	.vc_col-sm-10 .gallery-box,
	/*.vc_col-sm-10 .gallery-box img,*/
	.vc_col-sm-10 .gallery-box .mc-preloader,
	.vc_col-sm-10 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-10 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-3-columns .mc-preloader
	{
		width: 253.33px;
	}
	/*.vc_col-sm-10 .gallery-box img,*/
	.vc_col-sm-10 .gallery-box .mc-preloader,
	/*.vc_col-sm-10 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 168.883px;
	}
	.vc_col-sm-8 .gallery-box,
	/*.vc_col-sm-8 .gallery-box img,*/
	.vc_col-sm-8 .gallery-box .mc-preloader,
	.vc_col-sm-8 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-8 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-3-columns .mc-preloader
	{
		width: 196.66px;
	}
	/*.vc_col-sm-8 .gallery-box img,*/
	.vc_col-sm-8 .gallery-box .mc-preloader,
	/*.vc_col-sm-8 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 131.1px;
	}
	.vc_col-sm-4 .gallery-box,
	/*.vc_col-sm-4 .gallery-box img,*/
	.vc_col-sm-4 .gallery-box .mc-preloader
	{
		width: 285px;
	}
	/*.vc_col-sm-4 .gallery-box img,*/
	.vc_col-sm-4 .gallery-box .mc-preloader
	{
		height: 190px;
	}
	.vc_col-sm-4 .mc-gallery.horizontal-carousel .gallery-box
	{
		margin-left: 12.5px;
	}
	.vc_col-sm-2 .gallery-box,
	/*.vc_col-sm-2 .gallery-box img,*/
	.vc_col-sm-2 .gallery-box .mc-preloader,
	.vc_col-sm-2 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-2 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-2-columns .mc-preloader,
	.vc_col-sm-2 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-2 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-3-columns .mc-preloader
	{
		width: 140px;
	}
	/*.vc_col-sm-2 .gallery-box img,*/
	.vc_col-sm-2 .gallery-box .mc-preloader,
	/*.vc_col-sm-2 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-2 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 93.33px;
	}
	.vc_col-sm-10 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-10 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-2-columns .mc-preloader
	{
		width: 395px;
	}
	/*.vc_col-sm-10 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-2-columns .gallery-box .mc-preloader
	{
		height: 263.33px;
	}
	.vc_col-sm-4 .gallery-2-columns.dm_pagination .gallery-box-2,
	.vc_col-sm-6 .gallery-3-columns.dm_pagination .gallery-box-3,
	.vc_col-sm-10 .gallery-4-columns.dm_pagination .gallery-box-4,
	.vc_col-sm-4 .gallery-2-columns.dm_simple .gallery-box-2,
	.vc_col-sm-6 .gallery-3-columns.dm_simple .gallery-box-3,
	.vc_col-sm-10 .gallery-4-columns.dm_simple .gallery-box-4
	{
		margin-top: 30px;
	}
	/* --- photostream --- */
	.vc_col-sm-12 .photostream .gallery-box:nth-child(11n+1),
	.vc_col-sm-10 .photostream .gallery-box:nth-child(9n+1),
	.vc_col-sm-9 .photostream .gallery-box:nth-child(8n+1),
	.vc_col-sm-8 .photostream .gallery-box:nth-child(8n+1),
	.vc_col-sm-6 .photostream .gallery-box:nth-child(6n+1),
	.vc_col-sm-4 .photostream .gallery-box:nth-child(4n+1)
	{
		margin-left: 10px;
	}
	.vc_col-sm-12 .photostream .gallery-box:nth-child(9n+1),
	.vc_col-sm-10 .photostream .gallery-box:nth-child(7n+1),
	.vc_col-sm-9 .photostream .gallery-box:nth-child(7n+1),
	.vc_col-sm-8 .photostream .gallery-box:nth-child(6n+1),
	.vc_col-sm-6 .photostream .gallery-box:nth-child(4n+1),
	.vc_col-sm-4 .photostream .gallery-box:nth-child(3n+1)
	{
		margin-left: 0;
	}
	.photostream.default .gallery-box img,
	.vc_col-sm-9 .photostream.default .gallery-box img
	{
		width: 96px;
		height: 96px;
	}
	.vc_col-sm-8 .photostream.default .gallery-box img,
	.vc_col-sm-6 .photostream.default .gallery-box img
	{
		width: 100px;
		height: 100px;
	}
	/* --- side image --- */
	.side-image-static .vc_single_image-img,
	.side-image .vc_single_image-img,
	.side-image+.wpb_single_image .vc_single_image-img
	{
		max-width: 80%;
	}
	.side-image.side-image-flower-2+.wpb_single_image .vc_single_image-img
	{
		max-width: 100%;
	}
	.custom-position-image.wpb_single_image img
	{
		max-width: 410px;
		margin-left: -50px;
		margin-bottom: -66px;
	}
	.side-image.side-image-flower
	{
		left: -90px;
	}
	/* --- services --- */
	.services-list li
	{
		width: 330px;
	}
	.services-list h4,
	.services-list p
	{
		padding-left: 30px;
		padding-right: 30px;
	}
	.services-list h4
	{
		padding-top: 22px;
	}
	.services-list li .service-details
	{
		padding-bottom: 27px;
	}
	.services-list.services-spacing li li
	{
		width: 310px;
	}
	.services-list.services-icons li
	{
		width: 480px;
		padding: 30px;
	}
	.services-list.services-icons li .service-content
	{
		margin-left: 28px;
		padding-left: 30px;
	}
	/* --- timeline --- */
	.vc_col-sm-4 .timeline-item .timeline-left
	{
		width: 132px;
		min-width: 132px;
	}
	.vc_col-sm-4 .timeline-item label
	{
		max-width: 90px;
		padding: 7px 8px 8px;
	}
	.vc_col-sm-4 .timeline-item .label-triangle
	{
		margin-right: 25px;
	}
	.vc_col-sm-4 .timeline-content
	{
		padding: 12px 0 16px 25px;
	}
	.vc_col-sm-4 .timeline-content span
	{
		float: left;
		clear: both;
	}
	.vc_col-sm-4 .timeline-content span.timeline-title
	{
		margin-right: 0;
	}
	.vc_col-sm-4 .timeline-content span.timeline-subtitle
	{
		margin-top: 5px;
	}
	.vc_col-sm-3 .timeline-item .timeline-left
	{
		display: block;
		width: auto;
		min-width: 0;
	}
	.vc_col-sm-3 .timeline-item .label-container .timeline-circle,
	.vc_col-sm-3 .timeline-item .label-triangle
	{
		display: none;
	}
	.vc_col-sm-3 .timeline-item label
	{
		float: left;
		clear: both;
		max-width: 100%;
	}
	.vc_col-sm-3 .timeline-content span.timeline-subtitle
	{
		display: block;
	}
	.vc_col-sm-3 .timeline-content
	{
		display: block;
		clear: both;
		border: none;
		padding: 12px 0 16px;
	}
	/* --- announcement --- */
	.wpb_column .announcement
	{
		padding: 20px 30px;
	}
	.vc_col-sm-4 .announcement.style-2,
	.vc_col-sm-3 .announcement.style-2
	{
		padding: 30px 20px 30px;
	}
	.vc_col-sm-4 .announcement.style-2 h2,
	.vc_col-sm-3 .announcement.style-2 h2
	{
		font-size: 22px;
	}
	.vc_col-sm-4 .announcement.style-2 p,
	.vc_col-sm-3 .announcement.style-2 p
	{
		font-size: 14px;
		padding-top: 20px;
	}
	.vc_col-sm-4 .announcement.style-2 .more,
	.vc_col-sm-3 .announcement.style-2 .more
	{
		font-size: 14px;
	}
	.vc_col-sm-4 .announcement.style-2 .vertical-align-cell:last-child,
	.vc_col-sm-3 .announcement.style-2 .vertical-align-cell:last-child
	{
		margin-top: 27px;
	}
	.vc_col-sm-2 .announcement
	{
		padding: 2px;
	}
	.vc_col-sm-2 .announcement .more
	{
		padding: 2px;
	}
	/* --- testimonials --- */
	.vc_row.full-width>.vc_col-sm-6 .caroufredsel-wrapper-testimonials
	{
		width: calc(100% - 220px) !important;
	}
	.caroufredsel-wrapper-testimonials
	{
		width: 690px !important;
		left: 150px !important;
	}
	.vc_col-sm-8 .caroufredsel-wrapper-testimonials
	{
		width: 590px !important;
		left: 30px !important;
	}
	.testimonials li.vc_col-sm-12
	{
		width: 690px;
	}
	/* --- timetable --- */
	.timetable .event-container
	{
		padding: 12px 8px;
	}
	.tip
	{
		padding: 12px;
	}
	/* --- contact form --- */
	.contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 270px;
	}
	.vc_col-sm-3 .contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 185px;
	}
	.vc_col-sm-2 .contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 120px;
	}
	.vc_col-sm-4 .contact-form .vc_col-sm-8 p,
	.vc_col-sm-4 .contact-form .vc_col-sm-4 input[type="submit"]
	{
		margin-top: 0;
	}
	.vc_col-sm-4 .contact-form .vc_col-sm-4 input[type='submit']
	{
		width: 150px;
	}
	.vc_col-sm-2 .contact-form .vc_col-sm-4 input[type='submit']
	{
		width: 140px;
	}
	.fieldset-with-recaptcha .terms-container
	{
		max-width: 470px;
	}
	.column-with-recaptcha
	{
		display: -ms-flexbox;
		display: -webkit-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: column-reverse;
		-moz-flex-flow: column-reverse;
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
	}
	.contact-form .column-with-recaptcha .g-recaptcha-wrapper
	{
		float: none;
		margin: 0;
		-ms-flex-item-align: flex-end;
		-webkit-align-self: flex-end;
		-moz-align-self: flex-end;
		align-self: flex-end;
	}
	.contact-form .submit-container .column-with-recaptcha .button-with-recaptcha
	{
		float: none;
		margin-top: 30px;
		margin-left: 0;
		margin-right: 0;
	}
	.submit-container .column-with-recaptcha .terms-container
	{
		-ms-flex-order: 1;
		-webkit-order: 1;
		-moz-order: 1;
		order: 1;
		-ms-flex-item-align: flex-end;
		-webkit-align-self: flex-end;
		-moz-align-self: flex-end;
		align-self: flex-end;
	}
	/* --- datepicker --- */
	.ui-datepicker
	{
		width: 288px;
	}
	/* --- contact data --- */
	.vc_col-sm-2 .contact-data li .value
	{
		padding: 13px 15px;
	}
	.vc_col-sm-3 .contact-data li
	{
		display: block;
		word-wrap: break-word;
	}
	.vc_col-sm-3 .contact-data li .value
	{
		display: block;
		padding: 13px 15px;
	}
	.vc_col-sm-3 .contact-data li::before
	{
		display: none;
	}
	/* --- footer banner box --- */
	.footer-banner-box
	{
		width: 330px;
	}
	.footer-banner-box p
	{
		font-size: 26px;
	}
	/* --- slider revolution --- */
	.rev_slider h1,
	.rev_slider h2,
	.rev_slider p,
	.rs-layer.slider-heading,
	.rs-layer.slider-subheading,
	.rs-layer.more
	{
		margin-left: 50px !important;
	}
	.rev_slider h1,
	.rev_slider h2,
	.rs-layer.slider-heading
	{
		font-size: 55px !important;
		line-height: 64px !important;
		margin-top: -20px !important;
	}
	.rev_slider p,
	.rs-layer.slider-subheading
	{
		margin-top: -34px !important;
	}
	.rs-layer.more
	{
		margin-top: -40px !important;
	}
	/* --- visual composer --- */
	.vc_col-sm-12 .comment-form .vc_col-sm-6
	{
		width: 415px;
	}
	.vc_row .vc_col-sm-10
	{
		width: 820px;
	}
	.vc_row .vc_col-sm-9
	{
		width: 735px;
	}
	.vc_row .vc_col-sm-8 
	{
		width: 650px;
	}
	.vc_row .vc_col-sm-6
	{
		width: 480px;
	}
	.site-container .vc_row.full-width>.vc_col-sm-6.column-limited>.wpb_wrapper>.vc_row
	{
		width: 495px;
	}
	.vc_col-sm-10 .vc_col-sm-6
	{
		width: 395px;
	}
	.vc_col-sm-10 .comment-form .vc_col-sm-6
	{
		width: 330px;
	}
	.vc_col-sm-9 .vc_col-sm-6
	{
		width: 352px;
	}
	.vc_row .vc_col-sm-4,
	.vc_col-sm-8 .vc_col-sm-6
	{
		width: 310px;
	}
	.vc_col-sm-9 .comment-form .vc_col-sm-6
	{
		width: 287px;
	}
	.vc_row .vc_col-sm-3,
	.vc_col-sm-6 .vc_col-sm-6,
	.vc_col-sm-6 .comment-form .vc_col-sm-6
	{
		width: 225px;
	}
	.vc_col-sm-10 .vc_col-sm-8
	{
		width: 526px;
	}
	.vc_col-sm-10 .vc_col-sm-4
	{
		width: 264px;
	}
	.vc_col-sm-9 .vc_col-sm-8
	{
		width: 470px;
	}
	.vc_col-sm-9 .vc_col-sm-4
	{
		width: 225px;
	}
	.vc_col-sm-8 .vc_col-sm-9
	{
		width: 480px;
	}
	.vc_col-sm-8 .vc_col-sm-8
	{
		width: 413px;
	}
	.vc_col-sm-8 .vc_col-sm-4
	{
		width: 196px;
	}
	.vc_col-sm-6 .vc_col-sm-8
	{
		width: 300px;
	}
	.vc_col-sm-6 .vc_col-sm-4
	{
		width: 150px;
	}
	.vc_row .vc_col-sm-4 .vc_col-sm-8,
	.vc_row .vc_col-sm-4 .vc_col-sm-4
	{
		width: 100%;
		margin-top: 40px;
		margin-left: 0;
	}
	.vc_row .vc_col-sm-4 .vc_col-sm-8:first-child,
	.vc_row .vc_col-sm-4 .vc_col-sm-4:first-child
	{
		margin-top: 0;
	}
	.vc_row .vc_col-sm-2,
	.vc_col-sm-4 .vc_col-sm-6,
	.vc_col-sm-8 .vc_col-sm-3
	{
		width: 140px;
	}
	.vc_row .vc_col-sm-1\/5 
	{
		width: 174px;
	}
	.vc_row .vc_col-sm-2\/5 
	{
		width: 378px;
	}
	.vc_row .vc_col-sm-3\/5 
	{
		width: 582px;
	}
	.vc_row .vc_col-sm-4\/5 
	{
		width: 786px;
	}
	.vc_col-sm-9 .vc_col-sm-1\/5
	{
		width: 123px;
	}
	/* --- vc blog --- */
	.vc_row .vc_col-sm-12 .post-content
	{
		width: 860px;
	}
	.vc_row .vc_col-sm-10 .post-content
	{
		width: 690px;
	}
	.vc_row .vc_col-sm-9 .post-content
	{
		width: 605px;
	}
	.vc_row .vc_col-sm-8 .post-content
	{
		width: 520px;
	}
	.vc_row .vc_col-sm-6 .post-content
	{
		width: 350px;
	}
	.vc_row .vc_col-sm-4 .post-content
	{
		width: 100%;
	}
	.vc_col-sm-4 .comment-box
	{
		width: 100%;
		margin-bottom: 30px;
		margin-right: 0;
	}
	.vc_col-sm-4 .comment-box li
	{
		float: left;
		width: auto;
	}
	.vc_col-sm-4 .comment-box .comments-number
	{
		width: auto;
		margin-top: 0;
		margin-left: 2px;
	}
	.vc_col-sm-4 .comments .comment-box .comments-number
	{
		float: left;
		width: auto;
		margin-left: 0;
	}
	.vc_col-sm-4 .comments .comment-box .comments-number a,
	.vc_col-sm-4 .comment-box .date .value
	{
		width: auto;
	}
	.vc_col-sm-4 .comment-box .date .value,
	.vc_col-sm-4 .comment-box .date .arrow-date,
	.vc_col-sm-4 .comment-box .comments-number a,
	.vc_col-sm-4 .comment-box .arrow-comments
	{
		clear: both;
		float: none;
	}
	.vc_col-sm-4 .comment-box .date .arrow-date,
	.vc_col-sm-4 .comment-box .arrow-comments
	{
		left: 0;
		right: auto;
	}
	/* --- vc layouts --- */
	.vc_col-sm-8 .comment-form .vc_col-sm-6
	{
		width: 245px;
	}
	/* --- scrolling list --- */
	.vc_col-sm-12 .scrolling-list li .left
	{
		width: 950px;
	}
	.vc_col-sm-10 .scrolling-list li .left
	{
		width: 780px;
	}
	.vc_col-sm-8 .scrolling-list li .left
	{
		width: 610px;
	}
	.vc_col-sm-6 .scrolling-list li .left
	{
		width: 440px;
	}
	.vc_col-sm-4 .scrolling-list li .left
	{
		width: 270px;
	}
	.vc_col-sm-3 .scrolling-list li .left
	{
		width: 185px;
	}
	.vc_col-sm-2 .scrolling-list li .left
	{
		width: 100px;
	}
	/* --- gutenberg --- */
	.clearfix.has-gutenberg-blocks>*
	{
		width: 990px;
	}
	.has-gutenberg-blocks .alignleft
	{
		width: auto;
		margin-left: calc((100% - 990px) / 2);
	}
	.has-gutenberg-blocks .alignright
	{
		width: auto;
		margin-right: calc((100% - 990px) / 2);
	}
	.has-gutenberg-blocks .alignwide
	{
		width: 1090px;
	}
	.wp-block-columns
	{
		-ms-flex-wrap: nowrap;
		-webkit-flex-wrap: nowrap;
		-moz-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}
@media screen and (max-width:1009px)
{
	body
	{
		font-size: 13px;
	}
	blockquote
	{
		padding-left: 23px;
		margin-bottom: 23px;
	}
	.description p,
	p.description
	{
		padding: 21px 0;
	}
	/* --- site container --- */
	.site-container.boxed,
	.boxed .header-container.sticky.move
	{
		max-width: 850px;
	}
	.margin-top-70
	{
		margin-top: 50px;
	}
	.margin-top-92
	{
		margin-top: 62px;
	}
	.margin-top-100,
	body .margin-top-100
	{
		margin-top: 70px;
	}
	.margin-bottom-50,
	.site-container .vc_row.margin-bottom-50
	{
		margin-bottom: 35px;
	}
	.padding-left-right-100
	{
		padding: 0 70px;
	}
	.padding-left-100,
	body .padding-left-100
	{
		padding-left: 70px;
	}
	.padding-right-100,
	.accordion.padding-right-100
	{
		padding-right: 70px;
	}
	.padding-top-70
	{
		padding-top: 50px;
	}
	.padding-top-89
	{
		padding-top: 62px;
	}
	.padding-top-100
	{
		padding-top: 70px;
	}
	.padding-bottom-50
	{
		padding-bottom: 35px;
	}
	.padding-bottom-76
	{
		padding-bottom: 56px;
	}
	.padding-bottom-100
	{
		padding-bottom: 70px;
	}
	.padding-bottom-128
	{
		padding-bottom: 98px;
	}
	/* --- headers --- */
	h1,
	h2.large
	{
		font-size: 24px;
	}
	h2
	{
		font-size: 22px;
	}
	h3,
	blockquote
	{
		font-size: 16px;
	}
	h4,
	table td:first-child, table th:first-child
	{
		font-size: 14px;
	}
	h5
	{
		font-size: 12px;
	}
	.sentence
	{
		margin-top: 21px;
	}
	.sentence-author
	{
		margin-top: 20px;
	}
	/* --- header --- */
	.header,
	.header-top-sidebar,
	.site-container .vc_row,
	.site-container .vc_row.full-width .wpb_column .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.home-box-container-list,
	.footer,
	.copyright-area
	{
		width: 750px;
	}
	.header
	{
		padding-top: 18px;
		padding-bottom: 10px;
	}
	.header.top-sidebar-visible
	{	
		padding-top: 34px;
	}
	.header-separator,
	.layout-3.header,
	.header-container-layout-4 .header
	{
		padding-top: 18px;
	}
	.header-left
	{
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: 18px;
	}
	.layout-2 .header-left
	{
		text-align: left;
	}
	.layout-2 .header-left,
	.layout-4 .header-left
	{
		margin-bottom: 0;
	}
	.header-left a
	{
		display: inline-block;
	}
	.header-right
	{
		clear: both;
		float: left;
	}
	.menu-container
	{
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
	.header-container-layout-2 .menu-container
	{
		display: block;
		margin: 0;
	}
	/* --- slider navigation --- */
	.slider-navigation .slider-control,
	.single .post-content .slider-navigation .slider-control,
	.slider-navigation .slider-control a
	{
		height: 30px;
	}
	.for-home-slider .slider-navigation
	{
		top: -30px;
	}
	/* --- tabs box navigation --- */
	.vc_col-sm-3 .tabs-box-navigation.sf-menu li.wide ul.sub-menu
	{
		width: 172px;
	}
	.vc_col-sm-3 .tabs-box-navigation.sf-menu li.wide ul li
	{
		width: 158px;
	}
	.vc_col-sm-2 .tabs-box-navigation.sf-menu li.wide ul.sub-menu
	{
		width: 172px;
	}
	.vc_col-sm-2 .tabs-box-navigation.sf-menu li.wide ul li
	{
		width: 158px;
	}
	.vc_row .vc_col-sm-2 .tabs-box-navigation.sf-menu li:hover ul, 
	.vc_row .vc_col-sm-2 .tabs-box-navigation.sf-menu li.sfHover ul
	{
		top: 70px;
	}
	.vc_col-sm-12 .type-big>.tabs-navigation
	{
		width: 750px;
	}
	.type-big>.tabs-navigation li a
	{
		font-size: 16px;
	}
	.type-big>.tabs-navigation~.ui-tabs-panel
	{
		padding-top: 50px;
		padding-bottom: 70px;
	}
	/* --- menu --- */
	.sf-menu li
	{
		/*height: 39px;*/
		margin-left: 5px;
	}
	.sf-menu li a, .sf-menu li a:visited
	{
		padding: 11px 10px 11px 8px;
	}
	.sf-menu>li.menu-item-has-children>a, .sf-menu>li.menu-item-has-children>a:visited
	{
		padding: 11px 3px 11px 8px;
	}
	.sf-menu>li.menu-item-has-children>a::after,
	.sf-menu>li.menu-item-has-children.current-menu-item:hover>a::after,
	.sf-menu>li.menu-item-has-children.current-menu-ancestor:hover>a::after
	{
		margin-top: -1px;
		margin-left: 1px;
	}
	.sf-menu li a,
	.sf-menu li a:visited,
	.sf-menu li ul li a
	{
		font-size: 13px;
	}
	.sf-menu li ul
	{
		width: 172px;
	}
	.sf-menu li:hover ul, .sf-menu li.sfHover ul
	{
		/*top: 38px;*/
	}
	.sf-menu li ul li
	{
		width: 156px;
		padding: 0 8px;
	}
	.sf-menu li ul li a,
	.sf-menu li:hover ul a, .sf-menu>li.menu-item-has-children:hover ul a,
	.sf-menu li ul li.menu-item-type-custom a,
	.sf-menu>li.menu-item-has-children:hover ul li.menu-item-type-custom a
	{
		padding: 12px 0;
	}
	.sf-menu li ul li a:hover, .sf-menu li ul li.selected a, .sf-menu li ul li.current-menu-item a,
	.sf-menu>li.menu-item-has-children ul li a:hover, .sf-menu>li.menu-item-has-children:hover ul li.selected a, .sf-menu>li.menu-item-has-children:hover ul li.current-menu-item a,
	.sf-menu>li.menu-item-has-children:hover ul li.selected ul li a:hover,.sf-menu>li.menu-item-has-children:hover ul li.current-menu-item ul li a:hover, .sf-menu>li.menu-item-has-children:hover ul li ul li.selected a, .sf-menu>li.menu-item-has-children:hover ul li ul li.current-menu-item a, .sf-menu>li.menu-item-has-children:hover ul li.selected ul li.selected a, .sf-menu>li.menu-item-has-children:hover ul li.selected ul li.current-menu-item a,
	.sf-menu>li.menu-item-has-children:hover ul li.menu-item-type-custom a:hover, .sf-menu li ul li.menu-item-type-custom a:hover
	{
		padding-bottom: 11px;
	}
	.sf-menu>li.menu-item-has-children:hover ul li.menu-item-type-custom a,
	.sf-menu>li.menu-item-has-children:hover ul li.selected ul li a,
	.sf-menu>li.menu-item-has-children:hover ul li.current-menu-item ul li a,
	.sf-menu li ul li.menu-item-type-custom a
	{
		padding-bottom: 12px;
	}
	ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul,
	ul.sf-menu li li li:hover ul, ul.sf-menu li li li.sfHover ul
	{
		left: 172px;
	}
	.sf-menu li.left-flyout:hover ul ul 
	{
		left: -174px;
	}
	.sf-menu li.wide ul.sub-menu
	{
		width: 344px;
	}
	.sf-menu li li.wide ul.sub-menu
	{
		width: 184px;
	}
	.footer .menu li
	{
		width: 100%;
	}
	/* --- page --- */
	.theme-page
	{
		padding-bottom: 50px;
	}
	.page-margin-top,
	.page_margin_top,
	.single .post-content h2.page-margin-top, .single .post-content h3.page-margin-top, .single .post-content h4.page-margin-top, .single .post-content h5.page-margin-top,
	.single .post-content h2.page_margin_top, .single .post-content h3.page_margin_top, .single .post-content h4.page_margin_top, .single .post-content h5.page_margin_top
	{
		margin-top: 35px;
	}
	.page-margin-top-section,
	.page_margin_top_section,
	.single .post-content h2.page-margin-top-section, .single .post-content h3.page-margin-top-section, .single .post-content h4.page-margin-top-section, .single .post-content h5.page-margin-top-section,
	.single .post-content h2.page_margin_top_section, .single .post-content h3.page_margin_top_section, .single .post-content h4.page_margin_top_section, .single .post-content h5.page_margin_top_section
	{
		margin-top: 50px;
	}
	.page-margin-top-vlarge
	{
		margin-top: 70px;
	}
	.top-hint
	{
		top: 18px;
	}
	/* --- page header --- */
	.page-header-left
	{
		width: 530px;
	}
	.page-header-right
	{
		width: 220px;
	}
	/* --- search --- */
	.search .search-input
	{
		width: 180px;
	}
	.search .search-input:focus
	{
		width: 200px;
	}
	/* --- bread crumb --- */
	.bread-crumb
	{
		padding: 10px 0 0;
	}
	/* --- slider --- */
	.slider li
	{
		height: 520px;
	}
	.slider-content-box
	{
		margin-top: -488px;
		min-height: 286px;
	}
	.slider-content .subtitle
	{
		line-height: 120%;	
	}
	.slider-content h1
	{
		font-size: 56px;
	}
	/* --- home box --- */
	.home-box-container
	{
		padding: 13px 17px 23px;
	}
	.home-box,
	.home-box-container-list.for-home-slider .home-box,
	.home-box-container-list.float .home-box
	{
		width: 216px;
	}
	.home-box-container-list.for-home-slider
	{
		margin-top: -62px;
	}
	.home-box .news
	{
		margin-top: 13px;
	}
	.home-box .news .text
	{
		line-height: 1.69231;
	}
	.home-box .more
	{
		margin-top: 16px;
	}
	.home-box .scrolling-controls
	{
		margin-top: -44px;
		height: 31px;
	}
	.home-box .header-right
	{
		width: 59px;
	}
	.scrolling-list-control-left, 
	.scrolling-list-control-right
	{
		width: 28px;
		height: 28px;
	}
	.home-box-container-list.margin-minus
    {
        margin-top: -202px;
    }
	/* --- scrolling list --- */
	.home-box .scrolling-list-wrapper 
	{
		margin-top: 1px;
	}
	.scrolling-list-control-left, 
	.scrolling-list-control-right
	{
		line-height: 24px;
	}
	/* --- icons list --- */
	.icons-list a,
	.icons-list span
	{	
		margin-left: 20px;
	}
	.header-top-sidebar .template-cart
	{
		padding-left: 20px;
	}
	/* --- more --- */
	.more.medium
	{
		padding: 13px;
	}
	/* --- features --- */
	.vc_col-sm-4 .mc-features-small .text 
	{
		margin-left: 82px;
	}
	.vc_col-sm-4 .mc-features-small .item-content .text h3 
	{
		margin-bottom: 6px;
	}
	.vc_col-sm-4 .mc-features-small .item-footer
	{
		margin-top: 7px;
	}
	.vc_col-sm-3 .mc-features .hexagon,
	.vc_col-sm-3 .mc-features.float-left .circle
	{	
		float: none;
	}
	.vc_col-sm-3 .mc-features.float-left .circle span
	{
		margin-left: 0;
	}
	.vc_col-sm-3 .mc-features .text,
	.vc_col-sm-3 .mc-features.mc-features-circle.float-left .text
	{
		margin-left: 0;
		margin-top: 23px;
	}
	/* --- info box --- */
	.info-box[class^="features-"] h3, .info-box[class*=" features-"] h3,
	.info-box p
	{
		margin-top: 20px;
	}
	/* --- our clients --- */
	.our-clients-list li
	{
		width: 250px;
	}
	.our-clients-list li:nth-child(5n+1)
	{
		border-left: 1px solid #E5E5E5;
	}
	.our-clients-list li:nth-child(3n+1)
	{
		border-left: none;
	}
	.our-clients-list li:nth-child(n+4)
	{
		margin-top: 35px;
	}
	/* --- blog --- */
	.wpb_column .layout-row .blog.page-margin-top-section,
	.wpb_column .layout-column .blog.page-margin-top-section,
	.wpb_column .layout-column .blog.page-margin-top-section:first-child,
	.vc_col-sm-3 .layout-column .blog.page-margin-top-section:first-child,
	.vc_col-sm-2 .layout-column .blog.page-margin-top-section:first-child,
	.wpb_column .layout-row .blog.page_margin_top_section,
	.wpb_column .layout-column .blog.page_margin_top_section,
	.wpb_column .layout-column .blog.page_margin_top_section:first-child,
	.vc_col-sm-3 .layout-column .blog.page_margin_top_section:first-child,
	.vc_col-sm-2 .layout-column .blog.page_margin_top_section:first-child
	{
		margin-top: 50px;
	}
	.wpb_column .layout-row .blog.page-margin-top,
	.wpb_column .layout-column .blog.page-margin-top,
	.wpb_column .layout-column .blog.page-margin-top:first-child,
	.vc_col-sm-3 .layout-column .blog.page-margin-top:first-child,
	.vc_col-sm-2 .layout-column .blog.page-margin-top:first-child,
	.wpb_column .layout-row .blog.page_margin_top,
	.wpb_column .layout-column .blog.page_margin_top,
	.wpb_column .layout-column .blog.page_margin_top:first-child,
	.vc_col-sm-3 .layout-column .blog.page_margin_top:first-child,
	.vc_col-sm-2 .layout-column .blog.page_margin_top:first-child
	{
		margin-top: 35px;
	}
	.comment-box
	{
		width: 95px;
		margin-right: 20px;
	}
	.comment-box .date .value,
	.comments .comments-number a
	{
		width: 80px;
	}
	.comment-box .comments-number
	{
		width: 90px;
	}
	.comment-box .date .value,
	.comment-box .comments-number a
	{
		font-size: 11px;
	}
	.vc_col-sm-3 .layout-column .blog.page-margin-top
	{
		
	}
	.layout-row .blog,
	.post,
	.post-footer,
	.vc_col-sm-3 .layout-row .blog,
	.vc_col-sm-2 .layout-row .blog,
	.vc_col-sm-3 .layout-row .post,
	.vc_col-sm-2 .layout-row .post,
	.vc_col-sm-3 .layout-column .blog,
	.vc_col-sm-2 .layout-column .blog,
	.vc_col-sm-3 .layout-column .post,
	.vc_col-sm-2 .layout-column .post,
	.vc_col-sm-3 .layout-column .blog.page-margin-top,
	.vc_col-sm-3 .layout-column .blog.page-margin-top-section,
	.vc_col-sm-2 .layout-column .blog.page-margin-top,
	.vc_col-sm-2 .layout-column .blog.page-margin-top-section,
	.vc_col-sm-3 .layout-column .blog.page_margin_top,
	.vc_col-sm-3 .layout-column .blog.page_margin_top_section,
	.vc_col-sm-2 .layout-column .blog.page_margin_top,
	.vc_col-sm-2 .layout-column .blog.page_margin_top_section
	{
		margin-top: 30px;
	}
	/* --- comments --- */
	.comments .comment-box .arrow-comments
	{
		clear: both;
		float: none;
		left: 0;
		right: auto;
	}
	.comments .comment-box .comments-number a
	{
		clear: both;
		float: none;
	}
	#comments_list
	{
		clear: both;
		margin-top: 30px;
	}
	#comments_list .comment-details
	{
		width: 379px;
	}
	#comments_list .children .comment-details
	{
		width: 334px;
	}
	#comments_list .comment-details .post-footer
	{
		margin-top: 31px;
	}
	#comments_list .children
	{
		margin-left: 45px;
	}
	.vc_col-sm-12 #comments_list .comment-details
	{
		width: 635px;
	}
	.vc_col-sm-12 #comments_list .children .comment-details
	{
		width: 590px;
	}
	.vc_col-sm-10 #comments_list .comment-details
	{
		width: 507px;
	}
	.vc_col-sm-10 #comments_list .children .comment-details
	{
		width: 462px;
	}
	.vc_col-sm-9 #comments_list .comment-details
	{
		width: 443px;
	}
	.vc_col-sm-6 #comments_list .children .comment-details
	{
		width: 398px;
	}
	.vc_col-sm-6 #comments_list .comment-details
	{
		width: 251px;
	}
	.vc_col-sm-6 #comments_list .children .comment-details
	{
		width: 221px;
	}
	.vc_col-sm-4 #comments_list
	{
		margin-top: 0;
	}
	.vc_col-sm-4 #comments_list .children,
	.vc_col-sm-3 #comments_list .children
	{
		margin-left: 15px;
	}
	.vc_col-sm-4 .comment-form .wpb_column
	{
		margin-top: 8px;
	}
	.vc_col-sm-4 .comment-form .wpb_column:first-child
	{
		margin-top: 0;
	}
	.vc_col-sm-4 .comment-form .vc_col-sm-6
	{
		width: 100%;
		margin-left: 0;
	}
	.vc_col-sm-4 .comment-form input[type="submit"]
	{
		width: 150px;
	}
	.vc_col-sm-2 .comment-form input[type="submit"]
	{
		width: 110px;
		padding: 11px 0;
	}
	/* --- comment form --- */
	.comment-form-container
	{
		margin-left: 0;
	}
	/* --- contact form --- */
	.contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 198px;
	}
	.contact-form .tabs-box-navigation.sf-menu li:hover ul, .contact-form .tabs-box-navigation.sf-menu li.sfHover ul
	{
		top: 46px;
	}
	.vc_col-sm-6 .contact-form .vc_col-sm-8 p,
	.vc_col-sm-6 .contact-form .vc_col-sm-4 input[type="submit"]
	{
		margin-top: 0;
	}
	.vc_col-sm-3 .contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 134px;
	}
	.vc_col-sm-2 .contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 100px;
		padding: 11px 5px;
	}
	.vc_col-sm-2 .contact-form .vc_col-sm-4 input[type='submit']
	{
		width: 110px;
	}
	.fieldset-with-recaptcha .terms-container
	{
		max-width: 430px;
	}
	.fieldset-with-recaptcha .recaptcha-container
	{
		display: -ms-flexbox;
		display: -webkit-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.fieldset-with-recaptcha .recaptcha-container .g-recaptcha-wrapper
	{
		margin-right: 0;
	}
	.submit-container.fieldset-with-recaptcha .recaptcha-container .button-with-recaptcha
	{
		float: none;
		margin-top: 30px;
		margin-left: auto;
		margin-right: 0;
	}
	.comment-form .vc_row.fieldset-with-recaptcha .terms-container
	{
		padding-bottom: 0;
	}
	.terms-container label
	{
		font-size: 13px;
	}
	.vc_row .vc_col-sm-9 .contact-form p,
	.vc_row .vc_col-sm-8 .contact-form p
	{
		padding: 0;
	}
	.vc_col-sm-9 .contact-form .column-with-recaptcha .g-recaptcha-wrapper,
	.vc_col-sm-8 .contact-form .column-with-recaptcha .g-recaptcha-wrapper
	{
		-ms-flex-item-align: start;
		-webkit-align-self: start;
		-moz-align-self: start;
		align-self: start;
	}
	.vc_col-sm-9 .contact-form .submit-container .column-with-recaptcha>.vc_row,
	.vc_col-sm-8 .contact-form .submit-container .column-with-recaptcha>.vc_row
	{
		text-align: center;
	}
	.vc_col-sm-9 .submit-container .column-with-recaptcha .terms-container,
	.vc_col-sm-8 .submit-container .column-with-recaptcha .terms-container
	{
		-ms-flex-item-align: start;
		-webkit-align-self: start;
		-moz-align-self: start;
		align-self: start;
	}
	.vc_row .vc_col-sm-9 .row-with-recaptcha .wpb_column,
	.vc_row .vc_col-sm-8 .row-with-recaptcha .wpb_column
	{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-top: 30px;
	}
	.vc_row .vc_col-sm-9 .row-with-recaptcha .wpb_column:first-child,
	.vc_row .vc_col-sm-8 .row-with-recaptcha .wpb_column:first-child
	{
		margin-top: 0;
	}
	.vc_col-sm-9 .contact-form .submit-container .button-with-recaptcha input[type="submit"],
	.vc_col-sm-8 .contact-form .submit-container .button-with-recaptcha input[type="submit"]
	{
		float: none;
	}
	.vc_col-sm-9 .fieldset-with-recaptcha,
	.vc_col-sm-8 .fieldset-with-recaptcha
	{
		display: -ms-flexbox;
		display: -webkit-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.vc_col-sm-9 .fieldset-with-recaptcha .terms-container,
	.vc_col-sm-8 .fieldset-with-recaptcha .terms-container
	{
		max-width: 100%;
	}
	.vc_col-sm-9 .contact-form .g-recaptcha-wrapper,
	.vc_col-sm-8 .contact-form .g-recaptcha-wrapper
	{
		float: none;
		margin: 0;
	}
	.vc_col-sm-9 .contact-form .submit-container .button-with-recaptcha,
	.vc_col-sm-8 .contact-form .submit-container .button-with-recaptcha
	{
		float: none;
		margin-top: 30px;
		margin-left: 0;
		margin-right: 0;
	}
	.vc_col-sm-9 .fieldset-with-recaptcha .terms-container,
	.vc_col-sm-8 .fieldset-with-recaptcha .terms-container
	{
		height: auto;
		-ms-flex-order: 1;
		-webkit-order: 1;
		-moz-order: 1;
		order: 1;
		padding-bottom: 30px;
	}
	.vc_col-sm-9 .contact-form .submit-container.fieldset-with-recaptcha .recaptcha-container .button-with-recaptcha,
	.vc_col-sm-9 .contact-form .submit-container .column-with-recaptcha .recaptcha-container .button-with-recaptcha,
	.vc_col-sm-8 .contact-form .submit-container.fieldset-with-recaptcha .recaptcha-container .button-with-recaptcha,
	.vc_col-sm-8 .contact-form .submit-container .column-with-recaptcha .recaptcha-container .button-with-recaptcha
	{
		margin-right: auto;
	}
	/* --- datepicker --- */
	.ui-datepicker
	{
		width: 216px;
	}
	.ui-datepicker-header
	{
		padding: 0;
	}
	.ui-datepicker table td, .ui-datepicker table th
	{
		padding: 5px 8px;
	}
	/* --- widgets --- */
	.widget_categories ul,
	.widget_archive ul,
	.widget_archive select
	{
		margin-top: 23px;
	}
	.mc-appointment-widget .sentence
	{
		margin-top: 32px;
	}
	/* --- departments --- */
	.accordion.wide .tabs-navigation
	{
		margin-bottom: 28px;
	}
	.accordion.medium .ui-accordion-content
	{
		padding: 23px 0;
	}
	.item-content .thumb-image
	{
		margin-right: 20px;
	}
	.accordion .ui-accordion-content .item-footer .mc-button
	{
		font-size: 12px;
		padding: 12px 10px;
	}
	.vc_col-sm-3 .item-content .thumb-image
	{
		margin-right: 10px;
	}
	/* --- tabs --- */
	.ui-tabs-panel p
	{
		padding: 20px 0 21px;
	}
	/* --- tabs navigation --- */
	.tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		font-size: 16px;
		line-height: 1.625;
	}
	.tabs-box-navigation.sf-menu .tabs-box-navigation-selected::after
	{
		margin-top: 5px;
	}
	.tabs-box-navigation.sf-menu li:hover ul, 
	.tabs-box-navigation.sf-menu li.sfHover ul
	{
		top: 48px;
	}
	/* --- thin list --- */
	.thin-list li,
	.thin_list li
	{
		margin-right: 15px;
	}
	/* --- announcement --- */
	.announcement h2
	{
		font-size: 24px;
	}
	.wpb_column .announcement
	{
		padding: 20px;
	}
	.vc_col-sm-6 .announcement h2
	{
		font-size: 22px;
	}
	.vc_col-sm-2 .announcement
	{
		padding: 2px;
	}
	.vc_col-sm-2 .announcement h2
	{
		font-size: 18px;
	}
	.vc_col-sm-2 .announcement .more
	{
		padding: 2px;
	}
	/* --- testimonials --- */
	.vc_row.full-width>.vc_col-sm-6 .caroufredsel-wrapper-testimonials
	{
		width: calc(100% - 150px) !important;
	}
	.caroufredsel-wrapper-testimonials
	{
		width: 570px !important;
		left: 90px !important;
	}
	.vc_col-sm-8 .caroufredsel-wrapper-testimonials
	{
		width: 434px !important;
	}
	.testimonials li.vc_col-sm-12
	{
		width: 570px;
	}
	.testimonials li.vc_col-sm-12 .sentence
	{
		font-size: 22px;
	}
	.site-container .horizontal-carousel.testimonials .vc_col-sm-6
	{
		margin-right: 18px;
	}
	/* --- notification boxes --- */
	.vc_col-sm-4 .notification-box h2
	{
		width: auto;
		clear: both;
		margin-left: 0;
		margin-top: 78px;
	}
	.vc_col-sm-4 .notification-box h5
	{
		margin-left: 0;
	}
	/* --- timetable --- */
	.timetable .event-container
	{
		font-size: 12px;
	}
	.timetable th, .timetable .event-container,
	.tooltip .tooltip-content
	{
		padding: 8px 4px;
	}
	.timetable td
	{
		height: 30px;
	}
	.timetable .hours
	{
		margin: 10px 0;
	}
	/* --- isotope gallery --- */
	.gallery-item-details-list>.gallery-item-details>.vc_row
	{
		padding-bottom: 35px;
	}
	ul.gallery-item-details-list.margin-bottom
	{
		margin-bottom: 35px;
	}
	.gallery-item-details-list .details-box p
	{
		padding: 21px 0;
	}
	.gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		max-width: 215px;
	}
	.mc-gallery .gallery-box,
	/*.gallery-box img,*/
	.gallery-box .mc-preloader,
	.gallery-3-columns .gallery-box,
	/*.gallery-3-columns .gallery-box img,*/
	.gallery-3-columns .gallery-box .mc-preloader,
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box,
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader
	{
		width: 230px;
	}
	.vc_col-sm-6 .gallery-box,
	/*.vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-6 .gallery-box .mc-preloader
	{
		width: 285px;
	}
	/*.gallery-box img,*/
	.gallery-box .mc-preloader,
	/*.gallery-3-columns .gallery-box img,*/
	.gallery-3-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader
	{
		height: 153.333px;
	}
	/*.vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-6 .gallery-box .mc-preloader
	{
		height: 190px;
	}
	.gallery-2-columns .gallery-box,
	/*.gallery-2-columns .gallery-box img,*/
	.gallery-2-columns .gallery-box .mc-preloader
	{
		width: 360px;
	}
	/*.gallery-2-columns .gallery-box img,*/
	.gallery-2-columns .gallery-box .mc-preloader
	{
		height: 240px;
	}
	.gallery-item-details-list.not-hidden li.gallery-item-details
	{
		margin-top: 35px;
	}
	.vc_col-sm-6 .mc-gallery.horizontal-carousel li.gallery-box
	{
		margin-left: 40.5px;
		margin-right: 0;
	}
	.vc_col-sm-10 .gallery-box,
	/*.vc_col-sm-10 .gallery-box img,*/
	.vc_col-sm-10 .gallery-box .mc-preloader,
	.vc_col-sm-10 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-10 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-3-columns .mc-preloader
	{
		width: 187.33px;
	}
	/*.vc_col-sm-10 .gallery-box img,*/
	.vc_col-sm-10 .gallery-box .mc-preloader,
	/*.vc_col-sm-10 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 124.883px;
	}
	.vc_col-sm-9 .gallery-box,
	/*.vc_col-sm-9 .gallery-box img,*/
	.vc_col-sm-9 .gallery-box .mc-preloader,
	.vc_col-sm-9 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-9 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-2-columns .mc-preloader,
	.vc_col-sm-9 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-9 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-3-columns .mc-preloader
	{
		width: 264px;
	}
	/*.vc_col-sm-9 .gallery-box img,*/
	.vc_col-sm-9 .gallery-box .mc-preloader,
	/*.vc_col-sm-9 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-9 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-9 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 176px;
	}
	.vc_col-sm-8 .gallery-box,
	/*.vc_col-sm-8 .gallery-box img,*/
	.vc_col-sm-8 .gallery-box .mc-preloader,
	.vc_col-sm-8 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-8 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-2-columns .mc-preloader,
	.vc_col-sm-8 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-8 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-3-columns .mc-preloader
	{
		width: 232px;
	}
	/*.vc_col-sm-8 .gallery-box img,*/
	.vc_col-sm-8 .gallery-box .mc-preloader,
	/*.vc_col-sm-8 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-8 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-8 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 154.667px;
	}
	.vc_col-sm-4 .gallery-box,
	/*.vc_col-sm-4 .gallery-box img,*/
	.vc_col-sm-4 .gallery-box .mc-preloader,
	.vc_col-sm-4 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-4 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-2-columns .mc-preloader,
	.vc_col-sm-4 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-4 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-3-columns .mc-preloader
	{
		width: 238px;
	}
	/*.vc_col-sm-4 .mc-gallery .gallery-box img,*/
	.vc_col-sm-4 .mc-gallery .gallery-box .mc-preloader,
	/*.vc_col-sm-4 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-4 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-4 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 158.667px;
	}
	.vc_col-sm-4 .mc-gallery.horizontal-carousel .gallery-box
	{
		margin-left: 0;
		margin-right: 30px;
	}
	.vc_col-sm-3 .gallery-box,
	/*.vc_col-sm-3 .gallery-box img,*/
	.vc_col-sm-3 .gallery-box .mc-preloader,
	.vc_col-sm-3 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-3 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-2-columns .mc-preloader,
	.vc_col-sm-3 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-3 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-3-columns .mc-preloader
	{
		width: 174px;
	}
	/*.vc_col-sm-3 .gallery-box img,*/
	.vc_col-sm-3 .gallery-box .mc-preloader,
	/*.vc_col-sm-3 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-3 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-3 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 116px;
	}
	.vc_col-sm-2 .gallery-box,
	/*.vc_col-sm-2 .gallery-box img,*/
	.vc_col-sm-2 .gallery-box .mc-preloader,
	.vc_col-sm-2 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-2 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-2-columns .mc-preloader,
	.vc_col-sm-2 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-2 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-3-columns .mc-preloader
	{
		width: 110px;
	}
	/*.vc_col-sm-2 .gallery-box img,*/
	.vc_col-sm-2 .gallery-box .mc-preloader,
	/*.vc_col-sm-2 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-2 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-2 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 73.33px;
	}
	.vc_col-sm-10 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-10 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-2-columns .mc-preloader
	{
		width: 296px;
	}
	/*.vc_col-sm-10 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-10 .gallery-2-columns .gallery-box .mc-preloader
	{
		height: 197.33px;
	}
	.vc_col-sm-6 .gallery-2-columns .gallery-box,
	/*.vc_col-sm-6 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-2-columns .mc-preloader,
	.vc_col-sm-6 .gallery-3-columns .gallery-box,
	/*.vc_col-sm-6 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-3-columns .mc-preloader
	{
		width: 366px;
	}
	/*.vc_col-sm-6 .gallery-2-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-2-columns .gallery-box .mc-preloader,
	/*.vc_col-sm-6 .gallery-3-columns .gallery-box img,*/
	.vc_col-sm-6 .gallery-3-columns .gallery-box .mc-preloader
	{
		height: 244px;
	}
	.vc_col-sm-10 .gallery-item-details-list .details-box .controls,
	.vc_col-sm-9 .gallery-item-details-list .details-box .controls
	{
		position: static;
		float: left;
		margin-bottom: 15px;
	}
	.vc_col-sm-10 .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header,
	.vc_col-sm-9 .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		clear: both;
		max-width: 100%;
	}
	.vc_col-sm-4 .controls li.separator,
	.vc_col-sm-2 .controls li.separator
	{
		display: none;
	}
	.vc_col-sm-6 .gallery-2-columns.dm_pagination .gallery-box-2,
	.vc_col-sm-9 .gallery-3-columns.dm_pagination .gallery-box-3,
	.vc_col-sm-8 .gallery-3-columns.dm_pagination .gallery-box-3,
	.vc_col-sm-6 .gallery-3-columns.dm_pagination .gallery-box-2,
	.gallery-4-columns.dm_pagination .gallery-box-4,
	.vc_col-sm-9 .gallery-4-columns.dm_pagination .gallery-box-3,
	.vc_col-sm-8 .gallery-4-columns.dm_pagination .gallery-box-3,
	.vc_col-sm-6 .gallery-4-columns.dm_pagination .gallery-box-2,
	.vc_col-sm-6 .gallery-2-columns.dm_simple .gallery-box-2,
	.vc_col-sm-9 .gallery-3-columns.dm_simple .gallery-box-3,
	.vc_col-sm-8 .gallery-3-columns.dm_simple .gallery-box-3,
	.vc_col-sm-6 .gallery-3-columns.dm_simple .gallery-box-2,
	.gallery-4-columns.dm_simple .gallery-box-4,
	.vc_col-sm-9 .gallery-4-columns.dm_simple .gallery-box-3,
	.vc_col-sm-8 .gallery-4-columns.dm_simple .gallery-box-3,
	.vc_col-sm-6 .gallery-4-columns.dm_simple .gallery-box-2
	{
		margin-top: 30px;
	}
	/* --- photostream --- */
	.vc_col-sm-12 .photostream .gallery-box:nth-child(9n+1),
	.vc_col-sm-10 .photostream .gallery-box:nth-child(7n+1),
	.vc_col-sm-9 .photostream .gallery-box:nth-child(7n+1),
	.vc_col-sm-8 .photostream .gallery-box:nth-child(6n+1),
	.vc_col-sm-6 .photostream .gallery-box:nth-child(4n+1),
	.vc_col-sm-4 .photostream .gallery-box:nth-child(3n+1)
	{
		margin-left: 10px;
	}
	.vc_col-sm-12 .photostream .gallery-box:nth-child(7n+1),
	.vc_col-sm-10 .photostream .gallery-box:nth-child(5n+1),
	.vc_col-sm-9 .photostream .gallery-box:nth-child(5n+1),
	.vc_col-sm-8 .photostream .gallery-box:nth-child(4n+1),
	.vc_col-sm-6 .photostream .gallery-box:nth-child(3n+1),
	.vc_col-sm-4 .photostream .gallery-box:nth-child(2n+1),
	.vc_col-sm-3 .photostream .gallery-box
	{
		margin-left: 0;
	}
	.wpb_column .photostream.default .gallery-box img
	{
		width: 100px;
		height: 100px;
	}
	.vc_col-sm-12 .photostream.default .gallery-box img
	{
		width: 98px;
		height: 98px;
	}
	/* --- side image --- */
	.side-image-static .vc_single_image-img,
	.side-image .vc_single_image-img,
	.side-image+.wpb_single_image .vc_single_image-img
	{
		max-width: 60%;
	}
	body .site-container .wpb_single_image.side-image-static
	{
		margin-bottom: 38px;
	}
	.custom-position-image.wpb_single_image img
	{
		max-width: 300px;
		margin-left: -31px;
		margin-bottom: -62px;
	}
	.side-image.side-image-flower
	{
		left: -70px;
	}
	body .side-widget
	{
		position: relative;
		right: auto;
	}
	/* --- services --- */
	.services-list li
	{
		width: 250px;
	}
	.services-list h4
	{
		font-size: 16px;
	}
	.services-list.services-spacing li li
	{
		width: 230px;
	}
	.services-list.services-icons li
	{
		width: 360px;
		padding: 20px;
	}
	.services-list.services-icons li .service-content
	{
		margin-left: 18px;
		padding-left: 20px;
	}
	/* --- contact data --- */
	.contact-data li .value
	{
		font-size: 13px;
	}
	.contact-data li::before
	{
		width: 55px;
	}
	.theme-page .vc_row .contact-data li .value
	{
		padding: 13px 10px;
	}
	.footer .widget .contact-data li .value
	{
		padding: 10px 0 10px 10px;
	}
	/* --- footer banner box --- */
	.footer-banner-box
	{
		width: 250px;
		padding: 20px 17px 15px;
	}
	.footer-banner-box p
	{
		font-size: 20px;
	}
	/* --- footer box --- */
	.footer-box-container
	{
		margin-top: 40px;
	}
	/* --- slider revolution --- */
	.rev_slider h1,
	.rev_slider h2,
	.rs-layer.slider-heading
	{
		font-size: 50px !important;
		line-height: 62px !important;
		margin-top: -15px !important;
	}
	.rs-layer.slider-heading.mc-colored
	{
		margin-top: -70px !important;
	}
	.rev_slider p,
	.rs-layer.slider-subheading
	{
		margin-top: -30px !important;
	}
	.rs-layer.slider-subheading-alternative
	{
		margin-top: -100px !important;
	}
	.rs-layer.more
	{
		margin-top: -117px !important;
	}
	/* --- visual composer --- */
	.vc_row [class*="vc_col-sm"]
	{
		margin-left: 18px;
	}
	.vc_row .vc_col-sm-10
	{
		width: 622px;
	}
	.vc_row .vc_col-sm-9
	{
		width: 558px;
	}
	.vc_row .vc_col-sm-8
	{
		width: 494px;
	}
	.vc_row .vc_col-sm-6,
	.vc_col-sm-12 .comment-form .vc_col-sm-6
	{
		width: 366px;
	}
	.site-container .vc_row.full-width>.vc_col-sm-6.column-limited>.wpb_wrapper>.vc_row
	{
		width: 375px;
	}
	.vc_col-sm-10 .vc_col-sm-6,
	.vc_col-sm-10 .comment-form .vc_col-sm-6
	{
		width: 302px;
	}
	.vc_col-sm-9 .vc_col-sm-6,
	.vc_col-sm-9 .comment-form .vc_col-sm-6
	{
		width: 270px;
	}
	.vc_row .vc_col-sm-4,
	.vc_col-sm-8 .vc_col-sm-6
	{
		width: 238px;
	}
	.vc_row .vc_col-sm-3,
	.vc_col-sm-6 .vc_col-sm-6,
	.vc_col-sm-6 .comment-form .vc_col-sm-6
	{
		width: 174px;
	}
	.vc_row .vc_col-sm-2,
	.vc_col-sm-4 .vc_col-sm-6,
	.vc_col-sm-8 .vc_col-sm-3
	{
		width: 110px;
	}
	.vc_col-sm-10 .vc_col-sm-8
	{
		width: 402px;
	}
	.vc_col-sm-10 .vc_col-sm-4
	{
		width: 202px;
	}
	.vc_col-sm-9 .vc_col-sm-8
	{
		width: 360px;
	}
	.vc_col-sm-9 .vc_col-sm-4
	{
		width: 174px;
	}
	.vc_col-sm-8 .vc_col-sm-9
	{
		width: 366px;
	}
	.vc_col-sm-8 .vc_col-sm-8
	{
		width: 317px;
	}
	.vc_col-sm-8 .vc_col-sm-4
	{
		width: 152px;
	}
	.vc_col-sm-6 .vc_col-sm-8,
	.vc_col-sm-6 .vc_col-sm-4
	{
		width: 100%;
		margin-top: 40px;
		margin-left: 0;
	}
	.vc_col-sm-6 .vc_col-sm-8:first-child,
	.vc_col-sm-6 .vc_col-sm-4:first-child
	{
		margin-top: 0;
	}
	.vc_row .vc_col-sm-1\/5 
	{
		width: 135px;
	}
	.vc_row .vc_col-sm-2\/5 
	{
		width: 289px;
	}
	.vc_row .vc_col-sm-3\/5 
	{
		width: 443px;
	}
	.vc_row .vc_col-sm-4\/5 
	{
		width: 597px;
	}
	.vc_col-sm-9 .vc_col-sm-1\/5
	{
		width: 97px;
	}
	/* --- vc layouts --- */
	.vc_col-sm-8 .comment-form .vc_col-sm-6
	{
		width: 238px;
	}
	/* --- vc blog --- */
	.vc_row .vc_col-sm-12 .post-content
	{
		width: 635px;
	}
	.vc_row .vc_col-sm-10 .post-content
	{
		width: 507px;
	}
	.vc_row .vc_col-sm-9 .post-content
	{
		width: 443px;
	}
	.vc_row .vc_col-sm-8 .post-content
	{
		width: 379px;
	}
	.vc_row .vc_col-sm-6 .post-content
	{
		width: 251px;
	}
	/* --- vc isotope gallery --- */
	/*.vc_col-sm-4 .gallery-box img
	{
		width: 238px;
	}*/
	/* --- scrolling list --- */
	.vc_col-sm-12 .scrolling-list li .left
	{
		width: 710px;
	}
	.vc_col-sm-10 .scrolling-list li .left
	{
		width: 582px;
	}
	.vc_col-sm-8 .scrolling-list li .left
	{
		width: 454px;
	}
	.vc_col-sm-6 .scrolling-list li .left
	{
		width: 326px;
	}
	.vc_col-sm-4 .scrolling-list li .left
	{
		width: 198px;
	}
	.vc_col-sm-3 .scrolling-list li .left
	{
		width: 134px;
	}
	.vc_col-sm-2 .scrolling-list li .left
	{
		width: 70px;
	}
	/* --- gutenberg --- */
	.clearfix.has-gutenberg-blocks>*
	{
		width: 750px;
	}
	.has-gutenberg-blocks .alignleft
	{
		width: auto;
		margin-left: calc((100% - 750px) / 2);
	}
	.has-gutenberg-blocks .alignright
	{
		width: auto;
		margin-right: calc((100% - 750px) / 2);
	}
	.has-gutenberg-blocks .alignwide
	{
		width: 850px;
	}
}
@media screen and (max-width:767px)
{
	/* --- general --- */
	body .hide-on-mobiles
	{
		display: none;
	}
	.show-on-mobiles
	{
		display: block;
	}
	.vc_row .wpb_column table td, 
	.vc_row .wpb_column table th
	{
		padding: 11px 15px;
	}
	/* --- site container --- */
	.site-container.boxed
	{
		max-width: 562px;
	}
	.margin-top-92
	{
		margin-top: 42px;
	}
	.padding-bottom-128
	{
		padding-bottom: 78px;
	}
	.padding-left-right-100
	{
		padding: 0 50px;
	}
	.padding-top-57
	{
		padding-top: 39px;
	}
	.padding-top-200
	{
		padding-top: 100px;
	}
	.padding-bottom-63
	{
		padding-bottom: 50px;
	}
	.padding-bottom-193
	{
		padding-bottom: 93px;
	}
	.vc_row .wpb_column.padding-right-30
	{
		padding-right: 0;
	}
	.mobile-margin-top-0
	{
		margin-top: 0 !important;
	}
	/* --- header top sidebar --- */
	.header,
	.header-top-sidebar,
	.site-container .vc_row,
	.site-container .vc_row.full-width .wpb_column .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.home-box-container-list,
	.footer,
	.copyright-area,
	.horizontal-carousel.testimonials .vc_col-sm-6
	{
		width: 462px;
	}
	.header-top-sidebar .thin-list li,
	.header-top-sidebar .thin_list li
	{
		clear: both;
		margin-right: 0;
		margin-top: 10px;
	}
	.header-top-sidebar .thin-list li:first-child,
	.header-top-sidebar .thin_list li:first-child
	{
		margin-top: 0;
	}
	.header-top-sidebar .icons-list
	{
		margin-top: -15px;
	}
	.header,
	.header-container.sticky.transition .header
	{
		padding: 18px 0;
	}
	.header-container-layout-2 .header.layout-2,
	.header-container-layout-3 .header.layout-3
	{
		padding-bottom: 0;
	}
	.site-container .header-container-layout-4 .header.layout-4
	{
		padding: 0;
	}
	.header.layout-2 .header-top-right-sidebar-container
	{
		float: left;
		clear: both;
		width: 100%;
		margin-top: 25px;
	}
	.header .header-left a:first-child
	{
		display: table-cell;
		width: 432px;
	}
	.header.layout-2 .mobile-menu,
	.header.layout-4 .mobile-menu
	{
		padding-bottom: 18px;
	}
	.header.layout-1 .mobile-menu,
	.header.layout-2 .mobile-menu,
	.header.layout-3 .mobile-menu,
	.header.layout-4 .mobile-menu
	{
		width: 100%;
	}
	/* --- header --- */
	.header,
	.layout-2.header,
	.layout-4.header
	{
		padding: 18px 0;
	}
	.header-separator
	{
		display: none;
	}
	.menu-container
	{
		display: none;
	}
	.header-container .header-left
	{
		display: table;
	}
	.header-left
	{
		text-align: left;
		margin-bottom: 0;
	}
	.top-info-list li.separator
	{
		display: none;
	}
	.top-info-list li
	{
		width: 50%;
	}
	.mc-smart-column .wpb_wrapper
	{
		width: auto !important;
		position: static !important;
	}
	.mc-smart-column
	{
		height: auto !important;
	}
	/* --- menu --- */	
	.site-container .header .sf-menu
	{
		display: none;
	}
	.mobile-menu-container
	{
		display: block;
	}
	.header .mobile-menu-switch
	{
		display: table-cell;
		height: 34px;
	}
	.mobile-menu-divider
	{
		margin-top: 18px;
	}
	.header.layout-4 .menu-container
	{
		display: none;
	}
	.menu-item-has-children
	{
		position: relative;
	}
	.mobile-menu.collapsible-mobile-submenus .menu-item-has-children a.template-arrow-menu
	{
		position: absolute;
		width: 46px;
		height: 45px;
		top: 0;
		right: 0;
		margin: 0;
		padding: 0;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		border: none;
		border-bottom: 1px solid #E8E8E8;
	}
	.mobile-menu.collapsible-mobile-submenus .menu-item-has-children a.template-arrow-menu::before
	{
		position: absolute;
		left: 17px;
		top: 16px;
		font-family: 'template';
		content: "\68";
	}
	.menu-item-has-children a.template-arrow-menu:hover
	{
		text-decoration: none;
	}
	.mobile-menu.collapsible-mobile-submenus>ul>li:first-child>a.template-arrow-menu
	{
		top: 1px;
	}
	.collapsible-mobile-submenus .menu-item-has-children ul
	{
		display: none;
	}
	.collapsible-mobile-submenus .menu-item-has-children .menu-item-has-children ul
	{
		display: block;
	}
	.footer .menu li
	{
		width: 50%;
	}
	/* --- vertical menu --- */
	.single-ql_services .vertical-menu li a
	{
		padding: 17px 17px 19px 20px;
	}
	/* --- tabs box navigation --- */
	.wpb_column .tabs-box-navigation.sf-menu li.wide ul.sub-menu
	{
		width: 348px;
	}
	.wpb_column .tabs-box-navigation.sf-menu li.wide ul li
	{
		width: 158px;
	}
	/* --- page header --- */
	.page-header-left,
	.page-header-right
	{
		width: auto;
		float: left;
		clear: both;
	}
	.page-header-right
	{
		margin-top: 15px;
	}
	.top-hint
	{
		display: none;
	}
	/* --- footer --- */
	.footer
	{
		height: auto;
	}
	/* --- search --- */
	.search .search-input
	{
		width: 200px;
	}
	.search .search-input:focus
	{
		width: 240px;
	}
	/* --- slider --- */
	.slider li
	{
		height: 315px;
	}
	.slider-content-box
	{
		margin-top: -285px;
		min-height: 230px;
	}
	.slider-content .subtitle
	{
		margin-top: 10px;
	}
	.slider-content h1
	{
		font-size: 36px;
	}
	.for-home-slider .slider-navigation
	{
		position: relative;
		margin-top: -30px;
		top: 0;
	}
	/* --- home box --- */
	.home-box-container-list,
	.home-box-container-list.for-home-slider>.wpb_wrapper>ul,
	.home-box-container-list.float>.wpb_wrapper>ul
	{
		display: block;
	}
	.wpb_column .home-box-container
	{
		padding: 13px 23px 23px;
	}
	.home-box,
	.home-box-container-list.for-home-slider .home-box,
	.home-box-container-list.float .home-box
	{
		width: 416px;
	}
	.home-box-container-list.for-home-slider
	{
		margin-top: -32px;
	}
	.home-box .header-right
	{
		width: 69px;
	}
	.home-box .scrolling-controls
	{
		height: 36px;
		margin-top: -49px;
	}
	.home-box .scrolling-controls .header-right
	{
		margin-top: 2px;
	}
	.home-box-container-list.margin-minus
    {
        margin-top: -55px;
    }
	/* --- parallax --- */
	.mc-parallax
	{
		background-attachment: scroll;
	}
	/* --- more --- */
	.button-label
	{
		display: block;
	}
	.button-label + .more
	{
		display: inline-block;
		margin-left: 0;
		margin-top: 27px;
	}
	/* --- info box --- */
	.info-box + .arrow-container
	{
		display: none;
	}
	/* --- scrolling list --- */
	.scrolling-controls .header-right
	{
		margin-top: 0;
	}
	.scrolling-list-control-left, 
	.scrolling-list-control-right
	{
		width: 33px;
		height: 33px;
		line-height: 28px;
	}
	.scrolling-list.footer-recent-posts li
	{
		width: auto;
	}
	/* --- features --- */
	.vc_col-sm-4 .mc-features-small .text 
	{
		margin-left: 87px;
	}
	.vc_col-sm-4 .mc-features-small .item-content .text h3 
	{
		margin-bottom: 11px;
	}
	.vc_col-sm-4 .mc-features-small .item-footer
	{
		margin-top: 12px;
	}
	.vc_col-sm-3 .mc-features .hexagon,
	.vc_col-sm-2 .mc-features .hexagon,
	.vc_col-sm-3 .mc-features.float-left .circle,
	.vc_col-sm-2 .mc-features.float-left .circle
	{	
		float: left;
	}
	.vc_col-sm-3 .mc-features .text,
	.vc_col-sm-2 .mc-features .text,
	.vc_col-sm-3 .mc-features.mc-features-circle.float-left .text,
	.vc_col-sm-2 .mc-features.mc-features-circle.float-left .text
	{
		margin-top: 0;
		margin-left: 117px;
	}
	.vc_col-sm-3 .mc-features-small .text,
	.vc_col-sm-2 .mc-features-small .text,
	.vc_col-sm-3 .mc-features.mc-features-circle.circle-small.float-left .text,
	.vc_col-sm-2 .mc-features.mc-features-circle.circle-small.float-left .text
	{
		margin-top: 0;
		margin-left: 97px;
	}
	/* --- our clients --- */
	.our-clients-list li
	{
		width: 231px;
	}
	.our-clients-list li:nth-child(3n+1)
	{
		border-left: 1px solid #E5E5E5;
	}
	.our-clients-list li:nth-child(2n+1)
	{
		border-left: none;
	}
	.our-clients-list li:nth-child(n+3)
	{
		margin-top: 35px;
	}
	/* --- blog --- */
	.vc_row .columns .blog,
	.vc_row .wpb_column .layout-column .blog,
	.wpb_column.vc_col-sm-6.post
	{
		margin-top: 30px;
	}
	.comment-box
	{
		width: 100%;
		margin-bottom: 30px;
		margin-right: 0;
	}
	.comment-box li
	{
		float: left;
		width: auto;
	}
	.comment-box .comments-number
	{
		width: auto;
		margin-top: 0;
		margin-left: 2px;
	}
	.comments .comment-box .comments-number
	{
		float: left;
		width: auto;
	}
	.comments .comment-box .comments-number a
	{
		width: auto;
	}
	.vc_row .wpb_column .comment-box .date .value
	{
		width: auto;
		padding: 11px 13px 12px;
	}
	body .comment-box .date .value,
	.comment-box .date .arrow-date,
	.comment-box .comments-number a,
	.comment-box .arrow-comments
	{
		clear: both;
		float: none;
	}
	.comment-box .date .arrow-date,
	.comment-box .arrow-comments
	{
		left: 0;
		right: auto;
	}
	.comment-box .date .value, 
	.comment-box .comments-number a
	{
		font-size: 12px;
	}
	/* --- comments --- */
	#comments_list
	{
		margin-top: 0;
	}
	.wpb_column #comments_list .comment-author-avatar
	{
		display: block;
	}
	.wpb_column #comments_list .comment-details
	{
		width: 347px;
	}
	.wpb_column #comments_list .children .comment-details
	{
		width: 302px;
	}
	.wpb_column #comments_list .children
	{
		margin-left: 45px;
	}
	.vc_col-sm-2 .comment-form input[type="submit"]
	{
		width: 150px;
		padding: 11px 19px;
	}
	/* --- contact form --- */
	.contact-form p,
	.contact-form input[type="submit"]
	{
		margin-top: 0;
	}
	.wpb_column .contact-form .tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 260px;
		padding: 11px 20px;
	}
	.wpb_column .contact-form .tabs-box-navigation.sf-menu li:hover ul, .wpb_column .contact-form .tabs-box-navigation.sf-menu li.sfHover ul
	{
		top: 48px;
	}
	.vc_col-sm-2 .contact-form .vc_col-sm-4 input[type='submit']
	{
		width: 150px;
	}
	.contact-form p,
	.comment-form p
	{
		padding: 0;
	}
	.contact-form .vc_row.submit-container .wpb_column
	{
		margin-top: 30px;
	}
	.contact-form .vc_row.submit-container .wpb_column:first-child
	{
		margin-top: 0;
	}
	.contact-form .submit-container .vc_col-sm-6>.vc_row
	{
		text-align: center;
	}
	.fieldset-with-recaptcha
	{
		display: -ms-flexbox;
		display: -webkit-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		-moz-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.vc_row .comment-form .wpb_column.fieldset-with-recaptcha
	{
		margin-top: 30px;
	}
	.fieldset-with-recaptcha .terms-container
	{
		max-width: 100%;
	}
	.contact-form .g-recaptcha-wrapper
	{
		float: none;
		margin: 0;
	}
	.contact-form .column-with-recaptcha .g-recaptcha-wrapper
	{
		-ms-flex-item-align: start;
		-webkit-align-self: start;
		-moz-align-self: start;
		align-self: start;
	}
	.contact-form .submit-container .button-with-recaptcha
	{
		float: none;
		margin-top: 30px;
		margin-left: 0;
		margin-right: 0;
	}
	.contact-form .submit-container .button-with-recaptcha input[type="submit"]
	{
		float: none;
	}
	div.submit-container .vc_col-sm-6 .terms-container,
	div.submit-container .vc_col-sm-6 .terms-container + .vc_row
	{
		float: none;
	}
	.submit-container .column-with-recaptcha .terms-container,
	.comment-form .g-recaptcha-wrapper,
	.comment-form .fieldset-with-recaptcha .terms-container
	{
		-ms-flex-item-align: start;
		-webkit-align-self: start;
		-moz-align-self: start;
		align-self: start;
	}
	.fieldset-with-recaptcha .terms-container
	{
		height: auto;
		-ms-flex-order: 1;
		-webkit-order: 1;
		-moz-order: 1;
		order: 1;
		padding-bottom: 30px;
	}
	.contact-form .submit-container.fieldset-with-recaptcha .recaptcha-container .button-with-recaptcha,
	.contact-form .submit-container .column-with-recaptcha .recaptcha-container .button-with-recaptcha,
	.comment-form .button-with-recaptcha
	{
		margin-right: auto;
	}
	/* --- datepicker --- */
	.ui-datepicker
	{
		width: 440px;
	}
	.ui-datepicker-header
	{
		padding: 10px;
	}
	.ui-datepicker table td, .ui-datepicker table th
	{
		padding: 8px;
	}
	/* --- departments --- */
	.accordion.medium .ui-accordion-content
	{
		padding: 20px 0;
	}
	.accordion .ui-accordion-content .item-footer .mc-button
	{
		font-size: 13px;
		padding: 12px 19px;
	}
	.wpb_column .accordion .ui-accordion-content .item-footer .mc-button,
	.wpb_column .accordion.wide .ui-accordion-content .wpb_column .item-footer .mc-button
	{
		margin-right: 10px;
	}
	.wpb_column .accordion .ui-accordion-content .item-footer .mc-button:first-child,
	.wpb_column .accordion.wide .ui-accordion-content .item-footer .mc-button:last-child
	{
		margin-right: 0;
	}
	.wpb_column .accordion .ui-accordion-content .item-footer .mc-button
	{
		float: right;
	}
	.wpb_column .accordion .ui-accordion-content .item-footer .mc-button:last-child,
	.wpb_column .accordion.wide .ui-accordion-content .wpb_column .item-footer .mc-button:last-child
	{
		margin-top: 0;
	}
	/* --- item content --- */
	.item-content,
	.blog.simple .item-content
	{
		margin-top: 40px;
	}
	.wpb_column .item-content .thumb-image
	{
		margin-right: 20px;
	}
	/* --- tabs navigation --- */
	.tabs-navigation li a
	{
		padding: 10px;
	}
	.tabs-navigation li a:hover,
	.tabs-navigation li a.selected,
	.tabs-navigation li.ui-tabs-active a
	{
		padding-bottom: 9px;
	}
	.tabs.small li a
	{
		padding: 16px 12px 18px;
	}
	.vc_col-sm-12 .type-big>.tabs-navigation
	{
		width: 462px;
	}
	div.type-big>.tabs-navigation li a
	{
		font-size: 16px;
		padding: 25px 5px;
	}
	/* --- testimonails --- */
	.site-container .horizontal-carousel.testimonials .vc_col-sm-6
	{
		margin-top: 26px;
	}
	.vc_row .caroufredsel-wrapper-testimonials
	{
		width: 462px !important;
		left: 0 !important;
	}
	.testimonials li.vc_col-sm-12
	{
		width: 462px;
		padding: 0 30px;
	}
	.testimonials li.vc_col-sm-12 .sentence
	{
		font-size: 20px;
	}
	/* --- services --- */
	.services-list li,
	.services-list.services-spacing li li
	{
		width: 100%;
	}
	.services-list.services-spacing li li
	{
		margin-left: 0;
	}
	.services-list li .service-details
	{
		border-right: none;
	}
	.services-list ul li,
	.services-list.services-spacing li li
	{
		margin-top: 30px;
	}
	.services-list>li li:first-child,
	.services-list.services-spacing>li li:first-child
	{
		margin-top: 0;
	}
	.services-list.services-icons li
	{
		clear: both;
		width: 100%;
		padding: 30px;
	}
	body .services-list.services-icons li:nth-child(even)
	{
		margin-left: 0;
		margin-right: 0;
	}
	.services-list.services-icons li .service-content
	{
		margin-left: 28px;
		padding-left: 30px;
	}
	/* --- timeline --- */
	.wpb_column .timeline-item .timeline-left
	{
		display: table-cell;
		width: 167px;
		min-width: 167px;
	}
	.wpb_column .timeline-item label
	{
		float: right;
		clear: none;
		max-width: 110px;
		padding: 7px 20px 8px;
	}
	.wpb_column .timeline-item .label-triangle
	{
		margin-right: 40px;
	}
	.wpb_column .timeline-content
	{
		display: table-cell;
		padding: 22px 0 26px 40px;
		border-left: 1px solid #E5E5E5;
	}
	.wpb_column .timeline-content span
	{
		float: none;
		clear: none;
	}
	.wpb_column .timeline-content span.timeline-title
	{
		margin-right: 10px;
	}
	.wpb_column .timeline-content span.timeline-subtitle
	{
		display: inline;
		margin-top: 7px;
	}
	.wpb_column .timeline-item .label-container .timeline-circle,
	.wpb_column .timeline-item .label-triangle
	{
		display: block;
	}
	/* --- announcement --- */
	.announcement .vertical-align-cell
	{
		display: block;
	}
	.announcement .vertical-align-cell:first-child
	{
		width: 100%;
		padding-right: 0;
	}
	.announcement .vertical-align-cell:last-child
	{	
		width: 100%;
		text-align: left;
		margin-top: 23px;
	}
	.vc_col-sm-2 .announcement
	{
		padding: 20px;
	}
	.vc_col-sm-2 .announcement h2
	{
		font-size: 24px;
	}
	.vc_col-sm-2 .announcement .more
	{
		padding: 13px;
	}
	/* --- notification boxes --- */
	.wpb_column .notification-box h2
	{
		width: calc(100% - 95px);
		clear: none;
		margin-left: 78px;
		margin-top: 0;
	}
	.wpb_column .notification-box h5
	{
		margin-left: 79px;
	}
	/* --- timetable --- */
	.timetable
	{
		display: none;
	}
	.timetable.small
	{
		display: block;
	}
	.timetable.small .items-list a
	{
		width: 360px;
	}
	.timetable.small .items-list.mode12 a
	{
		width: 315px;
	}
	/* --- isotope gallery --- */
	.vc_row .wpb_column .mc-gallery .gallery-box,
	/*.vc_row .wpb_column .mc-gallery .gallery-box img,*/
	.vc_row .wpb_column .mc-gallery .gallery-box .mc-preloader
	{
		width: 225px;
	}
	/*.vc_row .wpb_column  .mc-gallery .gallery-box img,*/
	.vc_row .wpb_column  .mc-gallery .gallery-box .mc-preloader
	{
		height: 150px;
	}
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box,
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader
	{
		width: 100%;
	}
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader
	{
		height: 308px;
	}
	/*.vc_col-sm-4 .gallery-box img
	{
		height: auto;
	}*/
	.gallery-box .item-details
	{
		padding: 14px 0;
	}
	.gallery-box:hover .item-details
	{
		padding-bottom: 13px;
	}
	.gallery-box .social-icons, 
	.gallery-item-details-list .social-icons
	{
		margin-top: 10px;
	}
	.gallery-box .description
	{
		padding: 10px 10px 13px;
	}
	.wpb_column .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		max-width: 310px;
	}
	.wpb_column .gallery-item-details-list .details-box .controls
	{
		position: absolute;
		margin-bottom: 0;
	}
	.wpb_column .controls li.separator
	{
		display: block;
		margin: 0 20px;
	}
	.wpb_column .gallery-2-columns.dm_pagination .gallery-box-2,
	.wpb_column .gallery-3-columns.dm_pagination .gallery-box-2,
	.wpb_column .gallery-4-columns.dm_pagination .gallery-box-2,
	.wpb_column .gallery-2-columns.dm_simple .gallery-box-2,
	.wpb_column .gallery-3-columns.dm_simple .gallery-box-2,
	.wpb_column .gallery-4-columns.dm_simple .gallery-box-2
	{
		margin-top: 0;
	}
	.wpb_column .gallery-3-columns.dm_pagination .gallery-box-3,
	.wpb_column .gallery-4-columns.dm_pagination .gallery-box-3,
	.wpb_column .gallery-3-columns.dm_simple .gallery-box-3,
	.wpb_column .gallery-4-columns.dm_simple .gallery-box-3
	{
		margin-top: 30px;
	}
	/* --- photostream --- */
	.vc_row .wpb_column .photostream .gallery-box
	{
		margin-left: 10px;
	}
	.wpb_column .photostream .gallery-box:nth-child(4n+1)
	{
		margin-left: 0;
	}
	.vc_col-sm-12 .photostream.default .gallery-box img
	{
		width: 100px;
		height: 100px;
	}
	/* --- side image --- */
	.side-image-static .vc_single_image-img,
	.side-image .vc_single_image-img,
	.side-image+.wpb_single_image .vc_single_image-img
	{
		max-width: 80%;
	}
	.page-margin-top.side-image+.wpb_single_image
	{
		margin-bottom: 35px;
	}
	.side-image+.margin-right-30.wpb_single_image,
	.side-image-static+.margin-right-30.wpb_single_image
	{
		margin-right: 0;
	}
	body .site-container .wpb_single_image.side-image-static
	{
		margin-bottom: 50px;
	}
	.custom-position-image.wpb_single_image img
	{
		max-width: 100%;
		margin-left: 0;
		margin-bottom: -70px;
	}
	.side-image.side-image-flower-2
	{
		top: -30px;
	}
	/* --- scrolling gallery --- */
	.wpb_column .mc-gallery.horizontal-carousel li.gallery-box
	{
		margin-right: 12px;
		margin-left: 0;
	}
	/* --- contact data --- */
	.theme-page .vc_row .contact-data li .value
	{
		padding: 13px 30px 13px 20px;
	}
	.wpb_column .contact-data li::before
	{
		width: 75px;
	}
	.wpb_column .contact-data li
	{
		display: table;
	}
	.wpb_column .contact-data li .value,
	.wpb_column .contact-data li::before
	{
		display: table-cell;
	}
	.footer .widget .contact-data li .value
	{
		padding: 10px 0 10px 15px;
	}
	/* --- footer banner box --- */
	.footer-banner-box-container
	{
		display: block;
	}
	.footer-banner-box
	{
		width: 100%;
		padding: 26px 23px 23px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.footer-banner-box p
	{
		font-size: 26px;
	}
	/* --- footer menu --- */
	.menu-footer-menu-container 
	{
		clear: both;
		float: left;
		margin-top: 23px;
	}
	/* --- 404 --- */
	.page-template-404 p
	{
		font-size: 14px;
	}
	/* --- slider revolution --- */
	.rev_slider h1,
	.rev_slider h2,
	.rs-layer.slider-heading
	{
		font-size: 34px !important;
		font-weight: 300 !important;
		line-height: 42px !important;
		margin-top: -45px !important;
	}
	.rev_slider p,
	.rs-layer.slider-subheading
	{
		font-size: 18px !important;
		line-height: 27px !important;
		margin-top: -112px !important;
	}
	.rs-layer.slider-subheading-alternative
	{
		font-size: 16px !important;
		margin-top: -150px !important;
	}
	.rs-layer.more
	{
		margin-top: -180px !important;
		padding: 14px 20px 13px !important;
	}
	/* --- visual composer --- */
	.vc_row .wpb_column
	{
		width: 100%;
		margin-top: 40px;
	}
	.vc_row.full-width > .vc_col-sm-6 .vc_col-sm-3,
	.vc_row.full-width > .vc_col-sm-6 .vc_col-sm-4,
	.vc_row.full-width > .vc_col-sm-6 .vc_col-sm-6,
	.vc_row .wpb_column:first-child
	{
		margin-top: 0;
	}
	.vc_row .vc_col-sm-6,
	.vc_row .vc_grid-item[class*="vc_col-sm"],
	.site-container .vc_row.full-width>.vc_col-sm-6, .site-container .vc_row.full-width>.vc_col-sm-4, .site-container .vc_row.full-width>.vc_col-sm-3,
	.site-container .vc_row.full-width>.vc_col-sm-6.column-limited>.wpb_wrapper>.vc_row
	{
		width: 100%;
	}
	.site-container .vc_row.full-width>.vc_col-sm-6.column-limited>.wpb_wrapper>.vc_row
	{
		padding: 0 50px;
	}
	.vc_row [class*="vc_col-sm"]
	{
		margin-left: 0;
	}
	/* --- vc layouts --- */
	.comment-form .wpb_column,
	.contact-form .wpb_column
	{
		margin-top: 8px;
	}
	.comment-form .wpb_column:first-child,
	.contact-form .wpb_column
	{
		margin-top: 0;
	}
	/* --- vc columns --- */
	.vc_row .vc_col-sm-12 .blog.column_left, .vc_row .vc_col-sm-12 .blog.column_right,
	.vc_row .vc_col-sm-10 .blog.column_left, .vc_row .vc_col-sm-10 .blog.column_right,
	.vc_row .vc_col-sm-9 .blog.column_left, .vc_row .vc_col-sm-9 .blog.column_right,
	.vc_row .vc_col-sm-8 .blog.column_left, .vc_row .vc_col-sm-8 .blog.column_right,
	.wpb_column .comment-form .vc_col-sm-6,
	.vc_row .wpb_column .post-content
	{
		width: 100%;
	}
	/* --- scrolling list --- */
	.wpb_column .scrolling-list li .left
	{
		width: 422px;
	}
	/* --- misc --- */
	.scroll-top.animated-element
	{
		right: 10px;
		bottom: 10px;
	}
	/* --- page layout --- */
	.flex-box
	{
		display: block;
	}
	.flex-hide
	{
		display: inline;
	}
	/* --- gutenberg --- */
	.clearfix.has-gutenberg-blocks>*
	{
		width: 462px;
	}
	.has-gutenberg-blocks .alignleft
	{
		width: auto;
		margin-left: calc((100% - 462px) / 2);
	}
	.has-gutenberg-blocks .alignright
	{
		width: auto;
		margin-right: calc((100% - 462px) / 2);
	}
	.has-gutenberg-blocks .alignwide
	{
		width: 562px;
	}
	.wp-block-columns
	{
		-ms-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.wp-block-columns .wp-block-column
	{
		flex-basis: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	.wp-block-latest-posts.is-grid li
	{
		width: 100%;
	}
}
@media screen and (max-width:647px)
{
	.rs-layer.slider-subheading-alternative
	{
		display: none;
	}
	.rs-layer.more
	{
		margin-top: -265px !important;
	}
}
@media screen and (max-width:479px)
{
	/* --- site container --- */
	.site-container.boxed
	{
		max-width: 400px;
	}
	.padding-left-right-100,
	.site-container .vc_row.full-width>.vc_col-sm-6.column-limited>.wpb_wrapper>.vc_row
	{
		padding: 0 30px;
	}
	/* --- header --- */
	h1,
	h2.large
	{
		font-size: 22px;
	}
	h2
	{
		font-size: 18px;
	}
	.large p, p.large
	{
		font-size: 14px;
	}
	/* --- header top sidebar --- */
	.header,
	.header-top-sidebar,
	.site-container .vc_row,
	.site-container .vc_row.full-width .wpb_column .vc_row,
	.site-container .vc_row.full-width .vc_col-sm-12.wpb_column .vc_row,
	.home-box-container-list,
	.footer,
	.copyright-area,
	.horizontal-carousel.testimonials .vc_col-sm-6
	{
		width: 300px;
	}
	.header-top-sidebar .thin-list,
	.header-top-sidebar .thin_list,
	.header-top-sidebar .icons-list
	{
		clear: both;
		width: 100%;
	}
	.header-top-sidebar .icons-list
	{
		margin-top: 17px;
	}
	/* --- header --- */
	.header .header-left a:first-child
	{
		width: 270px;
	}
	.top-info-list li .value
	{
		font-size: 18px;
	}
	/* --- menu --- */
	.sf-menu li.wide ul.sub-menu
	{
		width: 174px;
	}
	/* --- icons list --- */
	.copyright-area-container .icons-list
	{
		clear: both;
		float: left;
		margin-left: 0;
		margin-top: 20px;
	}
	/* --- slider --- */
	.slider li
	{
		height: 210px;
	}
	.slider-content-box
	{
		margin-top: -195px;
		min-height: 175px;
	}
	.slider-content h1
	{
		font-size: 24px;
	}
	/* --- home box --- */
	.home-box,
	.home-box-container-list.for-home-slider .home-box,
	.home-box-container-list.float .home-box
	{
		width: 254px;
	}
	.home-box-container-list.margin-minus
    {
        margin-top: -20px;
    }
	/* --- comments --- */
	.wpb_column #comments_list .comment-details
	{
		width: 300px;
	}
	.wpb_column #comments_list .comment-author-avatar
	{
		display: none;
	}
	.wpb_column #comments_list .children
	{
		margin-left: 30px;
	}
	.wpb_column #comments_list .children .comment-details
	{
		width: 270px;
	}
	#comments_list .comment-details .post-footer
	{
		margin-top: 21px;
	}
	#comments_list li.comment,
	#comments_list .children li.comment
	{
		margin-top: 30px;
	}
	/* --- timeline --- */
	.wpb_column .timeline-item .timeline-left
	{
		width: 132px;
		min-width: 132px;
	}
	.wpb_column .timeline-item label
	{
		max-width: 90px;
		padding: 7px 8px 8px;
	}
	.wpb_column .timeline-item .label-triangle
	{
		margin-right: 25px;
	}
	.wpb_column .timeline-content
	{
		padding: 12px 0 16px 25px;
	}
	.wpb_column .timeline-content span
	{
		float: left;
		clear: both;
	}
	.wpb_column .timeline-content span.timeline-title
	{
		margin-right: 0;
	}
	.wpb_column .timeline-content span.timeline-subtitle
	{
		margin-top: 5px;
	}
	/* --- announcement --- */
	.announcement h2
	{
		font-size: 22px;
	}
	.vc_col-sm-2 .announcement h2
	{
		font-size: 22px;
	}
	.announcement p
	{
		font-size: 14px;
	}
	/* --- testimonials --- */
	.vc_row .caroufredsel-wrapper-testimonials
	{
		width: 300px !important;
	}
	.testimonials li.vc_col-sm-12
	{
		width: 300px;
		padding: 0 20px;
	}
	.testimonials li.vc_col-sm-12 .sentence
	{
		font-size: 18px;
	}
	/* --- services --- */
	.services-list.services-icons li
	{
		padding: 20px;
	}
	.services-list.services-icons li .service-content
	{
		margin-left: 18px;
		padding-left: 20px;
	}
	/* --- timetable --- */
	.timetable.small .items-list a
	{
		width: 200px;
	}
	.timetable.small .items-list.mode12 a
	{
		width: 155px;
	}
	.tabs-box-navigation.sf-menu .tabs-box-navigation-selected
	{
		width: 268px;
	}
	/* --- our clients --- */
	.our-clients-list li
	{
		width: 100%;
		margin-top: 35px;
	}
	.our-clients-list li:first-child
	{
		margin-top: 0;
	}
	.our-clients-list li:nth-child(n)
	{
		border-left: none;
	}
	/* --- datepicker --- */
	.ui-datepicker
	{
		width: 278px;
	}
	/* --- controls --- */
	.wpb_column .controls li.separator
	{
		margin: 0 10px;
	}
	/* --- isotope gallery --- */
	.mc-gallery,
	.vc_row .wpb_column .mc-gallery .gallery-box,
	/*.vc_row .wpb_column .mc-gallery .gallery-box img,*/
	.vc_row .wpb_column .mc-gallery .gallery-box .mc-preloader
	{
		width: 285px;
	}
	/*.vc_row .wpb_column .mc-gallery .gallery-box img,*/
	.vc_row .wpb_column .mc-gallery .gallery-box .mc-preloader
	{
		height: 190px;
	}
	/*.vc_col-sm-8 .vc_col-sm-6 .gallery-box img,*/
	.vc_col-sm-8 .vc_col-sm-6 .gallery-box .mc-preloader
	{
		height: 200px;
	}
	.wpb_column .gallery-item-details-list .vc_col-sm-6 .details-box>.controls+.box-header
	{
		max-width: 175px;
	}
	.wpb_column .gallery-2-columns.dm_pagination .gallery-box-2,
	.wpb_column .gallery-3-columns.dm_pagination .gallery-box-2,
	.wpb_column .gallery-4-columns.dm_pagination .gallery-box-2,
	.wpb_column .gallery-2-columns.dm_simple .gallery-box-2,
	.wpb_column .gallery-3-columns.dm_simple .gallery-box-2,
	.wpb_column .gallery-4-columns.dm_simple .gallery-box-2
	{
		margin-top: 30px;
	}
	/* --- photostream --- */
	.wpb_column .photostream .gallery-box:nth-child(4n+1)
	{
		margin-left: 10px;
	}
	.wpb_column .photostream .gallery-box:nth-child(3n+1)
	{
		margin-left: 0;
	}
	.wpb_column .photostream.default .gallery-box img
	{
		width: 90px;
		height: 90px;
	}
	/* --- side image --- */
	.side-image-static .vc_single_image-img,
	.side-image .vc_single_image-img,
	.side-image+.wpb_single_image .vc_single_image-img
	{
		max-width: 60%;
	}
	.side-image-right
	{
		margin-right: 0;
	}
	/* --- tabs box navigation --- */
	.wpb_column .tabs-box-navigation.sf-menu li.wide ul.sub-menu
	{
		width: 298px;
	}
	.wpb_column .tabs-box-navigation.sf-menu li.wide ul li
	{
		width: 282px;
	}
	.vc_col-sm-12 .type-big>.tabs-navigation
	{
		width: 300px;
	}
	/* --- scrolling gallery --- */
	.wpb_column .mc-gallery.horizontal-carousel li.gallery-box
	{
		margin-left: 7.5px;
		margin-right: 0;
	}
	/* --- pricing table --- */
	div.p_table_1.p_table_responsive li.row_style_1 .css3_grid_vertical_align>span, div.p_table_1.p_table_responsive li.row_style_2 .css3_grid_vertical_align>span, div.p_table_1.p_table_responsive li.row_style_3 .css3_grid_vertical_align>span, div.p_table_1.p_table_responsive li.row_style_4 .css3_grid_vertical_align>span
	{
		padding: 0 2px !important;
	}
	/* --- slider revolution --- */
	.rev_slider h1,
	.rev_slider h2,
	.rs-layer.slider-heading
	{
		font-weight: 400 !important;
		font-size: 24px !important;
		line-height: 32px !important;
		margin-top: -46px !important;
	}
	.rev_slider h1,
	.rev_slider h2,
	.rev_slider p,
	.rs-layer.slider-heading,
	.rs-layer.slider-subheading,
	.rs-layer.more
	{
		margin-left: 20px !important;
	}
	.rs-layer.more
	{
		margin-top: -295px !important;
	}
	.rev_slider p
	{
		display: none;
	}
	/* --- vc layouts --- */
	/*.vc_col-sm-8 .vc_row .vc_col-sm-6
	{
		float: none;
		clear: both;
		width: 100%;
		margin-top: 23px;
		margin-left: 0;
	}
	.vc_col-sm-8 .vc_row .vc_col-sm-6:first-child
	{
		margin-top: 0;
	}*/
	/* --- scrolling list --- */
	.wpb_column .scrolling-list li .left
	{
		width: 260px;
	}
	/* --- gutenberg --- */
	.clearfix.has-gutenberg-blocks>*
	{
		width: 300px;
	}
	.has-gutenberg-blocks .alignleft
	{
		width: auto;
		margin-left: calc((100% - 300px) / 2);
	}
	.has-gutenberg-blocks .alignright
	{
		width: auto;
		margin-right: calc((100% - 300px) / 2);
	}
	.has-gutenberg-blocks .alignwide
	{
		width: 400px;
	}
}
@media screen and (max-device-width: 480px)
{
	body
	{
		-webkit-text-size-adjust: none;
	}
}/* --- woocommerce --- */
.woocommerce div.col2-set.addresses
{
	margin-top: 20px;
}
.woocommerce-account .addresses .title h3
{
	float: left;
	margin-top: 0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle
{
	top: -3px;
}
.woocommerce input[type=number]::-webkit-inner-spin-button, 
.woocommerce input[type=number]::-webkit-outer-spin-button
{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.woocommerce #reviews #comments ol.commentlist
{
	padding: 0;
}
.woocommerce table.cart .product-thumbnail a,
div.pp_woocommerce .pp_next,
div.pp_woocommerce .pp_previous
{
	border: none;
}
.woocommerce-checkout #payment .payment_method_paypal .about_paypal
{
	line-height: 150%;
}
.woocommerce-Price-amount.amount
{
	color: #000;
}
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title
{
	font-size: 24px;
	line-height: 1.5;
	padding: 0;
	margin-bottom: 10px;
	transition: color 0.2s ease 0s;
	-webkit-transition: color 0.2s ease 0s;
	-moz-transition: color 0.2s ease 0s;
}
.woocommerce ul.products li.product h3:hover,
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover
{
	text-decoration: none;
	color: rgba(0,0,0,0.6);
}
.woocommerce ul.products li.product a img
{
	opacity: 1;
	transition: opacity 0.4s ease-in-out 0s;
	margin: 0 0 20px;
}
.woocommerce ul.products li.product a:hover img,
.woocommerce ul.cart_list li a:hover img, 
.woocommerce ul.product_list_widget li a:hover img
{
	opacity: 0.8;
	transition: opacity 0.4s ease-in-out 0s;
}
.woocommerce .product-categories
{
	list-style-type: none;
    margin: 20px 0 0;
	padding: 0;
}
.woocommerce .product-categories li
{
	float: left;
	font-size: 12px;
	line-height: 1;
	color: #666;
	margin-right: 10px;
	margin-top: 10px;
	text-transform: uppercase;
}
.woocommerce .product-categories li a
{	
	display: block;
	color: #666;
	padding: 13px 15px 14px;
	border: 1px solid #E5E5E5;
}
.woocommerce .product-categories li a:hover
{
	color: #FFF;
	border-color: #42B3E5;
	background: #42B3E5;
}
.woocommerce-pagination .prev,
.woocommerce-pagination .next
{
	/*width: 29px;*/
	text-align: center;
}
.woocommerce nav.woocommerce-pagination
{
	text-align: left;
}
.woocommerce nav.woocommerce-pagination ul
{
	border: none;
	margin: 0;
}
.woocommerce .woocommerce-pagination ul.page-numbers
{
	clear: both;
}
.woocommerce .woocommerce-pagination ul.page-numbers li
{
	float: left;
	margin-left: 10px;
	border: none;
}
.woocommerce .woocommerce-pagination ul.page-numbers li:first-child
{
	margin-left: 0;
}
.woocommerce .woocommerce-pagination ul.page-numbers li a,
.woocommerce .woocommerce-pagination ul.page-numbers li span,
.woocommerce .woocommerce-pagination ul.page-numbers li a:focus
{
	display: block;
	color: #666;
	background: transparent;
	width: 37px;
	padding: 9px 0 8px;
	font-size: 12px;
	line-height: 1.83334;
	border: 1px solid #E5E5E5;
	text-align: center;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	min-width: auto;	
}
.woocommerce .woocommerce-pagination ul.page-numbers li a
{
	transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
}
.woocommerce .woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce .woocommerce-pagination ul.page-numbers li a.current,
.woocommerce .woocommerce-pagination ul.page-numbers li span.current
{
	border-color: #42B3E5;
	background: #42B3E5;
	color: #FFF;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper
{
	margin: 0;
}
.woocommerce div.product div.images .flex-control-thumbs
{
	margin-top: 1em;
}
.woocommerce .site-container div.product div.images .flex-control-thumbs li
{
	float: left;
	clear: none;
    margin-bottom: 1em;
    margin-right: 3.8%;
    width: 30.75%;
}
.woocommerce .site-container div.product div.images .flex-control-thumbs li:nth-child(3n)
{
	margin-right: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li
{
	background: none;
	border: none;
	margin: 0;
	padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before
{
	border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after, 
.woocommerce div.product .woocommerce-tabs ul.tabs li:before
{
	box-shadow: none;
	border: none;
	content: '';
	bottom: 0;
	height: auto;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active
{
	background: transparent;
	z-index: 0;
}
.woocommerce div.product .woocommerce-tabs.wc-tabs-wrapper ul.tabs
{
	overflow: visible;
	border: none;
}
.woocommerce div.product .woocommerce-tabs
{
	width: 100%;
	padding: 0;
	margin: 0 0 -15px;
	list-style: none;
	background: none;
	border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs
{
	border-bottom: 1px solid #E5E5E5;
	margin: 0;
	padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li
{
	position: relative;
	float: left;
	padding: 0;
	border: none;
	list-style: none;
	text-align: center;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a
{
	position: relative;
	width: auto;
	display: block;
	text-align: center;
	font-size: 18px;
	color: #25282A;
	padding: 8px 15px 11px;
	border: none;
	background: #F0F0F0;
	font-family: 'Source Sans Pro', 'Arial', sans-serif;
	line-height: normal;
	outline: none;
	text-decoration: none;
	transition: none;
	line-height: 1;
	border-right: 1px solid #E0E0E0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active span
{
	display: inline;
	position: relative;
	border-style: solid;
	border-width: 9px 9px 0;
	border-color: #42B3E5 transparent;
	bottom: -9px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li
{
	margin: 5px 10px -1px 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child
{
	margin-right: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a
{
	font-size: 16px;
	padding: 14px 17px 16px;
	margin-bottom: 1px;
	background: none;
	border-right: none;
	color: #666;
	font-weight: normal;
	border-bottom: 1px solid #E0E0E0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li a.selected,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a
{
	border-bottom: 2px solid #42B3E5;
	padding-bottom: 15px;
	background: none;
	color: #000;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel p
{
	margin-top: 10px;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.altm,
.woocommerce .widget_product_search form input[type='submit'],
.woocommerce .widget_product_search form button,
.woocommerce .cart .coupon input.button,
.woocommerce .button.add_to_cart_button.loading
{	
	display: block;
	color: #fff; 
	float: right;
	font-size: 14px;
	padding: 12px 19px;
	text-align: center;
	cursor: pointer;
	background: #3156A3;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	font-weight: normal;
	border: 1px solid #3156A3;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.2s ease 0s;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
}
.woocommerce-orders-table__cell-order-actions
{
	text-align: center;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .widget_price_filter .price_slider_amount .button,
.woocommerce .widget_product_search form input[type='submit'],
.woocommerce .widget_product_search form button,
.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce #review_form #respond .form-submit input,
.woocommerce #payment #place_order,
.woocommerce .cart input.button,
.woocommerce .button.wc-forward
{
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	line-height: normal;
	text-transform: uppercase;
	background: #3156A3;
	border: 1px solid #3156A3;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce .widget_price_filter .price_slider_amount .button:hover,
.woocommerce .widget_product_search form input[type='submit']:hover,
.woocommerce .widget_product_search form button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce #review_form #respond .form-submit input:hover,
.woocommerce #payment #place_order:hover,
.woocommerce .cart input.button:hover,
.woocommerce .button.wc-forward:hover,
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
.woocommerce .cart .coupon input.button:hover
{
	color: #FFF;
	background: #42B3E5;
	border: 1px solid #42B3E5;
}
.woocommerce #respond input#submit.added::after, 
.woocommerce a.button.added::after, 
.woocommerce button.button.added::after, 
.woocommerce input.button.added::after
{
	vertical-align: unset;
}
.woocommerce .star-rating:before
{
	color: #F0F0F0;
	content: "SSSSS";
}
body.woocommerce-page .star-rating, .woocommerce .star-rating
{
	color: #FFA838;
}
.woocommerce .woocommerce-product-rating .star-rating
{
	margin: 0 30px 0 0;
}
.woocommerce .woocommerce-product-rating
{
	line-height: 1;
}
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price, 
.woocommerce div.product span.price,
.woocommerce .widget_top_rated_products .amount
{
	color: #666;
	font-family: 'Source Sans Pro', 'Arial', sans-serif;
	font-size: 20px;
	font-weight: 300;
	text-decoration: none;
}
.woocommerce div.product p.price, 
.woocommerce div.product span.price
{
	font-size: 24px;
}
.woocommerce div.product p.price ins, 
.woocommerce div.product span.price ins
{
	font-weight: 300;
	text-decoration: none;
}
.woocommerce ul.products li.product .price del,
.woocommerce .widget_top_rated_products del
{
	float: left;
	opacity: 0.5;
	color: #999;
}
.woocommerce ul.products li.product .price ins,
.woocommerce .widget_top_rated_products ins
{
	margin-left: 5px;
	font-weight: 300;
	text-decoration: none;
	color: #666;
}
.woocommerce ul.products li.product .price ins:before,
.woocommerce .widget_top_rated_products ins:before
{
	content: "/";
	margin-right: 5px;
}
.woocommerce span.onsale
{
	background-color: #3156A3;
	z-index: 1;
	padding: 0;
}
.woocommerce ul.products li.product .button
{
	margin-top: 30px;
	width: 100%;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product
{
	width: 30.05%;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering
{
	float: none;
}
.woocommerce .products ul, .woocommerce ul.products
{
	margin: 0;
}
.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count
{
	margin: 0;
}
.woocommerce .woocommerce-ordering select
{
	color: #666;
	border: 1px solid #F0F0F0;
	padding: 12px 5px;
	font-size: 13px;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count
{
	float: right;
	font-size: 14px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product
{
	width: 285px;
	margin: 30px 30px 0 0;
}
.woocommerce .related ul li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce .related ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product
{
	width: 285px;
	margin: 30px 30px 0 0;
}
.woocommerce .related ul.products li.product:nth-child(3n),
.woocommerce .upsells.products ul li.product:nth-child(3n)
{
	margin-right: 0;
}
.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li,
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product
{
	width: 285px;
	margin: 30px 30px 0 0;
}
.woocommerce ul.products li.last, .woocommerce ul.products.columns-3 li.last, .woocommerce-page ul.products li.last, .woocommerce .related ul li.product.last,
.woocommerce .cart-collaterals .cross-sells ul.products li.last, .woocommerce-page .cart-collaterals .cross-sells ul.products li.last
{
	margin-right: 0;
}
.woocommerce div.product div.summary
{
	margin-bottom: 50px;
}
.woocommerce div.product div.entry-summary ul, 
.woocommerce div.product div.entry-summary ol,
.woocommerce div.product div.entry-content ul, 
.woocommerce div.product div.entry-content ol
{
	padding: 0;
	margin: 5px 0px 20px;
}
.woocommerce div.product div.entry-summary ul,
.woocommerce div.product div.entry-content ul
{
	list-style: none;
}
.woocommerce div.product div.entry-summary li,
.woocommerce div.product div.entry-content li
{
	height: auto;
	line-height: 1.71429;
	padding: 2px 0;
	list-style-position: inside;
}
.woocommerce div.product div.entry-summary ul li::before,
.woocommerce div.product div.entry-content ul li::before
{
	display: inline-block;
	content: "\7a";
	font-family: "template";
	margin-right: 8px;
	color: #42B3E5;
}
.woocommerce nav.woocommerce-pagination
{
	margin-top: 30px;
	float: right;
}
.woocommerce div.product .product_title
{
	margin: 0 0 15px 0;
}
.woocommerce div.product .woocommerce-product-rating
{
	margin: 0 0 20px 0;
}
.woocommerce div.product p.price, .woocommerce div.product span.price
{
	padding: 0;
	margin-bottom: 20px;
}
.woocommerce div.product .description
{
	border-top: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
}
.woocommerce div.product .comment-text .description
{
	border-bottom: none;
	padding: 20px 0 0;
}
.woocommerce div.product .comment-text .description p
{
	padding: 0;
}
.woocommerce div.product .description p
{
	padding: 20px 0;
}
.woocommerce div.product form.cart .variations label
{
	font-weight: 400;
}
.woocommerce div.product .variations .reset_variations
{
	display: none !important;
}
.woocommerce div.product form.cart .variations select
{
	padding: 12px 5px;
	color: #666;
	border: 1px solid #F0F0F0;
	margin: 0;
}
.woocommerce div.product .woocommerce-variation-price p.price, .woocommerce div.product .woocommerce-variation-price span.price
{
	display: block;
}
.woocommerce div.product form.cart .variations td, 
.woocommerce div.product form.cart .variations th
{
	vertical-align: middle;
}
.woocommerce div.product form.cart table td.value
{
	text-align: right;
	padding-left: 0;
	padding-right: 0;
}
.woocommerce div.product form.cart
{
	margin: 30px 0px 30px 0;
}
.woocommerce div.product form.cart div.quantity
{
	margin: 0 10px 0 0;
}
.woocommerce #content div.product div.thumbnails a,
.woocommerce div.product div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a,
.woocommerce-page div.product div.thumbnails a
{
	border: none;
}
.woocommerce .posted_in
{
	color: #999;
}
.woocommerce .posted_in a
{
	color: #999;
	border-bottom: none;
}
.woocommerce .posted_in a:hover
{
	color: #3156A3;
}
.woocommerce #respond input#submit.loading:after, .woocommerce a.button.loading:after, .woocommerce button.button.loading:after, .woocommerce input.button.loading:after
{
	content: "";
}
.woocommerce #respond input#submit.loading, .woocommerce a.button.loading, .woocommerce button.button.loading, .woocommerce input.button.loading
{
	padding: 5px 8px 7px;
}
.woocommerce a.added_to_cart
{
	display: none;
}
.woocommerce .quantity .qty,
.woocommerce-cart table.cart td.actions .coupon .input-text
{
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	border: none;
	padding: 11px 18px;
	line-height: normal;
}
.woocommerce-cart form table.cart td.actions .coupon .input-text
{
	width: 150px;
	margin-right: 10px;
}
.woocommerce-cart form table.cart td.actions .coupon .input-text,
.woocommerce form.checkout_coupon #coupon_code
{
	padding-top: 12px;
	padding-bottom: 12px;
}
.woocommerce #reviews #comments
{
	margin-top: 30px;
}
.woocommerce #reviews #comments ol.commentlist li
{
	margin: 0 0 30px;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar
{
	position: static;
	width: 100px;
	border: none;
	padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta
{
	font-size: 14px;
	padding-top: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p
{
	margin: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text
{
	margin-left: 130px;
	border: none;
	padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li .meta
{
	color: #999;
}
.woocommerce #review_form_wrapper
{
	margin-top: 20px;
}
#review_form textarea:focus
{
	background: transparent;
	padding: 14px 19px;
	border: 1px solid #E5E5E5;
}
.woocommerce #review_form_wrapper .comment-form-comment #comment.hint
{
	color: #999;
}
.woocommerce #review_form_wrapper #review_form p.form-submit
{
	margin-top: 10px;
	padding: 0;
}
.woocommerce  #review_form_wrapper .comment-form-rating label
{
	float: left;
	margin: -2px 30px 8px 0;
	color: #999;
}
.woocommerce  #review_form_wrapper .comment-form-rating .stars
{
	float: left;
}
.woocommerce  #review_form_wrapper form input[type='submit']
{
	width: auto;
}
.woocommerce  #review_form_wrapper .comment-form-comment
{
	padding: 0;
}
.woocommerce  #review_form_wrapper .comment-form-comment label
{
	display: none;
}
.woocommerce  #review_form_wrapper .comment-form-comment #comment
{
	height: 105px;
	margin-bottom: 0;
}
.woocommerce .comment-reply-title::after
{
	content: "";
	display: block;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #42B3E5;
	margin-top: 10px;
}
.woocommerce h2.box-header,
.woocommerce h3.box-header,
.woocommerce h4.box-header,
.woocommerce .comment-reply-title,
.woocommerce .related.products h2,
.woocommerce-account .woocommerce h2,
.woocommerce-checkout .woocommerce h2,
.upsells.products h2,
.woocommerce-account .title h3,
.woocommerce-checkout .title h3
{
	font-size: 18px;	
}
.woocommerce #review_form #respond p
{
	margin: 0;
	padding: 0;
}
.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message
{
	border-top: none;
	border-left: 3px solid #42B3E5;
	background: #F0F0F0;
	padding: 34px 25px 25px 70px !important;
	line-height: 150%;
	min-height: 90px;
	color: #25282A;
}
.woocommerce .woocommerce-error:before, .woocommerce .woocommerce-info:before, .woocommerce .woocommerce-message:before
{
	top: 35px;
	font-size: 22px;
}
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button
{
	margin-top: -12px;
}
.woocommerce mark
{
	background: #42B3E5;
}
.woocommerce #review_form #respond .form-submit input
{
	float: right;
}
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs .panel
{
	margin: 0;
}
.woocommerce .cart .button, .woocommerce .cart input.button
{
	float: right;
}
.woocommerce table.shop_table,
.woocommerce-cart .cart-collaterals .cart_totals table
{
	border-collapse: collapse;
	border: 1px solid #E5E5E5;
}
.woocommerce table.shop_table strong
{
	color: #666;
}
.woocommerce table.shop_table th,
.woocommerce-cart .cart-collaterals .cart_totals table th
{
	font-family: 'Source Sans Pro', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: normal;
	background-color: #F0F0F0;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td
{
	padding: 12px;
	border: 1px solid #E5E5E5;
}
.woocommerce table.shop_table.cart tr:nth-child(even),
.woocommerce table.cart_totals_table td:nth-child(even),
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tr.order-total
{ 
	background-color: #F0F0F0; 
}
.woocommerce table tr:nth-child(2n+1),
.woocommerce table.cart_totals_table td:nth-child(even),
.woocommerce table.shop_table.cart tr:last-child
{
	background-color: transparent;
}
.woocommerce table.shop_table tr:last-child td
{
	padding: 12px;
}
.woocommerce-cart table.cart img
{
	width: 100px;
}
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td
{
	padding: 12px;
	vertical-align: middle;
}
.woocommerce .quantity input
{
	line-height: 1;
	vertical-align: middle;
}
.woocommerce .quantity .qty
{
	width: 30px;
	height: 21px;
	appearance: textfield;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	background: transparent;
	border-top: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
}
.woocommerce .quantity .plus,
.woocommerce .quantity .minus
{
	width: 44px;
	height: 45px;
	border: 1px solid #E5E5E5;
	background: transparent;
	cursor: pointer;
	padding: 10px 13px 13px;
}
.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover
{
	color: #FFF;
	background: #42B3E5;
	border-color: #42B3E5;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals,
.woocommerce .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .cross-sells
{
	width: 100%;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-review-link,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal
{
	color: #3156A3;
}
.woocommerce a.remove
{
	color: #3156A3 !important;
	font-weight: 400;
}
.woocommerce a.remove:hover
{
	background: #42B3E5;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button
{
	float: right;
	margin: 0;
}
.woocommerce-cart .wc-proceed-to-checkout
{
	padding: 0;
}
.woocommerce .widget_price_filter form,
.woocommerce .widget_product_search form
{
	margin-top: 30px;
}
.woocommerce .widget_price_filter .price_slider_amount .price_label
{
	float: left;
	font-size: 14px;
}
.woocommerce .widget_price_filter .price_slider_amount .button
{
	float: right;
	margin-top: 10px;
	padding: 8px 16px;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content
{
	background: #F0F0F0;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range
{
	background: #3156A3;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle
{
	background: #FFF;
	border: 2px solid #3156A3;
}
.woocommerce .widget_product_search form .screen-reader-text
{
	display: none;
}
.woocommerce .widget_product_search form .search-field
{	
	width: 100%;
	padding: 13px 22px;
	color: #000;
	margin: 0;
	background: #F0F0F0;
	border: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.woocommerce .widget_product_search form input[type='submit'],
.woocommerce .widget_product_search form button
{
	float: right;
	cursor: pointer;
	margin-top: 10px;
}
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img
{
	float: left;
	width: 100px;
	margin-left: 0;
	margin-right: 20px;
}
.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li
{
	padding: 0;
	margin-top: 30px;
}
.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a
{
	font-size: 18px;
	font-family: 'Source Sans Pro', 'Arial', sans-serif;
	font-weight: 400;
	line-height: 1.55556;
	color: #000;
	margin-bottom: 10px;
	border: none;
}
.woocommerce ul.cart_list li a:hover, .woocommerce ul.product_list_widget li a:hover
{
	text-decoration: underline;
}
.woocommerce .widget_top_rated_products .star-rating
{
	margin-bottom: 15px;
}
.woocommerce .widget_top_rated_products .amount
{
	font-size: 18px;
}
.woocommerce .button.wc-backward
{
	float: left;
}
.woocommerce #review_form p.stars a
{
	color: #FFA838;
	border: none;
}
.woocommerce .comment-text .star-rating
{
	top: 3px;
}
.woocommerce p.stars a.star-1:after, .woocommerce p.stars a.star-2:after, .woocommerce p.stars a.star-3:after, .woocommerce p.stars a.star-4:after, .woocommerce p.stars a.star-5:after
{
	font-family: 'star';
	font-weight: 400;
	color: #F0F0F0;
}
.woocommerce p.stars a.star-1:after
{
	content: "S";
}
.woocommerce p.stars a.star-1.active:after, .woocommerce p.stars a.star-1:hover:after
{
	content: "S";
	color: #FFA838;
}
.woocommerce p.stars a.star-2:after
{
	content: "SS";
}
.woocommerce p.stars a.star-2.active:after, .woocommerce p.stars a.star-2:hover:after
{
	content: "SS";
	color: #FFA838;
}
.woocommerce p.stars a.star-3:after
{
	content: "SSS";
}
.woocommerce p.stars a.star-3.active:after, .woocommerce p.stars a.star-3:hover:after
{
	content: "SSS";
	color: #FFA838;
}
.woocommerce p.stars a.star-4:after
{
	content: "SSSS";
}
.woocommerce p.stars a.star-4.active:after, .woocommerce p.stars a.star-4:hover:after
{
	content: "SSSS";
	color: #FFA838;
}
.woocommerce p.stars a.star-5:after
{
	content: "SSSSS";
}
.woocommerce p.stars a.star-5.active:after, .woocommerce p.stars a.star-5:hover:after
{
	content: "SSSSS";
	color: #FFA838;
}
.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled,
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit[disabled]:disabled:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button[disabled]:disabled:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button[disabled]:disabled:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button[disabled]:disabled:hover
{
	cursor: pointer;
	opacity: 1;
	background: #F0F0F0;
	color: #E0E0E0;
	border: 1px solid #F0F0F0;
	padding: 12px 19px;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register,
.select2-container .select2-selection
{
	border-color: #E5E5E5;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.woocommerce form.login .form-row label.inline
{
	display: block;
}
.woocommerce .login .button
{
	margin-top: 10px;
}
.select2-container .select2-selection
{
	border: none;
	height: auto;
	background: #F0F0F0;
	padding: 8px 20px;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.select2-container .select2-selection .select2-selection__rendered
{
	padding-left: 0;
}
.select2-dropdown-open.select2-drop-above .select2-selection, .select2-dropdown-open.select2-drop-above .select2-choices
{
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.select2-dropdown-open .select2-selection
{
	box-shadow: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow
{
	height: 100%
}
.select2-drop
{
	border-color: #E5E5E5;
}
.woocommerce-checkout #payment
{
	background: #F0F0F0;
	border: 1px solid #E5E5E5;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
.woocommerce #customer_details .box-header,
.woocommerce-account .woocommerce h2,
.woocommerce-checkout .woocommerce h2
{
	margin-bottom: 25px;
}
.woocommerce .woocommerce-customer-details address
{
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: 1px solid #E5E5E5;
}
.woocommerce-account .woocommerce h2,
.woocommerce-checkout .woocommerce h2
{
	margin-top: 20px;
}
.woocommerce-checkout .woocommerce h2::after
{
	content: "";
	display: block;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #42B3E5;
	margin-top: 10px;
}
.woocommerce-account .box-header
{
	/*margin-bottom: 30px;*/
}
.woocommerce-checkout #payment ul.payment_methods
{
	border-color: #E5E5E5;
}
.woocommerce ul.order_details,
.woocommerce table.shop_table.order_details,
.woocommerce table.shop_table.customer_details,
.woocommerce .shop_table.my_account_orders
{
	margin: 10px 0 50px;
	padding: 0;
}
.woocommerce .woocommerce-checkout-review-order,
.woocommerce table.shop_table.order_details,
.woocommerce table.shop_table.customer_details
{
	margin-top: 30px;
}
.woocommerce table.shop_table.my_account_orders
{
	margin-top: 0;
	font-size: inherit;
}
.woocommerce table.my_account_orders .button
{
	float: none;
}
.woocommerce-account address,
.woocommerce-checkout address,
.woocommerce-order-received address
{
	margin-top: 30px;
	line-height: 150%;
	font-style: normal;
}
.woocommerce-account .title h3
{
	float: none;
	margin-top: 20px;
}
.woocommerce-MyAccount-content p:first-child
{
	padding-top: 0;
}
.woocommerce form.edit-address .box-header,
.woocommerce form.edit-account .box-header
{
	margin-bottom: 30px;
}
.woocommerce .product-categories li a:hover
{
	text-decoration: none;
}
.widget.mc_cart_icon_widget
{
	overflow: visible;
}
span.cart-items-number
{
	position: absolute;
	display: block;
	top: -8px;
	right: -6px;
	width: 16px;
	height: 16px;
	background: #42B3E5;
	font-family: arial;
	font-size: 10px;
	text-align: center;
	line-height: 14px;
	color: #FFF;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
span.cart-items-number.cart-empty
{
	background: #F0F0F0;
	color: #999;
}
.woocommerce form .form-row
{
	padding: 0;
	margin: 0;
}
.woocommerce form .form-row label
{
	color: #999;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .comment-form input,
.woocommerce #review_form_wrapper .comment-form-comment #comment,
.woocommerce-cart table.cart td.actions .coupon .input-text
{	
	width: 100%;
	padding: 13px 22px;
	line-height: 1.71429;
	color: #000;
	margin: 0;
	background: #F0F0F0;
	border: none;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.woocommerce form .form-row textarea
{
	height: 150px;
}
.woocommerce .comment-form label,
.woocommerce form .form-row label
{
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.83334;
	margin-top: 8px;
	margin-bottom: 8px;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box
{
	background: #F8F8F8;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before
{
	border-color: transparent transparent #F8F8F8;
}@media screen and (max-width:1249px)
{
	.woocommerce ul.products li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products li.product,
	.woocommerce .related ul li.product, .woocommerce .related ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product,
	.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li,
	.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product
	{
		width: 225px;
	}
	.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a
	{
		font-size: 16px;
	}
}
@media screen and (max-width:1009px)
{
	.woocommerce ul.products li.product h3
	{
		font-size: 22px;
	}
	.woocommerce h2.box-header,
	.woocommerce h3.box-header,
	.woocommerce h4.box-header,
	.woocommerce .comment-reply-title,
	.woocommerce .related.products h2,
	.woocommerce-account .woocommerce h2,
	.woocommerce-checkout .woocommerce h2,
	.upsells.products h2,
	.woocommerce-account .title h3,
	.woocommerce-checkout .title h3
	{
		font-size: 16px;	
	}
	.woocommerce div.product div.summary
	{
		margin-bottom: 40px;
	}
	.woocommerce ul.products li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products li.product,
	.woocommerce .related ul li.product, .woocommerce .related ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product
	{
		width: 264px;
	}
	.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li, .woocommerce-cart .cart-collaterals .cross-sells ul.products li.product
	{
		width: 168px;
	}
	.woocommerce ul.products li.product:nth-child(2n), .woocommerce ul.products.columns-3 li.product:nth-child(2n), .woocommerce-page ul.products li.product:nth-child(2n),
	.woocommerce .related ul li.product:nth-child(2n), .woocommerce .related ul.products li.product:nth-child(2n), .woocommerce .upsells.products ul li.product:nth-child(2n), .woocommerce .upsells.products ul.products li.product:nth-child(2n), .woocommerce-page .related ul li.product:nth-child(2n), .woocommerce-page .related ul.products li.product:nth-child(2n), .woocommerce-page .upsells.products ul li.product:nth-child(2n), .woocommerce-page .upsells.products ul.products li.product:nth-child(2n),
	.woocommerce .cart-collaterals .cross-sells ul.products li:nth-child(2n), .woocommerce-page .cart-collaterals .cross-sells ul.products li:nth-child(2n),
	.woocommerce .cart-collaterals .cross-sells ul.products li.last, .woocommerce-page .cart-collaterals .cross-sells ul.products li.last
	{
		margin-right: 0;
	}
	.woocommerce ul.products li.last, .woocommerce ul.products.columns-3 li.last, .woocommerce-page ul.products li.last, .woocommerce .related ul li.product.last, 
	.woocommerce .related ul li.last, .woocommerce .related ul.products li.last, .woocommerce .upsells.products ul li.last, .woocommerce .upsells.products ul.products li.last, .woocommerce-page .related ul li.last, .woocommerce-page .related ul.products li.last, .woocommerce-page .upsells.products ul li.last, .woocommerce-page .upsells.products ul.products li.last,
	.woocommerce .related ul.products li.product:nth-child(3n),
	.woocommerce .upsells.products ul li.product:nth-child(3n)
	{
		margin-right: 30px;
	}
	.woocommerce ul.products li.first, .woocommerce-page ul.products li.first
	{
		clear: none;
	}
	.woocommerce .woocommerce-product-rating .star-rating
	{
		margin: 0 15px 0 0;
	}
	.woocommerce div.product form.cart .button
	{
		margin-top: 10px;
	}
	.woocommerce-cart .cart-collaterals .cart_totals table th
	{
		width: 40%;
	}
	.woocommerce .widget_price_filter .price_slider_amount .button
	{
		float: left;
	}
	.woocommerce ul.cart_list li img,
	.woocommerce ul.product_list_widget li img
	{
		width: 80px;
	}
	.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta
	{
		font-size: 13px;
	}
}
@media screen and (max-width:767px)
{
	.woocommerce ul.products li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products li.product,
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce .related ul li.product, .woocommerce .related ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product,
	.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li, .woocommerce-cart .cart-collaterals .cross-sells ul.products li.product
	{
		width: 216px;
	}
	.woocommerce div.product form.cart .button
	{
		margin-top: 0;
	}
	.woocommerce .shop_table.cart .quantity .plus, .woocommerce .shop_table.cart .quantity .minus
	{
		width: 37px;
	}
	.woocommerce .shop_table.cart .quantity .qty
	{
		width: 25px;
	}
	.woocommerce-checkout .woocommerce-shipping-fields,
	.woocommerce-checkout .woocommerce-column--shipping-address,
	.woocommerce-account .woocommerce-column--shipping-address,
	.woocommerce-account .addresses .col-2,
	.woocommerce-checkout .col-2
	{
		margin-top: 40px;
	}
	.woocommerce ul.cart_list li img, 
	.woocommerce ul.product_list_widget li img
	{
		width: 100px;
	}
	.woocommerce .widget_price_filter .price_slider_amount .button
	{
		float: right;
	}
	.woocommerce table.cart td.actions div.coupon .input-text+input.button
	{
		float: left;
		width: auto;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li a
	{
		padding: 10px;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
	.woocommerce div.product .woocommerce-tabs ul.tabs li a.selected,
	.woocommerce div.product .woocommerce-tabs ul.tabs li.active a
	{
		padding-bottom: 9px;
	}
	.woocommerce table.shop_table td.woocommerce-orders-table__cell-order-actions::before
	{
		content: none;
	}
	.woocommerce-cart-form .actions .button[type="submit"]
	{
		margin-top: 27px;
		margin-bottom: 15px;
	}
	.woocommerce-cart-form .actions .coupon .button[type="submit"]
	{
		margin: 0;
	}
}
@media screen and (max-width:479px)
{
	.woocommerce ul.products li.product h3
	{
		font-size: 18px;
	}
	.woocommerce ul.products li.product, .woocommerce ul.products.columns-3 li.product, .woocommerce-page ul.products li.product,
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce .related ul li.product, .woocommerce .related ul.products li.product, .woocommerce .upsells.products ul li.product, .woocommerce .upsells.products ul.products li.product, .woocommerce-page .related ul li.product, .woocommerce-page .related ul.products li.product, .woocommerce-page .upsells.products ul li.product, .woocommerce-page .upsells.products ul.products li.product,
	.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li, .woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
	.woocommerce .related ul.products li.product:nth-child(3n),
	.woocommerce .upsells.products ul li.product:nth-child(3n)
	{
		width: 300px;
		margin-right: 0;
	}
	.woocommerce #review_form p.stars a
	{
		border: none;
	}
	.woocommerce table.shop_table th,
	.woocommerce table.shop_table td,
	.woocommerce table.shop_table tr:last-child td
	{
		padding: 5px;
	}
	.woocommerce .shop_table.cart .quantity .plus, .woocommerce .shop_table.cart .quantity .minus
	{
		display: none;
	}
	.woocommerce .shop_table.cart .quantity .qty
	{
		border-left: 1px solid #E9E9E9;
		border-right: 1px solid #E9E9E9;
	}
	.woocommerce .shop_table.cart td.product-quantity
	{
		text-align: center;
	}
	.woocommerce .woocommerce-result-count, 
	.woocommerce-page .woocommerce-result-count 
	{
		float: left;
		margin-bottom: 10px;
		margin-top: 0;
	}
	.woocommerce-cart form table.cart td.actions .coupon .input-text,
	.woocommerce form.checkout_coupon #coupon_code
	{
		width: 125px;
		padding: 12px 18px;
	}
	.woocommerce form.checkout_coupon
	{
		padding: 10px;
	}
	.woocommerce-cart-form .actions .button[type="submit"]
	{
		margin-top: 12px;
		margin-bottom: 6px;
	}
}@font-face {
    font-family: 'features';
    src:    url(//pro-implant.org/wp-content/themes/medicenter/fonts/features/fonts/features.eot?do5ipg);
    src:    url(//pro-implant.org/wp-content/themes/medicenter/fonts/features/fonts/features.eot?do5ipg#iefix) format('embedded-opentype'),
		url(//pro-implant.org/wp-content/themes/medicenter/fonts/features/fonts/features.woff?do5ipg) format('woff'),
        url(//pro-implant.org/wp-content/themes/medicenter/fonts/features/fonts/features.ttf?do5ipg) format('truetype'),
        url(//pro-implant.org/wp-content/themes/medicenter/fonts/features/fonts/features.svg?do5ipg#features) format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="features-"]::before, [class*=" features-"]::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'features' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: middle;
    line-height: 1;
	direction: ltr;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.features-facebook::before {
    content: "\f000";
}
.features-paypal::before {
    content: "\f001";
}
.features-twitter::before {
    content: "\f002";
}
.features-list::before {
    content: "\f003";
}
.features-document-missing::before {
    content: "\f004";
}
.features-document::before {
    content: "\f005";
}
.features-science::before {
    content: "\f006";
}
.features-bacteria::before {
    content: "\f007";
}
.features-brain::before {
    content: "\f008";
}
.features-molecule::before {
    content: "\f009";
}
.features-lab::before {
    content: "\f010";
}
.features-dna::before {
    content: "\f011";
}
.features-test-tube::before {
    content: "\f012";
}
.features-baby::before {
    content: "\f013";
}
.features-baby-bed::before {
    content: "\f014";
}
.features-baby-bottle::before {
    content: "\f015";
}
.features-teddy-bear::before {
    content: "\f016";
}
.features-glasses::before {
    content: "\f017";
}
.features-ambulance::before {
    content: "\f018";
}
.features-dental-shield::before {
    content: "\f019";
}
.features-dentist::before {
    content: "\f020";
}
.features-plaster::before {
    content: "\f021";
}
.features-heart-beat::before {
    content: "\f022";
}
.features-medical-bed::before {
    content: "\f023";
}
.features-first-aid::before {
    content: "\f024";
}
.features-medical-cast::before {
    content: "\f025";
}
.features-medical-document::before {
    content: "\f026";
}
.features-medical-cross::before {
    content: "\f027";
}
.features-healthcare::before {
    content: "\f028";
}
.features-medical-scissors::before {
    content: "\f029";
}
.features-pill::before {
    content: "\f030";
}
.features-mortar::before {
    content: "\f031";
}
.features-medical-results::before {
    content: "\f032";
}
.features-pulse::before {
    content: "\f033";
}
.features-drip::before {
    content: "\f034";
}
.features-hospital::before {
    content: "\f035";
}
.features-stethoscope::before {
    content: "\f036";
}
.features-syringe::before {
    content: "\f037";
}
.features-burns::before {
    content: "\f038";
}
.features-config::before {
    content: "\f039";
}
.features-pet-box::before {
    content: "\f040";
}
.features-cat::before {
    content: "\f041";
}
.features-dog::before {
    content: "\f042";
}
.features-leaf::before {
    content: "\f043";
}
.features-spa::before {
    content: "\f044";
}
.features-spa-bamboo::before {
    content: "\f045";
}
.features-spa-lotion::before {
    content: "\f046";
}
.features-toothbrush::before {
    content: "\f047";
}
.features-fitness::before {
    content: "\f048";
}
.features-signpost::before {
    content: "\f049";
}
.features-home::before {
    content: "\f050";
}
.features-location::before {
    content: "\f051";
}
.features-map::before {
    content: "\f052";
}
.features-quote::before {
    content: "\f053";
}
.features-app::before {
    content: "\f054";
}
.features-money::before {
    content: "\f055";
}
.features-credit-card::before {
    content: "\f056";
}
.features-wallet::before {
    content: "\f057";
}
.features-chart::before {
    content: "\f058";
}
.features-balance::before {
    content: "\f059";
}
.features-briefcase::before {
    content: "\f060";
}
.features-cart::before {
    content: "\f061";
}
.features-frostbite::before {
    content: "\f062";
}
.features-ear::before {
    content: "\f063";
}
.features-piano::before {
    content: "\f064";
}
.features-video::before {
    content: "\f065";
}
.features-speaker::before {
    content: "\f066";
}
.features-movie::before {
    content: "\f067";
}
.features-image::before {
    content: "\f068";
}
.features-gallery::before {
    content: "\f069";
}
.features-graph::before {
    content: "\f070";
}
.features-tags::before {
    content: "\f071";
}
.features-plus::before {
    content: "\f072";
}
.features-cross::before {
    content: "\f073";
}
.features-minus::before {
    content: "\f074";
}
.features-network::before {
    content: "\f075";
}
.features-x-ray::before {
    content: "\f076";
}
.features-time::before {
    content: "\f077";
}
.features-lock::before {
    content: "\f078";
}
.features-certificate::before {
    content: "\f079";
}
.features-heart::before {
    content: "\f080";
}
.features-address::before {
    content: "\f081";
}
.features-book::before {
    content: "\f082";
}
.features-box::before {
    content: "\f083";
}
.features-diary::before {
    content: "\f084";
}
.features-tablet::before {
    content: "\f085";
}
.features-battery::before {
    content: "\f086";
}
.features-mobile::before {
    content: "\f087";
}
.features-phone::before {
    content: "\f088";
}
.features-laptop::before {
    content: "\f089";
}
.features-screen::before {
    content: "\f090";
}
.features-keyboard::before {
    content: "\f091";
}
.features-chat::before {
    content: "\f092";
}
.features-doctor::before {
    content: "\f093";
}
.features-people::before {
    content: "\f094";
}
.features-medical-staff::before {
    content: "\f095";
}
.features-id::before {
    content: "\f096";
}
.features-email::before {
    content: "\f097";
}
.features-clock::before {
    content: "\f098";
}
.features-lifeline::before {
    content: "\f099";
}
.features-tick::before {
    content: "\f100";
}
.features-pen::before {
    content: "\f101";
}
.features-pin::before {
    content: "\f102";
}
.features-printer::before {
    content: "\f103";
}
.features-eye::before {
    content: "\f104";
}
.features-play::before {
  content: "\f105";
}@font-face {
    font-family: 'template';
    src:    url(//pro-implant.org/wp-content/themes/medicenter/fonts/template/fonts/template.eot?kgai9y);
    src:    url(//pro-implant.org/wp-content/themes/medicenter/fonts/template/fonts/template.eot?kgai9y#iefix) format('embedded-opentype'),
		url(//pro-implant.org/wp-content/themes/medicenter/fonts/template/fonts/template.woff?kgai9y) format('woff'),
        url(//pro-implant.org/wp-content/themes/medicenter/fonts/template/fonts/template.ttf?kgai9y) format('truetype'),
        url(//pro-implant.org/wp-content/themes/medicenter/fonts/template/fonts/template.svg?kgai9y#template) format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="template-"]::before, [class*=" template-"]::before,
[class^="template-"]::after, [class*=" template-"]::after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'template' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: middle;
    line-height: 1;
	direction: ltr;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.template-check::before, body .site-container li.template-check::before {
    content: "\42";
}
.template-tick-1:before, body .site-container li.template-tick-1:before {
  content: "\43";
}
.template-tick-2:before, body .site-container li.template-tick-2:before {
  content: "\44";
}
.template-chevron::before, body .site-container li.template-chevron::before {
    content: "\41";
}
.template-arrow-circle::before, body .site-container li.template-arrow-circle::before {
    content: "\7a";
}
.template-arrow-circle-after::after, body .site-container li.template-arrow-circle-after::after {
    content: "\7a";
}
.template-cart::before, body .site-container li.template-cart::before {
    content: "\79";
}
.template-cart-after::after, body .site-container li.template-cart-after::after {
    content: "\79";
}
.template-search::before, body .site-container li.template-search::before {
    content: "\78";
}
.template-search-after::after, body .site-container li.template-search-after::after {
    content: "\78";
}
.template-mail::before, body .site-container li.template-mail::before {
    content: "\77";
}
.template-mail-after::after, body .site-container li.template-mail-after::after {
    content: "\77";
}
.template-phone::before, body .site-container li.template-phone::before {
    content: "\76";
}
.template-phone-after::after, body .site-container li.template-phone-after::after {
    content: "\76";
}
.template-location::before, body .site-container li.template-location::before {
    content: "\75";
}
.template-location-after::after, body .site-container li.template-location-after::after {
    content: "\75";
}
.template-plus-2::before, body .site-container li.template-plus-2::before {
    content: "\6d";
}
.template-plus-2-after::after, body .site-container li.template-plus-2-after::after {
    content: "\6d";
}
.template-remove-2::before, body .site-container li.template-remove-2::before {
    content: "\6f";
}
.template-minus-2::before, body .site-container li.template-minus-2::before {
    content: "\6e";
}
.template-minus-2-after::after, body .site-container li.template-minus-2-after::after {
    content: "\6e";
}
.template-arrow-horizontal-2::before, body .site-container li.template-arrow-horizontal-2::before {
    content: "\63";
}
.template-arrow-vertical-1::before, body .site-container li.template-arrow-vertical-1::before {
    content: "\62";
}
.template-arrow-horizontal-1::before, body .site-container li.template-arrow-horizontal-1::before {
    content: "\61";
}
.template-arrow-horizontal-1-after::after, body .site-container li.template-arrow-horizontal-1-after::after {
    content: "\61";
}
.template-minus-1::before, body .site-container li.template-minus-1::before {
    content: "\6b";
}
.template-plus-1::before, body .site-container li.template-plus-1::before {
    content: "\6a";
}
.template-remove-1::before, body .site-container li.template-remove-1::before {
    content: "\6c";
}
.template-remove-1-after::after, body .site-container li.template-remove-1-after::after {
    content: "\6c";
}
.template-menu-1::before, body .site-container li.template-menu-1::before {
    content: "\70";
}
.template-menu-2::before, body .site-container li.template-menu-2::before {
    content: "\71";
}
.template-comment-1::before, body .site-container li.template-comment-1::before {
    content: "\73";
}
.template-comment-1-after::after, body .site-container li.template-comment-1-after::after {
    content: "\73";
}
.template-comment-2::before, body .site-container li.template-comment-2::before {
    content: "\74";
}
.template-quote::before, body .site-container li.template-quote::before {
    content: "\72";
}
.template-quote-2::before, body .site-container li.template-quote-2::before {
  content: "\45";
}
.template-arrow-horizontal-3::before, body .site-container li.template-arrow-horizontal-3::before {
    content: "\64";
}
.template-arrow-vertical-3::before, body .site-container li.template-arrow-vertical-3::before {
    content: "\65";
}
.template-arrow-horizontal-5::before, body .site-container li.template-arrow-horizontal-5::before {
    content: "\68";
}
.template-arrow-vertical-5::before, body .site-container li.template-arrow-vertical-5::before {
    content: "\69";
}
.template-arrow-horizontal-4::before, body .site-container li.template-arrow-horizontal-4::before {
    content: "\66";
}
.template-arrow-horizontal-4-after::after, body .site-container li.template-arrow-horizontal-4-after::after {
    content: "\66";
}
.template-arrow-vertical-4::before, body .site-container li.template-arrow-vertical-4::before {
    content: "\67";
}@font-face {
    font-family: 'social';
    src:    url(//pro-implant.org/wp-content/themes/medicenter/fonts/social/fonts/social.eot?ynqsmo);
    src:    url(//pro-implant.org/wp-content/themes/medicenter/fonts/social/fonts/social.eot?ynqsmo#iefix) format('embedded-opentype'),
		 url(//pro-implant.org/wp-content/themes/medicenter/fonts/social/fonts/social.woff?ynqsmo) format('woff'),
        url(//pro-implant.org/wp-content/themes/medicenter/fonts/social/fonts/social.ttf?ynqsmo) format('truetype'),
        url(//pro-implant.org/wp-content/themes/medicenter/fonts/social/fonts/social.svg?ynqsmo#social) format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="social-"]::before, [class*=" social-"]::before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'social' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
	vertical-align: middle;
    line-height: 1;
	direction: ltr;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.social-email::before {
    content: "\47";
}
.social-location::before {
    content: "\45";
}
.social-mobile::before {
    content: "\46";
}
.social-envato::before {
    content: "\43";
}
.social-angies-list::before {
    content: "\44";
}
.social-twitter::before {
    content: "\61";
}
.social-facebook::before {
    content: "\62";
}
.social-github::before {
    content: "\63";
}
.social-rss::before {
    content: "\64";
}
.social-pinterest::before {
    content: "\65";
}
.social-google-plus::before {
    content: "\66";
}
.social-linkedin::before {
    content: "\67";
}
.social-xing::before {
    content: "\68";
}
.social-youtube::before {
    content: "\69";
}
.social-instagram::before {
    content: "\6a";
}
.social-flickr::before {
    content: "\6b";
}
.social-tumblr::before {
    content: "\6c";
}
.social-dribbble::before {
    content: "\6d";
}
.social-skype::before {
    content: "\6e";
}
.social-foursquare::before {
    content: "\6f";
}
.social-vk::before {
    content: "\70";
}
.social-weibo::before {
    content: "\71";
}
.social-reddit::before {
    content: "\72";
}
.social-stumbleupon::before {
    content: "\73";
}
.social-behance::before {
    content: "\74";
}
.social-spotify::before {
    content: "\75";
}
.social-deviantart::before {
    content: "\76";
}
.social-soundcloud::before {
    content: "\77";
}
.social-vine::before {
    content: "\78";
}
.social-yelp::before {
    content: "\79";
}
.social-paypal::before {
    content: "\7a";
}
.social-houzz::before {
    content: "\41";
}
.social-vimeo::before {
    content: "\42";
}/* put here your custom css styles */#wc-stripe-express-checkout-element iframe{max-width:unset}#wc-stripe-express-checkout-element{margin-bottom:12px;display:flex;gap:10px;flex-wrap:wrap;justify-content:center}#wc-stripe-express-checkout-element>div{flex:1;min-width:260px}
.box-gray-speaker {
    background-color:#F0F0F0;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
}