.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}/*-----------------------------------------------------------------------------
- esg Portfolio -

Screen Stylesheet

author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/

/****************************************
			COMMON STYLES
*****************************************/
.esg-line-height-0 {
	line-height: 0;
}

.esg-text-left {
	text-align: left;
}
.esg-text-right {
	text-align: right;
}
.esg-text-center {
	text-align: center;
}

.esg-font-normal {
	font-style: normal;
}
.esg-font-italic {
	font-style: italic;
}

.esg-display-none {
	display: none;
}
.esg-display-block {
	display: block;
}
.esg-display-inline-block {
	display: inline-block;
}
.esg-display-inline {
	display: inline;
}
.esg-display-none-i {
	display: none !important;
}
.esg-display-block-i {
	display: block !important;
}
.esg-display-inline-block-i {
	display: inline-block !important;
}
.esg-display-inline-i {
	display: inline !important;
}

.esg-hidden {
	visibility: hidden;
}
.esg-visible {
	visibility: visible;
}

.esg-p-absolute {
	position: absolute;
}
.esg-p-relative {
	position: relative;
}

.esg-margin-0 {
	margin: 0;
}
.esg-margin-t-0 {
	margin-top: 0;
}
.esg-margin-b-0 {
	margin-bottom: 0;
}
.esg-margin-l-0 {
	margin-left: 0;
}
.esg-margin-r-0 {
	margin-right: 0;
}

.esg-margin-5 {
	margin: 5px;
}
.esg-margin-t-5 {
	margin-top: 5px;
}
.esg-margin-b-5 {
	margin-bottom: 5px;
}
.esg-margin-l-5 {
	margin-left: 5px;
}
.esg-margin-r-5 {
	margin-right: 5px;
}

.esg-margin-10 {
	margin: 10px;
}
.esg-margin-t-10 {
	margin-top: 10px;
}
.esg-margin-b-10 {
	margin-bottom: 10px;
}
.esg-margin-l-10 {
	margin-left: 10px;
}
.esg-margin-r-10 {
	margin-right: 10px;
}

.esg-padding-0 {
	padding: 0;
}
.esg-padding-t-0 {
	padding-top: 0;
}
.esg-padding-b-0 {
	padding-bottom: 0;
}
.esg-padding-l-0 {
	padding-left: 0;
}
.esg-padding-r-0 {
	padding-right: 0;
}

.esg-padding-15 {
	padding: 15px;
}
.esg-padding-t-15 {
	padding-top: 15px;
}
.esg-padding-b-15 {
	padding-bottom: 15px;
}
.esg-padding-l-15 {
	padding-left: 15px;
}
.esg-padding-r-15 {
	padding-right: 15px;
}

.esg-f-left {
	float: left !important;
}
.esg-f-right {
	float: right !important;
}
.esg-f-none {
	float: none !important;
}

.esg-color-black {
	color: #000000;
}
.esg-color-green {
	color: green;
}
.esg-color-red {
	color: red;
}

.esg-w100-hauto {
	width: 100%;
	height: auto;
}

.esg-fullscreen-forcer {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	height: auto;
}

.esg-iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	display:none;
}

.esg-clearfix:before,
.esg-clearfix:after {
	content: " ";
	display: table;
}
.esg-clearfix:after {
	clear: both;
}

/****************************************
		BASIC SETTINGS FOR PORTFOLIO
*****************************************/
.esg-starring {
	line-height: 25px;
	display: inline-block
}

.esg-starring .star-rating {
	float: none;
}

.esg-starring .star-rating {
	color: #FFC321 !important;
}

.esg-starring .star-rating, .esg-starring-page .star-rating {
	float: right;
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1em;
	font-size: 1em;
	width: 5.4em;
	font-family: star;
}

.esg-starring .star-rating:before, .esg-starring-page .star-rating:before {
	content: "\73\73\73\73\73";
	color: #E0DADF;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.esg-starring star-rating span,
.esg-starring .star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.esg-starring .star-rating span:before,
.esg-starring .star-rating span:before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
}

.esg-starring .star-rating {
	color: #FFC321 !important;
}

.lazyloadcover {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
}

.esg-lazyblur {
	background-repeat: no-repeat;
	filter: blur(25px);
	-webkit-filter: blur(25px);
	-moz-filter: blur(25px);
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}

.esg-media-poster {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background-size: cover;
	background-position: center center;
	z-index: 10;
	opacity: 0;
}

.esg-video-active .esg-media-poster {
	z-index: 0
}

.esg-vimeo-frame {
	background: black
}

/* 2.2 */
.esg-grid .no-filter-message {
	/* no need to edit below */
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease;
}
.esg-grid .esg-loadmore-wrapper + .no-filter-message {
	position: relative;
	display: block;
	text-align: center;
}

/* fades the message in and out */
.esg-grid.show-message .no-filter-message {
	transition-duration: 1s;
	visibility: visible;
	opacity: 1;

}

/* 2.1.6 */
.esg-hover-image {
	display: none
}

.esg-media-poster .esg-hover-image {
	display: block;
	width: inherit;
	height: inherit;
	background-size: inherit;
	background-position: inherit;
	visibility: hidden;
	opacity: 0
}

.esg-starring .star-rating, .esg-starring-page .star-rating {
	line-height: 1em;
	font-size: 1em;
	font-family: star;
}

.esg-grid {
	width: 100%;
	max-width: 100%;
	font-family: 'Open Sans', sans-serif;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0px);
	transform: translateZ(0px)
}

@-moz-document url-prefix() {
	.esg-grid {
		transform: none !important
	}
}

.esg-grid .mainul,
.esg-grid .mainul > li {
	list-style: none;
	margin: 0;
	padding: 0;
	transform-style: flat !important;
}


.esg-grid * {
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

/* 2.2.5 */
.esg-grid ul,
.esg-grid li {
	list-style: none;
	margin: 0;
	padding: 0;
	transform-style: flat !important;

}

.esg-overflowtrick {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;

	z-index: 1;
}

.esg-overflowtrick + .esg-filters:not(.esg-navbutton-solo-left) {
	z-index: 0 !important;
}

.esg-container {
	position: relative;
	width: 100%;
	height: auto;

}

.esg-container > ul,
.esg-overflowtrick > ul {
	width: 100%;
	max-width: 100%;
	height: 0px;
	position: relative;
	overflow: visible;
}

.esg-grid li {
	border: 0px solid transparent;
	outline: 0px solid transparent;
	visibility: hidden;
	display: none;
}

.esg-grid a {
	border: none;
	text-decoration: none
}

.esg-grid a:hover,
.esg-grid a:focus {
	text-decoration: none;
	border: none;
}

.esg-clear {
	clear: both;
	height: 5px !important;
	background: none !important;
}
.esg-clear-no-height,
.eg-clearfix {
	clear: both;
	height: 0px !important;
	background: none !important;
}
.esg-line-break {
	height: 5px;
	visibility: hidden;
}


.esg-divide-5 {
	width: 100%;
	height: 5px
}

.esg-divide-15 {
	width: 100%;
	height: 15px
}

.esg-divide-20 {
	width: 100%;
	height: 20px
}

.esg-divide-22 {
	width: 100%;
	height: 22px
}

.esg-divide-30 {
	width: 100%;
	height: 30px
}

.esg-click-to-play-video {
	cursor: pointer
}

.esg-entry-media iframe {
	-webkit-transform-style: flat;
	-webkit-transform: translateZ(1000px);
	border: 0;
}


/******************************
	-	THE ESG ITEMS	-
********************************/

.esg-container .tp-esg-item {
	position: absolute;
	top: 0px;
	left: 0px;
}


.esg-container .tp-esg-item {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.esg-container .tp-esg-item .blackoverlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background: #000;
	top: 0px;
	left: 0px;
}


.tp-esg-item {
	z-index: 5
}

.tp-esg-item.itemonotherpage {
	z-index: 0;
	display: none;
}


/******************************
	-	ESG ITEM POSITIONS	-
********************************/

.esg-entry-cover {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	border: 0px solid transparent;
	outline: 0px solid transparent;
}

.eec {
	display: block;
	width: auto;
	height: auto;
	position: absolute !important;
	font-size: 20px;
	text-align: center
}
.esg-entry-cover > .eec {
	z-index: 2;
	pointer-events: none;
}
.esg-entry-cover > .eec > * {
	pointer-events: all;
}

/* 2.2.6 */
/* CONTAINERS */
.esg-tc {
	top: 0px;
	left: 0px;
	width: 100%;
}

.esg-lc {
	top: 0px;
	left: 0px;
	height: 100%;
}

.esg-cc {
	top: 0px;
	left: 0px;
	width: 100%;
	vertical-align: middle;
}

.esg-rc {
	top: 0px;
	right: 0px;
	height: 100%;
}

.esg-bc {
	bottom: 0px;
	left: 0px;
	width: 100%;
}


/* TOP CONTAINERS */

.esg-tc .ess-tb-cell {
	text-align: center;
	vertical-align: top;
}


/* CENTER CONTAINERS */
.esg-lc .ess-tb-cell {
	text-align: left;
	vertical-align: middle;
}

.esg-cc .ess-tb-cell {
}

.esg-rc .ess-tb-cell {
	text-align: right;
	vertical-align: middle;
}

/* RIGHT CONTAINERS */
.esg-blc .ess-tb-cell {
	text-align: left;
	vertical-align: bottom;
}

.esg-bc .ess-tb-cell {
	text-align: center;
	vertical-align: bottom;
}

.esg-brc .ess-tb-cell {
	text-align: right;
	vertical-align: bottom;
}

.esg-bc .leftalign {
	text-align: left;
}


/******************************
	-	ESG MEDIA	-
********************************/

.esg-entry-media {
	position: relative;
	border: 0px solid transparent;
	outline: 0px solid transparent;
	overflow: hidden;
}

.esg-entry-media {
	width: 100%;
}

.esg-entry-media img {
	width: 100%;
	height: auto;
	max-width: none !important;
	min-width: none !important
}

.esg-layout-masonry .esg-entry-media img {
	line-height: 0px;
	vertical-align: bottom;
	display: inline-block;
}

.esg-layout-even .esg-entry-media img {
	display: none
}

.esg-media-cover-wrapper {
	position: relative;
	width: 100%;
	backface-visibility: hidden
}

.esg-layout-even .esg-media-cover-wrapper {
	height: 100%;
}

.esg-entry-media-wrapper {
	z-index: 0;
}
.esg-entry-media-wrapper-even {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.esg-entry-media-wrapper-not-even {
	overflow: hidden;
	position: relative;
}
.esg-entry-media-wrapper .esg-video-frame {
	background: #000;
}
.esg-entry-media-wrapper-item-layout {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
}

/**********************************
	-	ESG COVER CONTAINER	-
**********************************/

.esg-entry-cover .esg-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px solid transparent;
	outline: 0px solid transparent;
}

/******************************
	-	ESG CONTNER PART	-
********************************/
.esg-layout-even .esg-entry-content {
	display: none;
}

.esg-entry-content {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-backface-visibility: hidden;
}

/******************************
	-	NAVIGATION SKINS	-
********************************/

.navigationbuttons,
.esg-pagination,
.esg-filters {
	position: relative;
	z-index: 50;
	-webkit-backface-visibility: hidden;
}

.esg-grid .esg-pagination {
	z-index: 100;
	-webkit-backface-visibility: hidden;
}


/* 2.3.7 */
.esg-nav-by-shortcode .esg-sortbutton-order.eg-icon-down-open.tp-asc,
.esg-nav-by-shortcode .esg-sortbutton-order .tp-desc,
.esg-sortbutton-order.eg-icon-down-open.tp-asc,
.esg-sortbutton-order .tp-desc {
	text-align: center
}

/* 2.3.7 */
.esg-nav-by-shortcode {
	position: relative;
	display: inline-block;
	vertical-align: top;
	text-align: center
}

.esg-nav-by-shortcode .esg-navbutton-solo-right,
.esg-nav-by-shortcode .esg-navbutton-solo-left {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto
}

.esg-nav-by-shortcode .esg-filter-wrapper {
	visibility: visible;
}

/******************************
	-	FILTER BUTTONS 	-
	-	NAVIGATION BUTTONS	-
********************************/

.esg-singlefilters .esg-filter-checked {
	display: none;
	-webkit-backface-visibility: hidden;
}

.esg-filter-wrapper {
	display: inline-block;
}

.esg-sortbutton-wrapper {
	display: inline-block;
}

.esg-cartbutton-wrapper {
	display: inline-block
}

/* DROP DOWN STYLE FOR ESSENTIAL GRID */
.esg-filter-wrapper.dropdownstyle {
	min-width: 100px;
	cursor: pointer;
	position: relative;
	z-index: 1500;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(1px);
	transform: translateZ(1px)
}
.esg-filter-wrapper.dropdownstyle.esg-skin-preview {
	z-index: 1570;
	visibility: visible;
}

.esg-filter-wrapper.dropdownstyle .esg-filterbutton {
	display: block;
	margin-right: 0px;
	margin-bottom: 5px;
}

.esg-filter-wrapper.dropdownstyle .esg-filter-checked {
	margin-right: 5px;
	margin-left: 0px;
}

.esg-dropdown-wrapper {
	display: none;
	position: absolute;
	padding: 20px;
	top: 100%;
	backface-visibility: hidden;
	transform: translateZ(10px);
}

.esg-selected-filterbutton {
	color: #999;
	margin-right: 5px;
	cursor: pointer;
	padding: 0px 15px 0px 10px;
	line-height: 20px;
	font-size: 12px;
	font-weight: 600;
	font-family: "Open Sans", sans-serif;
	display: inline-block;
	background: rgba(0, 0, 0, 0);
	margin-bottom: 5px;
	width: 100%;
}

.esg-selected-filterbutton.hovered {
	color: #444;
}

.esg-selected-filterbutton .eg-icon-down-open {
	display: inline-block;
	vertical-align: top;
	width: 29px;
	line-height: inherit;
	font-size: 9px;
	font-weight: 700;
	color: #999;
	background: rgba(0, 0, 0, 0);
	text-align: center;
}

/** SAME SETTINGS FOR ALL SKIN **/
.esg-sortbutton-order.tp-desc {
	transform: scaleY(-1);
	filter: FlipV;
	-ms-filter: "FlipV";
}

.esg-sorting-select {
	cursor: pointer;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	opacity: 0.0;
	-webkit-appearance: menulist-button;
}

.esg-filters.esg-navbutton-solo-left {
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: 800
}

.esg-filters.esg-navbutton-solo-right {
	position: absolute;
	right: 0px;
	top: 50%;
	z-index: 800;
}

.esg-navigationbutton.esg-right,
.esg-navigationbutton.esg-left {
	margin-left: 0px !important;
	margin-right: 0px !important;
	-webkit-transform-style: flat;
	-webkit-transform: translateZ(5000px)
}

/*************************************************
	-	LET / RIGHT WIDGET AREA CONTAINERS	-
**************************************************/

.eg-leftright-container {
	float: left;
	width: 310px;
	margin-right: 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}

.eg-leftright-container.dark {
	background: #1e1e1e
}

.eg-leftright-container .pagination {
	position: absolute;
	bottom: 0px;
}

.eg-leftright-container .esg-filters {
	padding: 30px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.eg-leftright-container .esg-filterbutton {
	display: block;
	margin: 0px 0px 5px 0px
}

.eg-leftright-container .esg-filter-wrapper {
	display: block;
	margin-right: 0px;
}

/***********************************
	-	AJAX TARGET CONTAINER	-
************************************/
.eg-ajaxtarget-container {
	position: relative;
	width: 100%;
	height: auto;
}
.eg-ajaxanimwrapper {
	position: relative;
	overflow: hidden;
}

/******************************
	-	LOADER FORMS	-
********************************/
.tp-esg-item .add_to_cart_button.loading:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/css/../images/ajax-loader.gif) center no-repeat rgba(255, 255, 255, 0.65);
}

.esg-loader {
	top: 50%;
	left: 50%;
	z-index: 10000;
	position: absolute;
}

.infinityscollavailable.esg-loader {
	position: relative;
	top: auto;
	left: 50%;
	margin-top: 25px !important;
	margin-bottom: 25px !important;
}

.esg-loader.spinner0 {
	width: 40px;
	height: 40px;
	background: url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/css/../images/loader.gif) no-repeat center center;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);

	margin-left: -20px;
	-webkit-animation: esg-rotateplane 1.2s infinite ease-in-out;
	animation: esg-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.esg-loader.spinner1 {
	width: 40px;
	height: 40px;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);

	margin-left: -20px;
	-webkit-animation: esg-rotateplane 1.2s infinite ease-in-out;
	animation: esg-rotateplane 1.2s infinite ease-in-out;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.esg-loader.spinner5 {
	background: url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/css/../images/loader.gif) no-repeat 10px 10px;
	background-color: #fff;
	margin: -22px -22px;
	width: 44px;
	height: 44px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

@-webkit-keyframes esg-rotateplane {
	0% {
		-webkit-transform: perspective(120px)
	}
	50% {
		-webkit-transform: perspective(120px) rotateY(180deg)
	}
	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
	}
}

@keyframes esg-rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
	}
	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
	}
	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

.esg-loader.spinner2 {
	width: 40px;
	height: 40px;
	margin-left: -20px;
	background-color: #ff0000;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	border-radius: 100%;
	-webkit-animation: esg-scaleout 1.0s infinite ease-in-out;
	animation: esg-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes esg-scaleout {
	0% {
		-webkit-transform: scale(0.0)
	}
	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}

@keyframes esg-scaleout {
	0% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	100% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}

.esg-loader.spinner3 {
	margin: -9px 0px 0px -35px;
	width: 70px;
	text-align: center;
}

.eg-search-wrapper .esg-loader.spinner3 {
	margin-top: -30px !important
}

.simple-light .eg-search-wrapper .esg-loader.spinner3,
.simple-dark .eg-search-wrapper .esg-loader.spinner3 {
	margin-top: -25px !important
}

.text-light .eg-search-wrapper .esg-loader.spinner3,
.text-dark .eg-search-wrapper .esg-loader.spinner3 {
	margin-top: -22px !important
}

.esg-loader.spinner3 .bounce1,
.esg-loader.spinner3 .bounce2,
.esg-loader.spinner3 .bounce3 {
	width: 18px;
	height: 18px;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: esg-bouncedelay 1.4s infinite ease-in-out;
	animation: esg-bouncedelay 1.4s infinite ease-in-out;
	/* Prevent first frame from flickering when animation starts */
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.esg-loader.spinner3 .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.esg-loader.spinner3 .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes esg-bouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0.0)
	}
	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes esg-bouncedelay {
	0%, 80%, 100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	40% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

.esg-loader.spinner4 {
	margin: 0px 0px 0px -20px;
	width: 40px;
	height: 40px;
	text-align: center;
	-webkit-animation: esg-rotate 2.0s infinite linear;
	animation: esg-rotate 2.0s infinite linear;
}

.esg-loader.spinner4 .dot1,
.esg-loader.spinner4 .dot2 {
	width: 60%;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 0;
	background-color: #fff;
	border-radius: 100%;
	-webkit-animation: esg-bounce 2.0s infinite ease-in-out;
	animation: esg-bounce 2.0s infinite ease-in-out;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.esg-loader.spinner4 .dot2 {
	top: auto;
	bottom: 0px;
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes esg-rotate {
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes esg-rotate {
	100% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg)
	}
}

@-webkit-keyframes esg-bounce {
	0%, 100% {
		-webkit-transform: scale(0.0)
	}
	50% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes esg-bounce {
	0%, 100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}
	50% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

/****************************
* Font Icons
****************************/

[class^="eg-icon-"]:before,
[class*=" eg-icon-"]:before {
	font-family: "eg-font";
	font-style: normal;
	font-weight: normal;
	speak: none;

	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;

	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;

	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;

	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;

	/* you can be more comfortable with increased icons size */
	/* font-size: 120%; */

	/* Uncomment for 3D effect */
	/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

[class^="fa-icon-"]:before, [class*=" fa-icon-"]:before {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	speak: none;

	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */

	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;

	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;

	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
}

.esg-grid [class^="pe-7s-"]:before,
.esg-grid [class*=" pe-7s-"]:before {
	font-family: 'Pe-icon-7-stroke';
	display: inline-block;
	font-style: normal;
	font-weight: normal;
	speak: none;

	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	/* opacity: .8; */

	/* For safety - reset parent styles, that can break glyph codes*/
	font-variant: normal;
	text-transform: none;

	/* fix buttons height, for twitter bootstrap */
	line-height: 1em;

	/* Animation center compensation - margins should be symmetric */
	/* remove if not needed */
	margin-left: .2em;
}


/* GENERAL STYLE MODS ADDED IN 1.1.0 */
.esg-filter-wrapper .esg-filterbutton:last-child,
.esg-cartbutton a,
.esg-selected-filterbutton {
	margin-right: 0 !important;
}

.esg-singlefilters .esg-filter-checked {
	display: none !important
}

/*****************************************
	-	AJAX LOADED CONTENT STYLING	-
*****************************************/
.eg-ajaxclicklistener {
	cursor: pointer
}

.eg-ajax-video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.eg-ajax-video-container.widevideo {
	padding-bottom: 50%;
}

.eg-ajax-video-container iframe,
.eg-ajax-video-container object,
.eg-ajax-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.forcenotvisible {
	visibility: hidden !important
}

.forcenotdisplay {
	display: none !important
}

/******************************
	-	SEARCH FUNCTION	-
********************************/
input.eg-search-input[type="text"],
.eg-search-input {
	display: inline-block
}

.eg-search-submit,
.eg-search-clean {
	display: inline-block;
	width: auto;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	text-align: center;
	vertical-align: top
}

.eg-search-submit,
.eg-search-clean {
	cursor: pointer
}

.eg-search-wrapper {
	vertical-align: top;
	line-height: 40px;
}

input.eg-search-input[type="text"] {
	font-family: "Open Sans", sans-serif;
	outline: none !important;
	margin: 0px 0px 5px !important;
	padding: 8px 15px;
	vertical-align: top;
	box-sizing: border-box
}

/*****************************************
	-	AJAX NAVIGATION BUTTON STYLING	-
*****************************************/
.eg-ajax-closer-wrapper {
	display: block;
	z-index: 51000;
	position: relative
}

.eg-ajax-navbt {
	cursor: pointer;
	display: inline-block;
	margin-right: 5px;
}

.eg-acp-inner.eg-acp-tr .eg-ajax-closer.eg-ajax-navbt,
.eg-acp-inner.eg-acp-br .eg-ajax-closer.eg-ajax-navbt {
	margin-right: 0px
}


.eg-ajax-closer-wrapper.eg-acp-tl,
.eg-ajax-closer-wrapper.eg-acp-bl {
	text-align: left;
}

.eg-ajax-closer-wrapper.eg-acp-tr,
.eg-ajax-closer-wrapper.eg-acp-br {
	text-align: right;
}

.eg-ajax-closer-wrapper.eg-acp-t,
.eg-ajax-closer-wrapper.eg-acp-b {
	text-align: center;
}

.eg-ajax-closer-wrapper.eg-acp-t,
.eg-ajax-closer-wrapper.eg-acp-tr,
.eg-ajax-closer-wrapper.eg-acp-tl {
	margin-bottom: 5px;
}

.eg-ajax-closer-wrapper.eg-acp-bl,
.eg-ajax-closer-wrapper.eg-acp-br,
.eg-ajax-closer-wrapper.eg-acp-b {
	margin-top: 5px;
}

.eg-acp-inner {
	display: block;
	position: absolute;
	z-index: 50;
	margin: 5px;
}

.eg-acp-inner.eg-acp-tr,
.eg-acp-inner.eg-acp-tl,
.eg-acp-inner.eg-acp-t {
	top: 0px;
}

.eg-acp-inner.eg-acp-br,
.eg-acp-inner.eg-acp-bl,
.eg-acp-inner.eg-acp-b {
	bottom: 0px;
}

.eg-acp-inner.eg-acp-tl,
.eg-acp-inner.eg-acp-bl {
	left: 0px;
}

.eg-acp-inner.eg-acp-tr,
.eg-acp-inner.eg-acp-br {
	right: 0px;
}

.eg-acp-inner.eg-acp-t,
.eg-acp-inner.eg-acp-b {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
}

.eg-ajax-navbt {
	line-height: 21px;
	background: #000;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	text-transform: uppercase;
	padding: 1px 1px 0px 0px;
	font-size: 11px;
	font-weight: 400;
}

.eg-ajax-closer.eg-ajax-navbt {
	padding: 1px 5px 1px 3px;
	vertical-align: top;
}

.eg-acp-light .eg-ajax-navbt {
	background: #e5e5e5;
	color: #000;
}

.eg-ajax-closer.eg-ajax-navbt i {
	font-size: 13px;
}

.eg-ajax-navbt i {
	font-size: 16px;
}

.eg-ajax-closer-wrapper.eg-acp-type1 {
	margin: 0;
}

.eg-acp-type1 .eg-ajax-navbt {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	padding: 10px;
	margin: 0px;
}

.eg-acp-type1 .eg-ajax-navbt i {
	font-size: 20px;
}

.eg-acp-type1 .eg-ajax-navbt {
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: medium !important;
	line-height: 40px;
	padding: 0px;
}

.eg-acp-type1 .eg-ajax-closer.eg-ajax-navbt {
	vertical-align: top;
	font-size: 24px;
	font-weight: 300;
	font-family: sans-serif;
	height: auto;
	line-height: 28px;
	padding: 8px 0px 4px;
}

span.eg-el-amount:before {
	content: "("
}

span.eg-el-amount:after {
	content: ")"
}

span.eg-el-amount {
	margin-left: 10px;
}
.esg-dropdown-wrapper span.eg-el-amount {
	margin-left: 5px;
}


/****************************************
	-	2.1.6 SPLIT CONTENT FEATURE  -
*****************************************/
.esg-split-content .esg-entry-media-wrapper, .esg-split-content .esg-entry-cover {
	width: 50% !important
}

.esg-split-content .esg-media-cover-wrapper:after {
	content: "";
	display: table;
	clear: both
}

.esg-split-right .esg-entry-media-wrapper, .esg-split-right .esg-entry-cover {
	float: right
}

.esg-split-left .esg-entry-media-wrapper, .esg-split-left .esg-entry-cover {
	float: left
}

.esg-split-content .esg-entry-media {
	height: 100% !important
}

.esg-split-content .esg-entry-cover {
	position: relative !important
}

.esg-split-content .esg-entry-content {
	clear: both
}

/*
2.1.6
Blur and Grayscale filters
*/
.grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

/* 2.1.6.2 */
/* 2.2.5 */
.esg-revealed .esg-itm-anime:not(.esg-anime-blur) .esg-overflowtrick {
	overflow: visible !important
}

.esg-revealed .esg-itm-anime .tp-esg-item {
	-webkit-mask-image: none !important
}

.esg-revealed .esg-itm-anime .tp-esg-item:hover {
	z-index: 9999 !important;
	transform: none !important
}

.esg-revealed .esg-anime-item:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
}

.esg-anime-blur .esg-entry-media {
	transform: scale(1.15, 1.15) !important;
	transform-origin: center center !important
}

/* 2.2 */
.eg-invisiblebutton {
	box-shadow: none !important;
	height: inherit !important;
	display: block !important;
}
.esg-media-cover-wrapper > .eg-invisiblebutton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.esg-entry-cover > .eg-invisiblebutton {
	position: relative;
	z-index: 1;
}

.esg-lb-dummy {
	max-width: none !important;
	box-shadow: none !important;
	position: absolute;
	display: none
}

/* post content layout */
@media screen and (max-width: 736px) {
	.eg-lightbox-post-content-inner > div {
		width: 100% !important;
		float: none !important;
	}

	.eg-lightbox-post-content-inner .esg-post-featured-img {
		padding: 30px 0 !important;
	}
}

.esgbox-stage .esgbox-slide > *:not(.esgbox-share) {
	margin: 0;
	padding: 0
}

.esgbox-stage .esgbox-slide > .esgbox-loading {
	margin-top: -30px;
	margin-left: -30px
}

.esgbox-toolbar .esgbox-button {
	transition: background 0.2s ease-out
}

.esgbox-toolbar .esgbox-button:focus,
.esgbox-toolbar .esgbox-button:active,
.esgbox-toolbar .esgbox-button:visited {
	background: rgba(30, 30, 30, .6)
}

.esgbox-toolbar .esgbox-button:hover {
	background: #000
}

.esgbox-navigation .esgbox-button:before {
	transition: background 0.2s ease-out
}

.esgbox-navigation .esgbox-button:focus:before,
.esgbox-navigation .esgbox-button:active:before,
.esgbox-navigation .esgbox-button:visited:before,
.esgbox-navigation .esgbox-button[disabled]:hover:before,
.esgbox-toolbar .esgbox-button[disabled]:hover {
	background: rgba(0, 0, 0, .6)
}

.esgbox-navigation .esgbox-button:hover:before {
	background: rgba(0, 0, 0, .6)
}

.esgbox-hidearrows .esgbox-navigation .esgbox-button--arrow_left,
.esgbox-hidearrows .esgbox-navigation .esgbox-button--arrow_right {
	display: none !important
}

.esgbox-single .esgbox-button--arrow_left,
.esgbox-single .esgbox-button--arrow_right {
	display: none !important
}

.esgbox-slide--video iframe {
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	max-height: 100%;
}

.esg-four-by-three .esgbox-slide--video iframe {
	width: 800px;
	height: 600px;
}

.esgbox-container .esgbox-button--arrow_right:hover,
.esgbox-container .esgbox-button--arrow_right:focus,
.esgbox-container .esgbox-button--arrow_left:hover,
.esgbox-container .esgbox-button--arrow_left:focus {
	background: rgba(0, 0, 0, .6)
}

/* 2.2.5 */
.esg-filter-wrapper {
	visibility: hidden
}

#eg-elements-container-grid-wrap.eg-startheight {
	height: 351px;
}

.esg-mobile-filter-button {
	display: none
}
.esg-filter-wrapper.dropdownstyle .esg-mobile-filter-button {
	display: inline-block;
}

.esg-mobile-filter-wrap {
	visibility: visible
}

.esg-mobile-filter-wrap .esg-dropdown-wrapper {
	display: none !important;
	visibility: hidden !important
}

/* 2.2.3 */
.eg-esgblankskin-wrapper * {
	visibility: hidden !important
}

/* 2.2.6 */
.eg-item-in-focus {
	z-index: 999 !important
}

/* 2.2.6 */
.esg-cover-overflow {
	overflow: hidden
}

/* collapses */
.esg-transition[data-transition^='esg-collapse'] {
	overflow: hidden
}

.esg-transition[data-transition^='esg-collapse']:before,
.esg-transition[data-transition^='esg-collapse']:after {
	position: absolute;
	content: ""
}

.esg-transition[data-transition^='esg-collapsevertical']:before,
.esg-transition[data-transition^='esg-collapsevertical']:after {
	width: 100%;
	height: 0%;
	left: 0
}

.esg-transition[data-transition^='esg-collapsevertical']:before {
	top: 0
}

.esg-transition[data-transition^='esg-collapsevertical']:after {
	bottom: 0
}

.esg-transition[data-transition='esg-collapseverticalout']:before,
.esg-transition[data-transition='esg-collapseverticalout']:after {
	height: 50%
}

.esg-transition[data-transition^='esg-collapsehorizontal']:before,
.esg-transition[data-transition^='esg-collapsehorizontal']:after {
	width: 0%;
	height: 100%;
	top: 0
}

.esg-transition[data-transition^='esg-collapsehorizontal']:before {
	left: 0
}

.esg-transition[data-transition^='esg-collapsehorizontal']:after {
	right: 0
}

.esg-transition[data-transition='esg-collapsehorizontalout']:before {
	width: 50%
}

.esg-transition[data-transition='esg-collapsehorizontalout']:after {
	width: 50%
}

.esg-hovered .esg-transition[data-transition="esg-collapsevertical"]:before,
.esg-hovered .esg-transition[data-transition="esg-collapsevertical"]:after {
	height: 50%
}

.esg-hovered .esg-transition[data-transition="esg-collapseverticalout"]:before,
.esg-hovered .esg-transition[data-transition="esg-collapseverticalout"]:after {
	height: 0
}

.esg-hovered .esg-transition[data-transition="esg-collapsehorizontal"]:before,
.esg-hovered .esg-transition[data-transition="esg-collapsehorizontal"]:after {
	width: 50%
}

.esg-hovered .esg-transition[data-transition="esg-collapsehorizontalout"]:before,
.esg-hovered .esg-transition[data-transition="esg-collapsehorizontalout"]:after {
	width: 0
}

/* lines */
.esg-transition[data-transition^="esg-line"]:after {
	content: "";
	position: absolute;
	width: 70%;
	height: 70%;
	top: 15%;
	left: 15%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

.esg-transition[data-transition="esg-linediagonal"]:after,
.esg-transition[data-transition="esg-linehorizontal"]:after,
.esg-transition[data-transition="esg-linevertical"]:after {
	transform: scale(0)
}

.esg-hovered .esg-transition[data-transition^="esg-line"]:after {
	transform: scale(1)
}

.esg-hovered .esg-transition[data-transition="esg-linediagonalout"]:after,
.esg-hovered .esg-transition[data-transition="esg-linehorizontalout"]:after,
.esg-hovered .esg-transition[data-transition="esg-lineverticalout"]:after {
	transform: scale(0)
}

/* spiral */
.esg-transition[data-transition^="esg-spiral"]:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding-bottom: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	transform-origin: center;
	transform: translate(-50%, -50%) rotate(0deg) scale(0);
}

.esg-transition[data-transition="esg-spiralzoomout"]:after {
	transform: translate(-50%, -50%) rotate(-300deg) scale(3)
}

.esg-hovered .esg-transition[data-transition="esg-spiralzoom"]:after {
	transform: translate(-50%, -50%) rotate(-300deg) scale(3)
}

.esg-hovered .esg-transition[data-transition="esg-spiralzoomout"]:after {
	transform: translate(-50%, -50%) rotate(0deg) scale(0)
}

/* circle */
.esg-transition[data-transition^="esg-circlezoom"]:before,
.esg-transition[data-transition^="esg-circlezoom"]:after {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	padding-bottom: 150%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
	border-radius: 50%;
	box-sizing: border-box;
}

.esg-transition[data-transition="esg-circlezoomout"]:before,
.esg-transition[data-transition="esg-circlezoomout"]:after {
	transform: translate(-50%, -50%) scale(1, 1)
}

.esg-hovered .esg-transition[data-transition="esg-circlezoom"]:before,
.esg-hovered .esg-transition[data-transition="esg-circlezoom"]:after {
	transform: translate(-50%, -50%) scale(1, 1)
}

.esg-hovered .esg-transition[data-transition="esg-circlezoomout"]:before,
.esg-hovered .esg-transition[data-transition="esg-circlezoomout"]:after {
	transform: translate(-50%, -50%) scale(0, 0)
}

.esg-transition[data-transition^="esg-line"]:before,
.esg-transition[data-transition^="esg-spiral"]:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	opacity: 0;
}

.esg-transition[data-transition="esg-linediagonalout"]:before,
.esg-transition[data-transition="esg-linehorizontalout"]:before,
.esg-transition[data-transition="esg-lineverticalout"]:before,
.esg-transition[data-transition="esg-spiralzoomout"]:before {
	opacity: 1
}

.esg-hovered .esg-transition[data-transition^="esg-line"]:before,
.esg-hovered .esg-transition[data-transition="esg-spiralzoom"]:before {
	opacity: 1
}

.esg-hovered .esg-transition[data-transition="esg-linediagonalout"]:before,
.esg-hovered .esg-transition[data-transition="esg-linehorizontalout"]:before,
.esg-hovered .esg-transition[data-transition="esg-lineverticalout"]:before,
.esg-hovered .esg-transition[data-transition="esg-spiralzoomout"]:before {
	opacity: 0
}

/* new blend modes */
.esg-overlay.esg-cover-blend-multiply {
	mix-blend-mode: multiply
}

.esg-overlay.esg-cover-blend-screen {
	mix-blend-mode: screen
}

.esg-overlay.esg-cover-blend-overlay {
	mix-blend-mode: overlay
}

.esg-overlay.esg-cover-blend-darken {
	mix-blend-mode: darken
}

.esg-overlay.esg-cover-blend-lighten {
	mix-blend-mode: lighten
}

.esg-overlay.esg-cover-blend-color-dodge {
	mix-blend-mode: color-dodge
}

.esg-overlay.esg-cover-blend-color-burn {
	mix-blend-mode: color-burn
}

.esg-overlay.esg-cover-blend-hard-light {
	mix-blend-mode: hard-light
}

.esg-overlay.esg-cover-blend-soft-light {
	mix-blend-mode: soft-light
}

.esg-overlay.esg-cover-blend-difference {
	mix-blend-mode: difference
}

.esg-overlay.esg-cover-blend-exclusion {
	mix-blend-mode: exclusion
}

.esg-overlay.esg-cover-blend-hue {
	mix-blend-mode: hue
}

.esg-overlay.esg-cover-blend-saturation {
	mix-blend-mode: saturation
}

.esg-overlay.esg-cover-blend-color {
	mix-blend-mode: color
}

.esg-overlay.esg-cover-blend-luminosity {
	mix-blend-mode: luminosity
}


/** 
INSTAGRAM FILTERS BY UNA 
https://una.im/CSSgram/
**/
.esg-container .aden {
	-webkit-filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2);
	filter: hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)
}

.esg-container .aden::after {
	background: -webkit-linear-gradient(left, rgba(66, 10, 14, .2), transparent);
	background: linear-gradient(to right, rgba(66, 10, 14, .2), transparent);
	mix-blend-mode: darken
}

.esg-container .perpetua::after,
.esg-container .reyes::after {
	mix-blend-mode: soft-light;
	opacity: .5
}

.esg-container .inkwell {
	-webkit-filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1);
	filter: sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)
}

.esg-container .perpetua::after {
	background: -webkit-linear-gradient(top, #005b9a, #e6c13d);
	background: linear-gradient(to bottom, #005b9a, #e6c13d)
}

.esg-container .reyes {
	-webkit-filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75);
	filter: sepia(.22) brightness(1.1) contrast(.85) saturate(.75)
}

.esg-container .reyes::after {
	background: #efcdad
}

.esg-container .gingham {
	-webkit-filter: brightness(1.05) hue-rotate(-10deg);
	filter: brightness(1.05) hue-rotate(-10deg)
}

.esg-container .gingham::after {
	background: -webkit-linear-gradient(left, rgba(66, 10, 14, .2), transparent);
	background: linear-gradient(to right, rgba(66, 10, 14, .2), transparent);
	mix-blend-mode: darken
}

.esg-container .toaster {
	-webkit-filter: contrast(1.5) brightness(.9);
	filter: contrast(1.5) brightness(.9)
}

.esg-container .toaster::after {
	background: -webkit-radial-gradient(circle, #804e0f, #3b003b);
	background: radial-gradient(circle, #804e0f, #3b003b);
	mix-blend-mode: screen
}

.esg-container .walden {
	-webkit-filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6);
	filter: brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)
}

.esg-container .walden::after {
	background: #04c;
	mix-blend-mode: screen;
	opacity: .3
}

.esg-container .hudson {
	-webkit-filter: brightness(1.2) contrast(.9) saturate(1.1);
	filter: brightness(1.2) contrast(.9) saturate(1.1)
}

.esg-container .hudson::after {
	background: -webkit-radial-gradient(circle, #a6b1ff 50%, #342134);
	background: radial-gradient(circle, #a6b1ff 50%, #342134);
	mix-blend-mode: multiply;
	opacity: .5
}

.esg-container .earlybird {
	-webkit-filter: contrast(.9) sepia(.2);
	filter: contrast(.9) sepia(.2)
}

.esg-container .earlybird::after {
	background: -webkit-radial-gradient(circle, #d0ba8e 20%, #360309 85%, #1d0210 100%);
	background: radial-gradient(circle, #d0ba8e 20%, #360309 85%, #1d0210 100%);
	mix-blend-mode: overlay
}

.esg-container .mayfair {
	-webkit-filter: contrast(1.1) saturate(1.1);
	filter: contrast(1.1) saturate(1.1)
}

.esg-container .mayfair::after {
	background: -webkit-radial-gradient(40% 40%, circle, rgba(255, 255, 255, .8), rgba(255, 200, 200, .6), #111 60%);
	background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .8), rgba(255, 200, 200, .6), #111 60%);
	mix-blend-mode: overlay;
	opacity: .4
}

.esg-container .lofi {
	-webkit-filter: saturate(1.1) contrast(1.5);
	filter: saturate(1.1) contrast(1.5)
}

.esg-container .lofi::after {
	background: -webkit-radial-gradient(circle, transparent 70%, #222 150%);
	background: radial-gradient(circle, transparent 70%, #222 150%);
	mix-blend-mode: multiply
}

.esg-container ._1977 {
	-webkit-filter: contrast(1.1) brightness(1.1) saturate(1.3);
	filter: contrast(1.1) brightness(1.1) saturate(1.3)
}

.esg-container ._1977:after {
	background: rgba(243, 106, 188, .3);
	mix-blend-mode: screen
}

.esg-container .brooklyn {
	-webkit-filter: contrast(.9) brightness(1.1);
	filter: contrast(.9) brightness(1.1)
}

.esg-container .brooklyn::after {
	background: -webkit-radial-gradient(circle, rgba(168, 223, 193, .4) 70%, #c4b7c8);
	background: radial-gradient(circle, rgba(168, 223, 193, .4) 70%, #c4b7c8);
	mix-blend-mode: overlay
}

.esg-container .xpro2 {
	-webkit-filter: sepia(.3);
	filter: sepia(.3)
}

.esg-container .xpro2::after {
	background: -webkit-radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, .6) 110%);
	background: radial-gradient(circle, #e6e7e0 40%, rgba(43, 42, 161, .6) 110%);
	mix-blend-mode: color-burn
}

.esg-container .nashville {
	-webkit-filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2);
	filter: sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)
}

.esg-container .nashville::after {
	background: rgba(0, 70, 150, .4);
	mix-blend-mode: lighten
}

.esg-container .nashville::before {
	background: rgba(247, 176, 153, .56);
	mix-blend-mode: darken
}

.esg-container .lark {
	-webkit-filter: contrast(.9);
	filter: contrast(.9)
}

.esg-container .lark::after {
	background: rgba(242, 242, 242, .8);
	mix-blend-mode: darken
}

.esg-container .lark::before {
	background: #22253f;
	mix-blend-mode: color-dodge
}

.esg-container .moon {
	-webkit-filter: grayscale(1) contrast(1.1) brightness(1.1);
	filter: grayscale(1) contrast(1.1) brightness(1.1)
}

.esg-container .moon::before {
	background: #a0a0a0;
	mix-blend-mode: soft-light
}

.esg-container .moon::after {
	background: #383838;
	mix-blend-mode: lighten
}

.esg-container .clarendon {
	-webkit-filter: contrast(1.2) saturate(1.35);
	filter: contrast(1.2) saturate(1.35)
}

.esg-container .clarendon:before {
	background: rgba(127, 187, 227, .2);
	mix-blend-mode: overlay
}

.esg-container .willow {
	-webkit-filter: grayscale(.5) contrast(.95) brightness(.9);
	filter: grayscale(.5) contrast(.95) brightness(.9)
}

.esg-container .willow::before {
	background-color: radial-gradient(40%, circle, #d4a9af 55%, #000 150%);
	mix-blend-mode: overlay
}

.esg-container .willow::after {
	background-color: #d8cdcb;
	mix-blend-mode: color
}

.esg-container .rise {
	-webkit-filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9);
	filter: brightness(1.05) sepia(.2) contrast(.9) saturate(.9)
}

.esg-container .rise::after {
	background: -webkit-radial-gradient(circle, rgba(232, 197, 152, .8), transparent 90%);
	background: radial-gradient(circle, rgba(232, 197, 152, .8), transparent 90%);
	mix-blend-mode: overlay;
	opacity: .6
}

.esg-container .rise::before {
	background: -webkit-radial-gradient(circle, rgba(236, 205, 169, .15) 55%, rgba(50, 30, 7, .4));
	background: radial-gradient(circle, rgba(236, 205, 169, .15) 55%, rgba(50, 30, 7, .4));
	mix-blend-mode: multiply
}

.esg-container ._1977:after, .esg-container ._1977:before,
.esg-container .aden:after, .esg-container .aden:before,
.esg-container .brooklyn:after, .esg-container .brooklyn:before,
.esg-container .clarendon:after, .esg-container .clarendon:before,
.esg-container .earlybird:after, .esg-container .earlybird:before,
.esg-container .gingham:after, .esg-container .gingham:before,
.esg-container .hudson:after, .esg-container .hudson:before,
.esg-container .inkwell:after, .esg-container .inkwell:before,
.esg-container .lark:after, .esg-container .lark:before,
.esg-container .lofi:after, .esg-container .lofi:before,
.esg-container .mayfair:after, .esg-container .mayfair:before,
.esg-container .moon:after, .esg-container .moon:before,
.esg-container .nashville:after, .esg-container .nashville:before,
.esg-container .perpetua:after, .esg-container .perpetua:before,
.esg-container .reyes:after, .esg-container .reyes:before,
.esg-container .rise:after, .esg-container .rise:before,
.esg-container .slumber:after, .esg-container .slumber:before,
.esg-container .toaster:after, .esg-container .toaster:before,
.esg-container .walden:after, .esg-container .walden:before,
.esg-container .willow:after, .esg-container .willow:before,
.esg-container .xpro2:after, .esg-container .xpro2:before {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	pointer-events: none
}

.esg-container ._1977, 
.esg-container .aden, 
.esg-container .brooklyn, 
.esg-container .clarendon, 
.esg-container .earlybird, 
.esg-container .gingham,
.esg-container .hudson,
.esg-container .inkwell,
.esg-container .lark,
.esg-container .lofi,
.esg-container .mayfair,
.esg-container .moon,
.esg-container .nashville,
.esg-container .perpetua,
.esg-container .reyes,
.esg-container .rise,
.esg-container .slumber,
.esg-container .toaster,
.esg-container .walden,
.esg-container .willow,
.esg-container .xpro2 {
	position: relative
}

.esg-container ._1977 img,
.esg-container .aden img,
.esg-container .brooklyn img,
.esg-container .clarendon img,
.esg-container .earlybird img,
.esg-container .gingham img,
.esg-container .hudson img,
.esg-container .inkwell img,
.esg-container .lark img,
.esg-container .lofi img,
.esg-container .mayfair img,
.esg-container .moon img,
.esg-container .nashville img,
.esg-container .perpetua img,
.esg-container .reyes img,
.esg-container .rise img,
.esg-container .slumber img,
.esg-container .toaster img,
.esg-container .walden img,
.esg-container .willow img,
.esg-container .xpro2 img {
	width: 100%;
	z-index: 1
}

.esg-container ._1977:before,
.esg-container .aden:before,
.esg-container .brooklyn:before,
.esg-container .clarendon:before,
.esg-container .earlybird:before,
.esg-container .gingham:before,
.esg-container .hudson:before,
.esg-container .inkwell:before,
.esg-container .lark:before,
.esg-container .lofi:before,
.esg-container .mayfair:before,
.esg-container .moon:before,
.esg-container .nashville:before,
.esg-container .perpetua:before,
.esg-container .reyes:before,
.esg-container .rise:before,
.esg-container .slumber:before,
.esg-container .toaster:before,
.esg-container .walden:before,
.esg-container .willow:before,
.esg-container .xpro2:before {
	z-index: 2
}

.esg-container ._1977:after,
.esg-container .aden:after,
.esg-container .brooklyn:after,
.esg-container .clarendon:after,
.esg-container .earlybird:after,
.esg-container .gingham:after,
.esg-container .hudson:after,
.esg-container .inkwell:after,
.esg-container .lark:after,
.esg-container .lofi:after,
.esg-container .mayfair:after,
.esg-container .moon:after,
.esg-container .nashville:after,
.esg-container .perpetua:after,
.esg-container .reyes:after,
.esg-container .rise:after,
.esg-container .slumber:after,
.esg-container .toaster:after,
.esg-container .walden:after,
.esg-container .willow:after,
.esg-container .xpro2:after {
	z-index: 3
}

.esg-container .slumber {
	-webkit-filter: saturate(.66) brightness(1.05);
	filter: saturate(.66) brightness(1.05)
}

.esg-container .slumber::after {
	background: rgba(125, 105, 24, .5);
	mix-blend-mode: soft-light
}

.esg-container .slumber::before {
	background: rgba(69, 41, 12, .4);
	mix-blend-mode: lighten
}

/* No Filters and Search in Streams, NextGen, ML */
.source_type_stream .esg-filter-wrapper,
.source_type_nextgen .esg-filter-wrapper,
.source_type_rml .esg-filter-wrapper {
	display: none !important;
}

/* PE7 Font for Backend Popup */
[class*=" pe-7s-"]:before {
	font-family: 'Pe-icon-7-stroke'
}


/****************************************
			GLOBAL SEARCH STYLES
*****************************************/

/* LIGHT */
#esg_search_wrapper {
	height: auto;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20000;
}
#esg_search_wrapper .esg-filter-wrapper, #esg_search_wrapper .esg-pagination {
	margin-left: 0 !important;
}
#esg_big_search_wrapper {
	padding-top: 0;
	position: relative;
}
#esg_big_search_wrapper .bigsearchfield {
	-moz-border-bottom-colors: none !important;
	-moz-border-left-colors: none !important;
	-moz-border-right-colors: none !important;
	-moz-border-top-colors: none !important;
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0) !important;
	border:none !important;
	border-bottom:2px solid #333 !important;
	color: #333 !important;
	font-size: 40px !important;
	font-weight: 700;
	line-height: 40px !important;
	padding: 0 !important;
	position: relative;
	width: 100%;
	z-index: 10;
	height:50px !important;
	border-radius:0 !important;
	-webkit-border-radius:0 !important;
	-moz-border-radius:0 !important;
}

#esg_big_search_wrapper::-ms-clear { display: none; }
#esg_big_search_wrapper .bigsearchfield::-ms-clear { display: none; }

#esg_big_search_fake_txt {
	background: none repeat scroll 0 0 rgba(255, 255,255, 0) !important;
	border: medium none !important;
	color: #333 !important;
	font-size: 40px !important;
	font-weight: 700;
	line-height: 40px !important;
	padding: 0 !important;
	position: absolute !important;
	top: 7px !important;
	width: 100%;
	z-index: 5;
	height:50px !important;
}
.esg_big_search_close {
	color: #333;
	cursor: pointer;
	font-size: 40px;
	font-weight: 400;
	position: absolute;
	right: 30px;
	top: 50px;
	z-index: 20;
}
.esg_searchresult_title {
	color: #333;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 30px;
	text-transform: uppercase;
}
#esg_search_bg {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.85);
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 19999;
}
.esg_searchcontainer {
	box-sizing: border-box;
	padding: 40px;
	position: relative;
	width: 100%;
}
.esg_searchresult {
	color: #333;
	font-size: 17px;
	font-weight: 600;
	line-height: 26px;
}

/* DARK */
#esg_big_search_wrapper.dark .bigsearchfield {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
	border-bottom:2px solid #fff !important;
	color: #fff !important;
}

.dark #esg_big_search_fake_txt {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0) !important;
	color: #fff !important;
}
.dark .esg_big_search_close {
	color: #fff;
}
.dark .esg_searchresult_title {
	color: #fff;
}
#esg_search_bg.dark {
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85);
}
.dark .esg_searchresult {
	color: #fff;
}/****************************
* Fontello Icons
****************************/
@font-face {
 font-family: 'eg-font';
  src: url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/font/fontello/css/../fonts/egfont.eot#1772713276);
  src: url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/font/fontello/css/../fonts/egfont.eot#1772713276) format('embedded-opentype'),
       url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/font/fontello/css/../fonts/egfont.woff#1772713276) format('woff'),
       url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/font/fontello/css/../fonts/egfont.ttf#1772713276) format('truetype'),
       url(https://www.coolfog.sk/wp-content/plugins/essential-grid/public/assets/font/fontello/css/../fonts/egfont.svg?85610117#egfont) format('svg');
  font-weight: normal;
  font-style: normal;

}

.eg-icon-soundcloud:before { content: '\e8ca'; } /* '' */
.eg-icon-music:before { content: '\e858'; } /* '' */
.eg-icon-color-adjust:before { content: '\e862'; } /* '' */
.eg-icon-mail:before { content: '\e868'; } /* '' */
.eg-icon-mail-alt:before { content: '\e869'; } /* '' */
.eg-icon-heart:before { content: '\e86a'; } /* '' */
.eg-icon-heart-empty:before { content: '\e86b'; } /* '' */
.eg-icon-star:before { content: '\e86c'; } /* '' */
.eg-icon-star-empty:before { content: '\e86d'; } /* '' */
.eg-icon-user:before { content: '\e879'; } /* '' */
.eg-icon-male:before { content: '\e87a'; } /* '' */
.eg-icon-female:before { content: '\e87b'; } /* '' */
.eg-icon-video:before { content: '\e805'; } /* '' */
.eg-icon-videocam:before { content: '\e859'; } /* '' */
.eg-icon-picture-1:before { content: '\e803'; } /* '' */
.eg-icon-camera:before { content: '\e85a'; } /* '' */
.eg-icon-camera-alt:before { content: '\e85b'; } /* '' */
.eg-icon-th-large:before { content: '\e83c'; } /* '' */
.eg-icon-th:before { content: '\e83d'; } /* '' */
.eg-icon-ok:before { content: '\e80d'; } /* '' */
.eg-icon-ok-circled2:before { content: '\e877'; } /* '' */
.eg-icon-ok-squared:before { content: '\e878'; } /* '' */
.eg-icon-cancel:before { content: '\e80a'; } /* '' */
.eg-icon-plus:before { content: '\e86e'; } /* '' */
.eg-icon-plus-circled:before { content: '\e876'; } /* '' */
.eg-icon-plus-squared:before { content: '\e875'; } /* '' */
.eg-icon-minus:before { content: '\e86f'; } /* '' */
.eg-icon-minus-circled:before { content: '\e870'; } /* '' */
.eg-icon-minus-squared:before { content: '\e871'; } /* '' */
.eg-icon-minus-squared-alt:before { content: '\e872'; } /* '' */
.eg-icon-info-circled:before { content: '\e80f'; } /* '' */
.eg-icon-info:before { content: '\e844'; } /* '' */
.eg-icon-home:before { content: '\e843'; } /* '' */
.eg-icon-link:before { content: '\e80e'; } /* '' */
.eg-icon-unlink:before { content: '\e83f'; } /* '' */
.eg-icon-link-ext:before { content: '\e840'; } /* '' */
.eg-icon-lock:before { content: '\e856'; } /* '' */
.eg-icon-lock-open:before { content: '\e857'; } /* '' */
.eg-icon-eye:before { content: '\e841'; } /* '' */
.eg-icon-eye-off:before { content: '\e842'; } /* '' */
.eg-icon-tag:before { content: '\e85c'; } /* '' */
.eg-icon-thumbs-up:before { content: '\e887'; } /* '' */
.eg-icon-thumbs-up-alt:before { content: '\e888'; } /* '' */
.eg-icon-download:before { content: '\e88a'; } /* '' */
.eg-icon-upload:before { content: '\e889'; } /* '' */
.eg-icon-reply:before { content: '\e8a6'; } /* '' */
.eg-icon-forward:before { content: '\e874'; } /* '' */
.eg-icon-export-1:before { content: '\e873'; } /* '' */
.eg-icon-print:before { content: '\e886'; } /* '' */
.eg-icon-gamepad:before { content: '\e837'; } /* '' */
.eg-icon-trash:before { content: '\e801'; } /* '' */
.eg-icon-doc-text:before { content: '\e885'; } /* '' */
.eg-icon-doc-inv:before { content: '\e884'; } /* '' */
.eg-icon-folder-1:before { content: '\e83e'; } /* '' */
.eg-icon-folder-open:before { content: '\e883'; } /* '' */
.eg-icon-folder-open-empty:before { content: '\e882'; } /* '' */
.eg-icon-rss:before { content: '\e880'; } /* '' */
.eg-icon-rss-squared:before { content: '\e881'; } /* '' */
.eg-icon-phone:before { content: '\e87f'; } /* '' */
.eg-icon-menu:before { content: '\e830'; } /* '' */
.eg-icon-cog-alt:before { content: '\e847'; } /* '' */
.eg-icon-wrench:before { content: '\e848'; } /* '' */
.eg-icon-basket-1:before { content: '\e87c'; } /* '' */
.eg-icon-calendar:before { content: '\e87d'; } /* '' */
.eg-icon-calendar-empty:before { content: '\e87e'; } /* '' */
.eg-icon-lightbulb:before { content: '\e88b'; } /* '' */
.eg-icon-resize-full-alt:before { content: '\e845'; } /* '' */
.eg-icon-move:before { content: '\e846'; } /* '' */
.eg-icon-down-dir:before { content: '\e838'; } /* '' */
.eg-icon-up-dir:before { content: '\e839'; } /* '' */
.eg-icon-left-dir:before { content: '\e817'; } /* '' */
.eg-icon-right-dir:before { content: '\e818'; } /* '' */
.eg-icon-down-open:before { content: '\e83b'; } /* '' */
.eg-icon-left-open:before { content: '\e819'; } /* '' */
.eg-icon-right-open:before { content: '\e81a'; } /* '' */
.eg-icon-angle-left:before { content: '\e820'; } /* '' */
.eg-icon-angle-right:before { content: '\e81d'; } /* '' */
.eg-icon-angle-double-left:before { content: '\e892'; } /* '' */
.eg-icon-angle-double-right:before { content: '\e893'; } /* '' */
.eg-icon-left-big:before { content: '\e81f'; } /* '' */
.eg-icon-right-big:before { content: '\e81e'; } /* '' */
.eg-icon-up-hand:before { content: '\e835'; } /* '' */
.eg-icon-ccw-1:before { content: '\e891'; } /* '' */
.eg-icon-shuffle-1:before { content: '\e849'; } /* '' */
.eg-icon-play:before { content: '\e88c'; } /* '' */
.eg-icon-play-circled:before { content: '\e88e'; } /* '' */
.eg-icon-stop:before { content: '\e88f'; } /* '' */
.eg-icon-pause:before { content: '\e88d'; } /* '' */
.eg-icon-fast-fw:before { content: '\e890'; } /* '' */
.eg-icon-desktop:before { content: '\e85d'; } /* '' */
.eg-icon-laptop:before { content: '\e85e'; } /* '' */
.eg-icon-tablet:before { content: '\e85f'; } /* '' */
.eg-icon-mobile:before { content: '\e860'; } /* '' */
.eg-icon-flight:before { content: '\e894'; } /* '' */
.eg-icon-font:before { content: '\e851'; } /* '' */
.eg-icon-bold:before { content: '\e852'; } /* '' */
.eg-icon-italic:before { content: '\e855'; } /* '' */
.eg-icon-text-height:before { content: '\e84f'; } /* '' */
.eg-icon-text-width:before { content: '\e850'; } /* '' */
.eg-icon-align-left:before { content: '\e84c'; } /* '' */
.eg-icon-align-center:before { content: '\e84d'; } /* '' */
.eg-icon-align-right:before { content: '\e84e'; } /* '' */
.eg-icon-search:before { content: '\e802'; } /* '' */
.eg-icon-indent-left:before { content: '\e866'; } /* '' */
.eg-icon-indent-right:before { content: '\e867'; } /* '' */
.eg-icon-ajust:before { content: '\e84a'; } /* '' */
.eg-icon-tint:before { content: '\e84b'; } /* '' */
.eg-icon-chart-bar:before { content: '\e853'; } /* '' */
.eg-icon-magic:before { content: '\e807'; } /* '' */
.eg-icon-sort:before { content: '\e895'; } /* '' */
.eg-icon-sort-alt-up:before { content: '\e863'; } /* '' */
.eg-icon-sort-alt-down:before { content: '\e864'; } /* '' */
.eg-icon-sort-name-up:before { content: '\e854'; } /* '' */
.eg-icon-sort-name-down:before { content: '\e865'; } /* '' */
.eg-icon-coffee:before { content: '\e896'; } /* '' */
.eg-icon-food:before { content: '\e897'; } /* '' */
.eg-icon-medkit:before { content: '\e898'; } /* '' */
.eg-icon-puzzle:before { content: '\e899'; } /* '' */
.eg-icon-apple:before { content: '\e89a'; } /* '' */
.eg-icon-facebook:before { content: '\e89b'; } /* '' */
.eg-icon-gplus:before { content: '\e89c'; } /* '' */
.eg-icon-tumblr:before { content: '\e8a0'; } /* '' */
.eg-icon-twitter-squared:before { content: '\e8a2'; } /* '' */
.eg-icon-twitter:before { content: '\e8a1'; } /* '' */
.eg-icon-vimeo-squared:before { content: '\e89d'; } /* '' */
.eg-icon-youtube:before { content: '\e89f'; } /* '' */
.eg-icon-youtube-squared:before { content: '\e89e'; } /* '' */
.eg-icon-picture:before { content: '\e800'; } /* '' */
.eg-icon-check:before { content: '\e810'; } /* '' */
.eg-icon-back:before { content: '\e8a5'; } /* '' */
.eg-icon-thumbs-up-1:before { content: '\e8a9'; } /* '' */
.eg-icon-thumbs-down:before { content: '\e8aa'; } /* '' */
.eg-icon-download-1:before { content: '\e8ab'; } /* '' */
.eg-icon-upload-1:before { content: '\e8ac'; } /* '' */
.eg-icon-reply-1:before { content: '\e8a8'; } /* '' */
.eg-icon-forward-1:before { content: '\e8a7'; } /* '' */
.eg-icon-export:before { content: '\e80b'; } /* '' */
.eg-icon-folder:before { content: '\e813'; } /* '' */
.eg-icon-rss-1:before { content: '\e8c8'; } /* '' */
.eg-icon-cog:before { content: '\e832'; } /* '' */
.eg-icon-tools:before { content: '\e815'; } /* '' */
.eg-icon-basket:before { content: '\e812'; } /* '' */
.eg-icon-login:before { content: '\e833'; } /* '' */
.eg-icon-logout:before { content: '\e834'; } /* '' */
.eg-icon-resize-full:before { content: '\e816'; } /* '' */
.eg-icon-popup:before { content: '\e828'; } /* '' */
.eg-icon-arrow-combo:before { content: '\e827'; } /* '' */
.eg-icon-left-open-1:before { content: '\e82a'; } /* '' */
.eg-icon-right-open-1:before { content: '\e82b'; } /* '' */
.eg-icon-left-open-mini:before { content: '\e822'; } /* '' */
.eg-icon-right-open-mini:before { content: '\e823'; } /* '' */
.eg-icon-left-open-big:before { content: '\e824'; } /* '' */
.eg-icon-right-open-big:before { content: '\e825'; } /* '' */
.eg-icon-left:before { content: '\e836'; } /* '' */
.eg-icon-right:before { content: '\e826'; } /* '' */
.eg-icon-ccw:before { content: '\e808'; } /* '' */
.eg-icon-cw:before { content: '\e8c9'; } /* '' */
.eg-icon-arrows-ccw:before { content: '\e806'; } /* '' */
.eg-icon-level-down:before { content: '\e8a3'; } /* '' */
.eg-icon-level-up:before { content: '\e8a4'; } /* '' */
.eg-icon-shuffle:before { content: '\e814'; } /* '' */
.eg-icon-palette:before { content: '\e829'; } /* '' */
.eg-icon-list-add:before { content: '\e80c'; } /* '' */
.eg-icon-back-in-time:before { content: '\e821'; } /* '' */
.eg-icon-monitor:before { content: '\e81b'; } /* '' */
.eg-icon-paper-plane:before { content: '\e8ad'; } /* '' */
.eg-icon-brush:before { content: '\e8ae'; } /* '' */
.eg-icon-droplet:before { content: '\e81c'; } /* '' */
.eg-icon-clipboard:before { content: '\e8b0'; } /* '' */
.eg-icon-megaphone:before { content: '\e8b1'; } /* '' */
.eg-icon-key:before { content: '\e8af'; } /* '' */
.eg-icon-github:before { content: '\e8b3'; } /* '' */
.eg-icon-github-circled:before { content: '\e8b4'; } /* '' */
.eg-icon-flickr:before { content: '\e8b2'; } /* '' */
.eg-icon-flickr-circled:before { content: '\e8b5'; } /* '' */
.eg-icon-vimeo:before { content: '\e8b6'; } /* '' */
.eg-icon-vimeo-circled:before { content: '\e8b7'; } /* '' */
.eg-icon-twitter-1:before { content: '\e8b8'; } /* '' */
.eg-icon-twitter-circled:before { content: '\e8b9'; } /* '' */
.eg-icon-facebook-1:before { content: '\e8ba'; } /* '' */
.eg-icon-facebook-circled:before { content: '\e8bb'; } /* '' */
.eg-icon-facebook-squared:before { content: '\e8bc'; } /* '' */
.eg-icon-gplus-1:before { content: '\e8bd'; } /* '' */
.eg-icon-gplus-circled:before { content: '\e8be'; } /* '' */
.eg-icon-pinterest:before { content: '\e8bf'; } /* '' */
.eg-icon-pinterest-circled:before { content: '\e8c0'; } /* '' */
.eg-icon-tumblr-1:before { content: '\e8c1'; } /* '' */
.eg-icon-tumblr-circled:before { content: '\e8c2'; } /* '' */
.eg-icon-linkedin:before { content: '\e8c3'; } /* '' */
.eg-icon-linkedin-circled:before { content: '\e8c4'; } /* '' */
.eg-icon-dribbble:before { content: '\e8c5'; } /* '' */
.eg-icon-dribbble-circled:before { content: '\e8c6'; } /* '' */
.eg-icon-picasa:before { content: '\e8c7'; } /* '' */
.eg-icon-ok-1:before { content: '\e811'; } /* '' */
.eg-icon-doc:before { content: '\e809'; } /* '' */
.eg-icon-left-open-outline:before { content: '\e82e'; } /* '' */
.eg-icon-left-open-2:before { content: '\e82c'; } /* '' */
.eg-icon-right-open-outline:before { content: '\e82f'; } /* '' */
.eg-icon-right-open-2:before { content: '\e82d'; } /* '' */
.eg-icon-equalizer:before { content: '\e83a'; } /* '' */
.eg-icon-layers-alt:before { content: '\e804'; } /* '' */
.eg-icon-pencil-1:before { content: '\e831'; } /* '' */
.eg-icon-align-justify:before { content: '\e861'; } /* '' */
.eg-icon-wistia:before { content: '\e89f'; } /* 'î¢Ÿ' */
.eg-icon-wistia-squared:before { content: '\e89e'; } /* 'î¢ž' */.cmplz-video.cmplz-iframe-styles{background-color:transparent}.cmplz-video.cmplz-hidden{visibility:hidden !important}.cmplz-blocked-content-notice{display:none}.cmplz-optin .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optout .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optin .cmplz-wp-video .cmplz-blocked-content-notice,.cmplz-optout .cmplz-wp-video .cmplz-blocked-content-notice{display:block}.cmplz-blocked-content-container,.cmplz-wp-video{animation-name:cmplz-fadein;animation-duration:600ms;background:#FFF;border:0;border-radius:3px;box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);display:flex;justify-content:center;align-items:center;background-repeat:no-repeat !important;background-size:cover !important;height:inherit;position:relative}.cmplz-blocked-content-container.gmw-map-cover,.cmplz-wp-video.gmw-map-cover{max-height:100%;position:absolute}.cmplz-blocked-content-container.cmplz-video-placeholder,.cmplz-wp-video.cmplz-video-placeholder{padding-bottom:initial}.cmplz-blocked-content-container iframe,.cmplz-wp-video iframe{max-height:100%;border:0 !important}.cmplz-blocked-content-container .cmplz-custom-accept-btn,.cmplz-wp-video .cmplz-custom-accept-btn{white-space:normal;text-transform:initial;cursor:pointer;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:200px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-custom-accept-btn:focus,.cmplz-wp-video .cmplz-custom-accept-btn:focus{border:1px dotted #cecece}.cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-wp-video .cmplz-blocked-content-notice{white-space:normal;text-transform:initial;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:300px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links{display:block;margin-bottom:10px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links a,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links a{color:#fff}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body{display:block}.cmplz-blocked-content-container div div{display:none}.cmplz-wp-video .cmplz-placeholder-element{width:100%;height:inherit}@keyframes cmplz-fadein{from{opacity:0}to{opacity:1}}/*
Theme Name: AirSupply
Theme URI: http://airsupply.themerex.net/
Description: AirSupply - Multipurpose and Multiskin Responsive Wordpress theme
Author: ThemeREX
Author URI: https://themerex.net/
Version: 1.7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column,two-columns,three-columns,four-columns,left-sidebar,right-sidebar,flexible-header,buddypress,custom-background,custom-colors,custom-header,custom-menu,editor-style,featured-image-header,featured-images,front-page-post-form,full-width-template,microformats,post-formats,sticky-post,theme-options,threaded-comments,translation-ready,holiday
Text Domain: airsupply
*/


/* TABLE OF CONTENTS:

1. Reset tags
2. Default tag's settings
3. Form fields settings
4. WP styles and Screen readers
5. Theme grid
6. Page layouts
7. Section's decorations
   7.1 Header
   7.2 Main Slider
   7.3 Page top: page title and breadcrumbs
   7.4 Main content wrapper
   7.5 Post Formats
   7.6 Post Layouts
   7.7 Paginations
8. Single page parts
   8.1 Attachment and Portfolio post navigation
   8.2 Reviews block
   8.3 Post author
   8.4 Comments
   8.5 Page 404
   8.8 Team member
9. Sidebars
10. Footer areas
11. Utils
12. Registration and Login popups
13. Third part plugins
14. Predefined classes for users

-------------------------------------------------------------- */




/* 1. Reset tags
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,input,textarea,button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, address, section, video, audio {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	line-height:inherit;
	border: 0;
	outline: 0;
	-webkit-font-smoothing: antialiased;
	-ms-word-wrap: break-word;
	    word-wrap: break-word;
}
html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	line-height:150%;
}
html {
	height: 100%;
	font-size: 100%;			/* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll !important;		/* Keeps page centred in all browsers regardless of content height */
	overflow-x: hidden;					/* Hide horizontal scrollbar on the page with VC stretch row */
	-webkit-text-size-adjust: 100%; 	/* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	    -ms-text-size-adjust: 100%; 	/* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



/* 2. Default tag's settings
-------------------------------------------------------------- */
body { 	text-rendering: optimizeLegibility; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {	display: block; }

h1, h2, h3, h4, h5, h6 { line-height:120%; }
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, blockquote, address { margin: 0; }
h1+h2,h1+h3,h1+h4,h1+h5,h1+h6,
h2+h3,h2+h4,h2+h5,h2+h6,
h3+h4,h3+h5,h3+h6,
h4+h5,h4+h6,
h5+h6 {
	margin-top:0;
}
h6{text-transform: uppercase;}
dt, b, strong {	font-weight: 500; }
p, ul, ol, dl, blockquote, address { margin-bottom: 1.5em; }
li > ol, li > ul { margin-bottom:0; }
ul>li, ol>li, dl>dd { margin-bottom:0.5em; }
li>ul, li>ol, dd>dl { margin-top:0.5em; }
li > p { margin-bottom:0; }
li > p+p { margin-top:0.5em; }

ol, ul {
	padding-left:1.5em;
}


/* Links */
a {
	text-decoration:none;
	background:transparent;
}
a,
a:hover,
a:focus,
a:active {
	outline: 0;
}
a img { border: none; }

a,
button {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

:active, :focus { outline:0; }


/* Tables */
table {
	border-collapse:collapse;
	border-spacing: 0;
}
td, th {
	border-right: 1px solid;
	padding: 4px;
}
td:last-child{
    border: none;
}
caption, th {
	font-weight: bold;
	text-align: center;
}
body.woocommerce-page table th, body.woocommerce-page table td {
	border-width:0;
}

blockquote:before, blockquote:after,
q:before, q:after {	content: ""; }
blockquote, q {	quotes: "" "";}

dt {	font-weight: bold; }
dd {	margin-left: 1.5em; }
b, strong {	font-weight: bold; }
dfn, cite, em, i { font-style: italic; }
blockquote { padding: 0.7em; }

pre, code, kbd, tt, var, samp {
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
	overflow: auto;
	max-width: 100%;
}
abbr, acronym {
	border-bottom: 1px dotted;
	cursor: help;
}
mark, ins {
	background-color:transparent;
	text-decoration: none;
	font-style:italic;
	font-weight:bold;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup { bottom: 1ex; }
sub { top: .5ex; }
small {	font-size: 75%; }
big {	font-size: 125%; }

[hidden], template { display: none; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/* Images */
img {
	max-width: 100%;
	height: auto;
	vertical-align:top;
}

figure,
.wp-caption-overlay .wp-caption {
	border: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	max-width:100%;
}
figure figcaption,
.wp-caption .wp-caption-text,
.wp-caption-overlay .wp-caption .wp-caption-text,
.wp-caption-overlay .wp-caption .wp-caption-dd,
.wp-block-gallery .blocks-gallery-item figcaption,
.wp-block-gallery > .blocks-gallery-caption{
	-webkit-transition: all ease-in-out .3s;
	   -moz-transition: all ease-in-out .3s;
	    -ms-transition: all ease-in-out .3s;
	     -o-transition: all ease-in-out .3s;
	        transition: all ease-in-out .3s;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin-bottom: 0;
	background-color: rgba(0,0,0,0.5);
	font-size: 0.75em;
	line-height:1.2857em;
	color: #fff;
	padding: 0.25em 0.8em;
}

svg:not(:root) { overflow: hidden; }



/* Audio and Video */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
iframe, video, embed {
	max-width: 100%;
	min-height: 100px;
	vertical-align: top;
}

/* Media Elements player hook */
.me-cannotplay { overflow:hidden; }
.me-plugin { position: absolute; height: 0; width: 0; }			/* Media elements hook for Safari */

/* Fontello icons */
[class^="icon-"]:before, [class*=" icon-"]:before {
	line-height: inherit !important;
	font-weight: inherit;
	font-size: inherit;
	width:auto;
	margin:0;
}

.contact_field.contact_phone .contact_icon.icon-phone-call{
	font-weight: 600;
}




/* 3. Form fields settings
-------------------------------------------------------------- */
button, input, optgroup, select, textarea {
	font-family: inherit;
	font-size: 1em;				/* Corrects font size not being inherited in all browsers */
	line-height: 1.2857em;
	margin: 0;					/* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline;	/* Improves appearance and consistency in all browsers */
}
select:not(.booked_calendar_chooser){
    width: 100%;
}
button, input {
	line-height: normal;		/* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
}
button {
	overflow: visible; 
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.sc_button.sc_button_style_filled {
	border:none;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
textarea,
select,
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;	/* Addresses box sizing set to content-box in IE8/9 */
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0;						/* Addresses excess padding in IE8/9 */
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: none;		/* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;		/* Corrects inner padding displayed oddly in S5, Chrome on OSX */
}
button::-moz-focus-inner,
input::-moz-focus-inner {			/* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"],
select,
textarea {
	-webkit-appearance: none;
	outline: none;
	resize: none;
	padding: 0.45em 0.5em;
	border:none;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}

button::-moz-focus-inner { 
	border: 0;
}
button:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select,
textarea:focus {
	outline: none;
}
textarea {
	overflow: auto;			/* Removes default vertical scrollbar in IE6/7/8/9 */
	vertical-align: top;	/* Improves readability and alignment in all browsers */
	min-height:5em;
}
label.required:after {
	content:'*';
	display:inline;
	margin-left:0.5em;
	vertical-align:text-top;
	font-size:80%;
	color:#da6f5b;
}

fieldset {
	border: 1px solid #ddd;
	margin: 1.5em 0.2em;
	padding: 1em 1.5em;
	position: relative;
}
fieldset legend {
	background-color: #fff;
	font-style: italic;
	font-weight: 600;
	left: 1.5em;
	padding: 0 0.2em;
	position: absolute;
	top: -0.8em;
}

input[type="submit"], input[type="button"], button, .sc_button {
    display: inline-block;
    text-align: center;
    padding: 1.35em 2em;
    font-weight: 400;
    border-radius: 2em;
    letter-spacing: 1px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

/* ======================= Booked calendar ================== */
body table.booked-calendar tbody tr td:first-child {
	border-left: 1px solid #ddd;
}
body table.booked-calendar tbody tr td {
	border-right: 1px solid #e5e5e5;
}
body .booked-calendar-shortcode-wrap .booked-calendarSwitcher.calendar p:before {
	top: 8px;
}

/* ======================== INPUT'S STYLES ================== */

/* Common rules */
[class*="sc_input_hover_"] .sc_form_item,
[class*="sc_input_hover_"] .comments_field {
	position:relative;
	z-index:1;
}
[class*="sc_input_hover_"] input[type="text"],
[class*="sc_input_hover_"] input[type="number"],
[class*="sc_input_hover_"] input[type="email"],
[class*="sc_input_hover_"] input[type="password"],
[class*="sc_input_hover_"] input[type="search"],
[class*="sc_input_hover_"] select,
[class*="sc_input_hover_"] textarea {
	font-size:1.2857em;
	text-align:left !important;
	width:100%;
}
[class*="sc_input_hover_"] input[type="text"]:focus,
[class*="sc_input_hover_"] input[type="number"]:focus,
[class*="sc_input_hover_"] input[type="email"]:focus,
[class*="sc_input_hover_"] input[type="password"]:focus,
[class*="sc_input_hover_"] input[type="search"]:focus,
[class*="sc_input_hover_"] select:focus,
[class*="sc_input_hover_"] textarea:focus {
	outline: none;
}
[class*="sc_input_hover_"] input[type="text"] + label,
[class*="sc_input_hover_"] input[type="number"] + label,
[class*="sc_input_hover_"] input[type="email"] + label,
[class*="sc_input_hover_"] input[type="password"] + label,
[class*="sc_input_hover_"] input[type="search"] + label,
[class*="sc_input_hover_"] select + label,
[class*="sc_input_hover_"] textarea + label {
	position:absolute;
	z-index:1;
	top: 0;
	left: 0;
	width: 100%;
	font-size:1.2857em;
	text-align: left !important;
	overflow: visible;
	padding: 0;
	pointer-events: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	   -moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	 -khtml-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
[class*="sc_input_hover_"] input[type="text"] + label.required:after,
[class*="sc_input_hover_"] input[type="number"] + label.required:after,
[class*="sc_input_hover_"] input[type="email"] + label.required:after,
[class*="sc_input_hover_"] input[type="password"] + label.required:after,
[class*="sc_input_hover_"] input[type="search"] + label.required:after,
[class*="sc_input_hover_"] select + label.required:after,
[class*="sc_input_hover_"] textarea + label.required:after {
	display:none;
}
[class*="sc_input_hover_"] input[type="text"] + label > .sc_form_label_content,
[class*="sc_input_hover_"] input[type="number"] + label > .sc_form_label_content,
[class*="sc_input_hover_"] input[type="email"] + label > .sc_form_label_content,
[class*="sc_input_hover_"] input[type="password"] + label > .sc_form_label_content,
[class*="sc_input_hover_"] input[type="search"] + label > .sc_form_label_content,
[class*="sc_input_hover_"] select + label > .sc_form_label_content,
[class*="sc_input_hover_"] textarea + label > .sc_form_label_content {
	position: relative;
	display: block;
	width: 100%;
}
[class*="sc_input_hover_"] input[type="text"] + label.required > .sc_form_label_content:after,
[class*="sc_input_hover_"] input[type="number"] + label.required > .sc_form_label_content:after,
[class*="sc_input_hover_"] input[type="email"] + label.required > .sc_form_label_content:after,
[class*="sc_input_hover_"] input[type="password"] + label.required > .sc_form_label_content:after,
[class*="sc_input_hover_"] input[type="search"] + label.required > .sc_form_label_content:after,
[class*="sc_input_hover_"] textarea + label.required > .sc_form_label_content:after {
	content: '*';
	vertical-align:top;
	margin-left:0.3em;
	font-size:80%;
	color:#da6f5b;
}
[class*="sc_input_hover_"] button {
	font-size:1em;
}

/* Accent */
.sc_input_hover_accent input[type="text"],
.sc_input_hover_accent input[type="number"],
.sc_input_hover_accent input[type="email"],
.sc_input_hover_accent input[type="password"],
.sc_input_hover_accent input[type="search"],
.sc_input_hover_accent select,
.sc_input_hover_accent textarea {
	box-shadow: 0px 0px 0px 2px transparent;
	-webkit-transition: box-shadow 0.3s;
	    -ms-transition: box-shadow 0.3s;
	        transition: box-shadow 0.3s;
	-webkit-appearance: none; /* for box shadows to show on iOS */
}
.sc_input_hover_accent input[type="text"] + label,
.sc_input_hover_accent input[type="number"] + label,
.sc_input_hover_accent input[type="email"] + label,
.sc_input_hover_accent input[type="password"] + label,
.sc_input_hover_accent input[type="search"] + label,
.sc_input_hover_accent select + label,
.sc_input_hover_accent textarea + label {
	position:static;
}
.sc_input_hover_accent input[type="text"] + label > .sc_form_label_content,
.sc_input_hover_accent input[type="number"] + label > .sc_form_label_content,
.sc_input_hover_accent input[type="email"] + label > .sc_form_label_content,
.sc_input_hover_accent input[type="password"] + label > .sc_form_label_content,
.sc_input_hover_accent input[type="search"] + label > .sc_form_label_content,
.sc_input_hover_accent select + label > .sc_form_label_content,
.sc_input_hover_accent textarea + label > .sc_form_label_content {
	padding: 0.3em 1em 1em;
}
.sc_input_hover_accent input[type="text"] + label:before,
.sc_input_hover_accent input[type="number"] + label:before,
.sc_input_hover_accent input[type="email"] + label:before,
.sc_input_hover_accent input[type="password"] + label:before,
.sc_input_hover_accent input[type="search"] + label:before,
.sc_input_hover_accent select + label:after,
.sc_input_hover_accent textarea + label:after {
	content: ' ';
	display:block !important;
  	position: absolute;
  	z-index: -1;
  	top: 0;
	left:0;
  	width: 100%;
  	height: 4em;
	box-shadow: 0px 0px 0px 0px;
}
.sc_input_hover_accent textarea + label:before {
  	height: 10em;
}
.sc_input_hover_accent input[type="text"]:focus + label,
.sc_input_hover_accent input[type="number"]:focus + label,
.sc_input_hover_accent input[type="email"]:focus + label,
.sc_input_hover_accent input[type="password"]:focus + label,
.sc_input_hover_accent input[type="search"]:focus + label,
.sc_input_hover_accent select:focus + label,
.sc_input_hover_accent textarea:focus + label {
	pointer-events: none;
}
.sc_input_hover_accent input[type="text"]:focus + label:before,
.sc_input_hover_accent input[type="number"]:focus + label:before,
.sc_input_hover_accent input[type="email"]:focus + label:before,
.sc_input_hover_accent input[type="password"]:focus + label:before,
.sc_input_hover_accent input[type="search"]:focus + label:before,
.sc_input_hover_accent select:focus + label:after,
.sc_input_hover_accent textarea:focus + label:after {
	-webkit-animation: anim-accent 0.3s forwards;
	    -ms-animation: anim-accent 0.3s forwards;
	        animation: anim-accent 0.3s forwards;
}

@-webkit-keyframes anim-accent {
	to {
		box-shadow: 0px 0px 100px 50px;
    	opacity: 0;
	}
}

@keyframes anim-accent {
	to {
		box-shadow: 0px 0px 100px 50px;
    	opacity: 0;
	}
}


/* Path */
.sc_input_hover_path .sc_form_item {
	margin-bottom: 3em !important;
}
.sc_input_hover_path input[type="text"],
.sc_input_hover_path input[type="number"],
.sc_input_hover_path input[type="email"],
.sc_input_hover_path input[type="password"],
.sc_input_hover_path input[type="search"],
.sc_input_hover_path textarea {
	background: transparent !important;
}
.sc_input_hover_path input[type="text"] + label,
.sc_input_hover_path input[type="number"] + label,
.sc_input_hover_path input[type="email"] + label,
.sc_input_hover_path input[type="password"] + label,
.sc_input_hover_path input[type="search"] + label,
.sc_input_hover_path textarea + label {
	height: 100%;
	cursor: text;
}
.sc_input_hover_path input[type="text"] + label:before,
.sc_input_hover_path input[type="number"] + label:before,
.sc_input_hover_path input[type="email"] + label:before,
.sc_input_hover_path input[type="password"] + label:before,
.sc_input_hover_path input[type="search"] + label:before,
.sc_input_hover_path textarea + label:before {
	margin-left: 0;
	font-size:1.2em;
}
.sc_input_hover_path input[type="text"] + label > .sc_form_label_content,
.sc_input_hover_path input[type="number"] + label > .sc_form_label_content,
.sc_input_hover_path input[type="email"] + label > .sc_form_label_content,
.sc_input_hover_path input[type="password"] + label > .sc_form_label_content,
.sc_input_hover_path input[type="search"] + label > .sc_form_label_content,
.sc_input_hover_path textarea + label > .sc_form_label_content {
	padding: 1em;
	-webkit-transform-origin: 0% 50%;
	    -ms-transform-origin: 0% 50%;
	        transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.3s;
	    -ms-transition: -ms-transform 0.3s;
	        transition: transform 0.3s;
}
.sc_input_hover_path input[type="text"] + label > .sc_form_graphic,
.sc_input_hover_path input[type="number"] + label > .sc_form_graphic,
.sc_input_hover_path input[type="email"] + label > .sc_form_graphic,
.sc_input_hover_path input[type="password"] + label > .sc_form_graphic,
.sc_input_hover_path input[type="search"] + label > .sc_form_graphic,
.sc_input_hover_path textarea + label > .sc_form_graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
	-webkit-transform: scale3d(1, -1, 1);
	    -ms-transform: scale3d(1, -1, 1);
	        transform: scale3d(1, -1, 1);
	-webkit-transition: stroke-dashoffset 0.3s;
	    -ms-transition: stroke-dashoffset 0.3s;
	        transition: stroke-dashoffset 0.3s;
	pointer-events: none;
	stroke: #ddd;
	stroke-width: 2px;
	stroke-dasharray: 962;
	stroke-dashoffset: 558;
}
.sc_input_hover_path input[type="text"]:focus + label,
.sc_input_hover_path input[type="number"]:focus + label,
.sc_input_hover_path input[type="email"]:focus + label,
.sc_input_hover_path input[type="password"]:focus + label,
.sc_input_hover_path input[type="search"]:focus + label,
.sc_input_hover_path textarea:focus + label,
.sc_input_hover_path input[type="text"].filled + label,
.sc_input_hover_path input[type="number"].filled + label,
.sc_input_hover_path input[type="email"].filled + label,
.sc_input_hover_path input[type="password"].filled + label,
.sc_input_hover_path input[type="search"].filled + label,
.sc_input_hover_path textarea.filled + label {
	cursor: default;
	pointer-events: none;
}
.sc_input_hover_path input[type="text"]:focus + label > .sc_form_graphic,
.sc_input_hover_path input[type="number"]:focus + label > .sc_form_graphic,
.sc_input_hover_path input[type="email"]:focus + label > .sc_form_graphic,
.sc_input_hover_path input[type="password"]:focus + label > .sc_form_graphic,
.sc_input_hover_path input[type="search"]:focus + label > .sc_form_graphic,
.sc_input_hover_path textarea:focus + label > .sc_form_graphic,
.sc_input_hover_path input[type="text"].filled + label > .sc_form_graphic,
.sc_input_hover_path input[type="number"].filled + label > .sc_form_graphic,
.sc_input_hover_path input[type="email"].filled + label > .sc_form_graphic,
.sc_input_hover_path input[type="password"].filled + label > .sc_form_graphic,
.sc_input_hover_path input[type="search"].filled + label > .sc_form_graphic,
.sc_input_hover_path textarea.filled + label > .sc_form_graphic {
	stroke-dashoffset: 0;
}
.sc_input_hover_path input[type="text"]:focus + label > .sc_form_label_content,
.sc_input_hover_path input[type="number"]:focus + label > .sc_form_label_content,
.sc_input_hover_path input[type="email"]:focus + label > .sc_form_label_content,
.sc_input_hover_path input[type="password"]:focus + label > .sc_form_label_content,
.sc_input_hover_path input[type="search"]:focus + label > .sc_form_label_content,
.sc_input_hover_path textarea:focus + label > .sc_form_label_content,
.sc_input_hover_path input[type="text"].filled + label > .sc_form_label_content,
.sc_input_hover_path input[type="number"].filled + label > .sc_form_label_content,
.sc_input_hover_path input[type="email"].filled + label > .sc_form_label_content,
.sc_input_hover_path input[type="password"].filled + label > .sc_form_label_content,
.sc_input_hover_path input[type="search"].filled + label > .sc_form_label_content,
.sc_input_hover_path textarea.filled + label > .sc_form_label_content {
	padding: 0.3em 1.25em;
	-webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
	    -ms-transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
	        transform: scale3d(0.81, 0.81, 1) translate3d(0, 4em, 0);
}
.sc_input_hover_path textarea:focus + label > .sc_form_label_content,
.sc_input_hover_path textarea.filled + label > .sc_form_label_content {
	-webkit-transform: scale3d(0.81, 0.81, 1) translate3d(0, 12.5em, 0);
	    -ms-transform: scale3d(0.81, 0.81, 1) translate3d(0, 12.5em, 0);
	        transform: scale3d(0.81, 0.81, 1) translate3d(0, 12.5em, 0);
}

/* Jump */
.sc_input_hover_jump .sc_form_item {
	padding-top: 2em;
}
.sc_input_hover_jump input[type="text"],
.sc_input_hover_jump input[type="number"],
.sc_input_hover_jump input[type="email"],
.sc_input_hover_jump input[type="password"],
.sc_input_hover_jump input[type="search"],
.sc_input_hover_jump textarea {
	border: 2px solid #ddd;
}
.sc_input_hover_jump input[type="text"] + label,
.sc_input_hover_jump input[type="number"] + label,
.sc_input_hover_jump input[type="email"] + label,
.sc_input_hover_jump input[type="password"] + label,
.sc_input_hover_jump input[type="search"] + label,
.sc_input_hover_jump textarea + label {
	overflow:hidden;
	-webkit-transform: translate3d(0, 2.7em, 0);
	    -ms-transform: translate3d(0, 2.7em, 0);
	        transform: translate3d(0, 2.7em, 0);
}
.sc_input_hover_jump input[type="text"] + label > .sc_form_label_content,
.sc_input_hover_jump input[type="number"] + label > .sc_form_label_content,
.sc_input_hover_jump input[type="email"] + label > .sc_form_label_content,
.sc_input_hover_jump input[type="password"] + label > .sc_form_label_content,
.sc_input_hover_jump input[type="search"] + label > .sc_form_label_content,
.sc_input_hover_jump textarea + label > .sc_form_label_content {
	padding: 0 1em;
}
.sc_input_hover_jump .sc_form_label_content:before {
	content: attr(data-content);
	position: absolute;
	top: -200%;
	left: 0;
	font-weight: bold;
	margin:0;
}
.sc_input_hover_jump input[type="text"]:focus + label,
.sc_input_hover_jump input[type="number"]:focus + label,
.sc_input_hover_jump input[type="email"]:focus + label,
.sc_input_hover_jump input[type="password"]:focus + label,
.sc_input_hover_jump input[type="search"]:focus + label,
.sc_input_hover_jump textarea:focus + label,
.sc_input_hover_jump input[type="text"].filled + label,
.sc_input_hover_jump input[type="number"].filled + label,
.sc_input_hover_jump input[type="email"].filled + label,
.sc_input_hover_jump input[type="password"].filled + label,
.sc_input_hover_jump input[type="search"].filled + label,
.sc_input_hover_jump textarea.filled + label {
	-webkit-animation: anim-jump-1 0.25s forwards;
	    -ms-animation: anim-jump-1 0.25s forwards;
	        animation: anim-jump-1 0.25s forwards;
}
.sc_input_hover_jump input[type="text"]:focus + label > .sc_form_label_content,
.sc_input_hover_jump input[type="number"]:focus + label > .sc_form_label_content,
.sc_input_hover_jump input[type="email"]:focus + label > .sc_form_label_content,
.sc_input_hover_jump input[type="password"]:focus + label > .sc_form_label_content,
.sc_input_hover_jump input[type="search"]:focus + label > .sc_form_label_content,
.sc_input_hover_jump textarea:focus + label > .sc_form_label_content,
.sc_input_hover_jump input[type="text"].filled + label > .sc_form_label_content,
.sc_input_hover_jump input[type="number"].filled + label > .sc_form_label_content,
.sc_input_hover_jump input[type="email"].filled + label > .sc_form_label_content,
.sc_input_hover_jump input[type="password"].filled + label > .sc_form_label_content,
.sc_input_hover_jump input[type="search"].filled + label > .sc_form_label_content,
.sc_input_hover_jump textarea.filled + label > .sc_form_label_content {
	-webkit-animation: anim-jump-2 0.25s forwards ease-in;
	    -ms-animation: anim-jump-2 0.25s forwards ease-in;
	        animation: anim-jump-2 0.25s forwards ease-in;
}

@-webkit-keyframes anim-jump-1 {
	0%, 70% {
		-webkit-transform: translate3d(0, 3em, 0);
		        transform: translate3d(0, 3em, 0);
	}
	71%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes anim-jump-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	70%, 71% {
 		-webkit-transform: translate3d(0, 125%, 0);
		        transform: translate3d(0, 125%, 0);
		-webkit-animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translate3d(0, 200%, 0);
		        transform: translate3d(0, 200%, 0);
	}
}

@keyframes anim-jump-1 {
	0%, 70% {
		-webkit-transform: translate3d(0, 3em, 0);
		        transform: translate3d(0, 3em, 0);
	}
	71%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}

@keyframes anim-jump-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
	70%, 71% {
		opacity: 0;
		-webkit-transform: translate3d(0, 125%, 0);
		        transform: translate3d(0, 125%, 0);
		-webkit-animation-timing-function: ease-out;
		        animation-timing-function: ease-out;
	}
	100% {
		-webkit-transform: translate3d(0, 200%, 0);
		        transform: translate3d(0, 200%, 0);
	}
}

/* Underline */
.sc_input_hover_underline .sc_form_item {
	margin-bottom: 3em !important;
}
.sc_input_hover_underline input[type="text"],
.sc_input_hover_underline input[type="number"],
.sc_input_hover_underline input[type="email"],
.sc_input_hover_underline input[type="password"],
.sc_input_hover_underline input[type="search"],
.sc_input_hover_underline textarea {
	background-color: transparent !important;
	padding: 0.5em 0 !important;
}
.sc_input_hover_underline input[type="text"] + label,
.sc_input_hover_underline input[type="number"] + label,
.sc_input_hover_underline input[type="email"] + label,
.sc_input_hover_underline input[type="password"] + label,
.sc_input_hover_underline input[type="search"] + label,
.sc_input_hover_underline textarea + label {
	padding: 0.5em 0;
	overflow:visible;
}
.sc_input_hover_underline input[type="text"] + label:before,
.sc_input_hover_underline input[type="number"] + label:before,
.sc_input_hover_underline input[type="email"] + label:before,
.sc_input_hover_underline input[type="password"] + label:before,
.sc_input_hover_underline input[type="search"] + label:before,
.sc_input_hover_underline textarea + label:before {
	content: ' ';
	display:block !important;
	position: absolute;
	width: 100%;
	height: 5px;
	left: 0;
	top: auto;
	bottom: 0;
	-webkit-transform-origin: 50% 100%;
	    -ms-transform-origin: 50% 100%;
	        transform-origin: 50% 100%;
	-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
	    -ms-transition: -ms-transform 0.3s, background-color 0.3s;
	        transition: transform 0.3s, background-color 0.3s;
}
.sc_input_hover_underline input[type="text"] + label > .sc_form_label_content,
.sc_input_hover_underline input[type="number"] + label > .sc_form_label_content,
.sc_input_hover_underline input[type="email"] + label > .sc_form_label_content,
.sc_input_hover_underline input[type="password"] + label > .sc_form_label_content,
.sc_input_hover_underline input[type="search"] + label > .sc_form_label_content,
.sc_input_hover_underline textarea + label > .sc_form_label_content {
	padding: 0;
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	-webkit-transition: -webkit-transform 0.3s, color 0.3s;
	    -ms-transition: -ms-transform 0.3s, color 0.3s;
	        transition: transform 0.3s, color 0.3s;
}
.sc_input_hover_underline textarea + label > .sc_form_label_content {
	display: block;
	height: 9.2em;
}
.sc_input_hover_underline input[type="text"]:focus + label:before,
.sc_input_hover_underline input[type="number"]:focus + label:before,
.sc_input_hover_underline input[type="email"]:focus + label:before,
.sc_input_hover_underline input[type="password"]:focus + label:before,
.sc_input_hover_underline input[type="search"]:focus + label:before,
.sc_input_hover_underline textarea:focus + label:before,
.sc_input_hover_underline input[type="text"].filled + label:before,
.sc_input_hover_underline input[type="number"].filled + label:before,
.sc_input_hover_underline input[type="email"].filled + label:before,
.sc_input_hover_underline input[type="password"].filled + label:before,
.sc_input_hover_underline input[type="search"].filled + label:before,
.sc_input_hover_underline textarea.filled + label:before {
	-webkit-transform: scale3d(1, 0.4, 1);
	    -ms-transform: scale3d(1, 0.4, 1);
	        transform: scale3d(1, 0.4, 1);
}
.sc_input_hover_underline input[type="text"]:focus + label > .sc_form_label_content,
.sc_input_hover_underline input[type="number"]:focus + label > .sc_form_label_content,
.sc_input_hover_underline input[type="email"]:focus + label > .sc_form_label_content,
.sc_input_hover_underline input[type="password"]:focus + label > .sc_form_label_content,
.sc_input_hover_underline input[type="search"]:focus + label > .sc_form_label_content,
.sc_input_hover_underline input[type="text"].filled + label > .sc_form_label_content,
.sc_input_hover_underline input[type="number"].filled + label > .sc_form_label_content,
.sc_input_hover_underline input[type="email"].filled + label > .sc_form_label_content,
.sc_input_hover_underline input[type="password"].filled + label > .sc_form_label_content,
.sc_input_hover_underline input[type="search"].filled + label > .sc_form_label_content {
	-webkit-transform: translate3d(0, 2em, 0) scale3d(0.7, 0.7, 1);
	    -ms-transform: translate3d(0, 2em, 0) scale3d(0.7, 0.7, 1);
	        transform: translate3d(0, 2em, 0) scale3d(0.7, 0.7, 1);
}
.sc_input_hover_underline textarea:focus + label > .sc_form_label_content,
.sc_input_hover_underline textarea.filled + label > .sc_form_label_content {
	-webkit-transform: translate3d(0, 10em, 0) scale3d(0.7, 0.7, 1);
	    -ms-transform: translate3d(0, 10em, 0) scale3d(0.7, 0.7, 1);
	        transform: translate3d(0, 10em, 0) scale3d(0.7, 0.7, 1);
}


/* Iconed */
.sc_input_hover_iconed input[type="text"],
.sc_input_hover_iconed input[type="number"],
.sc_input_hover_iconed input[type="email"],
.sc_input_hover_iconed input[type="password"],
.sc_input_hover_iconed input[type="search"],
.sc_input_hover_iconed textarea {
	padding: 0.9em 0.8em 0.9em 3.5em !important;
    border-radius: 2em;
}
.sc_input_hover_iconed input[type="text"] + label,
.sc_input_hover_iconed input[type="number"] + label,
.sc_input_hover_iconed input[type="email"] + label,
.sc_input_hover_iconed input[type="password"] + label,
.sc_input_hover_iconed input[type="search"] + label,
.sc_input_hover_iconed textarea + label {
	overflow:hidden;
	padding:0.6em !important;
	margin: 0;
}
.sc_input_hover_iconed input[type="text"] + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="number"] + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="email"] + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="password"] + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="search"] + label > .sc_form_label_content,
.sc_input_hover_iconed textarea + label > .sc_form_label_content {
	display: inline-block !important;
	width: auto;
	-webkit-transform: translate3d(-1.4em, 0, 0);
	    -ms-transform: translate3d(-1.4em, 0, 0);
	        transform: translate3d(-1.4em, 0, 0);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	    -ms-transition: -ms-transform 0.3s, opacity 0.3s;
	        transition: transform 0.3s, opacity 0.3s;
    font-size: 0.8em;
    font-weight: 400;
    margin-top: 0.3em;
}
.sc_input_hover_iconed input[type="text"] + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="number"] + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="email"] + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="password"] + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="search"] + label > .sc_form_label_icon,
.sc_input_hover_iconed textarea + label > .sc_form_label_icon {
	display: inline-block;
	font-size: 1.1111em;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	text-align:center !important;
	position:relative;
	-webkit-transform: translate3d(-3em, 0, 0);
	    -ms-transform: translate3d(-3em, 0, 0);
	        transform: translate3d(-3em, 0, 0);
	-webkit-transition: -webkit-transform 0.3s;
	    -ms-transition: -ms-transform 0.3s;
	        transition: transform 0.3s;
}
.sc_input_hover_iconed input[type="text"] + label > .sc_form_label_icon:before,
.sc_input_hover_iconed input[type="number"] + label > .sc_form_label_icon:before,
.sc_input_hover_iconed input[type="email"] + label > .sc_form_label_icon:before,
.sc_input_hover_iconed input[type="password"] + label > .sc_form_label_icon:before,
.sc_input_hover_iconed input[type="search"] + label > .sc_form_label_icon:before,
.sc_input_hover_iconed textarea + label > .sc_form_label_icon:before {
	position:static !important;
	margin:0 !important;
	padding:0 !important;
	font-style:normal !important;
	left: auto;
	top: auto;
	width: auto;
	height: auto;
	line-height:inherit;
}
.sc_input_hover_iconed input[type="text"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="number"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="email"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="password"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="search"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed textarea:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="text"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="number"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="email"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="password"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="search"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed textarea.filled + label > .sc_form_label_content {
	opacity: 0;
	-webkit-transform: translate3d(100px, 0, 0);
	    -ms-transform: translate3d(100px, 0, 0);
	        transform: translate3d(100px, 0, 0);
}
.sc_input_hover_iconed label > .sc_form_label_content,
.sc_input_hover_iconed label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="text"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="number"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="email"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="password"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="search"]:focus + label > .sc_form_label_content,
.sc_input_hover_iconed textarea:focus + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="text"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="number"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="email"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="password"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed input[type="search"].filled + label > .sc_form_label_content,
.sc_input_hover_iconed textarea.filled + label > .sc_form_label_content {
	-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	    -ms-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
	        transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}
.sc_input_hover_iconed input[type="text"]:focus + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="number"]:focus + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="email"]:focus + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="password"]:focus + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="search"]:focus + label > .sc_form_label_icon,
.sc_input_hover_iconed textarea:focus + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="text"].filled + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="number"].filled + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="email"].filled + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="password"].filled + label > .sc_form_label_icon,
.sc_input_hover_iconed input[type="search"].filled + label > .sc_form_label_icon,
.sc_input_hover_iconed textarea.filled + label > .sc_form_label_icon {
	-webkit-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}

/* ======================== END INPUT'S STYLES ================== */



/* 4. WP styles and Screen readers
-------------------------------------------------------------- */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	display: block;
	top: 5px;
	left: 5px;
	width: auto;
	height: auto;
	padding: 1em 1.5em;
	font-size:0.85em;
	line-height: normal;
	color: #21759b;
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	text-decoration: none;
	z-index: 100000; /* Above WP toolbar */
}
.alignnone {
	margin-top: 1em;
	margin-bottom: 1em;
}
.alignleft {
	display: inline-block;
	float: left;
	margin-right: 2em;
	margin-top: 1em;
	margin-bottom: 1em;
}
.alignright {
	display: inline-block;
	float: right;
	margin-left: 2em;
	margin-top: 1em;
	margin-bottom: 1em;
}
.aligncenter {
	clear: both;
	display: block !important;
	margin-left: auto !important;
	margin-right:auto !important;
	margin-top: 1em;
	margin-bottom: 1em;
	text-align:center;
}

.sticky {
	position:relative;
}
.sticky .sticky_label {
	position:absolute; 
	right:0;
	top: 0;
	width:3em;
	height:3em;
	background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/sticky.png);
	background-repeat:no-repeat;
	background-position:right top;
	background-size:3em 3em;
}
.gallery-caption {outline: 0;}
.bypostauthor {outline: 0;}

.wp-caption {
	position: relative;
	overflow:hidden;
	max-width:100%;
}
.wp-caption a[class*="magnific"],
.wp-caption a[class*="prettyPhoto"] {
	display: block;
}
.wp-caption a[class*="magnific"] img,
.wp-caption a[class*="prettyPhoto"] img {
	vertical-align: top;
}
.wp-caption .wp-caption-text,
.wp-caption .wp-caption-dd {
	padding: 1em;
	font-size:13px;
	line-height:16px;
	text-align:center;
}

.gallery {
	margin: 0 -5px;
}

.gallery .gallery-item{
	display: inline-block;
}

.gallery .gallery-item a {
	display: block;
}

.gallery .gallery-item a img {
    border: none !important;
    display: block;
    width: 100%;
}

.gallery .gallery-item .gallery-icon {
	margin: 0 5px;
}

.gallery .gallery-item .gallery-caption {
    line-height: 100%;
    margin: 0;
	left: 5px;
	right: 5px;
	bottom: 0;
    padding: 6px;
	font-size:0.875em;
	overflow-y: auto;
}

.gallery.gallery-columns-9 .gallery-item {	width: 11.1111% !important; }
.gallery.gallery-columns-8 .gallery-item {	width: 12.5% !important; }
.gallery.gallery-columns-7 .gallery-item {	width: 14.2857% !important; }
.gallery.gallery-columns-6 .gallery-item {	width: 16.6666% !important; }
.gallery.gallery-columns-5 .gallery-item {	width: 20% !important; }
.gallery.gallery-columns-4 .gallery-item {	width: 25% !important; }
.gallery.gallery-columns-3 .gallery-item {	width: 33.3333% !important; }
.gallery.gallery-columns-2 .gallery-item {	width: 50% !important; }
.gallery.gallery-columns-1 .gallery-item {	width: 100% !important; }
.gallery.gallery-columns-9 .gallery-caption { font-size: 0.625em; }
.gallery.gallery-columns-8 .gallery-caption { font-size: 0.6875em; }
.gallery.gallery-columns-7 .gallery-caption { font-size: 0.75em; }
.gallery.gallery-columns-6 .gallery-caption { font-size: 0.8125em; }

.post_format_gallery .sc_slider  {
	margin-bottom: 1.5em;
}

.post-password-form label {
	display:inline-block;
	vertical-align:top;
}
.post-password-form input[type="submit"] {
	display:inline-block;
	margin-left:10px;
}

.post-password-form input[type="password"] {
    border-bottom-left-radius: 4em;
    border-bottom-right-radius: 4em;
    border-top-left-radius: 4em;
    border-top-right-radius: 4em;
    height: 4em;
    padding-left: 1.5em;
}



/* 5. Theme grid
-------------------------------------------------------------- */
.container, .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row, .columns_wrap {
  margin-left: 0;		/* -15px; */
  margin-right: -30px;	/* -15px; */
}
.row > [class*="column-"], .columns_wrap > [class*="column-"] {
  display:inline-block;
  vertical-align:top;

  position: relative;
  min-height: 1px;
  padding-left: 0px;	
  padding-right: 30px;	
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.row.column_padding_left, .columns_wrap.column_padding_left {
  margin-left: -30px;
  margin-right: 0;
}
.row.column_padding_left > [class*="column-"], .columns_wrap.column_padding_left > [class*="column-"],
.row > [class*="column-"].column_padding_left, .columns_wrap > [class*="column-"].column_padding_left {
	padding-left:30px;
	padding-right:0;
}
.row.column_padding_right, .columns_wrap.column_padding_right {
  margin-left: 0;
  margin-right: -30px;
}
.row.column_padding_right > [class*="column-"], .columns_wrap.column_padding_right > [class*="column-"],
.row > [class*="column-"].column_padding_right, .columns_wrap > [class*="column-"].column_padding_right {
	padding-left:0;
	padding-right:30px;
}
.row.column_padding_center, .columns_wrap.column_padding_center {
  margin-left: -15px;
  margin-right: -15px;
}
.row.column_padding_center > [class*="column-"], .columns_wrap.column_padding_center > [class*="column-"],
.row > [class*="column-"].column_padding_center, .columns_wrap > [class*="column-"].column_padding_center {
	padding-left:15px;
	padding-right:15px;
}
.row > [class*="column-"].column_padding_bottom, .columns_wrap > [class*="column-"].column_padding_bottom {
 padding-bottom: 30px;
}
.sc_blogger.no_margins .row, .sc_blogger.no_margins .columns_wrap,
.row.no_margins, .columns_wrap.no_margins {
  margin: 0 !important;
}
.sc_blogger.no_margins .row > [class*="column-"], .sc_blogger.no_margins .columns_wrap > [class*="column-"],
.row.no_margins > [class*="column-"], .columns_wrap.no_margins > [class*="column-"] {
  padding: 0 !important;
}

/* Columns width */
.column-1, .column-1_1, .column-2_2, .column-3_3, .column-4_4, .column-5_5, .column-6_6, .column-7_7, .column-8_8, .column-9_9, .column-10_10, .column-11_11, .column-12_12	{ width:100%; }
.column-1_2, .column-2_4, .column-3_6, .column-4_8, .column-5_10, .column-6_12	{ width:50%; }
.column-1_3, .column-2_6, .column-3_9, .column-4_12								{ width:33.33333333%; }
.column-2_3, .column-4_6, .column-8_12											{ width:66.66666667%; }
.column-1_4, .column-2_8, .column-3_12											{ width:25%; }
.column-3_4, .column-6_8, .column-9_12											{ width:75%; }
.column-1_5, .column-2_10														{ width:20%; }
.column-2_5, .column-4_10														{ width:40%; }
.column-3_5, .column-6_10														{ width:60%; }
.column-4_5, .column-8_10														{ width:80%; }
.column-1_6, .column-2_12														{ width:16.66666667%; }
.column-5_6, .column-10_12														{ width:83.33333333%; }
.column-1_7																		{ width:14.28571429%; }
.column-2_7																		{ width:28.57142857%; }
.column-3_7																		{ width:42.85714286%; }
.column-4_7																		{ width:57.14285714%; }
.column-5_7																		{ width:71.42857143%; }
.column-6_7																		{ width:85.71428571%; }
.column-1_8																		{ width:12.5%; }
.column-3_8																		{ width:37.5%; }
.column-5_8																		{ width:62.5%; }
.column-7_8																		{ width:87.5%; }
.column-1_9																		{ width:11.11111111%; }
.column-2_9																		{ width:22.22222222%; }
.column-3_9																		{ width:33.33333333%; }
.column-4_9																		{ width:44.44444444%; }
.column-5_9																		{ width:55.55555556%; }
.column-6_9																		{ width:66.66666667%; }
.column-7_9																		{ width:77.77777778%; }
.column-8_9																		{ width:88.88888889%; }
.column-1_10																	{ width:10%; }
.column-3_10																	{ width:30%; }
.column-7_10																	{ width:70%; }
.column-9_10																	{ width:90%; }
.column-1_11																	{ width: 9.09090909%; }
.column-2_11																	{ width:18.18181818%; }
.column-3_11																	{ width:27.27272727%; }
.column-4_11																	{ width:36.36363636%; }
.column-5_11																	{ width:45.45454545%; }
.column-6_11																	{ width:54.54545455%; }
.column-7_11																	{ width:63.63636364%; }
.column-8_11																	{ width:72.72727273%; }
.column-9_11																	{ width:81.81818182%; }
.column-10_11																	{ width:90.90909091%; }
.column-1_12																	{ width: 8.33333333%; }
.column-5_12																	{ width:41.66666667%; }
.column-7_12																	{ width:58.33333333%; }
.column-11_12																	{ width:91.66666667%; }
/* Push columns */
.push-1_2, .push-2_4, .push-3_6, .push-4_8, .push-5_10, .push-6_12	{ left:50%; }
.push-1_3, .push-2_6, .push-3_9, .push-4_12							{ left:33.33333333%; }
.push-2_3, .push-4_6, .push-8_12									{ left:66.66666667%; }
.push-1_4, .push-2_8, .push-3_12									{ left:25%; }
.push-3_4, .push-6_8, .push-9_12									{ left:75%; }
.push-1_5, .push-2_10												{ left:20%; }
.push-2_5, .push-4_10												{ left:40%; }
.push-3_5, .push-6_10												{ left:60%; }
.push-4_5, .push-8_10												{ left:80%; }
.push-1_6, .push-2_12												{ left:16.66666667%; }
.push-5_6, .push-10_12												{ left:83.33333333%; }
.push-1_7															{ left:14.28571429%; }
.push-2_7															{ left:28.57142857%; }
.push-3_7															{ left:42.85714286%; }
.push-4_7															{ left:57.14285714%; }
.push-5_7															{ left:71.42857143%; }
.push-6_7															{ left:85.71428571%; }
.push-1_8															{ left:12.5%; }
.push-3_8															{ left:37.5%; }
.push-5_8															{ left:62.5%; }
.push-7_8															{ left:87.5%; }
.push-1_9															{ left:11.11111111%; }
.push-2_9															{ left:22.22222222%; }
.push-3_9															{ left:33.33333333%; }
.push-4_9															{ left:44.44444444%; }
.push-5_9															{ left:55.55555556%; }
.push-6_9															{ left:66.66666667%; }
.push-7_9															{ left:77.77777778%; }
.push-8_9															{ left:88.88888889%; }
.push-1_10															{ left:10%; }
.push-3_10															{ left:30%; }
.push-7_10															{ left:70%; }
.push-9_10															{ left:90%; }
.push-1_11															{ left: 9.09090909%; }
.push-2_11															{ left:18.18181818%; }
.push-3_11															{ left:27.27272727%; }
.push-4_11															{ left:36.36363636%; }
.push-5_11															{ left:45.45454545%; }
.push-6_11															{ left:54.54545455%; }
.push-7_11															{ left:63.63636364%; }
.push-8_11															{ left:72.72727273%; }
.push-9_11															{ left:81.81818182%; }
.push-10_11															{ left:90.90909091%; }
.push-1_12															{ left: 8.33333333%; }
.push-5_12															{ left:41.66666667%; }
.push-7_12															{ left:58.33333333%; }
.push-11_12															{ left:91.66666667%; }
/* Pull columns */
.pull-1_2, .pull-2_4, .pull-3_6, .pull-4_8, .pull-5_10, .pull-6_12	{ right:50%; }
.pull-1_3, .pull-2_6, .pull-3_9, .pull-4_12							{ right:33.33333333%; }
.pull-2_3, .pull-4_6, .pull-8_12									{ right:66.66666667%; }
.pull-1_4, .pull-2_8, .pull-3_12									{ right:25%; }
.pull-3_4, .pull-6_8, .pull-9_12									{ right:75%; }
.pull-1_5, .pull-2_10												{ right:20%; }
.pull-2_5, .pull-4_10												{ right:40%; }
.pull-3_5, .pull-6_10												{ right:60%; }
.pull-4_5, .pull-8_10												{ right:80%; }
.pull-1_6, .pull-2_12												{ right:16.66666667%; }
.pull-5_6, .pull-10_12												{ right:83.33333333%; }
.pull-1_7															{ right:14.28571429%; }
.pull-2_7															{ right:28.57142857%; }
.pull-3_7															{ right:42.85714286%; }
.pull-4_7															{ right:57.14285714%; }
.pull-5_7															{ right:71.42857143%; }
.pull-6_7															{ right:85.71428571%; }
.pull-1_8															{ right:12.5%; }
.pull-3_8															{ right:37.5%; }
.pull-5_8															{ right:62.5%; }
.pull-7_8															{ right:87.5%; }
.pull-1_9															{ right:11.11111111%; }
.pull-2_9															{ right:22.22222222%; }
.pull-3_9															{ right:33.33333333%; }
.pull-4_9															{ right:44.44444444%; }
.pull-5_9															{ right:55.55555556%; }
.pull-6_9															{ right:66.66666667%; }
.pull-7_9															{ right:77.77777778%; }
.pull-8_9															{ right:88.88888889%; }
.pull-1_10															{ right:10%; }
.pull-3_10															{ right:30%; }
.pull-7_10															{ right:70%; }
.pull-9_10															{ right:90%; }
.pull-1_11															{ right: 9.09090909%; }
.pull-2_11															{ right:18.18181818%; }
.pull-3_11															{ right:27.27272727%; }
.pull-4_11															{ right:36.36363636%; }
.pull-5_11															{ right:45.45454545%; }
.pull-6_11															{ right:54.54545455%; }
.pull-7_11															{ right:63.63636364%; }
.pull-8_11															{ right:72.72727273%; }
.pull-9_11															{ right:81.81818182%; }
.pull-10_11															{ right:90.90909091%; }
.pull-1_12															{ right: 8.33333333%; }
.pull-5_12															{ right:41.66666667%; }
.pull-7_12															{ right:58.33333333%; }
.pull-11_12															{ right:91.66666667%; }
/* Margin for the columns */
.offset-1_2, .offset-2_4, .offset-3_6, .offset-4_8, .offset-5_10, .offset-6_12	{ margin-left:50%; }
.offset-1_3, .offset-2_6, .offset-3_9, .offset-4_12								{ margin-left:33.33333333%; }
.offset-2_3, .offset-4_6, .offset-8_12											{ margin-left:66.66666667%; }
.offset-1_4, .offset-2_8, .offset-3_12											{ margin-left:25%; }
.offset-3_4, .offset-6_8, .offset-9_12											{ margin-left:75%; }
.offset-1_5, .offset-2_10														{ margin-left:20%; }
.offset-2_5, .offset-4_10														{ margin-left:40%; }
.offset-3_5, .offset-6_10														{ margin-left:60%; }
.offset-4_5, .offset-8_10														{ margin-left:80%; }
.offset-1_6, .offset-2_12														{ margin-left:16.66666667%; }
.offset-5_6, .offset-10_12														{ margin-left:83.33333333%; }
.offset-1_7																		{ margin-left:14.28571429%; }
.offset-2_7																		{ margin-left:28.57142857%; }
.offset-3_7																		{ margin-left:42.85714286%; }
.offset-4_7																		{ margin-left:57.14285714%; }
.offset-5_7																		{ margin-left:71.42857143%; }
.offset-6_7																		{ margin-left:85.71428571%; }
.offset-1_8																		{ margin-left:12.5%; }
.offset-3_8																		{ margin-left:37.5%; }
.offset-5_8																		{ margin-left:62.5%; }
.offset-7_8																		{ margin-left:87.5%; }
.offset-1_9																		{ margin-left:11.11111111%; }
.offset-2_9																		{ margin-left:22.22222222%; }
.offset-3_9																		{ margin-left:33.33333333%; }
.offset-4_9																		{ margin-left:44.44444444%; }
.offset-5_9																		{ margin-left:55.55555556%; }
.offset-6_9																		{ margin-left:66.66666667%; }
.offset-7_9																		{ margin-left:77.77777778%; }
.offset-8_9																		{ margin-left:88.88888889%; }
.offset-1_10																	{ margin-left:10%; }
.offset-3_10																	{ margin-left:30%; }
.offset-7_10																	{ margin-left:70%; }
.offset-9_10																	{ margin-left:90%; }
.offset-1_11																	{ margin-left: 9.09090909%; }
.offset-2_11																	{ margin-left:18.18181818%; }
.offset-3_11																	{ margin-left:27.27272727%; }
.offset-4_11																	{ margin-left:36.36363636%; }
.offset-5_11																	{ margin-left:45.45454545%; }
.offset-6_11																	{ margin-left:54.54545455%; }
.offset-7_11																	{ margin-left:63.63636364%; }
.offset-8_11																	{ margin-left:72.72727273%; }
.offset-9_11																	{ margin-left:81.81818182%; }
.offset-10_11																	{ margin-left:90.90909091%; }
.offset-1_12																	{ margin-left: 8.33333333%; }
.offset-5_12																	{ margin-left:41.66666667%; }
.offset-7_12																	{ margin-left:58.33333333%; }
.offset-11_12																	{ margin-left:91.66666667%; }

/* Utils */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.columns_wrap:before,
.columns_wrap:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.columns_wrap:after {
  clear: both;
  width:100%;
  height:0;
  display:block;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}

.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.text-hide {
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}







/* 6. Page layouts
-------------------------------------------------------------- */
.page_wrap,
.content_wrap {
	margin:0 auto;
}
.body_style_boxed .page_wrap {
	width:1355px;
}
.slider_boxed,
.content_wrap,
.content_container {
	width:1170px;
	margin:0 auto;
}
.content_wrap:after,
.content_container:after {
	content:" ";
	display:block;
	width:100%;
	height:0;
	clear:both;
}
.body_style_fullwide .content_wrap {
	width: auto;
	padding-left:30px;
	padding-right:30px;
}
.content, .sidebar, .sidebar_inner {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Content and Sidebar */
.sidebar_show .content { width: 760px; }
.sidebar { 				 width: 370px; }
.sidebar_right .content { float: left; }
.sidebar_right .sidebar { float: right; }
.sidebar_left .content  { float: right; }
.sidebar_left .sidebar  { float: left; }

/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide.sidebar_show  .content, .body_style_fullscreen.sidebar_show  .content { width:auto; max-width:100%; }
.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 400px; }
.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: -360px; }
.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  400px; }
.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:-360px; }

.body_style_fullscreen .page_content_wrap {
	overflow:hidden;
	padding:0;
}

/* Transparent body */
.body_transparent .page_wrap,
.body_transparent .copy_wrap,
.body_transparent .widget_area_inner {
  background-color: transparent;
}

/* Sidebar outer */
.sidebar_outer {
	width: 290px;
	position: absolute;
	top:0;
	bottom:0;
	z-index:99998;
}
.sidebar_outer_inner {
	position: absolute;
	top:0;
	bottom:0;
	left: 0;
	right: 0;
}
.sidebar_outer_show .outer_wrap { 		overflow:hidden; position:relative; }
.sidebar_outer_left .sidebar_outer {	left: 0; right: auto; }
.sidebar_outer_left .body_wrap {		padding-left: 290px; }
.sidebar_outer_right .sidebar_outer {	left: auto; right: 0; }
.sidebar_outer_right .body_wrap {		padding-right: 290px; }

.sidebar_outer .logo img {
	max-width:210px;
}

/* Boxed style for articles and sidebar */
.page_content_wrap {
	padding: 5.75em 0 8.5em 0;
}
.page_content_wrap.page_paddings_no,
.body_style_fullscreen .page_content_wrap {
	padding:0;
}

.article_style_boxed .content > article > .post_content,
.article_style_boxed[class*="single-"] .content > .comments_wrap,
.article_style_boxed[class*="single-"] .content > article > .post_info_share,
.body_filled .widget_area[class*="scheme_"]:not(.footer_wrap) .widget_area_inner {
	padding:4em 4.3em;
}
.body_filled .sidebar[class*="scheme_"] .sidebar_inner {
	padding: 2.1429em 2.8571em;
}
.body_style_fullscreen .content > article.page {
	padding:0;
}

/* With video Background */
.video_bg_show .body_wrap {
	position:relative;
}
.video_bg_show .video_bg {
	position:fixed;
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
.video_bg_show .video_bg_overlay:after {
	content: ' ';
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	background-color:rgba(0,0,0,0.3);
	z-index:3;
	background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_7.png);
}


/* 7. Section's decorations
-------------------------------------------------------------- */


/* 7.1 Header
-------------------------------------------------------------- */

/* Top panel */
.top_panel_wrap {
	position:relative;
}
.top_panel_fixed .top_panel_wrap {
	-webkit-box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);
			box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);	
}
.top_panel_over .top_panel_wrap {
	position:absolute;
	top:0;
	left:0;
	right:0;
	z-index:10000;
}
body:not(.top_panel_fixed) .top_panel_position_over.top_panel_wrap_inner,
body:not(.top_panel_fixed) .top_panel_position_over .top_panel_top,
body:not(.top_panel_fixed) .top_panel_position_over .top_panel_middle,
body:not(.top_panel_fixed) .top_panel_position_over .top_panel_bottom {
	background: none !important;
}
.admin-bar.top_panel_over .top_panel_wrap {
	top:32px;
}
.top_panel_wrap [class^="icon-"]::before, .top_panel_wrap [class*=" icon-"]::before {
	margin-right:0.5em;
}


/* Fixed panel */
.top_panel_fixed_wrap {
	display:none;
}
.top_panel_fixed:not(.top_panel_over) .top_panel_fixed_wrap {
	display:block;
}
.top_panel_fixed .top_panel_wrap {
	position:fixed;
	top:0;
	left:0;
	right:0;
	z-index:10000;
}
.sidebar_outer_left.top_panel_fixed .top_panel_wrap {
	left:290px;
}
.sidebar_outer_right.top_panel_fixed .top_panel_wrap {
	right:290px;
}
.top_panel_fixed .top_panel_top,
.top_panel_fixed .top_panel_style_1 .top_panel_middle,
.top_panel_fixed .top_panel_style_2 .top_panel_middle {
	display:none;
}
.top_panel_fixed .top_panel_style_5 .contact_logo {
	float: left;
}
.top_panel_fixed .top_panel_middle {
	min-height:0;
}
.top_panel_fixed .menu_main_wrap {
	margin-top:0;
}

.admin-bar.top_panel_fixed .top_panel_wrap {
	top:32px;
}


/* Top panel (top area) */
.top_panel_top {
	min-height:3.5714em;
	margin-top:0;
	position:relative;
	z-index:10000;
}
.top_panel_style_1 .top_panel_middle,
.top_panel_style_2 .top_panel_middle,
.top_panel_style_3 .top_panel_middle,
.top_panel_style_4 .top_panel_middle,
.top_panel_style_5 .top_panel_middle,
.top_panel_style_6 .top_panel_middle,
.top_panel_style_8 .top_panel_middle {
	background-repeat:repeat;
	background-position:center top;
}
.top_panel_top_contact_area {
	float: left;
	margin-top:1em;
}
.top_panel_top_open_hours {
	float:left;
	margin-top:1em;
	margin-left:3em;
}
.top_panel_style_3 .top_panel_middle .logo{
	margin-top: 3.15em;
}

.top_panel_style_3 .menu_user_nav > li{
	margin-bottom: 0;
}

.top_panel_top_user_area {
	float:right;
}
.top_panel_top_socials {
	float:right;
	margin-top:1em;
}

.top_panel_top_socials .sc_socials.sc_socials_size_tiny .social_icons span {
	font-size: .8em;
	line-height:inherit;
}

.top_panel_top_search,
.menu_user_nav {
	float:left;
	margin-top:1em;
}
.top_panel_top_search {
	padding-top: 0.2em;
	margin-right: 2em;
}
.top_panel_top_socials {
	margin-left:3em;
}
.top_panel_wrap .sc_socials a:before,
.top_panel_wrap .sc_socials [class*="icon-"]:before {
	margin-right:0;
}

.top_panel_wrap ul {
	margin:0;
	padding:0;
	list-style-type:none;
}
.top_panel_wrap li {
	margin-bottom: 0;
	position:relative;
}
.top_panel_wrap li li > a {
	position:relative;
	display:block;
	padding:0.5em 1.8em;
}
.top_panel_wrap li li:first-child > a{
    margin-top: 1.2em;
}
.top_panel_wrap li li:last-child > a{
    margin-bottom:1.2em;
}

.menu_main_nav > li.menu-item-has-children > a:after {
	content: '\e828';
	font-family: 'fontello';
	position:absolute;
	right:19px;
	top:50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.top_panel_wrap li li.menu-item-has-children > a:after {
	content: '\e836';
	font-family: 'fontello';
	position:absolute;
	right:25px;
	top:50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
}

/* User menu */
.menu_user_nav > li {
	margin-left:1.5em;
}
.menu_user_nav > li a {
	font-weight:400;
}
.menu_user_nav > li > a {
	display: block;
	padding: 1em 0 1.25em;
}
.menu_user_nav > li li {
	line-height:1.5em;
}
.menu_user_nav > li ul:not(.cart_list) {
	width:12em;
	padding: 0;
	border:1px solid #ddd;
}
.menu_user_nav > li.menu_user_bookmarks ul {
	width:15em;
}
.menu_user_nav > li > ul {
	left:0;
	top:3.7em;
}
.menu_user_nav > li > ul ul {
	left:12em;
	margin-left:4px;
	top:-0.5em;
}
.menu_user_nav > li > ul ul.submenu_left {
	left:-12em;
	margin-left:-1px;
}

.menu_user_nav > li.menu_user_controls .user_avatar {
	display: inline-block;
	border: 1px solid #ddd;
	margin-right: 0.4em;
	overflow: hidden;
	vertical-align: middle;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
	width: 1em;
	height: 1em;
	line-height:1em;
}

/* Main and user menu */
.menu_main_nav_area {
	position:relative;
	z-index:1000;
	display:none;
}
.menu_show .menu_main_nav_area {
	display:block;
}

.menu_user_nav > li:first-child {
	margin-left:0;
}

.menu_user_nav > li{
    position:relative;
    float:left;
    z-index:20;
    margin-bottom: 2.15em
}
.menu_main_nav > li {
	position:relative;
	float:left;
	z-index:20;
    margin-top: 2.15em;
    margin-bottom: 2.15em;
	transition: margin-top .3s ease-out, margin-bottom .3s ease-out;
}
.top_panel_fixed .menu_main_nav > li{
	margin-top: 0.6em;
	margin-bottom: 0.57em;
}
.menu_main_nav > li+li { z-index:19; }
.menu_main_nav > li+li+li { z-index:18; }
.menu_main_nav > li+li+li+li { z-index:17; }
.menu_main_nav > li+li+li+li+li { z-index:16; }
.menu_main_nav > li+li+li+li+li+li { z-index:15; }
.menu_main_nav > li+li+li+li+li+li+li { z-index:14; }
.menu_main_nav > li+li+li+li+li+li+li+li { z-index:13; }
.menu_main_nav > li+li+li+li+li+li+li+li+li { z-index:12; }
.menu_main_nav > li+li+li+li+li+li+li+li+li+li { z-index:11; }
.menu_user_nav > li { z-index:30; }
.menu_user_nav > li+li { z-index:29; }
.menu_user_nav > li+li+li { z-index:28; }
.menu_user_nav > li+li+li+li { z-index:27; }
.menu_user_nav > li+li+li+li+li { z-index:26; }
.menu_user_nav > li+li+li+li+li+li { z-index:25; }
.menu_user_nav > li+li+li+li+li+li+li { z-index:24; }
.menu_user_nav > li+li+li+li+li+li+li+li { z-index:23; }
.menu_user_nav > li+li+li+li+li+li+li+li+li { z-index:22; }
.menu_user_nav > li+li+li+li+li+li+li+li+li+li { z-index:21; }
.menu_user_nav > li ul,
.menu_main_nav > li ul {
	position:absolute;
	display:none;
	z-index:10000;
}

.menu_main_nav > li > a {
	display: block;
	padding:1em 1.5em;
    border: 2px solid transparent;
    border-radius: 2em;
    margin-right: 0.5em;
}
.menu_main_nav > li.menu-item-has-children > a {
	padding-right:2em;
}
.menu_main_nav > li li {
    line-height: 1.4em;
}
.menu_main_nav > li ul {
	width:220px;
	padding: 0;
    border-radius: 2em;
}
.menu_main_nav > li > ul {
	left:0;
	top:4.85em;
}
.menu_main_nav > li > ul ul {
	left:222px;
	top:-1px;
}
.menu_main_nav > li > ul ul.submenu_left {
	left:-221px;
}
.menu_main_nav li a:before {
	margin-right:0.5em;
}


/* ---------------------- MENU HOVERS ----------------------- */

/* Slide Line and Slide Box */
.menu_main_nav > li#blob {
	position: absolute;
	top: 0;
	z-index : 1;
	opacity:0;
	-webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
	   -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
		-ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
		 -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
			transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */
}
.menu_main_nav > li.blob_over:not(.current-menu-item):not(.current-menu-parent):not(.current-menu-ancestor):hover,
.menu_main_nav > li.blob_over:not(.current-menu-item):not(.current-menu-parent):not(.current-menu-ancestor).sfHover {
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
}
.menu_hover_slide_line .menu_main_nav > li#blob {
	height: 2px;
	margin: 3.8em 0 0 1.5em;
    display: none;
}

/* Zoom Line */
.menu_hover_zoom_line .menu_main_nav > li > a {
	position:relative;
}
.menu_hover_zoom_line .menu_main_nav > li > a:before {
	content: "";
	height: 2px;
	position: absolute;
	margin-left:0.25em;
	top: 3.8em;
	left: 50%;
	-webkit-transition: all 0.1s ease;
	   -moz-transition: all 0.1s ease;
		-ms-transition: all 0.1s ease;
		 -o-transition: all 0.1s ease;
			transition: all 0.1s ease;
	-webkit-transform:translateX(-50%);
	   -moz-transform:translateX(-50%);
	    -ms-transform:translateX(-50%);
	        transform:translateX(-50%);
	width: 0;	
}
.menu_hover_zoom_line .menu_main_nav > li > a:hover:before,
.menu_hover_zoom_line .menu_main_nav > li.sfHover > a:before,
.menu_hover_zoom_line .menu_main_nav > li.current-menu-item > a:before,
.menu_hover_zoom_line .menu_main_nav > li.current-menu-parent > a:before,
.menu_hover_zoom_line .menu_main_nav > li.current-menu-ancestor > a:before {
	width: 80%;
}

/* Path Line */
.menu_hover_path_line .menu_main_nav > li > a {
	position:relative;
}
.menu_hover_path_line .menu_main_nav > li:before,
.menu_hover_path_line .menu_main_nav > li:after,
.menu_hover_path_line .menu_main_nav > li > a:before,
.menu_hover_path_line .menu_main_nav > li > a:after {
	content: ' ';
	position: absolute;
	-webkit-transition: -webkit-transform 0.1s;
	    -ms-transition: -ms-transform 0.1s;
	        transition: transform 0.1s;
	-webkit-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
	    -ms-transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
	        transition-timing-function: cubic-bezier(1, 0.68, 0.16, 0.9);
}
/* left and right line */
.menu_hover_path_line .menu_main_nav > li:before,
.menu_hover_path_line .menu_main_nav > li:after {
	top: 0.5em;
	bottom: 0.5em;
	width: 2px;
	-webkit-transform: scale3d(1, 0, 1);
	    -ms-transform: scale3d(1, 0, 1);
	        transform: scale3d(1, 0, 1);
}
/* left line */
.menu_hover_path_line .menu_main_nav > li:before {
	left: 0;
	-webkit-transform-origin: 50% 100%;
	    -ms-transform-origin: 50% 100%;
	        transform-origin: 50% 100%;
}
/* right line */
.menu_hover_path_line .menu_main_nav > li:after {
	right: 0;
	-webkit-transform-origin: 50% 0%;
	    -ms-transform-origin: 50% 0%;
	        transform-origin: 50% 0%;
}
/* top and bottom line */
.menu_hover_path_line .menu_main_nav > li > a:before,
.menu_hover_path_line .menu_main_nav > li > a:after {
	left: 0;
	right: auto;
	width: 100%;
	height: 2px;
	-webkit-transform: scale3d(0, 1, 1);
	    -ms-transform: scale3d(0, 1, 1);
	        transform: scale3d(0, 1, 1);
}
/* top line */
.menu_hover_path_line .menu_main_nav > li > a:before {
	top: 0.5em;
	bottom: auto;
	-webkit-transform-origin: 0 50%;
	    -ms-transform-origin: 0 50%;
	        transform-origin: 0 50%;
}
/* bottom line */
.menu_hover_path_line .menu_main_nav > li > a:after {
	top: auto;
	bottom: 0.5em;
	-webkit-transform-origin: 100% 50%;
	    -ms-transform-origin: 100% 50%;
	        transform-origin: 100% 50%;
}
/* Delays (first reverse, then current) */
/* These rules can be simplified, but let's keep it for better readability */
.menu_hover_path_line .menu_main_nav > li > a:after {
	-webkit-transition-delay: 0.3s;
	    -ms-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

.menu_hover_path_line .menu_main_nav > li.sfHover > a:after,
.menu_hover_path_line .menu_main_nav > li > a:hover:after {
	-webkit-transition-delay: 0s;
	    -ms-transition-delay: 0s;
	        transition-delay: 0s;
}
/* left line */
.menu_hover_path_line .menu_main_nav > li:before {
	-webkit-transition-delay: 0.2s;
	    -ms-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}
.menu_hover_path_line .menu_main_nav > li.sfHover:before,
.menu_hover_path_line .menu_main_nav > li:hover:before {
	-webkit-transition-delay: 0.1s;
	    -ms-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}
/* top line */
.menu_hover_path_line .menu_main_nav > li > a:before {
	-webkit-transition-delay: 0.1s;
	    -ms-transition-delay: 0.1s;
	        transition-delay: 0.1s;
}
.menu_hover_path_line .menu_main_nav > li > a:hover:before,
.menu_hover_path_line .menu_main_nav > li.sfHover > a:before {
	-webkit-transition-delay: 0.2s;
	    -ms-transition-delay: 0.2s;
	        transition-delay: 0.2s;
}
/* right line */
.menu_hover_path_line .menu_main_nav > li.sfHover:after,
.menu_hover_path_line .menu_main_nav > li:hover:after {
	-webkit-transition-delay: 0.3s;
	    -ms-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

.menu_hover_path_line .menu_main_nav > li.sfHover:before,
.menu_hover_path_line .menu_main_nav > li:hover:before,
.menu_hover_path_line .menu_main_nav > li.sfHover:after,
.menu_hover_path_line .menu_main_nav > li:hover:after,
.menu_hover_path_line .menu_main_nav > li.sfHover > a:before,
.menu_hover_path_line .menu_main_nav > li:hover > a:before,
.menu_hover_path_line .menu_main_nav > li.sfHover > a:after,
.menu_hover_path_line .menu_main_nav > li:hover > a:after,
.menu_hover_path_line .menu_main_nav > li.current-menu-item:before,
.menu_hover_path_line .menu_main_nav > li.current-menu-item:after,
.menu_hover_path_line .menu_main_nav > li.current-menu-item > a:before,
.menu_hover_path_line .menu_main_nav > li.current-menu-item > a:after,
.menu_hover_path_line .menu_main_nav > li.current-menu-ancestor:before,
.menu_hover_path_line .menu_main_nav > li.current-menu-ancestor:after,
.menu_hover_path_line .menu_main_nav > li.current-menu-ancestor > a:before,
.menu_hover_path_line .menu_main_nav > li.current-menu-ancestor > a:after,
.menu_hover_path_line .menu_main_nav > li.current-menu-parent:before,
.menu_hover_path_line .menu_main_nav > li.current-menu-parent:after,
.menu_hover_path_line .menu_main_nav > li.current-menu-parent > a:before,
.menu_hover_path_line .menu_main_nav > li.current-menu-parent > a:after {
	-webkit-transform: scale3d(1, 1, 1);
	    -ms-transform: scale3d(1, 1, 1);
	        transform: scale3d(1, 1, 1);
}

/* Roll Down */
.menu_hover_roll_down .menu_main_nav > li > a:before {
	content: ' ';
	position: absolute;
	top: 3.8em;
	left: 1.5em;
	right: 1.5em;
	height: 2px;
	opacity: 0;
	-webkit-transform: translate3d(0, -3em, 0);
	    -ms-transform: translate3d(0, -3em, 0);
	        transform: translate3d(0, -3em, 0);
	-webkit-transition: -webkit-transform 0s 0.3s, opacity 0.2s;
	    -ms-transition: transform 0s 0.3s, opacity 0.2s;
	        transition: transform 0s 0.3s, opacity 0.2s;
}
.menu_hover_roll_down .menu_main_nav > li.sfHover > a:before,
.menu_hover_roll_down .menu_main_nav > li > a:hover:before,
.menu_hover_roll_down .menu_main_nav > li.current-menu-item > a:before,
.menu_hover_roll_down .menu_main_nav > li.current-menu-ancestor > a:before,
.menu_hover_roll_down .menu_main_nav > li.current-menu-parent > a:before {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.1s;
	    -ms-transition: -webkit-transform 0.3s, opacity 0.1s;
	        transition: transform 0.3s, opacity 0.1s;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	    -ms-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_hover_roll_down .menu_main_nav > li > a > span {
	display: block;
	pointer-events: none;
}

.menu_hover_roll_down .menu_main_nav > li.sfHover > a > span,
.menu_hover_roll_down .menu_main_nav > li > a:hover > span,
.menu_hover_roll_down .menu_main_nav > li.current-menu-item > a > span,
.menu_hover_roll_down .menu_main_nav > li.current-menu-ancestor > a > span,
.menu_hover_roll_down .menu_main_nav > li.current-menu-parent > a > span {
	-webkit-animation: anim-roll-down 0.3s forwards;
	    -ms-animation: anim-roll-down 0.3s forwards;
	        animation: anim-roll-down 0.3s forwards;
}

@-webkit-keyframes anim-roll-down {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		    -ms-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}

	51% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		    -ms-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		    -ms-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}

@keyframes anim-roll-down {
	50% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		    -ms-transform: translate3d(0, 100%, 0);
		        transform: translate3d(0, 100%, 0);
	}

	51% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		    -ms-transform: translate3d(0, -100%, 0);
		        transform: translate3d(0, -100%, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		    -ms-transform: translate3d(0, 0, 0);
		        transform: translate3d(0, 0, 0);
	}
}

/* Color Line */
.menu_hover_color_line .menu_main_nav > li > a:hover:before,
.menu_hover_color_line .menu_main_nav > li > a:focus:before {
	-webkit-transform: scale3d(1, 1, 1);
	    -ms-transform: scale3d(1, 1, 1);
	        transform: scale3d(1, 1, 1);
	-webkit-transition-delay: 0s;
	    -ms-transition-delay: 0s;
	        transition-delay: 0s;
}

.menu_hover_color_line .menu_main_nav > li > a:before,
.menu_hover_color_line .menu_main_nav > li > a:after {
	content: '';
	position: absolute;
	top: 3.8em;
	left: 1.5em;
	right: 1.5em;
	margin: 0;
	height: 2px;
	-webkit-transform: scale3d(0, 1, 1);
	    -ms-transform: scale3d(0, 1, 1);
	        transform: scale3d(0, 1, 1);
	-webkit-transform-origin: left center;
	    -ms-transform-origin: left center;
	        transform-origin: left center;
	-webkit-transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
	    -ms-transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
	        transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu_hover_color_line .menu_main_nav > li.menu-item-has-children > a:before,
.menu_hover_color_line .menu_main_nav > li.menu-item-has-children > a:after {
	right: 2em;
}
.menu_hover_color_line .menu_main_nav > li > a:hover,
.menu_hover_color_line .menu_main_nav > li.sfHover > a:after,
.menu_hover_color_line .menu_main_nav > li > a:hover:after,
.menu_hover_color_line .menu_main_nav > li > a:before {
	-webkit-transition-delay: 0.3s;
	    -ms-transition-delay: 0.3s;
	        transition-delay: 0.3s;
}

.menu_hover_color_line .menu_main_nav > li.sfHover > a:after,
.menu_hover_color_line .menu_main_nav > li > a:hover:after,
.menu_hover_color_line .menu_main_nav > li.sfHover > a:before,
.menu_hover_color_line .menu_main_nav > li > a:hover:before,
.menu_hover_color_line .menu_main_nav > li.current-menu-item > a:after,
.menu_hover_color_line .menu_main_nav > li.current-menu-item > a:before,
.menu_hover_color_line .menu_main_nav > li.current-menu-ancestor > a:after,
.menu_hover_color_line .menu_main_nav > li.current-menu-ancestor > a:before,
.menu_hover_color_line .menu_main_nav > li.current-menu-parent > a:after,
.menu_hover_color_line .menu_main_nav > li.current-menu-parent > a:before {
	-webkit-transform: scale3d(1, 1, 1);
	    -ms-transform: scale3d(1, 1, 1);
	        transform: scale3d(1, 1, 1);
}

.menu_hover_color_line .menu_main_nav > li.sfHover > a:before,
.menu_hover_color_line .menu_main_nav > li > a:hover:before {
	-webkit-transition-delay: 0s;
	    -ms-transition-delay: 0s;
	        transition-delay: 0s;
}

/* ---------------------- END MENU HOVERS ----------------------- */



/* Currency */
.menu_user_nav > li.menu_user_currency > a {
	padding-left:1.6em;
	padding-right:0.2em;
}



/* Bookmarks */
.menu_user_nav > li.menu_user_bookmarks li > a {
	position:relative;
}

.menu_user_nav > li.menu_user_bookmarks .bookmarks_add {
	border-bottom:1px solid rgba(0,0,0, 0.5);
}
.menu_user_nav > li.menu_user_bookmarks .bookmarks_delete {
	position:absolute;
	right:0;
	top:50%;
	margin-top:-0.5em;
	margin-right:0.5em;
	width:1em;
	height:1em;
	line-height:1em;
	font-size:1.25em;
}

/* Cart button */
.top_panel_style_3 .top_panel_cart_button,
.top_panel_style_4 .top_panel_cart_button {
	display:block;
	padding-left:1.5em !important;
	padding-right:1.5em !important;
}
.top_panel_middle .contact_cart {
	position:relative;
}
.top_panel_middle .sidebar_cart {
	position:absolute;
	top: 4.5em;
	left:0;
	z-index:1001;
	display:none;
	float:none;
	text-align:left;
	border: 1px solid #eee;
}
.top_panel_icon {
	padding:0;
}
.top_panel_icon .sidebar_cart {
	top: 3.5em;
	left:-0.7em;
}
.top_panel_style_5 .top_panel_icon .sidebar_cart,
.top_panel_style_6 .top_panel_icon .sidebar_cart,
.top_panel_style_7 .top_panel_icon .sidebar_cart,
.top_panel_style_8 .top_panel_icon .sidebar_cart {
	left:auto;
	right: -1em;
}
.top_panel_icon.search_wrap {
	width: 2.2857em;
	height: 2.2857em;
	line-height: 2.2857em;
	-webkit-border-radius: 1.15em;
	   -moz-border-radius: 1.15em;
	        border-radius: 1.15em;
}
.top_panel_icon.search_wrap.search_state_opened {
	width: 8em;
}
.top_panel_icon.search_wrap .search_submit {
	line-height: 2.2857em;
}
.top_panel_icon .contact_cart_label,
.top_panel_icon .contact_cart_totals {
	display:none;
}
.top_panel_icon .contact_icon {
	display:inline-block;
	text-align:center;
}
.top_panel_icon .contact_icon:before {
	margin-right:0;
}
.top_panel_icon.menu_main_cart {
	position:relative;
}
.top_panel_icon .contact_icon {
	width: 2.2857em;
	height: 2.2857em;
	line-height: 2.2857em;
}
.top_panel_icon.menu_main_cart .contact_icon {
	-webkit-border-radius: 1.15em;
	   -moz-border-radius: 1.15em;
	        border-radius: 1.15em;
}


/* Logo in the header */
.top_panel_wrap .logo {
	margin: 2em 0 1em 0;
	overflow:hidden;
	transition: margin .3s ease-out;
}
.top_panel_wrap .logo_main {
	max-height:100px;
	width:auto;
}
.logo a {
	display:inline-block;
}
.top_panel_fixed .top_panel_wrap .logo a{
	vertical-align: text-top;
}
.logo img {
	float:left;
	margin: 0 0.7857em 0.7857em 0;
	width: auto;
}

.logo_text,
.logo_slogan {
	float:left;
	text-align:left;
}
.logo_slogan {
	margin-top:0.25em;
	font-style:italic;
}
.top_panel_fixed .top_panel_wrap .logo_main {
	display: none;
}
.top_panel_wrap .logo_fixed {
	display:none;
	max-height:42px;
	width:auto;
}
.top_panel_fixed .top_panel_wrap .logo_fixed {
	display: block;
}
.top_panel_fixed .top_panel_middle .menu_main_wrap {
	margin-top:0;
}

.top_panel_style_3 .content_wrap,
.top_panel_style_4 .content_wrap,
.top_panel_style_6 .content_wrap,
.top_panel_style_7 .content_wrap {
	position:relative;
}
.top_panel_style_3 .menu_main_wrap,
.top_panel_style_4 .menu_main_wrap,
.top_panel_style_6 .menu_main_wrap,
.top_panel_style_7 .menu_main_wrap {
	float: right;
}
.top_panel_style_3 .contact_logo,
.top_panel_style_4 .contact_logo,
.top_panel_style_6 .contact_logo,
.top_panel_style_7 .contact_logo {
	position:absolute;
	z-index:1;
	top: 0;
	left: 0;
}

.top_panel_style_5 .top_panel_wrap_inner {
	text-align:center;
}
.top_panel_style_5 .contact_logo {
	overflow:hidden;
}
.top_panel_style_5 .menu_main_wrap {
	display:inline-block;
	margin-top:0 !important;
}
.top_panel_style_5 .menu_main_nav_area,
.top_panel_style_5 .top_panel_icon {
	display:block !important;
	float: left;
}
.top_panel_style_5 .top_panel_top_user_area {
	text-align:left;
}

.top_panel_style_6 .menu_main_nav_area,
.top_panel_style_7 .menu_main_nav_area {
	float:none;
}
.top_panel_style_6 .top_panel_icon,
.top_panel_style_7 .top_panel_icon {
	float: right;
}

/* Featured image in the header 7 */
.top_panel_image {
	height:45em;
	overflow:hidden;
	position:relative;
	background-size:cover;
	background-position:center;
}
.top_panel_image_hover {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(2,75,94, 0.8);
}
.top_panel_image_header {
	position:absolute;
	left:50%;
	top:50%;
	display:block;
	max-width:50%;
	text-align:center;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
}
.top_panel_image_icon {
	font-size: 4em;
	line-height:1em;
	margin-top:1em;
}

/* Slide submenu button */
.open_child_menu {
	cursor:pointer;
	position:absolute;
	z-index:1;
	right:0;
	top:0;
	text-align:center;
	width: 3em;
	height: 3em;
	line-height:3em;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.open_child_menu:hover {
	-webkit-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
	        box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.open_child_menu:before {
	content: '\e828';
	font-family:fontello;
}
li.opened > a > .open_child_menu:before {
	content: '\e835';
}


/* Contact fields */
.top_panel_wrap .contact_field {
	margin-top: 2.5em;
    position: relative;
}
.top_panel_wrap .contact_field > a > span,
.top_panel_wrap .contact_field > span {
	display:block;
}
.top_panel_wrap .contact_label {
    margin: 0.3em 0 0;
    font-size: 0.9em;
    line-height: 1em;
}

.top_panel_wrap .contact_information > div{
    float: right;
    width: 67%;
}
.top_panel_wrap .contact_label + span{
    font-size: 1.1em;
}
.top_panel_wrap .contact_email, .top_panel_wrap .open_hours_time, .top_panel_wrap .contact_address_2{
    font-weight: 700;
}
.top_panel_middle .content_wrap > .columns_wrap {
    border-bottom: 1px solid;
}
.top_panel_middle .contact_icon {
	float:left;
	line-height:3.5em;
	margin-right:0.5em;
	text-align:center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
    position: absolute;
    left: -3em;
    top: -0.3em;
}
.top_panel_middle .contact_icon:before {
	font-size:2em;
	margin-right:0;
}

.top_panel_wrap .menu_main_cart .contact_icon:before {
	font-size:1em;
}
.top_panel_style_2 .logo,
.top_panel_style_5 .logo {
	text-align:center;
}
.top_panel_wrap .contact_field.contact_phone{
    width: 37%;
}
.top_panel_wrap .contact_field.open_hours{
    width:31%;
}
.top_panel_wrap .contact_field.contact_address{
    width: 32%;

}
.top_panel_style_2 .contact_phone > span + span {
	text-align:right;
}
.top_panel_style_2 .contact_phone .contact_icon {
	float:right;
	margin-left:0.5em;
	margin-right:0;
}
.top_panel_middle .menu_main_wrap {
	text-align:right;
}
.top_panel_middle .menu_main_nav_area {
	display:inline-block;
	text-align:left;
}
.top_panel_style_5 .top_panel_middle .menu_main_nav_area {
	display:block;
}
.top_panel_style_5 .top_panel_middle .contact_icon,
.top_panel_style_6 .top_panel_middle .contact_icon,
.top_panel_style_7 .top_panel_middle .contact_icon {
	width:2.2857em;
	height: 2.2857em;
	line-height:2.2857em;
}
.top_panel_style_6 .top_panel_middle,
.top_panel_style_7 .top_panel_middle {
	min-height:0;
}


/* Search field */
.top_panel_middle .search_wrap {
	display:none;
}
.menu_show .top_panel_middle .search_wrap {
	display:block;
}
.search_wrap {
	position:relative;
	max-width:10em;
	min-width:2.2857em;
	z-index:1000;
}
.search_wrap.search_state_closed:not(.top_panel_icon) {
	min-width:0;
	width:1.5em;
}
.search_wrap:not(.search_state_fixed) {
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.search_wrap .search_field {
	border:none;
}
.search_wrap .search_submit,
.search_wrap .search_submit:hover {
	background-color:transparent !important;
}
.content .search_wrap,
.content .search_wrap .search_submit,
.content .search_wrap .search_field,
.top_panel_bottom .search_wrap,
.top_panel_bottom .search_wrap .search_submit,
.top_panel_bottom .search_wrap .search_field,
.top_panel_style_4 .search_wrap,
.top_panel_style_4 .search_wrap .search_submit,
.top_panel_style_4 .search_wrap .search_field {
	height:2.2857em;
	line-height:2.2857em;
}
.top_panel_bottom .search_wrap,
.top_panel_style_4 .search_wrap {
	float:right;
	padding-top:1em;
	padding-left:1em;
    margin-top: 2.145em;
}
.top_panel_bottom .search_wrap .search_form button {
    background: transparent;
}
.top_panel_bottom .make_appoinment_button + .search_wrap{
    margin-right: 1em;
}
.top_panel_inner_style_3 .search_field,
.top_panel_inner_style_3 .search_submit,
.top_panel_icon.search_wrap .search_field {
	background-color: transparent !important;
}
.search_wrap form {
	width: 100%;
	position:relative;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.search_wrap .search_submit {
	position:absolute;
	left:0;
	top:0;
	width:2.3em;
	padding:0;
	margin:0;
	text-align:right;
	font-weight:normal;
}
.top_panel_top_search .search_submit {
	top:2px;
}
.search_wrap .search_field {
	width:100%;
	padding-left: 2.8em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 2em 0 0 2em;
}
.top_panel_top .search_field {
	max-width:6em;
	padding-top: 0.2em;
	padding-bottom: 0.2em;
}
.search_wrap .search_submit:before {
	margin-right:0.6em;
}
.top_panel_style_5 .search_form_wrap,
.top_panel_style_6 .search_form_wrap,
.top_panel_style_7 .search_form_wrap {
	width:100%;
	overflow:hidden;
}
.top_panel_style_5 .search_results,
.top_panel_style_6 .search_results,
.top_panel_style_7 .search_results {
	top: 3.3em !important;
}
.top_panel_icon .search_submit {
	display:inline-block;
	text-align:center;
}
.top_panel_icon .search_submit:before {
	margin-right:0;
}


/* Fullscreen search */
.search_style_fullscreen.search_wrap.search_state_opened {
	width: 2.2857em !important;
}
.search_style_fullscreen.search_state_closed .search_field {
	background-color: transparent !important;
}
.search_style_fullscreen.search_state_opened .search_form_wrap {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	background-color: rgba(0, 0, 0, 0.85) !important;
	overflow: hidden;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
			transition: all ease .3s;
}
.search_style_fullscreen .search_form {
	padding:0;
	text-align:center;
}
.search_style_fullscreen.search_state_opened .search_form {
	position: relative;
	width: 50%;
	top: 50%;
	left: 50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
		-ms-transform:translateX(-50%) translateY(-50%);
			transform:translateX(-50%) translateY(-50%);
	border-bottom: 1px solid #fff;
}
.search_style_fullscreen.search_state_closed .search_close {
	display:none;
}
.search_style_fullscreen.search_state_opened .search_close {
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	font-size: 2em;
	font-weight: 300;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
			transition: all ease .3s;
}
.search_style_fullscreen.search_state_opened .search_close:before {
	margin:0;
}
.search_style_fullscreen.search_state_closed .search_submit {
	position: relative;
	left: 0;
	top: 0;
	-webkit-transition: none;
	   -moz-transition: none;
	    -ms-transition: none;
	     -o-transition: none;
			transition: none;
}
.search_style_fullscreen.search_state_opened .search_submit {
	-webkit-transform:translateY(-50%);
	   -moz-transform:translateY(-50%);
	    -ms-transform:translateY(-50%);
			transform:translateY(-50%);
	position: absolute;
	left: 0;
	top: 50%;
	background-color: transparent;
	font-size: 1.2em;
	width: auto;
	padding: 0;
}
.top_panel_wrap .search_style_fullscreen.search_state_closed .search_field {
	display: none;
}
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field {
	font-size: 1.4em;
	font-weight: 400;
	height: 3em;
	letter-spacing: 1px;
	line-height: 3em;
	margin: 0;
	padding: 0 0 0 2em;
	white-space: pre-wrap;
	word-wrap: break-word;
	box-sizing: border-box;
	resize: none;
	overflow: hidden;
	display: block;
	width: 100%;
}
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_close,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_submit {
	color: #ffffff !important;
}
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_close:hover,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field:hover,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field:focus,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_submit:hover,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_submit:focus {
	color: #ccc !important;
}
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field:hover,
.top_panel_wrap .search_style_fullscreen.search_state_opened .search_field:focus {
	background-color: transparent !important;
}
.search_style_fullscreen.search_state_opened input::-webkit-input-placeholder {color:#ccc; opacity: 1;}
.search_style_fullscreen.search_state_opened input::-moz-placeholder          {color:#ccc; opacity: 1;}/* Firefox 19+ */
.search_style_fullscreen.search_state_opened input:-moz-placeholder           {color:#ccc; opacity: 1;}/* Firefox 18- */
.search_style_fullscreen.search_state_opened input:-ms-input-placeholder      {color:#ccc; opacity: 1;}

/* Expand search */
.search_wrap.search_style_expand:not(.top_panel_icon) .search_field {
	-webkit-border-radius: 25px;
	   -moz-border-radius: 25px;
			border-radius: 25px;
}
.search_style_expand.search_wrap.search_state_closed {
	width: 2.2857em;
}
.search_style_expand.search_wrap.search_state_closed .search_field {
	padding-right:0;
}

/* Slide search */
.search_style_slide.search_wrap:not(.top_panel_icon) {
	position:relative;
	width:1.5em;
}
.search_style_slide.search_state_closed:not(.top_panel_icon) .search_form_wrap {
	background-color: transparent !important;
}
.search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap {
	position: absolute;
	z-index: 99;
	right: 0;
	top: 1.5em;
	overflow: hidden;
	width:10em;
	-webkit-animation-duration: 0.5s;
		    animation-duration: 0.5s;
	-webkit-animation-name: fadeInRight;
		    animation-name: fadeInRight;
}
.top_panel_top .top_panel_top_search .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap {
	top: 0;
}
.search_style_slide.search_state_closed:not(.top_panel_icon) .search_field {
	background-color: transparent !important;
}


/* Search results */
.search_wrap .search_results {
	display:none;
	position:absolute;
	z-index:1000;
	right:0;
	top:4.2857em;
	background-color: #fff;
	border: 1px solid #e5e5e5;
	width: 270px;
	padding:1em;
	line-height:1.5em;
	text-align:left;
	-webkit-box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);
			box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);	
}
.top_panel_top .search_results {
	top:2.65em;
}

.top_panel_middle .sidebar_cart:after,
.menu_user_nav > li > ul:after,
.search_wrap .search_results:after {
	content:" ";
	width:10px;
	height:10px;
	background-color: #fff;
	border-left: 1px solid #e5e5e5;
	border-top: 1px solid #e5e5e5;
	position: absolute;
	top:-6px;
	right:3em;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
			transform: rotate(45deg);
}
.top_panel_middle .sidebar_cart:after,
.menu_user_nav > li > ul:after {
	left: 1.5em;
	right:auto;
}
.top_panel_style_5 .top_panel_middle .sidebar_cart:after,
.top_panel_style_6 .top_panel_middle .sidebar_cart:after,
.top_panel_style_7 .top_panel_middle .sidebar_cart:after,
.top_panel_style_8 .top_panel_middle .sidebar_cart:after {
	right:2.15em;
	left:auto;
}
.menu_user_nav > li > ul > li {
	z-index:1;
}
.search_wrap .search_results .search_results_close {
	position: absolute;
	top:3px;
	right:3px;
	display:block;
	text-align:center;
	overflow:hidden;
	font-size:0.875em;
	width:1.2em;
	height:1.2em;
	line-height:1.2em;
	cursor:pointer;
}
.search_wrap .post_more {
	display:block;
	text-align:center;
}
.widget_area .post_item {
	overflow:hidden;
}
.widget_area aside .post_item + .post_item,
.search_results.widget_area .post_item + .post_item {
	margin-top:10px;
	padding-top:1em;
}
.search_results.widget_area .post_item + .post_item {
	border-top:1px solid #e5e5e5;
}
.widget_area .post_item .post_content {
	overflow:hidden;
}
.widget_area .post_item .post_thumb {
	float:left;
	width: 4.6875em;
	height: 4.6875em;
	margin:0 1.25em 4px 0;
	overflow:hidden;
}
.widget_area .post_item .post_thumb img {
	width:100%;
}
.widget_area .post_item .post_title {
	margin: -4px 0 6px 0;
	font-size:1.1538em;
}
.widget_area .post_item .post_info {
	font-size:0.75em;
	margin-bottom:0;
	line-height:1.5em;
}
.widget_area .post_item .post_info .post_info_item+.post_info_item:before {
	content: "";
	margin:0 0 0 5px;
}

.widget_area .wp-caption p{
	margin-bottom: 0;
}

/* Search field inside content */
.content .search_wrap {
	max-width:50%;
	margin:0;
}
.content .columns_wrap .search_wrap {
	max-width:100%;
}
.content .search_wrap .search_form_wrap {
	width: 100%;
}
.content .search_wrap .search_form_wrap .search_field {
	width:82%;
}
.content .search_wrap.search_fixed .search_form_wrap .search_field {
	width: 96%;
}
.content .search_wrap .search_results {
	width:100%;
}

/* Header 8 - dropdown menu */
.top_panel_style_8 .content_wrap {
	width:100%;
	padding: 0 3.8462em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.top_panel_style_8 .top_panel_middle {
	position:relative;
}
.top_panel_style_8 .top_panel_middle .menu_pushy_wrap {
	margin:0;
	text-align:left;
	float:left;
}
.top_panel_style_8 .contact_logo {
	display:inline-block;
	position:absolute;
	z-index:1;
	left: 50%;
	top:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
}
.top_panel_style_8 .top_panel_middle .logo {
	margin:0.5em 0 0 0;
}
.top_panel_style_8 .menu_pushy_button {
	display: inline-block;
}
.top_panel_style_8 .menu_pushy_button:before {
	font-size: 1.4em;
	line-height:1.2em;
	vertical-align:top;
}
.top_panel_style_8 .top_panel_buttons {
	float:right;
}
.top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before,
.top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after {
	content:' ';
	display:block;
	font-size:0.75em;
	position:absolute;
	z-index:1;
	right: 0;
	top:-1px;
	width: 1em;
	height: 1em;
	line-height: 1em;
}
.top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before {
	background-color:red;
	-webkit-transform:rotate(45deg);
	   -moz-transform:rotate(45deg);
	        transform:rotate(45deg);
	right: 2px;
	top:-2px;
}
.top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after {
	content: attr(data-items);
	font-size:0.65em;
	font-weight:700;
}
.top_panel_inner_style_8 .top_panel_buttons,
.top_panel_inner_style_8 .menu_pushy_button {
	margin:0;
	padding-top:1.8em;
	padding-bottom:1.8em;
}
.top_panel_style_8 .top_panel_buttons .top_panel_icon {
	margin:0;
	float:right;
}
.top_panel_style_8 .top_panel_buttons .top_panel_icon.search_wrap {
	height:1.5em;
	line-height:1.5em;
	margin-left:1em;
}
.top_panel_style_8 .top_panel_buttons .contact_icon,
.top_panel_style_8 .top_panel_buttons .top_panel_icon .search_submit {
	width:1.5em;
	height:1.5em;
	line-height:1.5em;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}
.top_panel_style_8 .top_panel_buttons .top_panel_icon .search_field {
	padding-top:2px;
	padding-bottom:2px;
	vertical-align:top;
}
.top_panel_style_8 .top_panel_buttons .top_panel_icon.menu_main_cart .contact_icon,
.top_panel_style_8 .top_panel_buttons .top_panel_icon.search_wrap,
.top_panel_style_8 .top_panel_buttons a:hover,
.top_panel_style_8 .top_panel_middle .top_panel_buttons a:hover .contact_icon,
.top_panel_style_8 .top_panel_buttons .top_panel_icon.search_wrap:hover,
.top_panel_style_8 .top_panel_buttons .top_panel_icon:hover .contact_icon,
.top_panel_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit {
	background-color:transparent;
}

/* Push panel */
.site-overlay {
    display: none;
    position: fixed;
    top: 0;
	bottom: 0;
    left: 0;
    right: 0;
    height: 110%;
    z-index: 9998;
    background-color: rgba(0,0,0,0.5);
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.pushy {
	position: fixed;
	width: 25em;
	bottom: 0;
	top: 0;
	left: -25em;
	z-index: 10000;
	overflow: hidden;
	text-align: center;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.pushy-active .pushy {
	left: 0;
}
.pushy .pushy_inner {
	width:105%;
	height: 100%;
	padding: 3em 0 1em 0;
	position:relative;
	overflow: scroll;
	-webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}
.pushy .close-pushy:before {
	content: '\e8ac';
	font-family: fontello;
	font-size: 1.5em;
	position:absolute;
	right: 1.25em;
	top: 2em;
	z-index: 999;
}
.pushy .logo_fixed {
	display: none;
}
.pushy .logo {
	margin: 2em 0;
}

.menu_pushy_nav_area .menu_pushy_nav {
	margin-bottom:2em;
}
.menu_pushy_nav_area ul,
.menu_pushy_nav_area li {
	margin:0;
	padding:0;
	list-style:none;
}
.menu_pushy_nav_area li > a {
	position:relative;
	display:block;
	padding:0.5em 3em;
}
.menu_pushy_nav_area li.menu-item-has-children ul {
	display:none;
}
.menu_pushy_nav_area li.menu-item-has-children > a > .open_child_menu {
	right: 2em;
}



/* Header mobile
---------------------------------------------------------------- */
.menu_mobile_open {
    height: 100%;
}
.admin-bar.menu_mobile_open {
    height: calc(100% - 32px);
}
.menu_mobile_open body {
    height: 100%;
    overflow: hidden;
}
.menu_mobile_open .top_panel_below .slider_wrap {
	display:none;
}
.header_mobile {
	position: relative; 
    z-index: 10003;	
	display: none;
}
.header_mobile .top_panel_fixed_wrap {
    display: none;
}
.header_mobile .mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
	cursor: pointer;
	z-index: 1001;
    background-color: rgba(0,0,0,0.6);
}
.header_mobile .mask.show {
	right: 0;
}

/* content wrap */
.header_mobile .content_wrap{
	text-align: center;
}
.header_mobile .logo {
    padding-top: 35px;
    padding-bottom: 20px;
}
.header_mobile .logo_main{
    height: 53px;
}
.header_mobile .menu_button {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -13px;
}
.header_mobile .menu_main_cart {
	position: absolute;
    right: 30px;
    margin: 0;
	top: 50%;
    margin-top: -12px;
}
.header_mobile .menu_button,
.header_mobile .menu_main_cart .top_panel_cart_button .contact_icon {
	background-color: transparent !important;
    font-size: 26px;
    height: auto;
    width: auto;
    line-height: 25px;
	cursor: pointer;
	 -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s
}


/* side wrap */
.header_mobile .side_wrap {
    display: block;
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: auto;
    bottom: 0;
    overflow: hidden;
    overflow-y: scroll;
    z-index: 10003;
    padding: 0px;
    transition: left 0.3s linear;
    -moz-transition: left .3s linear;
    -webkit-transition: left 0.3s linear;
    -o-transition: left .3s linear;
}
.admin-bar .header_mobile .side_wrap{
	top: 32px;
}
.header_mobile .side_wrap.open{
	left: 0;
}
.header_mobile .side_wrap .close {
    position: absolute;
    top: 15px;
    right: 20px;
    text-transform: uppercase;
    cursor: pointer;
	display: none;
}


/* panels */
.panel_top, .panel_middle, .panel_bottom{
	padding: 0px;
	position: relative;
	display: block;
}
.header_mobile .panel_middle{
	padding: 20px 35px;
	font-size: 13px;
}
.header_mobile .panel_middle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.09);
    z-index: 0;
}
.header_mobile .panel_middle > * {
    z-index: 1;
	position: relative;
}


/* menu */
.header_mobile .menu_main_nav_area{
	display: block;
}
.header_mobile .menu_main_nav{
	padding-left: 0;
	margin: 0;
}
.header_mobile .menu_main_nav li,
.header_mobile .menu_main_nav ul{
	margin: 0;
}
.header_mobile .menu_main_nav > li {
    float: none;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.header_mobile .menu_main_nav > li > a {
	padding: 17px 35px;
	padding-right: 54px;
    font-size: 12px;
    line-height: 16px;
}
.header_mobile .menu_main_nav > li > ul a {
    font-size: 12px;
    padding: 12px 35px;
	padding-right: 54px;
    line-height: 15px;
	display: block;
}
.header_mobile .menu_main_nav > li li li > a {
    padding: 12px 54px;
}
.header_mobile .menu_main_nav > li ul {
    display: none;
    position: relative;
    padding: 0;
	margin: 0;
    width: auto;
    list-style-type: none;
    top: 0;
    overflow: hidden;
	border: none;
	background-color: transparent;
}
.header_mobile .menu_main_nav li.menu-item-has-children > a:after {
	display:none;
}
.header_mobile .menu_main_nav > li > a > .open_child_menu {
	right: 1em;
	top: 0.7em;
}
.header_mobile .menu_main_nav > li ul > li > a > .open_child_menu {
	right: 0.8em;
	top: 0;
}
.header_mobile .menu_main_nav > li > ul:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.09);
    z-index: 0;
}
.header_mobile .menu_main_nav > li ul > * {
	z-index: 1;
    position: relative;
}
.header_mobile .menu_main_nav > li ul > li:last-child{
	margin-bottom: 0;
}
.header_mobile .menu_main_nav > li > ul ul {
    left: 0;
}

.header_mobile .side_wrap .menu_main_nav > li ul,
.header_mobile .side_wrap .menu_main_nav > li ul li.current-menu-item > a, 
.header_mobile .side_wrap .menu_main_nav > li ul li.current-menu-ancestor > a {
	background-color: transparent;
}
.header_mobile .side_wrap .menu_main_nav > a:hover, 
.header_mobile .side_wrap .menu_main_nav li > a:hover, 
.header_mobile .side_wrap .login .popup_link:hover{
	background-color: rgba(0,0,0,0.1) !important;
}
.header_mobile .side_wrap .menu_main_nav > li.current-menu-parent > a,
.header_mobile .side_wrap .menu_main_nav > li ul li.current-menu-parent > a,
.header_mobile .side_wrap .menu_main_nav > li.current-menu-item > a,
.header_mobile .side_wrap .menu_main_nav > li ul li.current-menu-item > a {
	background-color: rgba(0,0,0,0.2);
	font-weight:normal;
}


/* search and menu */
.header_mobile .search_wrap, .header_mobile .login {
	position: relative;
    float: none;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.header_mobile .search_wrap:after, .header_mobile .login:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.09);
    z-index: 0;
}
.header_mobile .search_wrap > *,
.header_mobile .login > * {
    z-index: 9999;
	position: relative;
}
.header_mobile .login  .popup_link{
	padding: 17px 35px;
	padding-right: 54px;
    font-size: 12px;
	text-transform: uppercase;
    line-height: 16px;
	display: block;
}
.header_mobile .login  .popup_link:before{
    content: '\e8c3';
    font-family: fontello;
    position: absolute;
    right: 28px;
    top: 16px;
    font-size: 12px;
}
.header_mobile .login  .popup_link.popup_login_link:before{
	content: '\e80a';
}

/* search */
.header_mobile .search_wrap {
    max-width: 100%;
	padding: 10px 35px;
	padding-right: 54px;
}
.header_mobile .search_wrap .search_submit {
    position: absolute;
	left: auto;
    right: -2.5em;
    top: 0;
    font-size: 12px;
	width: 2em;
	height: 29px;
	line-height:29px;
}
.header_mobile .search_wrap .search_submit:before {
	margin-right:0;
}
.header_mobile .search_wrap .search_field {
    padding: 0;
	font-size: 14px;
    line-height: 29px;
}
.header_mobile .search_wrap form {
    padding-left: 0;
}
.header_mobile .search_wrap .search_results {
	display: none !important;
}
.header_mobile  .search_field::-webkit-input-placeholder {
   color: #fff;
}
.header_mobile  .search_field:-moz-placeholder { 
   color: #fff;  
}
.header_mobile  .search_field::-moz-placeholder {  
   color: #fff;  
}
.header_mobile  .search_field:-ms-input-placeholder {  
   color: #fff;  
}


/* contact info */
.header_mobile .contact_field .contact_icon,
.header_mobile .top_panel_top_open_hours:before  {
    font-size: 16px;
    margin-right: 15px;
}
.header_mobile .top_panel_top_open_hours:before {
    content: '\e808';
}
.header_mobile .contact_field .contact_icon.icon-home:before {
    content: '\e833';
    font-size: 18px;
}
.header_mobile .top_panel_top_open_hours, 
.header_mobile .top_panel_top_socials{
	margin-left: 0;
}
.header_mobile .top_panel_top_contact_area,
.header_mobile .top_panel_top_open_hours,
.header_mobile .top_panel_top_user_area{
	float: none;
	display: block;
	margin: 0;
    padding: 0;
	text-align: left;
}
.header_mobile .contact_field,
.header_mobile .top_panel_top_open_hours{
	padding: 0.4em 0;
}
.header_mobile .top_panel_top_user_area {
    display: none;
}

/* socials */
.header_mobile .contact_socials {
    text-align: left;
	margin: 0 35px;
}
.header_mobile .sc_socials.sc_socials_size_small  {
    overflow: visible;
    margin: 5px auto;
}
.header_mobile .sc_socials.sc_socials_size_small  .social_icons span {
    font-size: 18px;
	opacity: 0.6;
}
.header_mobile .sc_socials.sc_socials_size_small .sc_socials_item {
    margin: 0 0.5em 0 0;
}

/* woo */
.header_mobile .sidebar_cart {
    position: absolute;
    top: 35px;
    left: auto;
    right: 0;
    z-index: 1000;
    display: none;
    float: none;
    text-align: left;
    border: 1px solid #eee;
}
.header_mobile .sidebar_cart {
	width: 285px !important;
	padding: 1.5em !important;
	z-index:100000;
}
.header_mobile .widget_shopping_cart { 
	display:block !important;
}
.header_mobile .widget_shopping_cart ul.cart_list { 
	display:block;
	position:static;
	width:100%;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;		
}
.header_mobile .sidebar_cart > li,
.header_mobile .widget_shopping_cart ul.cart_list > li {
	margin:0;
	padding-left:0;
	list-style-type: none;
}
.header_mobile .sidebar_cart > li:before,
.header_mobile .sidebar_cart > li > a:before,
.header_mobile .widget_shopping_cart ul.cart_list > li:before,
.header_mobile .widget_shopping_cart ul.cart_list > li > a:before {
	display:none;
}
.woocommerce .header_mobile .widget_shopping_cart .empty,
.woocommerce-page .header_mobile .widget_shopping_cart .empty {
	padding-bottom: 1em;
}

.header_mobile .widget_shopping_cart ul.cart_list > li > a {
	padding: 0;
}
.header_mobile .widget_shopping_cart ul.cart_list > li > a:not(.remove) {
	margin-top:-0.15em;
}
.header_mobile .widget_shopping_cart ul.cart_list > li > a:hover {
	background-color: transparent;
}
.header_mobile .widget_shopping_cart ul.cart_list > li img {
	width:50px;
	margin-top:0.5em;
}
.header_mobile .widget_shopping_cart .cart_list li a.remove {
    position: absolute;
    top: 0;
	left: auto;
    right: 0;
    margin-top: 0;
    text-align: center;
}


/* 7.2 Main Slider
-------------------------------------------------------------- */
.slider_wrap .rev_slider_wrapper {
	z-index:0;
}
.tparrows.default {
	background:none;
	background-color:transparent; 
	line-height:40px; 
}
.tparrows.default:before { 
	font-family: "fontello"; 
	font-size:3em; 
}
.tp-leftarrow.default:before { 
	content: '\e837'; 
}
.tp-rightarrow.default:before { 
	content: '\e836'; 
}
.slider_with_over_content .tparrows {
	display:none !important;
}
.slider_with_over_content .tp-rightarrow {
	left: 60% !important;
}
.tp-bullets.simplebullets.round .bullet {
	background:none;
	margin-left:16px;
	border:1px solid transparent;
	width: 10px;
	height: 10px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.tp-bullets.simplebullets.round .bullet.selected {
	background-color:transparent !important;
	border-width:1px;
	border-style: solid;
}

/* Slider with over content */
.slider_with_over_content {
	position:relative;
}
.slider_over_content {
	position:absolute;
	z-index:1;
	right:0;
	top: 0;
	bottom:0;
	width: 40%;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.slider_over_content_inner {
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom: 0;
	overflow:hidden;
	padding:2em 3em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.slider_over_button {
	display:none;
	position:absolute;
	left:-30px;
	top:50%;
	margin-top:-15px;
	width: 26px;
	height: 30px;
	line-height:28px;
	font-size:24px;
	text-align:center;
	cursor:pointer;
}
.slider_over_close {
	display:none;
	position:absolute;
	right:10px;
	top:10px;
	width: 15px;
	height: 15px;
	line-height:15px;
	font-size:1.2em;
	text-align:center;
	cursor:pointer;
}



/* Revo slider*/

.sc_button.slider_button{
    -webkit-transition: all ease .5s!important;
    -moz-transition: all ease .5s!important;
    -ms-transition: all ease .5s!important;
    -o-transition: all ease .5s!important;
    transition: all ease .5s!important;
    letter-spacing: 1px!important;
}
.persephone.tparrows{background-color: transparent!important;
    border-radius: 50%!important;
    width: 54px!important;
    height: 54px!important;
    line-height:  54px!important;
    border-width: 2px!important;
    -webkit-transition: all ease .3s!important;
    -moz-transition: all ease .3s!important;
    -ms-transition: all ease .3s!important;
    -o-transition: all ease .3s!important;
    transition: all ease .3s!important;
}
.persephone.tparrows:before{ font-size: 11px!important;  line-height:  54px!important;
    -webkit-transition: all ease .3s!important;
    -moz-transition: all ease .3s!important;
    -ms-transition: all ease .3s!important;
    -o-transition: all ease .3s!important;
    transition: all ease .3s!important;}


/* 7.3 Page info: page title and breadcrumbs
-------------------------------------------------------------- */
.top_panel_title.title_present.breadcrumbs_present .post_navi,
.top_panel_title.title_present.breadcrumbs_present .page_title,
.top_panel_title.title_present.breadcrumbs_present .breadcrumbs {
	max-width:48%;
}

.top_panel_title_inner {
	overflow:hidden;
	border-top: 1px solid rgba(0,0,0, 0.1);
}
.top_panel_title .page_title {
	float:left;
	margin:0;
    font-weight: 600;
    font-size: 2.5em;
    padding: 1.7571em 0;	/* 0.6667em 0; */
	line-height:1.2em;
    text-transform: capitalize;
}
.top_panel_title .post_navi {
	float:left;
	padding: 2.5em 0;
	font-size:0.875em;
	line-height:1.5em;
}

.top_panel_title .breadcrumbs {
	float:right;
	padding: 2.5em 0;
	font-size:0.875em;
	line-height:1.5em;
}
.top_panel_title.title_present:not(.navi_present) .breadcrumbs {
	padding: 5.9em 0 1em 2.5em;
}
.post_navi .post_navi_item,
.breadcrumbs .breadcrumbs_item {
	display:inline-block;
	vertical-align:top;
    font-size: 1.07em;
    letter-spacing: 1px;
	white-space:nowrap; 
}
.post_navi .post_navi_item + .post_navi_item:before,
.breadcrumbs .breadcrumbs_delimiter {
	display:inline-block;
	position:relative;
	margin: 0 1em;
	vertical-align:top;
	text-align:center;
}
.post_navi .post_navi_item + .post_navi_item:before,
.breadcrumbs .breadcrumbs_delimiter:before {
	content:'/';
}



/* 7.4 Main content wrapper
-------------------------------------------------------------- */

/* Post featured block */
.post_featured {
	overflow:hidden;
	margin-bottom:2.1em;
	position:relative;
    border-radius: 2em;
}

.post_format_audio .post_featured {
	overflow: visible;
}

.post_format_standard .post_featured, .post_format-post-format-image .post_featured {
     display: inline-block;
 }
.post_item_related .post_featured, .post_format_standard .isotope_item_content .post_featured {
    display: block;
}
.post_format_standard .post_item_masonry .post_featured {
    display: block;
}
.article_style_boxed .post_featured {
	margin-bottom:0;
}
.post_featured img {
	width:100%;
    display: inline-block;
	height:auto;

}

.post_featured_right > .post_featured {
	float: right;
	width: 50%;
	margin-left: 4.3478%;
}
.post_featured_left > .post_featured {
	float: left;
	width: 50%;
	margin-right: 4.3478%;
}


/* Post info block */
.post_info_bottom {
	margin-bottom:3em;
}
.post_info.post_info_bottom .post_info_tags:before {
    display: none;
}
.post_info.post_info_bottom .post_info_tags a{
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 9px 16px;
    line-height: 3.4em;
    border-radius: 3px;
    font-weight: 600;
    margin: 11px 0px 8px 0;
    font-size: 0.8em;
}
.post_info_bottom_cat_tag{
    margin-top: 5.35em;
    border-bottom: 1px solid;
}

.single.single-post .post_info_bottom_cat_tag{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.single.single-post .post_info_bottom_cat_tag .post_info .post_info{
	margin-bottom: 0;
}

.sc_socials.sc_socials_share.sc_socials_dir_horizontal .social_icons{
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.post_info_bottom_cat_tag{
    position: relative;
    padding-bottom: 5.8em;
    margin-bottom: 5.75em;
    clear: both;
}
.single.single-post .post_info_share.post_info_share_horizontal {
    top: 12px;
    right: 0;
    text-align: right;
}
.post_info .post_info_counters .post_counters_item {
	display:inline-block;
	margin-right:1em;
}
.post_info.post_info_share_vertical {
	margin:0;
}
.article_style_boxed[class*="single-"] .content > article > .post_info_share {
	margin-bottom:0;
}
.post_info .post_info_counters .post_counters_likes.disabled {
	color:#e05100;
}
.post_info .post_info_counters .post_counters_item:before, .post_info .post_info_posted:before{
    margin-left: 1px;
	margin-right: 7px;
    font-size: 1.2em;
}

.post_info .post_info_posted_by:before, .post_info .post_info_tags:before {
    display: inline-block;
    content: "|";
    vertical-align: top;
    font-style: normal;
    margin: 0 1.7em;
}
.post_info_item.post_info_posted, .post_info_item.post_info_posted_by, .post_info_item.post_info_tags{
    margin-right: 0;
    text-transform: capitalize;
}
.post_info .post_info_counters{
    margin-left:2em;
}
/* 7.5 Post Formats
-------------------------------------------------------------- */

/* Quote */
blockquote {
	padding:2.1em 2em 1.8em 4.55em;
	font-size: 1.5em;
    border-radius: 1.4em;
}
blockquote, blockquote p {
	position:relative;
	z-index:2;
	font-weight:300;
	line-height:1.8em;
}
blockquote:before {
	font-family:'fontello';
	content: '\e8b6';
	display:block;
	position:absolute;
	z-index:1;
    left: 2.9em;
    top: 2.8em;
    font-size: 0.85em;
	line-height:1em;
	color: rgba(128,128,128,0.1);
}
.wp-block-column blockquote:before{
	left: 1em;
	top: 2em;
}
blockquote p {
	margin: 0;
    font-size: 0.7619em;
}
blockquote p + p {
	margin-top: 0.3em;
}
blockquote > a,
blockquote > p > a{
	font-size: 1em;
	font-weight:normal;
}
blockquote cite{
	font-size: .7em;
}
blockquote > p > a{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.75em;
    letter-spacing: 1px;
    margin-top: 2.2em;
}


/* Link */
.post_format_link .post_descr a {
	font-size: 1.875em;
}


/* Status */
.post_format_status.post_item_single .post_content p,
.post_format_status .post_descr {
	font-size: 1.875em;
	line-height:1.3333em;
}

/* Aside */
.post_format_aside.post_item_single .post_content p,
.post_format_aside .post_descr {
	border-width: 1px;
	border-style: solid;
	padding: 1.2em;
}
.post_format_aside .post_descr p {
	margin-bottom:0;
}
.post_format_aside .post_descr p+p {
	margin-top:1em;
}





/* 7.6 Post Layouts
-------------------------------------------------------------- */

.post_item .post_descr {
	line-height:2em;
}
.post_item .post_descr p {
    margin-bottom: 2.25em;
}
.post_item .post_readmore:after {
	content: '\e836';
	font-family:fontello;
	display: inline-block;
	margin-left:0.5em;
}

/* Layout Excerpt */
.post_icon.inherit {
	display: none !important;
}

.post_title .post_icon {
	font-size:0.9375em;
	margin-right:0.5em;
}
.post_item_excerpt .post_title .post_icon {
	display:block;
	margin-right:0;
}
.post_item_excerpt .post_title {
	margin-top:0;
	margin-bottom:0.65em;
}
.post_item_excerpt.post_featured_left .post_title,
.post_item_excerpt.post_featured_right .post_title {
	font-size: 2.2857em;
}
.post_item_excerpt:not([class*="column"]) + .post_item_excerpt:not([class*="column"]),
.post_item_excerpt:not([class*="column"]) + .post_item_excerpt,
.post_item_excerpt + .post_item_excerpt:not([class*="column"]),
.post_item_excerpt.tag-columns + .post_item_excerpt.tag-columns{
    margin-top: 5.7em;
    border-top: 1px solid #e4e7e8;
    padding-top: 5.7em;
}
.article_style_boxed .post_item_excerpt:not([class*="column"]) + .post_item_excerpt:not([class*="column"]) {
	border-top:none;
	padding-top:0;
}
.post_item_excerpt .post_content {
	margin-bottom:3em;
}


/* Related posts */
.related_wrap {
	margin-bottom:3em;
}
.related_wrap.related_wrap_empty {
	margin-bottom:0;
}
.related_wrap .section_title {
	margin:1em 0 1.5em;
}

.article_style_stretch .related_wrap:not(.related_wrap_empty):not(.scroll_wrap) {
	padding-bottom: 1px;
}
.related_wrap .post_item_related,
.article_style_stretch .post_item_related {
	background-color:#ffffff;
}
.article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related {
	background-color: #f4f7f9;
}
.related_wrap.scroll_wrap .post_item_related {
	width:350px;
	float:left;
}
.related_wrap.scroll_wrap .post_item_related+.post_item_related {
	margin-left:3.125em;
}
.article_style_stretch:not(.body_style_fullscreen):not(.sidebar_hide) .related_wrap.scroll_wrap  .post_item_related {
	width:340px;
}
.article_style_stretch:not(.body_style_fullscreen):not(.sidebar_hide) .related_wrap.scroll_wrap  .post_item_related+.post_item_related {
	margin-left:1.875em;
}
.post_item_related .post_featured {
	width:100%;
	overflow:hidden;
	margin:0;
	float:none !important;
}
.post_item_related .post_featured .sc_audio.sc_audio_image {
	min-height:14.8571em;
}
.post_item_related .post_content_wrap{
    padding: 3em 1.25em 0;
}

.post_item_related .post_featured + .post_content_wrap {
	width:100%;
	height:6.4em;
	overflow:hidden;
	padding: 1em 1.25em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.post_item_related .post_title {
	margin: 0 0 0.25em;
}
.post_item_related .post_content .post_content_inner{
    position: relative;
}
.post_item_related .post_content .post_content_wrap{
    position: absolute;
    bottom: 0;

}
.post_item_related .post_content .post_featured .hover_icon:before {
    display: none;
}
.post_item_related .post_content .post_featured .hover_icon:after{
    opacity: 1;
    z-index: 0;
}
.single-post .related_wrap{
    border-top: 1px solid;
    margin-top: 5.3em;
    padding-top: 2.5em;
}
.single-post .related_wrap.related_wrap_empty {
    border: none;
}
.post_item_related .post_featured img{
    width: 100%;
}


/* Masonry and Portfolio */
.post_item_classic .post_title {
	max-height: 1.2em;
	overflow: hidden;
}
.post_item_short .post_title {
	max-height: 2em;
	overflow: hidden;
}
.post_item_grid .post_descr {
	max-height: 8em;
	overflow: hidden;
}

/* Isotope layout */
.isotope_wrap {
	margin-right:-30px;
}
.isotope_wrap .isotope_item {
	padding-right:30px;
	padding-bottom:30px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	opacity: 0;
	filter: alpha(opacity=0);
}
.sc_blogger.no_margins .isotope_wrap,
.isotope_wrap.no_margins {
	margin-right:0;
}
.sc_blogger.no_margins .isotope_wrap .isotope_item,
.isotope_wrap.no_margins .isotope_item {
	padding-right:0;
	padding-bottom:0;
}
.sc_blogger.small_margins .isotope_wrap,
.isotope_wrap.small_margins {
	margin-right:-10px;
}
.sc_blogger.layout_classic_3 .sc_blogger_title {
    text-align: center;
}
.sc_blogger.small_margins .isotope_wrap .isotope_item,
.isotope_wrap.small_margins .isotope_item {
	padding-right:10px;
	padding-bottom:10px;
}
.isotope_wrap .isotope_item.isotope_item_show {
	opacity: 1;
	filter: alpha(opacity=100);
}
.isotope_wrap .isotope_column_2 {	width:50%;}
.isotope_wrap .isotope_column_2[class*="isotope_item_size-2"] {	width:100%;}
.isotope_wrap .isotope_column_3 {	width:33.3333%;}
.isotope_wrap .isotope_column_3[class*="isotope_item_size-2"] {	width:66.6666%;}
.isotope_wrap .isotope_column_3[class*="isotope_item_size-3"] {	width:100%;}
.isotope_wrap .isotope_column_4 {	width:25%;}
.isotope_wrap .isotope_column_4[class*="isotope_item_size-2"] {	width:50%;}
.isotope_wrap .isotope_column_4[class*="isotope_item_size-3"] {	width:75%;}
.isotope_wrap .isotope_column_4[class*="isotope_item_size-4"] {	width:100%;}
.isotope_wrap .isotope_column_5 {	width:20%;}
.isotope_wrap .isotope_column_5[class*="isotope_item_size-2"] {	width:40%;}
.isotope_wrap .isotope_column_5[class*="isotope_item_size-3"] {	width:60%;}
.isotope_wrap .isotope_column_5[class*="isotope_item_size-4"] {	width:80%;}
.isotope_wrap .isotope_column_5[class*="isotope_item_size-5"] {	width:100%;}
.isotope_wrap .isotope_column_6 {	width:16.6666%;}
.isotope_wrap .isotope_column_6[class*="isotope_item_size-2"] {	width:33.3333%;}
.isotope_wrap .isotope_column_6[class*="isotope_item_size-3"] {	width:50%;}
.isotope_wrap .isotope_column_6[class*="isotope_item_size-4"] {	width:66.6666%;}
.isotope_wrap .isotope_column_6[class*="isotope_item_size-5"] {	width:83.3333%;}
.isotope_wrap .isotope_column_6[class*="isotope_item_size-6"] {	width:100%;}
.isotope_wrap .isotope_column_7 {	width:14.2857%;}
.isotope_wrap .isotope_column_7[class*="isotope_item_size-2"] {	width:28.5714%;}
.isotope_wrap .isotope_column_7[class*="isotope_item_size-3"] {	width:42.8571%;}
.isotope_wrap .isotope_column_7[class*="isotope_item_size-4"] {	width:57.1428%;}
.isotope_wrap .isotope_column_7[class*="isotope_item_size-5"] {	width:71.4285%;}
.isotope_wrap .isotope_column_7[class*="isotope_item_size-6"] {	width:85.7128%;}
.isotope_wrap .isotope_column_7[class*="isotope_item_size-7"] {	width:100%;}
.isotope_wrap .isotope_column_8 {	width:12.5%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-2"] {	width:25%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-3"] {	width:37.5%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-4"] {	width:50%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-5"] {	width:62.5%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-6"] {	width:75%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-7"] {	width:87.5%;}
.isotope_wrap .isotope_column_8[class*="isotope_item_size-8"] {	width:100%;}

/* Isotope item decoration */
.isotope_wrap .isotope_item .post_item {
	overflow:hidden;
}
.isotope_wrap .isotope_item .post_featured {
	margin-bottom:0;
}
.article_style_boxed .isotope_wrap .isotope_item .post_title {
	margin-top:0;
}
.article_style_boxed .isotope_wrap .isotope_item .post_content {
	padding:1.25em 1.8em;
}
.article_style_boxed.template_portfolio .isotope_wrap .isotope_item .post_content,
.article_style_boxed .template_portfolio .isotope_wrap .isotope_item .post_content {
	padding:0;
}
.isotope_wrap .isotope_item p,
.isotope_wrap .isotope_item .post_info {
	margin-bottom:1em;
}

/* Portfolio items */
.isotope_wrap .isotope_item_colored .post_item,
.isotope_wrap .isotope_item_grid .post_item,
.isotope_wrap .isotope_item_square .post_item,
.isotope_wrap .isotope_item_portfolio .post_item {
	overflow:visible;
}
.isotope_wrap .isotope_item_colored .post_featured,
.isotope_wrap .isotope_item_portfolio .post_featured,
.isotope_wrap .isotope_item_square .post_featured,
.isotope_wrap .isotope_item_grid .post_featured {
	border-bottom: none;
}
.isotope_wrap .isotope_item_colored .post_item .hover_icon,
.isotope_wrap .isotope_item_grid .post_item .hover_icon,
.isotope_wrap .isotope_item_square .post_item .hover_icon,
.isotope_wrap .isotope_item_portfolio .post_item .hover_icon {
	position:relative;
	top: 0;
	opacity:1;
}
.isotope_wrap .isotope_item_colored .post_item .hover_icon:before,
.isotope_wrap .isotope_item_grid .post_item .hover_icon:before,
.isotope_wrap .isotope_item_square .post_item .hover_icon:before,
.isotope_wrap .isotope_item_portfolio .post_item .hover_icon:before {
	position:static;
	margin-top:0.3em;
	opacity:1;
	font-size:2.5em;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
	-webkit-transform: translateX(0) translateY(0);
	   -moz-transform: translateX(0) translateY(0);
	        transform: translateX(0) translateY(0);
}


/* Isotope filters */
.isotope_filters {
	overflow:hidden;
	text-align:center;
	margin: 0 0 1em;
	padding-bottom:0.5em;
}
.sidebar_hide .isotope_filters {
	margin: 1em 0 1.5em;
}
.isotope_filters a {
	display:inline-block;
	margin: 0 4px 4px 0;
	text-align:center;
	padding:0.75em 1.5em;
	font-size:0.75em;
	line-height: 1.2857em;
	font-weight:400;
	border-width:2px;
	border-style: solid;
}

/* Isotope transitions */
.isotope-hidden.isotope_item {
	pointer-events: none; 
	z-index: 1;
}


/* Style "Colored" */
.isotope_item_colored .post_featured .post_mark_new {
	-webkit-box-shadow: -3px 2px 0px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -3px 2px 0px 0px rgba(0, 0, 0, 0.2);
			box-shadow: -3px 2px 0px 0px rgba(0, 0, 0, 0.2);	
}
.post_item_colored .post_featured .post_mark_new {
	position:absolute;
	left:0;
	top:0;
	margin:1.6em 0 0 1.6em;
	width:4em;
	height:4em;
	overflow:hidden;
	font-size:0.625em;
	font-weight:bold;
	text-align:center;
	line-height:4em;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.post_item_colored .post_featured .post_title,
.post_item_colored .post_featured .post_descr {
	position:absolute;
	left: 0;
	right: 0;
	bottom:0;
	height:20%;
	overflow:hidden;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.post_item_colored .post_featured .post_descr {
	padding: 0.7143em 1.1429em;
}
.post_item_colored .post_featured .post_title {
	bottom:20%;
	margin:0;
	line-height:1.15em;
	padding: 0.5em 0.7619em;
}
.post_item_colored_4 .post_featured .post_title {
	font-size: 1.125em;
	line-height:1.15em;
	padding: 0.5em 0.6667em;
}
.post_item_colored .post_category {
	font-size: 1.125em;
	font-weight:400;
	line-height:1.15em;
	margin: 0.25em 0 0.5em 0;
}
.post_item_colored .post_descr .post_price {
	float:right;
	margin-top:1.5em;
}
.post_item_colored_4 .post_descr .post_price {
	margin-top:0.875em;
}
.post_item_colored .post_descr .post_price_value {
	color: #222222;
	font-size: 1.875em;
	line-height:1.2857em;
}
.post_item_colored_4 .post_descr .post_price_value {
	font-size: 1.5em;
	line-height:1.2857em;
}
.post_item_colored .post_descr .post_price_period {
	font-size: 1.125em;
	line-height:1.2857em;
	color: #909090;
}
.post_item_colored_4 .post_descr .post_price_period {
	font-size: 1em;
	line-height:1.2857em;
}
.post_item_colored .post_descr .post_price_period:before {
	content:'/';
	display:inline-block;
	margin:0 0.5em;
}
.post_item_colored .post_content.ih-item.square.colored .post_info_wrap.info {
	padding:0;
	text-align:left;
}
.post_item_colored .post_content.ih-item.square.colored .post_info_wrap.info .post_title {
	font-size:1.625em;
	line-height:1.15em;
	padding:4px 8%;
	text-align:left;
	margin-top:8%;
}
.post_item_colored_4 .post_content.ih-item.square.colored .post_info_wrap.info .post_title {
	font-size:1.125em;
	line-height:1.15em;
	margin-top:4%;
}
.post_item_colored .post_content.ih-item.square.colored .post_info_wrap.info .post_descr,
.post_item_colored .post_content.ih-item.square.colored .post_info_wrap.info .post_descr p {
	text-align:left;
	padding: 0.5em 8% 0;
	font-style:normal;
}
.post_item_colored .post_content.ih-item.square.colored .post_info_wrap.info .post_descr p {
	font-size:0.875em;
	padding:0;
}
.post_item_colored .post_content.ih-item.square.colored .post_info_wrap.info .post_descr p.post_info {
	margin-bottom:2em;
}
.post_item_colored .post_info_wrap .post_buttons {
	position:absolute;
	left:8%; 	
	right:8%;
	bottom:1.875em;
	height:3em;
	overflow:hidden;
	padding:0 0 0 4px;
}
.post_item_colored_4 .post_info_wrap .post_buttons {
	bottom:1.125em;
	height:2.3em;
	white-space:nowrap;
}
.post_item_colored .post_info_wrap .post_button {
	float:none;
	display:inline-block;
}
.post_item_colored .post_info_wrap .post_button+.post_button {
	margin-left:0.625em;
}
.post_item_colored_4 .post_info_wrap .post_button .sc_button {
	padding:0.5em 0.75em;
}


/* Colored excerpt */
.isotope_wrap .isotope_item_colored_1 {
	width:100%;
}
.isotope_wrap .isotope_item_colored_1 .post_item {
	overflow:hidden;
	position:relative;
}
.isotope_wrap .isotope_item_colored_1 .post_featured {
	width: 250px;
	height: 250px;
	float: left;
	border-right:20px solid #f0f0f0;
	margin-right:1.875em;
}
.isotope_wrap .isotope_item.isotope_item_colored_1 .post_description {
	padding-right: 2em;
}
.isotope_wrap .isotope_item.isotope_item_colored_1 .post_title {
	margin-top: 0.8em; 
	margin-bottom: 0.25em;
}
.isotope_wrap .isotope_item.isotope_item_colored_1 .post_descr {
	max-height:6em;
	margin-top:1em;
	margin-bottom:1em;
	overflow:hidden;
}
.isotope_wrap .isotope_item.isotope_item_colored_1 .post_buttons {
	text-align:right;
	white-space:nowrap;
}
.isotope_wrap .isotope_item.isotope_item_colored_1 .post_buttons a {
	float:none;
	display:inline-block;
	margin-left:10px;
}




/* 7.7 Paginations
-------------------------------------------------------------- */

/* Blog pagination */
.pagination_wrap {
	text-align:center;
	position:relative;
}
.pagination_wrap:after {
	content:" ";
	display:block;
	width:100%;
	height:0;
	clear:both;
}
.pagination_single > .pager_numbers,
.pagination_single a,
.pagination_single .current,
.pagination_slider .pager_cur,
.pagination_pages > a,
.pagination_pages > span {
	border:2px solid #ddd;
}
.pagination_slider .pager_slider {
	border:1px solid #ddd;
}
.pagination_wrap .pager_next,
.pagination_wrap .pager_prev,
.pagination_wrap .pager_last,
.pagination_wrap .pager_first {
	border: none !important;
	background-color: transparent !important;
}
.pagination_wrap .pager_next{
	margin-left:0.6em;
}
.pagination_wrap .pager_prev{
	margin-right:1em;
}
.pagination_wrap .pager_next:before{
	font-family:fontello;
	content: '\e836';
	margin-right:0;
}
.pagination_wrap .pager_prev:before{
	font-family:fontello;
	content: '\e837';
	margin-right:0;
}
.pagination_wrap .pager_last:before {
	font-family:fontello;
	content: '\e836\e836';
	margin-right:0;
	letter-spacing:-7px;
}
.pagination_wrap .pager_first:before {
	font-family:fontello;
	content: '\e837\e837';
	margin-right:0;
	letter-spacing:-7px;
}
.pagination_wrap .pager_next:hover,
.pagination_wrap .pager_prev:hover,
.pagination_wrap .pager_last:hover,
.pagination_wrap .pager_first:hover {
	background-color:transparent;
}


/* Pagination single page parts */
.pagination_single {
	margin-bottom: 2em;
	clear: both;
}
.pagination_single > .pager_pages {
	margin-right:0.5em;
}
.pagination_lessons {
	margin-top: 2em;
	margin-bottom: 3em;
	overflow:hidden;
}
.pagination_lessons .pager_prev {
	float:left;
	margin-right:2em;
	margin-top:1em;
}
.pagination_lessons .pager_next {
	float:right;
	margin-top:1em;
}

/* Style 'Pages' and 'Slider' */
.pagination_single > .pager_numbers,
.pagination_single a,
.pagination_single .current,
.pagination_slider .pager_cur,
.pagination_pages > a,
.pagination_pages > span {
	display:inline-block;
	margin: 0 4px 4px 0;
	text-align:center;
    width: 3.5em;
    height: 3.5em;
    line-height: 3.5em;
	font-size:1em;
    border-radius: 50%;
}

.pagination_slider .pager_pages {
	display:inline-block;
	position:relative;
	z-index:1000;
}
.pagination_slider .pager_cur {
	cursor:pointer;
}
.pagination_slider .pager_slider {
	display:none;
	position:absolute;
	bottom:3.5em;
	left:50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	        transform: translateX(-50%);
	padding: 1em;
	overflow: hidden;
}
.pagination_slider .pager_slider .sc_slider {
	width: 300px;
	height:230px;
}
.pagination_slider .pager_slider .sc_slider_swiper:hover .sc_slider_prev {
	margin-left:0;
}
.pagination_slider .pager_slider .sc_slider_swiper:hover .sc_slider_next {
	margin-right:0;
}
.pagination_slider .pager_slider .pager_numbers table {
	font-size:1.8em;
	font-weight:300;
}
.pagination_slider .pager_slider .pager_numbers table td {
	vertical-align:middle;
	padding:0;
	margin:0;
	border:none;
}
.pagination_slider .pager_slider .pager_numbers table td a {
	display: block;
	text-align:center;
	width:58px;
	line-height:2em;
}
.pagination_slider .pager_slider .pager_numbers table td a.active,
.pagination_slider .pager_slider .pager_numbers table td a:hover {
	font-weight: 700;
}
.pagination_slider .pager_slider .pager_numbers table td a.active {
	color:#666666;
	cursor:default;
}


/* Style 'Load more' */
.pagination_viewmore > a {
	display:inline-block;
	text-align:center;
	padding:0.75em 1.5em;
	font-size:0.875em;
	font-weight:700;
	line-height: 1.2857em;
}
.pagination_viewmore .viewmore_loading,
.pagination_viewmore .viewmore_text_2 {
	display:none;
}
.pagination_viewmore.loading .viewmore_text_1 {
	display:none;
}
.pagination_viewmore.loading .viewmore_loading,
.pagination_viewmore.loading .viewmore_text_2 {
	display:inline-block;
}

/* Style 'Infinite' */
.pagination_infinite {
	height:0;
}
.pagination_infinite #viewmore_link {
	display:none;
}

/* Loader picture */
.pagination_wrap.loading {
	height:1.2857em;
	padding: 10px 0;
}
.viewmore_loader,
.mfp-preloader span,
.sc_video_frame.sc_video_active:before {
	content: ' ';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	right:auto;
}
.viewmore_loader {
	display:none;
	width: 50px;
	height: 50px;
	z-index: 1;
	margin: -25px 0 0 -25px;
}
.loading * {
	display: none !important;
}
.loading > .viewmore_loader {
	display:block !important;
}
.loading > .viewmore_loader,
.mfp-preloader span,
.sc_video_frame.sc_video_active:before {
	-webkit-animation: rotateplane 1.2s infinite ease-in-out;
			animation: rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes rotateplane {
	0% {
		-webkit-transform: perspective(120px); 
				transform: perspective(120px);
	}
	50% {
		-webkit-transform: perspective(120px) rotateY(180deg); 
				transform: perspective(120px) rotateY(180deg);
	}
	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); 
				transform: perspective(120px) rotateY(180deg) rotateX(180deg);
	}
}
@keyframes rotateplane {
	0% {
		-webkit-transform: perspective(120px); 
				transform: perspective(120px);
	}
	50% {
		-webkit-transform: perspective(120px) rotateY(180deg); 
				transform: perspective(120px) rotateY(180deg);
	}
	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); 
				transform: perspective(120px) rotateY(180deg) rotateX(180deg);
	}
}




/* 8. Single page parts
-------------------------------------------------------------- */
.post_content.post_content_editor_present {
	position:relative;
}
.post_item_attachment > .post_title,
.post_item_single > .post_title {
	margin-top:0;
}
.post_info .frontend_editor_buttons {
	float:right;
}
.post_info .frontend_editor_buttons [class*="icon-"]:before {
	margin-right:0.5em;
}

.post_item_single::after {
	content: ' ';
	display: block;
	width: 100%;
	height: 0;
	clear: both;
}

/*Single post*/
.single-post .post_featured{
    margin-bottom: 4.05em;
}


/* 8.1 Attachment and Portfolio post navigation
------------------------------------------------------------ */
.post_featured .post_nav {
	position:relative;
}
.post_featured .post_nav_item {
	display:block;
	position:absolute;
	left:0;
	top:50%;
	width:50%;
	height:60px;
	color:#3a3a3a;
	margin-top:-80px;
	overflow:hidden;
	padding: 50px 0;
}
.post_featured .post_nav_next {
	left:auto;
	right:0;
}
.post_featured .post_nav_item:before {
	position:absolute;
	display:block;
	top:50px;
	left: 25px;
	width:58px;
	height:58px;
	line-height:58px;
	font-size:25px;
	font-family: "fontello";
	border:1px solid #ddd;
	border-color:transparent;
	background-color: rgba(255,255,255, 0.8);
	color:#888888;
	text-align:center;
	opacity: 0;
	filter: alpha(opacity=0);
}
.post_featured .post_nav:hover .post_nav_item:before { 
	opacity: 1;
	filter: alpha(opacity=100);
}
.post_featured .post_nav:hover .post_nav_prev:hover:before {
	opacity: 0;
	filter: alpha(opacity=0);
	left: -60px;
}
.post_featured .post_nav:hover .post_nav_next:hover:before {
	opacity: 0;
	filter: alpha(opacity=0);
	right: -60px;
}
.post_featured .post_nav .post_nav_prev:before {
	content:'\e837';
}
.post_featured .post_nav .post_nav_next:before {
	content:'\e836';
	left: auto;
	right: 25px;
}

/* Info block */
.post_featured .post_nav_item .post_nav_info {
	display:block;
	height:60px;
	width:auto;
	float: left;
	padding: 0 25px;
	margin-left:-300px;
	overflow: hidden;
	max-width:160px;
	background-color: rgba(255,255,255, 0.8);
	line-height:1.5em;
}
.post_featured .post_nav_next .post_nav_info {
	float:right;
	margin-left: 0;
	margin-right: -300px;
}
.post_featured .post_nav .post_nav_info_title {
	display:block;
	padding-top: 8px;
	line-height:1.2857em;
}
.post_featured .post_nav .post_nav_info_description {
	font-size: 0.75em;
	line-height:1.5em;
}

.post_featured .post_nav_prev:hover .post_nav_info {
	margin-left: -6px;
}
.post_featured .post_nav_next:hover .post_nav_info {
	margin-right: -6px;
}

.post_featured .post_nav_item .post_nav_info {
	-webkit-transition: all 0.6s ease-out;
	   -moz-transition: all 0.6s ease-out;
	    -ms-transition: all 0.6s ease-out;
	     -o-transition: all 0.6s ease-out;
	        transition: all 0.6s ease-out;
     -webkit-transition-delay: 0.15s;
          -o-transition-delay: 0.15s;
        -moz-transition-delay: 0.15s;
             transition-delay: 0.15s;
}
.post_featured .post_nav_item:before {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
}


/* 8.2 Reviews block
-------------------------------------------------------------- */

.reviews_block { 
	width: 270px;
	overflow: hidden;
}
.widget_area .reviews_block { 
	width: 100%;
}
.reviews_block .sc_tabs_content {
	overflow:hidden;
	border: 1px solid #f4f7f9;
}
.widget_area .reviews_block .sc_tabs_content {
	border:none;
}
.reviews_block.sc_tabs.sc_tabs_style_2 .sc_tabs_content {
	padding:0;
}
.reviews_block.sc_tabs .sc_tabs_titles li {
	font-size:0.875em;
}
.reviews_block.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
	padding: 0.25em 0.5em;
}
.reviews_block .reviews_editor {
	padding:1em;
}
.widget_area .reviews_block .reviews_editor {
	padding:0 0 1em 0;
}
.reviews_block .reviews_accept {
	padding-top:0.5em;
	padding-bottom:1.5em;
	text-align:center;
	display:none;
}
.reviews_block .reviews_item { 
	white-space:nowrap;
	padding:0.3em 0;
}
.reviews_block .reviews_criteria,
.reviews_block .reviews_stars { 
	display: inline-block;
	vertical-align:top;
}
.reviews_block .reviews_criteria {
	width:40%;
	white-space:normal;
}
.reviews_block .reviews_max_level_100 .reviews_criteria {
	height:1.7857em;
	line-height:1.7857em;
	font-size:0.875em;
}
.reviews_block .reviews_stars {
	width: 60%;
	white-space:nowrap;
	position:relative;
}
.reviews_block .reviews_value {
	display:inline-block;
	vertical-align:top;
	width:10%;
	text-align:right;
	font-size:0.875em;
	line-height:1.5em;
	position:absolute;
	top: 0;
	right:3px;
}
.reviews_block .reviews_max_level_100 .reviews_value {
	width:17%;
}
.widget_area .reviews_block .reviews_max_level_100 .reviews_value {
	width:25%;
}
.reviews_block .reviews_stars_wrap {
	display:inline-block;
	vertical-align:top;
	position:relative;
}
.reviews_block .reviews_max_level_100 .reviews_stars_wrap {
	width: 80%;
}
.widget_area .reviews_block .reviews_max_level_100 .reviews_stars_wrap {
	width: 70%;
}
.reviews_block .reviews_editable .reviews_criteria,
.reviews_block .reviews_editable .reviews_stars_wrap {
	cursor: pointer;
}
.reviews_block .reviews_stars_hover {
	position:absolute;
	left:0;
	top:0;
	white-space:nowrap;
	overflow:hidden;
}
.reviews_block .reviews_max_level_100 .reviews_stars_bg {
	background-color: #f4f7f9;
	height:1.5625em;
}
.reviews_block .reviews_max_level_100 .reviews_stars_hover {
	background-color: #666666;
	height:1.5625em;
}
.reviews_block .reviews_slider {
	display:none;
	background-color: #666666;
	height: 6px;
	width: 8px;
	position: absolute;
	bottom: 4px;
	left: 0;
	-webkit-box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.2);
	        box-shadow: -1px 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.reviews_block .reviews_editable .reviews_max_level_100  .reviews_slider {
	display:block;
}
.reviews_block .reviews_max_level_100 .reviews_slider {
	bottom: -10px;
}
.reviews_block .reviews_slider:before {
	content: ' ';
	display: block;
	height: 7px;
	width: 7px;
	background-color: inherit;
	margin: -3px 0 0 0;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
			transform: rotate(45deg);
}

.reviews_star {
	display: inline-block;
	margin: 0;
	padding: 0; 
	font-size: 1.125em;
	vertical-align: top; 
} 
.reviews_max_level_10 .reviews_star {
	font-size: 0.875em;
} 
.reviews_star:before {
	content: '\e8c8';
	font-family: "fontello";
	font-size:inherit;
	display: inline-block;
	vertical-align:top;
	text-align: center;
}
.reviews_stars_hover .reviews_star:before {
	content: '\e820';
}

.reviews_block .reviews_max_level_100 .reviews_value:after {
	content: '%';
}

/* Summary */
.reviews_block .reviews_summary {
	background-color: #f4f7f9;
	overflow:hidden;
}
.reviews_block .reviews_summary .reviews_item {
	height: 7.375em;
	padding:0;
	overflow:hidden;
	background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/rating_summary_bg.png);
	background-position:right top;
	background-repeat:no-repeat;
	background-size:100% 100%;
}
.reviews_block .reviews_summary .reviews_stars_wrap {
	display:none;
}

.reviews_block .reviews_summary .reviews_criteria {
	position:static;
	display:block;
	float:left;
	padding: 1.15em 1.15em 0;
	width:53.8462%;	
	height:6.1428em;
	color:#222222;
	font-size:0.875em;
	line-height:1.5em;
	overflow:hidden;
}
.widget_area .reviews_block .reviews_summary .reviews_criteria {
	width:40%;
	height:8em;
	padding: 0.85em 0.85em 0;
	font-size:0.75em;
	line-height:1.2857em;
}
.reviews_block .reviews_summary .reviews_stars {
	float:right;
	width: 30.7692%;	
	height:7.375em;
	position:relative;
	overflow:hidden;
}
.widget_area .reviews_block .reviews_summary .reviews_stars {
	width: 40%;
}
.reviews_block .reviews_summary .reviews_value {
	top:0;
	width:100%;
	height:2.3em;
	line-height:2.3em;
	font-size:3em;
	font-weight:300;
	color:#ffffff;
	text-align:right;
}
.widget_area .reviews_block .reviews_summary .reviews_value {
	width:100%;
	font-size:2.25em;
	line-height:3em;
	padding-right:5px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Summary stars in the post item (under the title) */
.post_rating {
	margin-bottom:6px;
	overflow:hidden;
}
.post_rating .reviews_stars_wrap {
	white-space:nowrap;
}
.post_rating .reviews_stars_wrap {
	position:relative;
	height:1em;
	display:inline-block;
	vertical-align:top;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.post_rating .reviews_value {
	display:inline-block;
	vertical-align:top;
	font-size:0.875em;
	font-weight:400;
	margin-left:0.5em;
}
.post_rating .reviews_stars_bg,
.post_rating .reviews_stars_hover {
	white-space:nowrap;
	overflow:hidden;
}
.post_rating .reviews_stars_hover {
	position:absolute;
	left:0;
	top:0;
}



/* 8.3 Post author
------------------------------------------------------ */

.post_author {
	margin-bottom:5.6em;
	padding:3.25em 3.85em 3.1em 3.5em;
	overflow:hidden;
    border-radius: 2em;

}
.post_author_inner{
    border-bottom: 1px solid;
    margin-bottom: 5em;
}
.article_style_boxed.single .post_author {
	margin-top: 2em;
}
.post_author .post_author_avatar {
	float:left;
	margin: 0 21px 10px 0;
	overflow:hidden;
	width: 100px;
	height:100px;
    border-radius: 100%;
}
.post_author .post_author_title {
	margin-top:0.25em;
    text-transform: capitalize;
    margin-bottom: 0.6em;
}

.post_author .post_author_info {
	overflow:hidden;
}
.post_author .post_author_info p {
	margin:0;
}
.post_author .post_author_info p+p {
	margin-top:0.5em;
}
.post_author .post_author_info .sc_socials {
	margin-top: 0.5em;
	display:block;
}
.post_author .post_author_info a{
    display: block;
    margin-top: 1.1em;
}

/* 8.4 Comments
-------------------------------------------------------- */
.comments_wrap {
	margin-top: 3em;
	clear: both;
}
.body_style_fullscreen .comments_wrap {
	margin-bottom: 3em;
}
.comments_list_wrap ul.children,
.comments_list_wrap ul > li + li {
    padding-top: 2.6em;
    margin-top: 2.25em;
	border-top-width: 1px;
	border-top-style: solid;
}
.comments_wrap .comment-respond {
	padding-bottom:4px;
}
.comments_list_wrap .comment-respond {
	padding-bottom: 1.25em;
	margin-bottom: 1.25em;
	border-bottom-width: 2px;
	border-bottom-style: solid;
}
.comments_list_wrap > ul {
	padding-bottom: 3.65em !important;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.comments_list_wrap ul > li + li > .comment_author_avatar {
	top: 1.5em;
} 
#cancel-comment-reply-link{
	display: block;
}


/* Trackbacks and pingbacks */
.comments_list > li.trackback,
.comments_list > li.pingback{
	list-style:none;
	margin-left:0;
	padding-left:0;
	padding-right:4em;
	min-height: 0;
	position:relative;
}
.comments_list > li.trackback p,
.comments_list > li.pingback p{
	font-style:italic;
	padding-bottom:0.8em;
}
.comments_list > li.trackback p a,
.comments_list > li.pingback p a{ font-style:normal; }
.comments_list > li.trackback .edit-link,
.comments_list > li.pingback .edit-link{
	position:absolute;
	right:0;
	top: 0;
}
.comments_list > li+li.trackback .edit-link,
.comments_list > li+li.pingback .edit-link{
	margin-top: 2.6em;
}

/* Comment list */
.comments_list_wrap .comments_closed {
	margin-top:2em;
	color:#222222;
}
.comments_list_wrap .comments_list_title {
	margin-top:0;
    margin-bottom: 1.4em;
}
.comments_list_wrap > ul {
	padding:0;
	margin:0;
	list-style: none;
}
.comments_list_wrap ul > li {
	overflow:hidden;
	position:relative;
	min-height:5em;
}
.comments_list_wrap ul > li:before {
	display:none;
}
.comments_list_wrap ul ul {
	margin-left:105px;			/* This way for more short border under previous item */
}
.comments_list_wrap ul ul ul ul{
	margin-left:0;
}

.comments_list_wrap .comment_author_avatar {
	position: absolute;
	left:0;
	top: 0.25em;
	z-index:1;
	width:100px;
	height:100px;

}
.comments_list_wrap .comment_author{
    display: block;
    font-size:1.305em ;
    font-weight: 600;
    margin-top: -0.3em;
    margin-bottom: -0.4em;
}
.comments_list_wrap .comment_author_avatar img {
    border-radius: 2em;
}
.comments_list_wrap .comment_content {
	padding-left:130px;
}

.comments_list_wrap .comment_info {
	font-size:0.875em;
	margin-bottom:0.95em;
}
.comments_list_wrap .comment_info .comment_date + span:before {
	content: "|";
	display:inline-block;
	margin: 0 0.8em;
}
.comments_list_wrap .comment_info .comment_date_label {
	font-style:italic;
}

.comments_list_wrap .comment_not_approved {
	padding: 0 0 0.5em 0;
	font-style:italic;
	font-weight:300;
}

.comments_list_wrap .comment_text {
	margin-bottom:0.9em;
	color:#222222;
}
.comments_list_wrap .comment_text p {
	margin:0;
}
.comments_list_wrap .comment_text p+p {
	margin-top: 0.5em;
}
.comments_list_wrap .comment_text ul {
	margin:0;
	padding: 0 0 0 1.5em;
	list-style:outside;
}
.comments_list_wrap .comment_text ul > li > ul {
	margin-top: 0.5em;
}
.comments_list_wrap .comment_text ul > li {
	min-height:0;
	border:none;
	padding:0;
	margin:0 0 0.5em 0;
	overflow:visible;
}

.comments_list_wrap .comment_reply a {
	font-size:1em;
}
.comments_list_wrap .comment_reply a:before {
	content:'\e802';
	font-family: fontello;
	margin-right:0.5em;
}


/* Comments form */
.comments_wrap .comment-reply-title {
	display:none;
}
.comments_wrap .comments_list_wrap .comment-reply-title {
	display:block;
}

.comments_wrap .comments_notes {
	font-size:0.875em;
	color:#909090;
}
.comments_wrap .comments_field  {
	margin-bottom:20px;
}
.comments_wrap .comments_field input,
.comments_wrap .comments_field textarea {
	width:100%;
	padding:0.75em 1em;
}
.comments_wrap .comments_author,
.comments_wrap .comments_email {
	width: 48%;
	float:left;
}
.comments_wrap .comments_email {
	float:right;
}
.comments_wrap .comments_site {
	clear:both;
}

/* Submit button */
.comments_form_wrap {
	padding-bottom:4px;		/* To show shadow under button */
}
.comments_wrap .form-submit { 
	text-align:left;
	margin:0;
	padding-left:4px;
}
.comments_wrap .form-submit input[type="submit"],
.comments_wrap .form-submit input[type="button"] {
	text-transform:capitalize;
}
.comments_wrap .section_title.comments_form_title{
    margin-top: 2.05em;
}
.comments_wrap .comments_form .form-submit{
    margin-top: 3em;
}

.comments_list_wrap .comment_text ul {
	list-style-type: disc;
}

.comments_list_wrap .comment_text ul ul{
	list-style-type: circle;
}

.comments_list_wrap .comment_text ul ul ul{
	list-style-type: square;
}

input[type="submit"]:not([class*="sc_button_hover_"]):hover,
input[type="reset"]:not([class*="sc_button_hover_"]):hover,
input[type="button"]:not([class*="sc_button_hover_"]):hover,
button:not([class*="sc_button_hover_"]):hover,
.sc_button.sc_button_style_filled:not([class*="sc_button_hover_"]):hover {
	background-position: 100%;
}


/* 8.5 Page 404
-------------------------------------------------------------- */
.article_style_boxed .post_item_404 {
	padding:1px 0;
}
.post_item_404 .page_title,
.post_item_404 .page_subtitle,
.post_item_404 .page_description,
.post_item_404 .page_search {
	text-align:center;
}
.post_item_404 .page_title {
	font-size: 6em;
	line-height:1em;
	margin-bottom: 0;
	margin-top:0.45em;
}
.post_item_404 .page_subtitle {
	font-size: 2em;
	line-height:1em;
	margin-bottom: 0.8125em;
	margin-top: 0.5em;
}
.post_item_404 .page_description {
	margin-bottom: 2em;
	color:#222222;
}
.post_item_404 .page_search {
	margin-bottom:3em
}
.post_item_404 .page_search .search_wrap {
	max-width:33%;
	margin:0 auto;
}

.post_item_404 .page_search .search_wrap .search_field{
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
	width: 100%;
}

.post_item_404 .page_search .search_wrap .search_submit{
	position: absolute;
	top: 0;
	left: 1em;
}

.post_item_404 .search_submit{
    width: 0;
}



/* 8.8 Team member
-------------------------------------------------------------- */

/* Share block */

.post_item_single_team .post_info_share_horizontal {
	margin:2em 0;
}
.post_item_single_team .single_team_post_featured {
	float: left;
	width: 51%;
	padding: 0 3em 2em 0;
	margin:0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	        box-sizing: border-box;
}
.post_item_single_team.post_featured_right .single_team_post_featured {
	float: left;
	padding: 0 3.9em 2em 0;
}
.post_item_single_team.post_featured_right .single_team_post_featured .post_thumb a img{
    border-radius: 2em;
}

.post_item_single_team .single_team_post_featured .socials_single_team {
	text-align: center;
	margin-top: 2em;
}
.post_item_single_team .single_team_post_description .team_title {
	margin: 0;
}
.post_item_single_team .single_team_post_description .team_position {
	margin: 0.2em 0 0 0;
}
.post_item_single_team .single_team_post_description .team_meta {
	margin-top: 1.6em;
}
.post_item_single_team .single_team_post_description .team_meta p {
	margin:0;
}
.post_item_single_team .single_team_post_description .team_brief_info {
	margin-top: 1.6em;
}
.post_item_single_team .single_team_post_description .team_brief_info_title {
	margin:0 0 0.3em;
}

.post_item_single_team .single_team_post_description .team_brief_info_text p {
	margin:0 0 5.2em;
}.post_item_single_team .single_team_post_description .team_brief_info_text p:after {
	width: 49%;
    content: '';
    height: 1px;
    display: block;
    position: relative;
    right: 0;
    top:2.3em;
    left: 100%;
     -webkit-transform:translateX(-100%);
     -moz-transform:translateX(-100%);
     -ms-transform:translateX(-100%);
     transform:translateX(-100%);

}
.single-team .page_content_wrap {
    padding-top: 10em;
}
.post_item_single_team .single_team_post_description .team_meta p.single_team_phone{
    margin-bottom: 0.4em;
}
.post_item_single_team .single_team_post_description .socials_single_team .sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_tiny a {
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
    margin-right: 0.5em;
}
.post_item_single_team .single_team_post_description{
    margin-bottom: 9.2em;
}

/* 9. Sidebars
-------------------------------------------------------------- */

/* Sidebar outer */
.sidebar_outer_logo_wrap {
	overflow:hidden;
}
.sidebar_outer_logo {
	padding: 1em 0;
}
.sidebar_outer_socials {
	padding: 1em 1em 1em 0;
}

/* Side menu */
.sidebar_outer_menu {
	position:relative;
	padding-top: 1em;
	min-height:2em;
}
.sidebar_outer_menu_buttons {
	position:absolute;
	right:0;
	top:0;
	display:none;
	padding-top:1.25em;
}
.sidebar_outer_menu_buttons a {
	display:inline-block;
	text-align:center;
}
.sidebar_outer_menu_buttons a.sidebar_outer_widgets_button {
	font-size:1.25em;
	width:1.5em;
	height:1.5em;
	line-height:1.5em;
	margin-left:0.5em;
}
.sidebar_outer_menu_buttons a.sidebar_outer_menu_responsive_button {
	display:none;
	font-size:1.5em;
	line-height:1.5em;
	position:relative;
}
.sidebar_outer_menu_buttons a.sidebar_outer_menu_responsive_button:before {
	display:block;
	width:1em;
	height: 1em;
	position:absolute;
	right:0;
	top:0;
}

.sidebar_outer_menu ul {
	margin:0;
	padding:0;
	list-style-type:none;
}
.sidebar_outer_menu ul li {
	position:relative;
	margin-bottom: 0;
	padding-left:0 !important;
}
.sidebar_outer_menu li:before {
	display:none;
}

.sidebar_outer_menu li li > a {
	position:relative;
	display:block;
	padding:0.5em 1.5em;
}

.menu_side_nav {
	display:none;
}
.menu_side_nav > li > a {
	display:block;
	padding: 0.5em;
}
.menu_side_nav > li ul {
	position:absolute;
	border: 1px solid #ddd;
	width:220px;
	padding: 0;
	display:none;
	z-index:100000;
}
.menu_side_nav > li > ul {
	left:251px;
	top:-0.5em;
}
.sidebar_outer_right .menu_side_nav > li > ul {
	left:-263px;
}
.menu_side_nav > li > ul ul {
	left:222px;
	top:-0.5em;
}
.sidebar_outer_right .menu_side_nav > li > ul ul {
	left:-224px;
}
.menu_side_nav > li > ul ul.submenu_left {
	left:-221px;
}
.menu_side_nav > li.menu-item-has-children > a {
	padding-right:2em;
}
.menu_side_nav > li.menu-item-has-children > a:after {
	content: '\e836';
	font-family: 'fontello';
	position:absolute;
	right:10px;
	top:50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.sidebar_outer_menu li li.menu-item-has-children > a:after {
	content: '\e836';
	font-family: 'fontello';
	position:absolute;
	right:8px;
	top:50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.menu_side_nav li a:before {
	margin-right:0.5em;
}

/* Responsive side menu */
.menu_side_responsive,
.menu_side_responsive ul {
	display:none;
}
.sidebar_outer_menu .menu_side_responsive {
	padding-top:2em;
}
.menu_mobile .menu_side_nav {
	display:none !important;
}
.menu_mobile .sidebar_outer_menu_buttons {
	left:0;
	padding-right:3em;
	padding-top:0.5em;
}
.menu_mobile .sidebar_outer_menu_buttons a.sidebar_outer_menu_responsive_button {
	display:block;
}
.menu_mobile .sidebar_outer_menu_buttons a.sidebar_outer_widgets_button {
	position:absolute;
	right:0;
	top:0.5em;
}
.sidebar_outer_menu .menu_side_responsive ul {
	margin-top: 0;
}
.sidebar_outer_menu .menu_side_responsive li {
	margin:0;
	padding: 0 0 0 1.5em !important;
}
.sidebar_outer_menu .menu_side_responsive li > a {
	display:block;
	padding: 0.5em;
	position:relative;
}
.menu_side_responsive > li.menu-item-has-children > a:after,
.menu_side_responsive li li.menu-item-has-children > a:after {
	content: '\e828';
	font-family: 'fontello';
	position:absolute;
	right:10px;
	top:50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.menu_side_responsive > li.menu-item-has-children.opened > a:after,
.menu_side_responsive li li.menu-item-has-children.opened > a:after {
	content: '\e835';
}


/* Common rules */
.sidebar_outer aside,
.sidebar aside+aside {
    margin-top: 4.1em;
    padding-top: 4.1em;
	border-top: 1px solid #dfe5ea;
}
.sidebar_inner.widget_area_inner {
    border-radius: 2em;
}
.footer_wrap_inner.widget_area_inner .content_wrap {
    border-bottom: 1px solid;
}
.widget_area .widget_title {
    font-size: 1.1428em;
    text-transform: uppercase;
	margin-top:0;
	margin-bottom:1.8em;
}
.widget_area ul {
	list-style-type:none;
	margin-bottom:0;
	padding-left:0;
}
.widget_area ul ul {
	margin-top:0.5em;
}
.widget_area ul li {
	position:relative;
	padding-left:1.25em;
    margin-bottom: 0.35em;
}
.widget_area ul li:before {
	content: '\e83c';
	font-family: 'fontello';
	position:absolute;
	left:1px;
	top:0;
}
.widget_area_inner ul li:before {
	font-size:1.3em;
}

/* Tabs in widgets */
.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li {
	font-size:0.875em;
}
.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li+li {
	margin-left: 1em;
}
.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
	padding:2px 10px;
}
.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_content {
	padding:10px 0 0 0;
	border: none;
}
.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_content {
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;	
}


/* Widget: Search */
.widget_area .widget_product_search .search_form,
.widget_area .widget_search .search_form,
.widget_area_inner .widget_categories form,
.widget_area_inner .widget_archive select,
.widget_area_inner .widget_text select,
.wp-block-archives select,
.wp-block-categories select{
	position:relative;
	overflow:hidden;
    border-radius: 4em;
}
.widget_area .widget_product_search .search_button,
.widget_area .widget_search .search_button {
	text-align:center;
	border:none;
	background:none;
}
.widget_area_inner .widget_product_search .search_field,
.widget_area_inner .widget_search .search_field,
.widget_area_inner .widget_categories select,
.widget_area_inner .widget_archive select,
.widget_area_inner .widget_text select,
.wp-block-archives select,
.wp-block-categories select{
	padding-right:45px;
	padding-left:30px;
	background:none;
	border:none;
	width: 100%;
	height: 4em;
	line-height: 2.5em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.widget_area_inner .widget_categories select,
.widget_area_inner .widget_archive select,
.widget_area_inner .widget_text select,
.wp-block-archives select,
.wp-block-categories select{
    background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/select.png) no-repeat;
    background-position: 87%;
}
.wp-block-archives select,
.wp-block-categories select{
	background-position: 95%;
}
.widget_area .widget_product_search .search_button:before,
.widget_area .widget_search .search_button:before{
    font-size: 0.8em;
    font-weight: 100;
}
.widget_area_inner .widget_product_search .search_button,
.widget_area_inner .widget_search .search_button {
	position:absolute;
    right: 15px;
    top: 9px;
	padding:0;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}
.widget_area_inner .widget_product_search .search_button:hover,
.widget_area_inner .widget_search .search_button:hover{
    background-color: transparent;
}
.search_form button.search_submit{
    background: transparent;
}

/* Widget: Calendar */
.wp-block-calendar table,
.widget_area .widget_calendar table {
	width: 100%;
}
.wp-block-calendar .weekday,
.widget_area .widget_calendar .weekday {
	font-size:0.6875em;
	text-transform:uppercase;
}
.wp-block-calendar td .day_wrap,
.widget_area .widget_calendar td .day_wrap {
	display:block;
	position:relative;
    padding: 1px 0px;
    margin-left: 3px;
    margin-right: 3px;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
    z-index: 1;
}
.wp-block-calendar td .day_wrap:before,
.widget_area .widget_calendar td .day_wrap:before{
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    content: "";
    height: 30px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 30px;
    z-index: -1;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);

}
.wp-block-calendar td a:after,
.widget_area .widget_calendar td a:after {
	font-family:'fontello';
	content: '\e83c';
	position:absolute;
	left:48%;
	bottom:-10px;
}

.wp-block-calendar th,
.wp-block-calendar td,
.wp-block-calendar tbody td,
.widget_area .widget_calendar th,
.widget_area .widget_calendar td {
	font-weight:400;
	text-align:center;
	border-width:0;
	padding:0;
}
.wp-block-calendar th,
.widget_area .widget_calendar th {
	padding:0 4px;
}
.wp-block-calendar th.month_cur{
	text-align: center;
}
.widget_area .widget_calendar th.month_cur{
    text-align: left;
}
.wp-block-calendar td,
.widget_area .widget_calendar td {
	font-size:0.875em;
	padding:0;
}

.wp-block-calendar .month_prev a,
.wp-block-calendar .month_next a,
.widget_area .widget_calendar .month_prev a,
.widget_area .widget_calendar .month_next a {
	display:block;
}
.wp-block-calendar .month_prev a:before,
.wp-block-calendar .month_next a:before,
.widget_area .widget_calendar .month_prev a:before,
.widget_area .widget_calendar .month_next a:before {
	font-family: 'fontello';
}
.wp-block-calendar .month_prev a:before,
.widget_area .widget_calendar .month_prev a:before {
	content: '\e837';
}
.wp-block-calendar .month_next a:before,
.widget_area .widget_calendar .month_next a:before {
	content: '\e836';
}
.wp-block-calendar table tr,
.wp-block-calendar table th,
.widget_area .widget_calendar table tr {
    background: transparent!important;
}

.wp-block-calendar a{
	text-decoration: none;
}



/* Widget: RSS */
.widget_area .widget_rss .widget_title a {
	display:inline-block;
	margin-right:6px;
}
.widget_area .widget_rss .widget_title img {
	vertical-align:baseline;
}
.widget_area .widget_rss {
	color: #222222;
}
.widget_area .widget_rss li {
	font-size:0.875em;
}
.widget_area .widget_rss li > a {
	font-size:1.1428em;
}
/* Widget: Tag Cloud */
.widget_area .widget_recent_comments ul li:before{
    display: none;
}
.widget_area .widget_recent_comments ul li{
    padding-left: 0;
}

/* Widget: Tag Cloud */
.wp-block-tag-cloud,
.widget_area .widget_product_tag_cloud,
.widget_area .widget_tag_cloud {
	overflow:hidden;
}
.wp-block-tag-cloud a,
.widget_area .widget_product_tag_cloud a,
.widget_area .widget_tag_cloud a {
    display: block;
    float: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding:5px 10px;
    line-height: 2.4em;
    border-radius: 3px;
    font-weight: 700;
    margin: 0 2px 4px 0;
    font-size: 0.7em !important;

}

/* Widget: AirSupply Banner */
.widget_area .widget_banner .image_wrap {
	overflow:hidden;
	display:block;
	margin-bottom:1em;
}
.sc_content .widget_area .widget_banner .widget_title {
    font-size: 3.4285em;
    font-weight: 600;
    line-height: 1.3em;
    text-transform: capitalize;
    margin-bottom: 1em;
}
.sc_content .widget_area.banner_about{
    margin-top: 3.5em;
}


/* Widget: AirSupply Flickr */
.widget_area .widget_flickr {
	overflow:hidden;
}
.widget_area .widget_flickr .flickr_images {
	margin-right:-5px;
}
.widget_area .widget_flickr .flickr_badge_image {
	float:left;
	margin:0 5px 5px 0;
	overflow:hidden;
	width:31%;
	height:auto;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.widget_area .widget_flickr .flickr_badge_image img {
	width: 100%;
}


/* Widget: AirSupply Logo and Socials */
.widget_area .widget_socials .sc_socials {
	margin-top:1em;
}
.widget_socials .logo img {
    margin-bottom: 2.1em;
}
.widget_socials .logo_descr{
    line-height: 1.75em;
}
.widget_socials .logo_descr .widgets_logo_img{
    margin-top: 0.5em;
    margin-left: 0;
}
.widget_socials .logo_descr .widgets_logo_img + .widgets_logo_img {
    margin-left: 1.2em;
}

/* Widget: AirSupply Twitter */
.widget_area .widget_twitter ul li {
	padding-left:1.5em;
}
.widget_area .widget_twitter ul li:before {
	content: '\e89a';
	font-size:1em;
	left:0;
}
/* Widget: Text */
.widget_text h5 {
    margin-top: 0;
    line-height: 1.4em;
    margin-bottom: 0.1em;
}

.widget_text .mail_footer:before{
    font-family: 'fontello';
    content: '\e818';
    display: inline-block;
    font-size: 1.3em;
    margin-right: 0.55em;
}
.widget_text .address_footer:before{
    font-family: 'fontello';
    content: '\e848';
    display: inline-block;
    font-size: 1.3em;
    margin-right: 0.55em;
}
.widget_text .mail_footer{
    margin-bottom: 2.85em;
}
.widget_text .mail_footer, .widget_text .address_footer{
    margin-top: 0.95em;
}


/* 10. Footer areas
-------------------------------------------------------------- */

/* pre footer area*/
.pre_footer_wrap{
    padding-top: 4.1em;
    padding-bottom: 2.75em;
}
.pre_footer_wrap .sc_socials{
    margin-top: -0.25em;
}

/* Footer widgets */
.footer_wrap_inner {
	padding: 6.85em 0 0;
}
.footer_wrap aside {
	margin-bottom:6.8em;
}


/* Contacts */
.contacts_wrap_inner {
	padding:3.9em 0 2.25em;
	text-align:center;
}
.contacts_wrap .logo {
	text-align:center;
	margin-bottom: 2em;
}
.contacts_wrap .logo .logo_text {
	font-size:2em;
}
.contacts_wrap .logo img {
	vertical-align:middle;
	display:inline-block;
}
.contacts_wrap .contacts_address {
	overflow:hidden;
	font-size:0.875em;
	margin-bottom:1.5em;
}
.contacts_wrap .contacts_address .address_left {
	width:48%;
	text-align:right;
	float:left;
}
.contacts_wrap .contacts_address .address_right {
	width:48%;
	text-align:left;
	float:right;
}


/* Testimonials and Twitter area */
.testimonials_wrap.sc_section,
.twitter_wrap.sc_section {
	padding: 0;
}
.testimonials_wrap_inner,
.twitter_wrap_inner {
	background-repeat:no-repeat;
	background-position:center top;
}
footer.testimonials_wrap .sc_section_overlay,
footer.twitter_wrap .sc_section_overlay {
	padding: 3em 0;
}


/* Copyright area */
.copyright_wrap_inner {
	padding: 2.5em 0 2em;
	overflow:hidden;

}
.copyright_wrap p {
	margin:0;
}
.copyright_style_text {
	text-align:center;
}
.copyright_style_menu .copyright_text,
.copyright_style_socials .copyright_text {
	float:left;
}
.copyright_style_socials .sc_socials,
.copyright_style_menu .menu_footer_nav {
	float:right;
}
.copyright_style_socials .copyright_wrap_inner {
	padding-bottom: 1.5em;
}
.copyright_style_menu .menu_footer_nav {
	margin:0;
	padding:0;
	list-style:none;
	text-align:right;
}
.menu_mobile .copyright_style_socials .copyright_text,
.menu_mobile .copyright_style_menu .copyright_text,
.menu_mobile .copyright_wrap .sc_socials,
.menu_mobile .menu_footer_nav {
	float: none;
	text-align:center;
}
.menu_mobile .copyright_style_socials .copyright_text,
.menu_mobile .copyright_style_menu .copyright_text {
	margin-top:1em;
}
.menu_mobile .copyright_wrap .sc_socials {
	display:block;
}

.copyright_style_menu .menu_footer_nav li {
	display:inline-block;
	margin-bottom:0;
}
.copyright_style_menu .menu_footer_nav li+li:before {
	content:'|';
	display:inline-block;
	margin:0 0.5em;
}
.copyright_wrap_inner .copyright_text {
    font-size: 0.8571em;
}


/* 11. Utils
-------------------------------------------------------------- */

/* Table of contents */
#toc {
	position:fixed;
	z-index:999;
	top: 0;
	bottom:0;
	right: 0;
	width: 60px;
}
#toc a { color: #ffffff; }
#toc.toc_no { display:none; }
#toc .toc_inner {
	position:absolute;
	top: 50%;
	right: -60px;
	-webkit-transform:translateY(-50%);
	   -moz-transform:translateY(-50%);
	        transform:translateY(-50%);
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out; 
}
#toc.toc_fixed .toc_inner,
#toc:hover .toc_inner {
	right:0;
}
#toc .toc_item {
	position:relative;
	width:57px;
	height:60px;
	border-right:3px solid rgba(0,0,0,0.8);
	background-color:rgba(0,0,0,0.8);
}
#toc .toc_item.toc_separator {
	margin-bottom: 1px;
}
#toc .toc_item.current,
#toc .toc_item:hover {
	background-color:rgba(128,128,128,0.8);
}
#toc .toc_icon {
	position:absolute;
	display:block;
	z-index:2;
	top:0;
	left:0;
	width:57px;
	height: 60px;
	line-height:60px;
	text-align:center;
}
#toc .toc_icon.with_title {
	line-height:40px;
}
#toc .toc_icon:before {
	font-size:inherit;
	color:inherit;
	margin:0;
	padding:0;
}
#toc .toc_title {
	position:absolute;
	bottom:6px;
	left:0;
	display:block;
	width: 57px;
	line-height:12px;
	font-size:12px;
}
#toc .toc_description {
	position:absolute;
	top:0;
	right:-300px;
	width:240px;
	height:30px;
	padding: 1em;
	font-size: 0.875em;
	line-height:1.2em;
	z-index:1;
	background-color:rgba(128,128,128,0.8);
	color: #ffffff;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out; 
}
#toc .toc_item:hover .toc_description {
	right:68px;
	opacity: 1;
	filter: alpha(opacity=100);
}
#toc .toc_description:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color:transparent;
	border-left-color: rgba(128,128,128,0.8);
	border-width: 8px;
	margin-top: -8px; 
}


/* Hovers for images and videos */
.hover_icon {
	position:relative;
	display:block;
}
.hover_icon:before {
	font-family:'fontello';
	font-size:1.8em;
	cursor:pointer;
	display:block;
    width: 3em;
    height: 3em;
    line-height: 3em;
	text-align:center;
	position:absolute;
	z-index:10;
	left:50%;
	top:50%;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.3, 0.3);
	   -moz-transform: translateX(-50%) translateY(-50%) scale(0.3, 0.3);
	    -ms-transform: translateX(-50%) translateY(-50%) scale(0.3, 0.3);
	        transform: translateX(-50%) translateY(-50%) scale(0.3, 0.3);
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
	-webkit-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	   -moz-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	    -ms-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	     -o-transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	        transition: all .3s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
	opacity: 0;
	filter: alpha(opacity=0);
}
.hover_icon:hover:before {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1);
	   -moz-transform: translateX(-50%) translateY(-50%) scale(1, 1);
	    -ms-transform: translateX(-50%) translateY(-50%) scale(1, 1);
	        transform: translateX(-50%) translateY(-50%) scale(1, 1);
	-webkit-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	   -moz-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	    -ms-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	     -o-transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
	        transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1ms;
}
.hover_icon_play:before {
	content:'\e90a';
}
.hover_icon_link:before {
	content:'\e8b5';
}
.hover_icon_zoom:before {
	content:'\e807';
}
.hover_icon_view:before {
	content:'\e843';
}
.hover_icon:after {
	content: ' ';
	position: absolute;
	z-index:1;
	top:0;
	left:0;
	bottom:0;
	right:0;
	background-color: rgba(0,0,0,0.3);
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	   -moz-transition: opacity .3s ease;
	    -ms-transition: opacity .3s ease;
	     -o-transition: opacity .3s ease;
	        transition: opacity .3s ease;
    border-radius: 2em;
}
.hover_icon:hover:after {
	opacity: 1;
}


/* Scroll to top */
.scroll_to_top {
	position: fixed !important;
	z-index: 100001 !important;
	display:block;
	width: 3.5em;
	height:  3.5em;
	line-height:  3.5em;
	text-align:center;
	bottom: -4em;
	right: 2em;
	background: #fff;
	border:none;
	cursor: pointer;
	-webkit-transition: all ease 0.5s;
	   -moz-transition: all ease 0.5s;
	    -ms-transition: all ease 0.5s;
	     -o-transition: all ease 0.5s;
	        transition: all ease 0.5s;
	filter: alpha(opacity=0);
    border-radius: 50%;
	opacity: 0;
}
.scroll_to_top.show {
	filter: alpha(opacity=100);
	opacity: 1;
	bottom: 2em;
}
.scroll_to_top:hover{
    background-position: 100%!important;
}
.scroll_to_top:before{
    left: 0;
    position: relative;
    top: -2px;
}

/* Debug window */
._debug_log {
	position:fixed;
	z-index:1000000;
	display:block !important;
	width:30%;
	line-height:1.3em;
	max-height:400px;
	right:0;
	top:0;
	background:rgba(0,0,0,0.8);
	color:#ffffff;
	overflow:auto;
	padding:14px;
	-webkit-box-sizing:border-box;
			box-sizing:border-box;
}
.admin-bar ._debug_log { 
	top:32px; 
}
._debug_log .debug_log_close {
	position:absolute;
	right:0;
	top:0;
	width:20px;
	height:20px;
	line-height:20px;
	font-weight:bold;
	font-size:14px;
	text-align:center;
	cursor:pointer;
}

/* Customizer */
.custom_options #co_toggle {
	right: -2.5625em !important;
}

#update-nag, .update-nag {
	display:block;
}



/* Preloader */
#page_preloader {
	background-position:center;
	background-repeat:no-repeat;
	position:fixed;
	z-index:1000000;
	left:0; top:0; right:0; bottom:0;
	opacity: 0.8;
}
.preloader_wrap {
	position:absolute;
	display:inline-block;
	left:50%;
	top:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
		-ms-transform:translateX(-50%) translateY(-50%);
			transform:translateX(-50%) translateY(-50%);
}
.preloader_wrap > div {
	height: 10px;
	width: 10px;
}
/* Circle */
.preloader_wrap > div[class*="preloader_circ"] {
	margin-right:5px;
	border-radius: 50%;
	display: inline-block;
	-webkit-animation: preloader-circle 0.7s infinite ease-in-out;
			animation: preloader-circle 0.7s infinite ease-in-out;
}
.preloader_wrap > div.preloader_circ2 {
	-webkit-animation-delay: -0.6s;
			animation-delay: -0.6s;
}
.preloader_wrap > div.preloader_circ3 {
	-webkit-animation-delay: -0.5s;
			animation-delay: -0.5s;
}
.preloader_wrap > div.preloader_circ4 {
	-webkit-animation-delay: -0.4s;
			animation-delay: -0.4s;
}
.preloader_wrap > div.preloader_circ5 {
	-webkit-animation-delay: -0.3s;
			animation-delay: -0.3s;
}
@-webkit-keyframes preloader-circle {
	0%, 40%, 100% { -webkit-transform: translateY(-10px) }  
	20% { -webkit-transform: translateY(-20px) }
}

@keyframes preloader-circle {
	0%, 40%, 100% { 
				transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
	} 20% {
				transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
	}
}
/* Square */
.preloader_wrap .preloader_square {
	width: 50px;
	height: 50px;
}
.preloader_wrap > div.preloader_square1,
.preloader_wrap > div.preloader_square2 {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: preloader-square 1.8s infinite ease-in-out;
			animation: preloader-square 1.8s infinite ease-in-out;
}
.preloader_wrap > div.preloader_square2 {
	-webkit-animation-delay: -0.9s;
			animation-delay: -0.9s;
}
@-webkit-keyframes preloader-square {
	25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
	50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
	75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
	100% { -webkit-transform: rotate(-360deg) }
}
@keyframes preloader-square {
	25% { 
		transform: translateX(42px) rotate(-90deg) scale(0.5);
		-webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
	}
	50% { 
		transform: translateX(42px) translateY(42px) rotate(-179deg);
		-webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
	}
	50.1% { 
		transform: translateX(42px) translateY(42px) rotate(-180deg);
		-webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
	}
	75% { 
		transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
		-webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
	}
	100% { 
		transform: rotate(-360deg);
		-webkit-transform: rotate(-360deg);
	}
}




/* 12. Registration and Login popups
-------------------------------------------------------------- */

.popup_wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000000;
	width: 37.5em;
	padding: 3em 2.5em 2em;
	display:none;
	-webkit-box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);
			box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2);	
    color: initial;
	-webkit-transform: translateY(-50%) translateX(-50%);
	   -moz-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	        transform: translateY(-50%) translateX(-50%);
}
.popup_wrap.popup_half {
	width: 18em;
}
.popup_wrap input[type="text"],
.popup_wrap input[type="email"],
.popup_wrap input[type="password"] {
	font-size:1.1667em;
	line-height:1.5em;
	padding: 0.3em;
}
.popup_registration {
	right: -5.5em;
}
.popup_wrap a.forgot_password {
    font-weight:400;
    font-size: 14px;
    text-transform:none;
    letter-spacing:0;
}

.popup_wrap .popup_close {
	display:block;
	font-size:1.25em;
	line-height:1em;
	width: 1em;
	height:1em;
	position:absolute;
	right:0;
	top:0;
	margin:0.5em 0.5em 0 0;
	text-align:center;
	color: #cccccc;
	border: 2px solid #ebebeb;
	background-color:#f4f7f9;
}
.popup_wrap .popup_close:hover {
	color: #909090;
	border: 2px solid #cccccc;
	background-color:#ffffff;
}
.popup_wrap .popup_close:before {
	font-family:fontello;
    font-weight:400;
    color: #ccc;
	content:'\e8ac';
	line-height:1em;
	padding:0 !important;
	margin:0 !important;
}

.popup_wrap .form_wrap {
	position:relative;
	overflow:hidden;
}
.popup_wrap .form_wrap .result {
	position:absolute;
	z-index:10;
	left:50%;
	top:25%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
	-webkit-box-shadow: -4px 3px 5px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: -4px 3px 5px 0px rgba(0, 0, 0, 0.2);
			box-shadow: -4px 3px 5px 0px rgba(0, 0, 0, 0.2);	
}
.popup_wrap .form_wrap .result p {
	line-height:1.5em;
}
.popup_wrap .form_wrap .result a {
	color: #ffffff;
}
.popup_wrap .form_wrap .error_fields_class {
	border-color: #CC6868;
}
.popup_wrap .form_left {
	float: left;
	padding-right: 2.5em;
	width: 54%;
	border-right: 1px solid #e0e0e0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.popup_wrap .form_right {
	float: right;
	padding-left: 2.5em;
	width: 45%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.popup_wrap.popup_registration .form_left {
	width: 50%;
	padding-right: 5px;
	border-right: none;
}
.popup_wrap.popup_registration .form_right {
	width: 50%;
	padding-left: 5px;
}

.popup_wrap .popup_form_field {
	margin-bottom:0.625em;
}
.popup_wrap input[type="text"],
.popup_wrap input[type="email"],
.popup_wrap input[type="password"] {
	width:100%;
	border: 2px solid #ebebeb;
	background-color:#fafafa;
}
.popup_wrap input:not([type="submit"]):focus {
	background-color:#ffffff;
}
.popup_wrap .popup_form_field.iconed_field {
	position:relative;
}
.popup_wrap .popup_form_field.iconed_field:before {
	position:absolute;
	z-index:1;
	top:10px;
	right:8px;
	margin-right:0;
	color:#c9c9c9;
	width:1em;
}
.popup_wrap .popup_form_field.iconed_field input {
	padding-right:30px;
}

.popup_wrap .popup_form_field .forgot_password {
	float: right;
	line-height: 2em;
}

.popup_wrap .popup_form_field.submit_field {
	padding:1em 0 4px 4px;
}
.popup_wrap .popup_form_field .submit_button {
	width:100%;
}

.popup_wrap .login_socials_title {
	color:#222222;
	font-size:1.5em;
	line-height:1.2857em;
	margin-bottom:0.5em;
}
.popup_wrap .login_socials_problem {
	line-height:1.2857em;
}

.popup_wrap .popup_form_field.remember_field {
	margin-top: 1.2em;
}





/* 13. Third part plugins
------------------------------------------------------------------------------------ */


/* 13.1 Media player
------------------------------------------------------- */

.mejs-controls button:hover,
.mejs-controls button:active { background-color:transparent !important; }

.sc_audio .mejs-container, .sc_audio .mejs-embed, .sc_audio .mejs-embed body, .sc_audio .mejs-container .mejs-controls, .wp-audio-shortcode .mejs-controls{
	background: transparent !important;
}

.post_item .sc_audio_player{
	padding-top: 8px;
	margin-bottom: 1.5em;
}

.mejs-container .mejs-controls .mejs-button{
	margin: 3px 3px 3px 0;
	position: relative;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	border-radius: 50%;
	margin-top: 7px;
	margin-right: 6px;
}

.mejs-container .mejs-controls .mejs-button button{
	display: block;
	margin: 0;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: none !important;
}

.mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before{
	content: '\e8f9';
	font-family: 'fontello';
	font-size: 1.3em;
}

.mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before{
	content: '\e8e1';
	font-family: 'fontello';
	font-size: 1.3em;
}

.mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before{
	content: '\e8e3';
	font-family: 'fontello';
	font-size: 1.3em;
}

.mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{
	content: '\e8f8';
	font-family: 'fontello';
	font-size: 1.3em;
}

.mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before{
    content: '\e80e';
    font-family:'fontello';
    font-size: 1.3em;
}

.mejs-container .mejs-controls .mejs-fullscreen-button:before{
	content: '\e825';
	font-family:'fontello';
	font-size: 1.2em;
}

.mejs-container .mejs-controls .mejs-fullscreen-button button{
	background: transparent;
}

.widget .mejs-time-rail{
	margin: 0;
}

.mejs-controls .mejs-time-handle-content {
	height: 2px ;
	border-width: 2px;
}

.mejs-controls .mejs-time-hovered {
	height: 4px;
}

.sidebar .widget_media_video .mejs-time.mejs-currenttime-container,
.sidebar .widget_media_video .mejs-time.mejs-duration-container,
.sidebar .widget_media_audio .mejs-time.mejs-currenttime-container,
.sidebar .widget_media_audio .mejs-time.mejs-duration-container{
	display: none;
}

.sidebar .widget_media_video  .mejs-container .mejs-controls .mejs-button,
.sidebar .widget_media_audio  .mejs-container .mejs-controls .mejs-button{
	margin-left: 6px;
}

.sidebar .widget_media_audio .mejs-horizontal-volume-total{
	width: 30px;
}

.sidebar .widget_media_audio .mejs-time-rail{
	width: 50px;
}

/* 13.2 Magnific popup 
-------------------------------------------------------- */
.mfp-figure figcaption {
	margin-bottom:40px !important;
	height:40px;
	padding:0 16px;
	overflow:hidden;
}
.mfp-figure figcaption .mfp-bottom-bar {
	left: 16px;
	right:16px;
	margin-top:-30px;
	width:auto;
}
body .mfp-wrap {
	z-index: 99999;
}


/* 13.3 Google conversion 
---------------------------------------------------------- */
iframe[name="google_conversion_frame"] { height:1px; min-height:0px; display:none; }


/* 13.4 WPBakery PageBuilder
-------------------------------------------------------- */
.wpb_row,
.wpb_text_column,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li,
.last_toggle_el_margin,
.wpb_button {
	margin-bottom:0 !important;
}
.sc_gap .vc_row {
	margin-left:0;
	margin-right:0;
}
.sc_gap .vc_column_container {
	padding-left:0;
	padding-right:0;
}
h1 .wpb_text_column p, h2 .wpb_text_column p, h3 .wpb_text_column p, h4 .wpb_text_column p, h5 .wpb_text_column p, h6 .wpb_text_column p {
	padding-bottom:0 !important;
}
h5.vc_custom_heading{
    font-weight: 400;
}
h6.vc_custom_heading{
    font-weight: 500;
    font-size: 0.9285em;
    letter-spacing: 2px;
}

/* 14. Predefined classes for users
-------------------------------------------------------------- */
.texture_bg_green,
.texture_bg_dark  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg_dark.jpg); }
.texture_bg_blue,
.texture_bg_light  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg_light.jpg); }
.texture_bg_yellow  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg_yellow.jpg); }

.texture_bg_slider:after,
.texture_bg_slider_full:after {
	content:' ';
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	z-index:1;
	background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/texture_top.png) center top repeat-x, url(https://www.coolfog.sk/wp-content/themes/airsupply/images/texture_slider.png) left top repeat;
}
.texture_bg_slider_full:after {
	background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/texture_center.png) center center no-repeat, url(https://www.coolfog.sk/wp-content/themes/airsupply/images/texture_top.png) center top repeat-x, url(https://www.coolfog.sk/wp-content/themes/airsupply/images/texture_slider.png) left top repeat;
}

/* Predefined classes for the background texture and/or image */
.texture_bg_1  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_1.png); }
.texture_bg_2  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_2.png); }
.texture_bg_3  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_3.png); }
.texture_bg_4  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_4.png); }
.texture_bg_5  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_5.png); }
.texture_bg_6  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_6.png); }
.texture_bg_7  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_7.png); }
.texture_bg_8  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_8.png); }
.texture_bg_9  { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_9.png); }
.texture_bg_10 { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_10.png); }
.texture_bg_11 { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_11.png); }
.texture_bg_12 { background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_12.png); }

.overlay_bg_1:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_1.png); }
.overlay_bg_2:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_2.png); }
.overlay_bg_3:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_3.png); }
.overlay_bg_4:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_4.png); }
.overlay_bg_5:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_5.png); }
.overlay_bg_6:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_6.png); }
.overlay_bg_7:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_7.png); }
.overlay_bg_8:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_8.png); }
.overlay_bg_9:after  { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_9.png); }
.overlay_bg_10:after { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_10.png); }
.overlay_bg_11:after { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_11.png); }
.overlay_bg_12:after { content:' '; position:absolute; left:0; top:0; right:0; bottom:0; background-image:url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/texture_12.png); }

.bg_pattern_1  { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/pattern_1.jpg) 50% 50% repeat fixed !important; }
.bg_pattern_2  { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/pattern_2.jpg) 50% 50% repeat fixed !important; }
.bg_pattern_3  { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/pattern_3.jpg) 50% 50% repeat fixed !important; }
.bg_pattern_4  { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/pattern_4.jpg) 50% 50% repeat fixed !important; }
.bg_pattern_5  { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/pattern_5.jpg) 50% 50% repeat fixed !important; }

.bg_image_1 { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/image_1.jpg) 50% 0% repeat-y fixed !important; }
.bg_image_2 { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/image_2.jpg) 50% 0% repeat-y fixed !important; }
.bg_image_3 { background: url(https://www.coolfog.sk/wp-content/themes/airsupply/images/bg/image_3.jpg) 50% 0% repeat-y fixed !important; }
.bg_image_1, .bg_image_2, .bg_image_3 {
	-webkit-background-size: 100% auto; 
	   -moz-background-size: 100% auto;
	     -o-background-size: 100% auto; 
			background-size: 100% auto; 
}

.accent_top:before  {
	content:' ';
	display: block;
	position:absolute;
	z-index:1;
	left:50%;
	top:0;
	width: 3em;
	height: 2.8em;
	background-color:#fff;
	margin: -1.4em 0 0 -1.2857em;
	-webkit-transform: rotate(35deg) skewX(-20deg);
	   -moz-transform: rotate(35deg) skewX(-20deg);
	        transform: rotate(35deg) skewX(-20deg);
}

.rounded_none {
	-webkit-border-radius: 0px;
	   -moz-border-radius: 0px;
			border-radius: 0px;
}
.rounded_tiny {
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}
.rounded_small {
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}
.rounded_medium {
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
			border-radius: 10px;
}
.rounded_large {
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
			border-radius: 15px;
}
.rounded {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}

/* Predefined Theme Margins */
.margin_left_null, .margin_left_none, .margin_left_no, .margin_left_hide {margin-left: 0 !important;}
.margin_left_tiny {margin-left: 0.5rem !important;}
.margin_left_small {margin-left: 2rem !important;}
.margin_left_medium {margin-left: 3rem !important;}
.margin_left_large {margin-left: 4rem !important;}
.margin_left_huge {margin-left: 6rem !important;}
.margin_left_tiny- {margin-left: -0.5em !important;}
.margin_left_small- {margin-left: -2em !important;}
.margin_left_medium- {margin-left: -3em !important;}
.margin_left_large- {margin-left: -4em !important;}
.margin_left_huge- {margin-left: -6em !important;}

.margin_right_null, .margin_right_none, .margin_right_no, .margin_right_hide {margin-right: 0 !important;}
.margin_right_tiny {margin-right: 0.5em !important;}
.margin_right_small {margin-right: 2rem !important;}
.margin_right_medium {margin-right: 3rem !important;}
.margin_right_large {margin-right: 4rem !important;}
.margin_right_huge {margin-right: 6rem !important;}
.margin_right_tiny- {margin-right: -0.5rem !important;}
.margin_right_small- {margin-right: -2rem !important;}
.margin_right_medium- {margin-right: -3rem !important;}
.margin_right_large- {margin-right: -4rem !important;}
.margin_right_huge- {margin-right: -6rem !important;}

.margin_top_null, .margin_top_none, .margin_top_no, .margin_top_hide {margin-top: 0 !important;}
.margin_top_tiny {margin-top: 0.5rem !important;}
.margin_top_small {margin-top: 2rem !important;}
.margin_top_medium {margin-top: 3rem !important;}
.margin_top_large {margin-top: 4rem !important;}
.margin_top_huge {margin-top: 6rem !important;}
.margin_top_tiny- {margin-top: -0.5rem !important;}
.margin_top_small- {margin-top: -2rem !important;}
.margin_top_medium- {margin-top: -3rem !important;}
.margin_top_large- {margin-top: -4rem !important;}
.margin_top_huge- {margin-top: -6rem !important;}

.margin_bottom_null, .margin_bottom_none, .margin_bottom_no, .margin_bottom_hide {margin-bottom: 0 !important;}
.margin_bottom_tiny {margin-bottom: 0.5rem !important;}
.margin_bottom_small {margin-bottom: 2rem !important;}
.margin_bottom_medium {margin-bottom: 3rem !important;}
.margin_bottom_large {margin-bottom: 4rem !important;}
.margin_bottom_huge {margin-bottom: 6rem !important;}
.margin_bottom_tiny- {margin-bottom: -0.5rem !important;}
.margin_bottom_small- {margin-bottom: -2rem !important;}
.margin_bottom_medium- {margin-bottom: -3rem !important;}
.margin_bottom_large- {margin-bottom: -4rem !important;}
.margin_bottom_huge- {margin-bottom: -6rem !important;}

/* Gutenberg
----------------------------------------------------------------- */
button[disabled],
input[type="submit"][disabled],
input[type="button"][disabled] {
	background-color: #f0f0f0 !important;
	color: #888 !important;
}

button[disabled],
html input[disabled] {
	cursor: default !important;
}


/* Contact form 7 */
.wpcf7 form .wpcf7-form-control-wrap.first-name,
.wpcf7 form .wpcf7-form-control-wrap.address,
.wpcf7 form .form_info .wpcf7-form-control-wrap{
	display: block;
	float: left;
	width: 48%;
	margin-bottom: 1.3em;
}
.wpcf7 form .wpcf7-form-control-wrap textarea{
	margin-bottom: 1.3em;
}
.wpcf7 form .wpcf7-form-control-wrap.last-name,
.wpcf7 form .wpcf7-form-control-wrap.your-email {
	display: block;
	float: right;
	width: 48%;
	margin-bottom: 1.3em;
}
.wpcf7 form .wpcf7-form-control-wrap input,
.wpcf7 form .wpcf7-form-control-wrap textarea{
	font-weight: 300;
	padding: 1.45em 2em;
	border-radius: 2em;
	width: 100%;
}
.wpcf7 form .wpcf7-form-control-wrap .select_container{
	float: none;
	width: 100%;

}
.wpcf7 form .wpcf7-form-control-wrap .select_container:after{
	position: absolute;
	top: -4px;
	right: 29px;
	content: '\e8f6';
	pointer-events: none;
	display: inline-block;
	font-family: 'fontello';
}
.wpcf7 form .wpcf7-form-control-wrap select {
	width: 100%;
	float: none;
	padding: 1.45em 2em;
	border-radius: 2em;
	-moz-appearance: none;
	margin-bottom: 1em;
}
.wpcf7 .ajax-loader {
	display: block;
	margin: 0.5em auto;
}

select::-ms-expand {
	display: none;
}

.wpcf7-form .wpcf7-form-control-wrap input[type="checkbox"]{
	width: auto;
	padding: 0;
	border-radius: 0;
	margin-right: 5px;
}

.wpcf7-form input[type="submit"]{
	margin-top: 1em;
}

.wpcf7-form .form_info .wpcf7-form-control-wrap:first-child{
	margin-right: 20px;
}

.sc_googlemap > iframe {
	width: 100%;
	height: 100%;
}

/* Contact form 7 */
.cff-container-field label,
.cff-number-field label,
.cff-dropdown-field label,
.cff-date-field label,
.cff-calculated-field label{
	font-size: 16px;
	font-weight: 600;
}

.cff-container-field .field[type="text"],
.cff-container-field .field[type="number"],
.cff-number-field .field,
.cff-dropdown-field .field,
.cff-date-field .field,
.cff-calculated-field .codepeoplecalculatedfield{
	font-weight: 300;
	padding: 1.45em 2em;
	border-radius: 2em;
	width: 100%;
}

.cff-container-field .dfield{
	margin-right: 20px;
}

#fbuilder .cff-container-field span.files-list, #fbuilder .cff-container-field span.uh{
	font-size: 14px;
	margin-top: .5em;
}

.cff-radiobutton-field label{
	font-size: 14px;
}

.cff-radiobutton-field label span{
	font-weight: 400;
	padding-left: 10px;
}

.button-position-left .comment_area label{
	text-transform: uppercase;
}

.cff-container-field.button-position-left > div{
	display: flex;
}

.cff-container-field .fields.cff-calculated-field input[type="text"],
.cff-container-field.fields.cff-calculated-field input[type="text"]:focus{
	background-color: transparent;
}

.cff-container-field.calculated-result{
	border: 2px dashed #0071c3;
	border-radius: 2em;
}

#fbuilder .button-position-left .cff-button-field{
	padding-top: 0;
}

#fbuilder .calculated-result.cff-container-field .comment_area span{
	margin-top: 0;
	font-size: 13px;
	line-height: 1.2em;
}

.calculated-result{
	margin-left: 38px;
}

#fbuilder .calculated-result .label-position-left span{
	margin-top: 0;
}

.calculated-result .field[type="text"]{
	padding: 0;
	text-align: right;
	font-size: 24px;
	font-weight: 600;
	line-height: 46px;
	height: 46px;
}

#fbuilder .fields.calculated-result{
	padding-left: 2em;
}

.button-position-left{
	margin-top: 20px;
}

#fbuilder{
	max-width: 638px;
}

.cff-container-field .r{
	display: none;
}

.admin-bar .esgbox-infobar,
.admin-bar .esgbox-toolbar{
	top: 32px;
}

.esgbox-button.esgbox-button--fullscreen{
	display: none;
}

.esgbox-share .esgbox-close-small:hover:after{
	background: transparent;
}

.esgbox-share .esgbox-share__button,
.esgbox-share .esgbox-share__button:hover{
	color: #ffffff;
}

.rs-layer.rev-btn{
	transition-property: background-color;
}

.wp-block-image figcaption,
.wp-block-video figcaption,
figcaption, figure.wp-block-video figcaption,
figure.wp-block-embed figcaption,
.wp-block-gallery > .blocks-gallery-caption,
.wp-block-gallery .blocks-gallery-item figcaption{
	margin-bottom: 0;
	max-height: 70%;
	padding: 1em;
	margin-top: 0;
	color: #fff;
	text-align: center;
	font-size: 13px;
	overflow-y: auto;
}

.gallery-item .wp-caption-text{
	margin-bottom: 0;
	max-height: 70%;
	padding: 1em;
	margin-top: 0;
}

p[style*="font-size:"],
.has-large-font-size,
.has-huge-font-size,
.has-small-font-size,
.has-normal-font-size,
.has-medium-font-size {
	line-height: 1.1em;
}
.wp-block-column .wp-block-quote {
	padding: 1.6em 2.2em 2.05em;
}
.wp-block-column .wp-block-quote:first-child {
	margin-top: 0;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
	padding: 2.9em 2.5em;
}
.wp-block-pullquote.is-style-solid-color blockquote {
    background: none;
	box-shadow: none;
}
.wp-block-pullquote.is-style-solid-color blockquote:after{
	display: none;
}
.wp-block-button a.wp-block-button__link {
	color: inherit;
}
.wp-block-media-text, .wp-block-media-text {
	margin: 2em 0;
}
.wp-block-media-text .wp-block-media-text__content p:first-child {
	margin-top: 1.6em;
}
.wp-block-separator {
	margin: 3em 0;
}
.wp-block-separator:not([class*="is-style"]) {
	width: 15%;
}

.wp-block-separator.is-style-wide {
	max-width: 100%;
}
.wp-block-separator.is-style-dots:before {
	font-size: 30px;
	letter-spacing: 1.5em;
	padding-left: 1.5em;
}
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
	max-width: 400px;
}

.wp-block-cover-image, .wp-block-cover{
	width: auto;
	margin-bottom: 1.5em;
}

.wp-block-table {
	margin-top: 1.6em;
	margin-bottom: 1.6em;
}

.wp-block-embed__wrapper {
	position: relative;
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
	box-sizing: border-box;
	overflow-x: hidden;
	overflow-y: auto;
}

figcaption,
figure.wp-block-video figcaption,
figure.wp-block-embed figcaption {
	position: static;
	margin: 0;
	transition: none;
	box-sizing: border-box;
}

.wp-caption img{
	width: 100%;
}

.wp-block-column .wp-block-image:hover figcaption{
	margin-bottom: 0 !important;
}

.wp-block-cover, .wp-block-cover .wp-block-cover-text a{
	color: #ffffff;
}

.wp-block-cover + .wp-block-cover,
.wp-block-button + .wp-block-button{
	margin-top: 1em;
}

.wp-block-cover-image.aligncenter, .wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright, .wp-block-cover.aligncenter,
.wp-block-cover.alignleft, .wp-block-cover.alignright{
	display: flex !important;
}

.wp-block-cover-image .wp-block-cover__inner-container a,
.wp-block-cover .wp-block-cover__inner-container a {
	color: inherit;
}

.blocks-gallery-grid.alignleft, .blocks-gallery-grid.alignright,
.wp-block-gallery.alignleft, .wp-block-gallery.alignright{
	display: flex;
}

.wp-block-audio{
    overflow: visible;
	margin-bottom: 1.5em;
}

.comment-form-cookies-consent input[type="checkbox"]{
	margin-right: 3px;
}

.mc4wp-form-fields input[type="checkbox"]{
	margin-right: 5px;
}

/* Gutenberg */
body.sidebar_hide .alignfull {
	margin-left  : calc( -100vw / 2 + 100% / 2 );
	margin-right : calc( -100vw / 2 + 100% / 2 );
	width: 100vw;
	max-width    : 100vw;
}
body.sidebar_hide .alignwide {
	position: relative;
	left: calc( -44vw + 50% );
	width: 88vw;
	max-width: none;
}
.alignfull > img,
.alignwide > img {
	max-width: none;
	width: 100%;
}
table.is-style-stripes > tbody > tr:nth-child(even) > td {
	background-color: transparent;
}

.wp-block-cover-text,
.wp-block-cover .wp-block-cover-text strong {
	color: inherit;
	font-size: inherit;
}

.wp-block-image figure.aligncenter {
	display: table!important;
}

.wp-block-embed-twitter .twitter-widget {
	margin-bottom: 0!important;
}

figure.wp-block-audio:hover figcaption,
figure.wp-block-video:hover figcaption,
figure.wp-block-embed:hover figcaption {
	margin-bottom: 0;
}

.sidebar_hide .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.sidebar_hide .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,
.sidebar_hide .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.sidebar_hide .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
.sidebar_hide .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.sidebar_hide .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.sidebar_hide .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sidebar_hide .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper:before,
.sidebar_hide .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper:before,
.sidebar_hide .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper:before,
.sidebar_hide .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper:before,
.sidebar_hide .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before,
.sidebar_hide.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper:before,
.sidebar_hide.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper:before {
	content: "";
	display: block;
	padding-top: 50%;
}

.sidebar_hide .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
	padding-top: 56.25%;
}

body.sidebar_hide .wp-block-columns.alignfull .wp-block-column {
	padding: 0 1.5em;
}

.wp-caption:hover .wp-caption-text,
.wp-caption:hover .wp-caption-dd,
.wp-caption-overlay .wp-caption:hover .wp-caption-text,
.wp-caption-overlay .wp-caption:hover .wp-caption-dd,
figure a:hover + figcaption, figure img:hover + figcaption, figure div:hover + figcaption,
.wp-caption-overlay .wp-caption img:hover + .wp-caption-text,
.wp-caption-overlay .wp-caption img:hover + .wp-caption-dd {
	opacity:0;
}

figure figcaption:hover,
.wp-caption .wp-caption-text:hover,
.wp-caption .wp-caption-dd:hover,
.wp-caption-overlay .wp-caption .wp-caption-text:hover,
.wp-caption-overlay .wp-caption .wp-caption-dd:hover,
figure a:hover + figcaption:hover, figure img:hover + figcaption:hover, figure div:hover + figcaption:hover,
.wp-caption-overlay .wp-caption img:hover + .wp-caption-text:hover,
.wp-caption-overlay .wp-caption img:hover + .wp-caption-dd:hover {
	opacity:1;
}

.wp-block-gallery figure:hover figcaption,
.wp-block-image:hover figcaption {
	opacity: 0;
}

figure.wp-block-gallery figcaption:hover,
.wp-block-image figure figcaption:hover,
.wp-block-image figcaption:hover,
figure figcaption:hover{
	opacity: 1;
}

figure.wp-block-embed figcaption,
.wp-block-gallery > .blocks-gallery-caption {
	position: relative;
	margin-bottom: 1.5rem;
	width: 100%;
	opacity: 1 !important;
	text-align: center;
}

.wp-block-gallery[class*="align"] {
	display: flex;
}

.wp-block-button {
	margin-top: 1.5em;
	margin-bottom: 1.5em;
}

.wp-block-group__inner-container{
	padding: 1em;
}

.has-drop-cap:not(:focus)::first-letter{
	line-height: .38;
}
.has-large-font-size {
	font-size: 2.571em;
}

.wp-block-calendar,
.wp-block-archives,
.wp-block-search,
.wp-block-archives select,
.wp-block-categories select{
	margin-bottom: 1.5em;
}

.wp-block-search__input{
	border-radius: 2em;
}

.is-style-squared .wp-block-button__link{
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.wp-block-cover__inner-container p{
	margin-bottom: 0;
}

.wp-block-widget-area select {
	visibility: visible !important;
	-webkit-appearance: listbox !important;
}

.wp-block-widget-area input[type="radio"] {
	-webkit-appearance: radio !important;
}

.wp-block-widget-area input[type="checkbox"] {
	-webkit-appearance: checkbox !important;
}

.wp-block-widget-area input[type="radio"]:before,
.wp-block-widget-area input[type="checkbox"]:before {
	display: none !important;
}

.wp-block-latest-comments {
	padding-left: 0;
}

.gallery + .pagination_single{
	margin-top: 2em;
}

#fbuilder input[type="number"]{
	-moz-appearance: textfield;
}

#fbuilder input::-webkit-outer-spin-button,
#fbuilder input::-webkit-inner-spin-button{
	-moz-appearance: textfield;
}

.wpgdprc-checkbox input[type="checkbox"]{
	margin-right: 10px;
}

input[type="submit"]:not([class*="sc_button_hover_"]):hover,
input[type="reset"]:not([class*="sc_button_hover_"]):hover,
input[type="button"]:not([class*="sc_button_hover_"]):hover,
button:not([class*="sc_button_hover_"]):hover,
.sc_button.sc_button_style_filled:not([class*="sc_button_hover_"]):hover {
	background-position: 100%;
}
input[type="submit"].sc_button_style_color_style2:not([class*="sc_button_hover_"]):hover,
input[type="reset"].sc_button_style_color_style2:not([class*="sc_button_hover_"]):hover,
input[type="button"].sc_button_style_color_style2:not([class*="sc_button_hover_"]):hover,
button.sc_button_style_color_style2:not([class*="sc_button_hover_"]):hover,
.sc_button.sc_button_style_filled.sc_button_style_color_style2:hover {
	background-position: 100% !important;
}

.trx_demo_panels[class*="trx_demo_tabs_position_l"] .trx_demo_tabs a {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.wpcf7-spinner{
	position: absolute;
}

.wpgdprc-checkbox{
	align-items: center;
}

.wp-block-social-links .wp-social-link:before{
	display: none;
}

.wp-block-social-links .wp-social-link{
	padding-left: 0;
}/* Generated by Font Squirrel (https://www.fontsquirrel.com) on August 19, 2016 */



@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-black-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-black-webfont.woff) format('woff');
    font-weight: 900;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-bold-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-bold-webfont.woff) format('woff');
    font-weight: 700;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-extrabold-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-extrabold-webfont.woff) format('woff');
    font-weight: 800;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-extralight-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-extralight-webfont.woff) format('woff');
    font-weight: 200;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-light-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-light-webfont.woff) format('woff');
    font-weight: 300;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-medium-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-medium-webfont.woff) format('woff');
    font-weight: 500;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-regular-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-regular-webfont.woff) format('woff');
    font-weight: 400;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-semibold-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-semibold-webfont.woff) format('woff');
    font-weight: 600;
    font-style: normal;

}




@font-face {
    font-family: 'encode_sans';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-thin-webfont.woff2) format('woff2'),
         url(https://www.coolfog.sk/wp-content/themes/airsupply/css/font-face/encode_sans/encodesans-thin-webfont.woff) format('woff');
    font-weight: 100;
    font-style: normal;

}@font-face {
  font-family: 'fontello';
  src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.eot#1772713276);
  src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.eot#1772713276) format('embedded-opentype'),
       url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.woff2#1772713276) format('woff2'),
       url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.woff#1772713276) format('woff'),
       url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.ttf#1772713276) format('truetype'),
       url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.svg?39739347#fontello) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url(https://www.coolfog.sk/wp-content/themes/airsupply/css/fontello/css/../font/fontello.svg?39739347#fontello) format('svg');
  }
}
*/
 
 [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
 
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
 
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
 
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
 
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
 
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
 
.icon-vcard:before { content: '\e800'; } /* '' */
.icon-pin:before { content: '\e801'; } /* '' */
.icon-reply:before { content: '\e802'; } /* '' */
.icon-reply-all:before { content: '\e803'; } /* '' */
.icon-forward:before { content: '\e804'; } /* '' */
.icon-print:before { content: '\e805'; } /* '' */
.icon-keyboard:before { content: '\e806'; } /* '' */
.icon-search:before { content: '\e807'; } /* '' */
.icon-clock-empty:before { content: '\e808'; } /* '' */
.icon-hourglass:before { content: '\e809'; } /* '' */
.icon-login:before { content: '\e80a'; } /* '' */
.icon-logout:before { content: '\e80b'; } /* '' */
.icon-picture:before { content: '\e80c'; } /* '' */
.icon-brush:before { content: '\e80d'; } /* '' */
.icon-ccw:before { content: '\e80e'; } /* '' */
.icon-cw:before { content: '\e80f'; } /* '' */
.icon-refresh:before { content: '\e810'; } /* '' */
.icon-clock:before { content: '\e811'; } /* '' */
.icon-circle-empty:before { content: '\e812'; } /* '' */
.icon-circle-dot:before { content: '\e813'; } /* '' */
.icon-circle:before { content: '\e814'; } /* '' */
.icon-checkbox:before { content: '\e815'; } /* '' */
.icon-checkbox-empty:before { content: '\e816'; } /* '' */
.icon-book:before { content: '\e817'; } /* '' */
.icon-mail-empty:before { content: '\e818'; } /* '' */
.icon-mail:before { content: '\e819'; } /* '' */
.icon-phone:before { content: '\e81a'; } /* '' */
.icon-book-open:before { content: '\e81b'; } /* '' */
.icon-users-group:before { content: '\e81c'; } /* '' */
.icon-male:before { content: '\e81d'; } /* '' */
.icon-female:before { content: '\e81e'; } /* '' */
.icon-child:before { content: '\e81f'; } /* '' */
.icon-star:before { content: '\e820'; } /* '' */
.icon-globe:before { content: '\e821'; } /* '' */
.icon-mobile:before { content: '\e822'; } /* '' */
.icon-tablet:before { content: '\e823'; } /* '' */
.icon-laptop:before { content: '\e824'; } /* '' */
.icon-desktop:before { content: '\e825'; } /* '' */
.icon-cog:before { content: '\e826'; } /* '' */
.icon-cogs:before { content: '\e827'; } /* '' */
.icon-down:before { content: '\e828'; } /* '' */
.icon-wrench:before { content: '\e829'; } /* '' */
.icon-sliders:before { content: '\e82a'; } /* '' */
.icon-lock:before { content: '\e82b'; } /* '' */
.icon-trophy:before { content: '\e82c'; } /* '' */
.icon-spin3:before { content: '\e82d'; } /* '' */
.icon-spin1:before { content: '\e82e'; } /* '' */
.icon-spin2:before { content: '\e82f'; } /* '' */
.icon-spin4:before { content: '\e830'; } /* '' */
.icon-spin5:before { content: '\e831'; } /* '' */
.icon-spin6:before { content: '\e832'; } /* '' */
.icon-location:before { content: '\e833'; } /* '' */
.icon-address:before { content: '\e834'; } /* '' */
.icon-up:before { content: '\e835'; } /* '' */
.icon-right:before { content: '\e836'; } /* '' */
.icon-left:before { content: '\e837'; } /* '' */
.icon-music-light:before { content: '\e838'; } /* '' */
.icon-search-light:before { content: '\e839'; } /* '' */
.icon-mail-light:before { content: '\e83a'; } /* '' */
.icon-heart-light:before { content: '\e83b'; } /* '' */
.icon-dot:before { content: '\e83c'; } /* '' */
.icon-user-light:before { content: '\e83d'; } /* '' */
.icon-video-light:before { content: '\e83e'; } /* '' */
.icon-camera-light:before { content: '\e83f'; } /* '' */
.icon-photo-light:before { content: '\e840'; } /* '' */
.icon-attach-light:before { content: '\e841'; } /* '' */
.icon-lock-light:before { content: '\e842'; } /* '' */
.icon-eye-light:before { content: '\e843'; } /* '' */
.icon-tag-light:before { content: '\e844'; } /* '' */
.icon-thumbs-up-light:before { content: '\e845'; } /* '' */
.icon-pencil-light:before { content: '\e846'; } /* '' */
.icon-comment-light:before { content: '\e847'; } /* '' */
.icon-location-light:before { content: '\e848'; } /* '' */
.icon-cup-light:before { content: '\e849'; } /* '' */
.icon-trash-light:before { content: '\e84a'; } /* '' */
.icon-doc-light:before { content: '\e84b'; } /* '' */
.icon-key-light:before { content: '\e84c'; } /* '' */
.icon-database-light:before { content: '\e84d'; } /* '' */
.icon-megaphone-light:before { content: '\e84e'; } /* '' */
.icon-graduation-light:before { content: '\e84f'; } /* '' */
.icon-fire-light:before { content: '\e850'; } /* '' */
.icon-paper-plane-light:before { content: '\e851'; } /* '' */
.icon-cloud-light:before { content: '\e852'; } /* '' */
.icon-globe-light:before { content: '\e853'; } /* '' */
.icon-inbox-light:before { content: '\e854'; } /* '' */
.icon-cd-light:before { content: '\e855'; } /* '' */
.icon-mobile-light:before { content: '\e856'; } /* '' */
.icon-desktop-light:before { content: '\e857'; } /* '' */
.icon-tv-light:before { content: '\e858'; } /* '' */
.icon-wallet-light:before { content: '\e859'; } /* '' */
.icon-t-shirt-light:before { content: '\e85a'; } /* '' */
.icon-lightbulb-light:before { content: '\e85b'; } /* '' */
.icon-clock-light:before { content: '\e85c'; } /* '' */
.icon-diamond-light:before { content: '\e85d'; } /* '' */
.icon-shop-light:before { content: '\e85e'; } /* '' */
.icon-sound-light:before { content: '\e85f'; } /* '' */
.icon-calendar-light:before { content: '\e860'; } /* '' */
.icon-food-light:before { content: '\e861'; } /* '' */
.icon-money-light:before { content: '\e862'; } /* '' */
.icon-params-light:before { content: '\e863'; } /* '' */
.icon-cog-light:before { content: '\e864'; } /* '' */
.icon-beaker-light:before { content: '\e865'; } /* '' */
.icon-note-light:before { content: '\e866'; } /* '' */
.icon-truck-light:before { content: '\e867'; } /* '' */
.icon-behance:before { content: '\e868'; } /* '' */
.icon-bitbucket:before { content: '\e869'; } /* '' */
.icon-cc:before { content: '\e86a'; } /* '' */
.icon-codeopen:before { content: '\e86b'; } /* '' */
.icon-css3:before { content: '\e86c'; } /* '' */
.icon-delicious:before { content: '\e86d'; } /* '' */
.icon-digg:before { content: '\e86e'; } /* '' */
.icon-dribbble:before { content: '\e86f'; } /* '' */
.icon-deviantart:before { content: '\e870'; } /* '' */
.icon-dropbox:before { content: '\e871'; } /* '' */
.icon-drupal:before { content: '\e872'; } /* '' */
.icon-facebook:before { content: '\e873'; } /* '' */
.icon-flickr:before { content: '\e874'; } /* '' */
.icon-foursquare:before { content: '\e875'; } /* '' */
.icon-git:before { content: '\e876'; } /* '' */
.icon-github:before { content: '\e877'; } /* '' */
.icon-gittip:before { content: '\e878'; } /* '' */
.icon-google:before { content: '\e879'; } /* '' */
.icon-gplus:before { content: '\e87a'; } /* '' */
.icon-gwallet:before { content: '\e87b'; } /* '' */
.icon-hacker-news:before { content: '\e87c'; } /* '' */
.icon-html5:before { content: '\e87d'; } /* '' */
.icon-instagramm:before { content: '\e87e'; } /* '' */
.icon-ioxhost:before { content: '\e87f'; } /* '' */
.icon-joomla:before { content: '\e880'; } /* '' */
.icon-jsfiddle:before { content: '\e881'; } /* '' */
.icon-lastfm:before { content: '\e882'; } /* '' */
.icon-linux:before { content: '\e883'; } /* '' */
.icon-linkedin:before { content: '\e884'; } /* '' */
.icon-maxcdn:before { content: '\e885'; } /* '' */
.icon-meanpath:before { content: '\e886'; } /* '' */
.icon-openid:before { content: '\e887'; } /* '' */
.icon-pagelines:before { content: '\e888'; } /* '' */
.icon-paypal:before { content: '\e889'; } /* '' */
.icon-qq:before { content: '\e88a'; } /* '' */
.icon-reddit:before { content: '\e88b'; } /* '' */
.icon-renren:before { content: '\e88c'; } /* '' */
.icon-skype:before { content: '\e88d'; } /* '' */
.icon-slack:before { content: '\e88e'; } /* '' */
.icon-slideshare:before { content: '\e88f'; } /* '' */
.icon-soundcloud:before { content: '\e890'; } /* '' */
.icon-spotify:before { content: '\e891'; } /* '' */
.icon-stackexchange:before { content: '\e892'; } /* '' */
.icon-stackoverflow:before { content: '\e893'; } /* '' */
.icon-steam:before { content: '\e894'; } /* '' */
.icon-stumbleupon:before { content: '\e895'; } /* '' */
.icon-tencent-weibo:before { content: '\e896'; } /* '' */
.icon-trello:before { content: '\e897'; } /* '' */
.icon-tumblr:before { content: '\e898'; } /* '' */
.icon-twitch:before { content: '\e899'; } /* '' */
.icon-twitter:before { content: '\e89a'; } /* '' */
.icon-vine:before { content: '\e89b'; } /* '' */
.icon-vkontakte:before { content: '\e89c'; } /* '' */
.icon-wechat:before { content: '\e89d'; } /* '' */
.icon-weibo:before { content: '\e89e'; } /* '' */
.icon-windows:before { content: '\e89f'; } /* '' */
.icon-wordpress:before { content: '\e8a0'; } /* '' */
.icon-xing:before { content: '\e8a1'; } /* '' */
.icon-yelp:before { content: '\e8a2'; } /* '' */
.icon-youtube:before { content: '\e8a3'; } /* '' */
.icon-yahoo:before { content: '\e8a4'; } /* '' */
.icon-lemon:before { content: '\e8a5'; } /* '' */
.icon-blank:before { content: '\e8a6'; } /* '' */
.icon-pinterest-circled:before { content: '\e8a7'; } /* '' */
.icon-heart-empty:before { content: '\e8a8'; } /* '' */
.icon-lock-open:before { content: '\e8a9'; } /* '' */
.icon-heart:before { content: '\e8aa'; } /* '' */
.icon-check:before { content: '\e8ab'; } /* '' */
.icon-cancel:before { content: '\e8ac'; } /* '' */
.icon-plus:before { content: '\e8ad'; } /* '' */
.icon-minus:before { content: '\e8ae'; } /* '' */
.icon-double-left:before { content: '\e8af'; } /* '' */
.icon-double-right:before { content: '\e8b0'; } /* '' */
.icon-double-up:before { content: '\e8b1'; } /* '' */
.icon-double-down:before { content: '\e8b2'; } /* '' */
.icon-help:before { content: '\e8b3'; } /* '' */
.icon-info:before { content: '\e8b4'; } /* '' */
.icon-link:before { content: '\e8b5'; } /* '' */
.icon-quote:before { content: '\e8b6'; } /* '' */
.icon-attach:before { content: '\e8b7'; } /* '' */
.icon-eye:before { content: '\e8b8'; } /* '' */
.icon-tag:before { content: '\e8b9'; } /* '' */
.icon-menu:before { content: '\e8ba'; } /* '' */
.icon-pencil:before { content: '\e8bb'; } /* '' */
.icon-feather:before { content: '\e8bc'; } /* '' */
.icon-code:before { content: '\e8bd'; } /* '' */
.icon-home:before { content: '\e8be'; } /* '' */
.icon-camera:before { content: '\e8bf'; } /* '' */
.icon-pictures:before { content: '\e8c0'; } /* '' */
.icon-video:before { content: '\e8c1'; } /* '' */
.icon-users:before { content: '\e8c2'; } /* '' */
.icon-user:before { content: '\e8c3'; } /* '' */
.icon-user-add:before { content: '\e8c4'; } /* '' */
.icon-comment:before { content: '\e8c5'; } /* '' */
.icon-chat-empty:before { content: '\e8c6'; } /* '' */
.icon-bell:before { content: '\e8c7'; } /* '' */
.icon-star-empty:before { content: '\e8c8'; } /* '' */
.icon-dot2:before { content: '\e8c9'; } /* '' */
.icon-dot3:before { content: '\e8ca'; } /* '' */
.icon-note:before { content: '\e8cb'; } /* '' */
.icon-basket:before { content: '\e8cc'; } /* '' */
.icon-note2:before { content: '\e8cd'; } /* '' */
.icon-share:before { content: '\e8ce'; } /* '' */
.icon-doc:before { content: '\e8cf'; } /* '' */
.icon-doc-text:before { content: '\e8d0'; } /* '' */
.icon-file-pdf:before { content: '\e8d1'; } /* '' */
.icon-file-word:before { content: '\e8d2'; } /* '' */
.icon-file-excel:before { content: '\e8d3'; } /* '' */
.icon-file-powerpoint:before { content: '\e8d4'; } /* '' */
.icon-file-image:before { content: '\e8d5'; } /* '' */
.icon-file-archive:before { content: '\e8d6'; } /* '' */
.icon-file-audio:before { content: '\e8d7'; } /* '' */
.icon-file-video:before { content: '\e8d8'; } /* '' */
.icon-file-code:before { content: '\e8d9'; } /* '' */
.icon-trash-empty:before { content: '\e8da'; } /* '' */
.icon-trash:before { content: '\e8db'; } /* '' */
.icon-th-large:before { content: '\e8dc'; } /* '' */
.icon-th:before { content: '\e8dd'; } /* '' */
.icon-th-list:before { content: '\e8de'; } /* '' */
.icon-flag:before { content: '\e8df'; } /* '' */
.icon-attention:before { content: '\e8e0'; } /* '' */
.icon-play:before { content: '\e8e1'; } /* '' */
.icon-stop:before { content: '\e8e2'; } /* '' */
.icon-pause:before { content: '\e8e3'; } /* '' */
.icon-record:before { content: '\e8e4'; } /* '' */
.icon-to-end:before { content: '\e8e5'; } /* '' */
.icon-tools:before { content: '\e8e6'; } /* '' */
.icon-retweet:before { content: '\e8e7'; } /* '' */
.icon-to-start:before { content: '\e8e8'; } /* '' */
.icon-fast-forward:before { content: '\e8e9'; } /* '' */
.icon-fast-backward:before { content: '\e8ea'; } /* '' */
.icon-puzzle:before { content: '\e8eb'; } /* '' */
.icon-fire:before { content: '\e8ec'; } /* '' */
.icon-food:before { content: '\e8ed'; } /* '' */
.icon-sweet:before { content: '\e8ee'; } /* '' */
.icon-chef:before { content: '\e8ef'; } /* '' */
.icon-sort-asc:before { content: '\e8f0'; } /* '' */
.icon-sort-desc:before { content: '\e8f1'; } /* '' */
.icon-arrow-down:before { content: '\e8f2'; } /* '' */
.icon-arrow-left:before { content: '\e8f3'; } /* '' */
.icon-arrow-right:before { content: '\e8f4'; } /* '' */
.icon-arrow-up:before { content: '\e8f5'; } /* '' */
.icon-down-open:before { content: '\e8f6'; } /* '' */
.icon-right-open:before { content: '\e8f7'; } /* '' */
.icon-volume-off:before { content: '\e8f8'; } /* '' */
.icon-volume-up:before { content: '\e8f9'; } /* '' */
.icon-phone-1:before { content: '\e8fa'; } /* '' */
.icon-city:before { content: '\e8fb'; } /* '' */
.icon-clock-1:before { content: '\e8fc'; } /* '' */
.icon-house:before { content: '\e8fd'; } /* '' */
.icon-house-1:before { content: '\e8fe'; } /* '' */
.icon-irrigation:before { content: '\e8ff'; } /* '' */
.icon-ozone-layer:before { content: '\e900'; } /* '' */
.icon-phone-call:before { content: '\e901'; } /* '' */
.icon-pin-1:before { content: '\e902'; } /* '' */
.icon-placeholder:before { content: '\e903'; } /* '' */
.icon-recycling:before { content: '\e904'; } /* '' */
.icon-sun:before { content: '\e905'; } /* '' */
.icon-solar-panel:before { content: '\e906'; } /* '' */
.icon-technology:before { content: '\e907'; } /* '' */
.icon-world:before { content: '\e908'; } /* '' */
.icon-text-quotes-:before { content: '\e909'; } /* '' */
.icon-play-symbol:before { content: '\e90a'; } /* '' */@charset 'utf-8';
/*
Theme Name: AirSupply-child
Theme URI: http://airsupply.themerex.net/
Description: AirSupply - Multipurpose and Multiskin Responsive Wordpress theme
Author: themerex
Author URI:  http://themerex.net/
Template: airsupply
Version: 1.0
License: GNU General Public License
License URI: license.txt
Tags: flexible-header, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
Text Domain: airsupply
*/


/* =Theme customization starts here
-------------------------------------------------------------- */body{font-family:"Raleway",sans-serif;font-size:14px;font-weight:500;line-height:2em}h1{font-family:"Raleway",sans-serif;font-size:3.4285em;font-weight:600;line-height:1.235em;margin-top:1.73em;margin-bottom:.9em}h2{font-family:"Raleway",sans-serif;font-size:2.8571em;font-weight:500;line-height:1.3em;margin-top:1em;margin-bottom:1.05em}h3{font-family:"Raleway",sans-serif;font-size:24px;font-weight:400;line-height:32px;margin-top:1.25em;margin-bottom:.7em}h4{font-family:"Raleway",sans-serif;font-size:1.5em;font-weight:600;line-height:1.7em;margin-top:2.15em;margin-bottom:1.2em}h5{font-family:"Raleway",sans-serif;font-size:1.3571em;font-weight:600;line-height:1.5em;margin-top:2.5em;margin-bottom:1.45em}h6{font-family:"Raleway",sans-serif;font-size:1.5em;font-weight:600;line-height:1.7em;margin-top:3em;margin-bottom:1.95em}a{font-family:"Raleway",sans-serif}input[type="text"],input[type="number"],input[type="email"],input[type="search"],input[type="password"],select,textarea{font-family:"Raleway",sans-serif;line-height:1.2857em}input[type="submit"],input[type="reset"],input[type="button"],button:not(.pswp__button),.sc_button{font-family:"Raleway",sans-serif;line-height:1.2857em}.top_panel_middle .logo{margin-top:2.15em;margin-bottom:.55em}.logo .logo_text{font-family:"Raleway",sans-serif;font-size:2.8571em;font-weight:700;line-height:.9em}.top_panel_middle .menu_main_wrap{margin-top:1.6125em}.top_panel_style_5 .top_panel_middle .logo{margin-bottom:.275em}.menu_main_nav>li>a{padding:1em 1.5em .95em;font-family:"Raleway",sans-serif;font-size:16px;font-weight:500;line-height:1.2857em}.menu_main_nav>li ul{font-family:"Raleway",sans-serif;line-height:1.2857em}.menu_main_nav>li ul li a{padding:inherit 1.5em inherit}.top_panel_bottom .search_wrap,.top_panel_inner_style_4 .search_wrap{padding-top:.65em;padding-bottom:.475em}.top_panel_icon{margin:.7em 0 .95em 1em}.top_panel_fixed .menu_main_wrap{padding-top:.3em}.top_panel_fixed .top_panel_wrap .logo{margin-top:.6em;margin-bottom:.57em}.top_panel_inner_style_8 .top_panel_buttons,.top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{padding-top:1em;padding-bottom:.95em}.post_info{font-family:"Raleway",sans-serif;font-size:.9285em;line-height:1.2857em;margin-bottom:1.95em}.post_item_404 .page_title,.post_item_404 .page_subtitle{font-family:"Raleway",sans-serif}.sidebar_outer_menu .menu_side_nav>li>a,.sidebar_outer_menu .menu_side_responsive>li>a{font-family:"Raleway",sans-serif;font-size:16px;font-weight:500;line-height:1.2857em}.sidebar_outer_menu .menu_side_nav>li ul,.sidebar_outer_menu .menu_side_responsive>li ul{font-family:"Raleway",sans-serif;line-height:1.2857em}.sidebar_outer_menu .menu_side_nav>li ul li a,.sidebar_outer_menu .menu_side_responsive>li ul li a{padding:inherit 1.5em inherit}.tp-caption.slider1_slide1_1,.tp-caption.slider1_slide1_2,.tp-caption.slider1_slide1_3{font-family:"Raleway",sans-serif}.booking_font_custom,.booking_day_container,.booking_calendar_container_all{font-family:"Raleway",sans-serif}.booking_weekdays_custom{font-family:"Raleway",sans-serif}body table.booked-calendar thead th .monthName{font-family:"Raleway",sans-serif}.mejs-container .mejs-controls .mejs-time{font-family:"Raleway",sans-serif}.sc_recent_news .post_item .post_title{font-family:"Raleway",sans-serif;font-size:1.3571em;font-weight:600;line-height:1.5em;margin-top:2.5em;margin-bottom:1.45em}.sc_recent_news .post_item h6.post_title{font-family:"Raleway",sans-serif;font-size:1.5em;font-weight:600;line-height:1.7em;margin-top:3em;margin-bottom:1.95em}.scheme_original h1,.scheme_original h2,.scheme_original h3,.scheme_original h4,.scheme_original h5,.scheme_original h6,.scheme_original h1 a,.scheme_original h2 a,.scheme_original h3 a,.scheme_original h4 a,.scheme_original h5 a,.scheme_original h6 a{color:#262262}.scheme_original a{color:#262262}.scheme_original a:hover{color:#00a9e1}.scheme_original blockquote:before{color:#fff}.scheme_original blockquote a{color:#fff}.scheme_original blockquote a:hover{color:#00a9e1}.scheme_original blockquote,.scheme_original blockquote p{color:#fff}.scheme_original blockquote{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);color:#fff}.scheme_original .accent1{color:#262262}.scheme_original .accent1_bgc{background-color:#262262}.scheme_original .accent1_bg{background:#262262}.scheme_original .accent1_border{border-color:#262262}.scheme_original a.accent1:hover{color:#00a9e1}.scheme_original .post_content.ih-item.circle.effect1.colored .info,.scheme_original .post_content.ih-item.circle.effect2.colored .info,.scheme_original .post_content.ih-item.circle.effect3.colored .info,.scheme_original .post_content.ih-item.circle.effect4.colored .info,.scheme_original .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect6.colored .info,.scheme_original .post_content.ih-item.circle.effect7.colored .info,.scheme_original .post_content.ih-item.circle.effect8.colored .info,.scheme_original .post_content.ih-item.circle.effect9.colored .info,.scheme_original .post_content.ih-item.circle.effect10.colored .info,.scheme_original .post_content.ih-item.circle.effect11.colored .info,.scheme_original .post_content.ih-item.circle.effect12.colored .info,.scheme_original .post_content.ih-item.circle.effect13.colored .info,.scheme_original .post_content.ih-item.circle.effect14.colored .info,.scheme_original .post_content.ih-item.circle.effect15.colored .info,.scheme_original .post_content.ih-item.circle.effect16.colored .info,.scheme_original .post_content.ih-item.circle.effect18.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect19.colored .info,.scheme_original .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect1.colored .info,.scheme_original .post_content.ih-item.square.effect2.colored .info,.scheme_original .post_content.ih-item.square.effect3.colored .info,.scheme_original .post_content.ih-item.square.effect4.colored .mask1,.scheme_original .post_content.ih-item.square.effect4.colored .mask2,.scheme_original .post_content.ih-item.square.effect5.colored .info,.scheme_original .post_content.ih-item.square.effect6.colored .info,.scheme_original .post_content.ih-item.square.effect7.colored .info,.scheme_original .post_content.ih-item.square.effect8.colored .info,.scheme_original .post_content.ih-item.square.effect9.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect10.colored .info,.scheme_original .post_content.ih-item.square.effect11.colored .info,.scheme_original .post_content.ih-item.square.effect12.colored .info,.scheme_original .post_content.ih-item.square.effect13.colored .info,.scheme_original .post_content.ih-item.square.effect14.colored .info,.scheme_original .post_content.ih-item.square.effect15.colored .info,.scheme_original .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect_book.colored .info,.scheme_original .post_content.ih-item.square.effect_pull.colored .post_descr{background:#262262;color:#fff}.scheme_original .post_content.ih-item.circle.effect1.colored .info,.scheme_original .post_content.ih-item.circle.effect2.colored .info,.scheme_original .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect19.colored .info,.scheme_original .post_content.ih-item.square.effect4.colored .mask1,.scheme_original .post_content.ih-item.square.effect4.colored .mask2,.scheme_original .post_content.ih-item.square.effect6.colored .info,.scheme_original .post_content.ih-item.square.effect7.colored .info,.scheme_original .post_content.ih-item.square.effect12.colored .info,.scheme_original .post_content.ih-item.square.effect13.colored .info,.scheme_original .post_content.ih-item.square.effect_more.colored .info,.scheme_original .post_content.ih-item.square.effect_dir.colored .info,.scheme_original .post_content.ih-item.square.effect_shift.colored .info{background:rgba(38,34,98,.6);color:#fff}.scheme_original .post_content.ih-item.square.effect_border.colored .img,.scheme_original .post_content.ih-item.square.effect_fade.colored .img,.scheme_original .post_content.ih-item.square.effect_slide.colored .img{background:#262262}.scheme_original .post_content.ih-item.square.effect_border.colored .info,.scheme_original .post_content.ih-item.square.effect_fade.colored .info,.scheme_original .post_content.ih-item.square.effect_slide.colored .info{color:#fff}.scheme_original .post_content.ih-item.square.effect_border.colored .info:before,.scheme_original .post_content.ih-item.square.effect_border.colored .info:after{border-color:#fff}.scheme_original .post_content.ih-item.circle.effect1 .spinner{border-right-color:#262262;border-bottom-color:#262262}.scheme_original .post_content.ih-item .post_readmore .post_readmore_label,.scheme_original .post_content.ih-item .info a,.scheme_original .post_content.ih-item .info a>span{color:#fff}.scheme_original .post_content.ih-item .post_readmore:hover .post_readmore_label,.scheme_original .post_content.ih-item .info a:hover,.scheme_original .post_content.ih-item .info a:hover>span{color:#fff}.scheme_original td,.scheme_original th{border-color:rgba(255,255,255,.8)}.scheme_original table{color:#262262}.scheme_original table tr:nth-child(2n+1){background-color:rgba(240,244,249,.4)}.scheme_original table:not(.shop_attributes):not(.shop_table):not(.group_table):not(.variations):not(#debug_bar_http) tr:first-child{background-color:#262262;color:#fff}.scheme_original table tr:first-child td{border-color:rgba(255,255,255,.1)}.scheme_original table tr:nth-child(2n){background-color:#f0f4f9}.scheme_original table thead+tbody tr:first-child{background-color:rgba(240,244,249,.4);color:#262262}.scheme_original .sc_table th{color:#fff;background-color:#262262}.scheme_original pre.code,.scheme_original #toc .toc_item.current,.scheme_original #toc .toc_item:hover{border-color:#262262}.scheme_original::selection,.scheme_original::-moz-selection{background-color:#262262;color:#fff}.scheme_original input[type="text"],.scheme_original input[type="number"],.scheme_original input[type="tel"],.scheme_original input[type="email"],.scheme_original input[type="search"],.scheme_original input[type="password"],.scheme_original select,.scheme_original textarea{color:#8a8a8a;border-color:#00a9e1;background-color:#f0f4f9}.scheme_original input[type="text"]:focus,.scheme_original input[type="number"]:focus,.scheme_original input[type="tel"]:focus,.scheme_original input[type="email"]:focus,.scheme_original input[type="search"]:focus,.scheme_original input[type="password"]:focus,.scheme_original select:focus,.scheme_original textarea:focus{color:#8a8a8a;border-color:#bbb;background-color:#f0f4f9}.scheme_original input::-webkit-input-placeholder,.scheme_original textarea::-webkit-input-placeholder{color:#acb4b6}.scheme_original input:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_original textarea:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_original input:focus:-moz-placeholder{color:#00a9e1}.scheme_original textarea:focus:-moz-placeholder{color:#00a9e1}.scheme_original input:focus::-moz-placeholder{color:#00a9e1}.scheme_original textarea:focus::-moz-placeholder{color:#00a9e1}.scheme_original fieldset{border-color:#dfe5ea}.scheme_original fieldset legend{background-color:#fff;color:#656c77}.scheme_original .sc_input_hover_accent input[type="text"]:focus,.scheme_original .sc_input_hover_accent input[type="number"]:focus,.scheme_original .sc_input_hover_accent input[type="email"]:focus,.scheme_original .sc_input_hover_accent input[type="password"]:focus,.scheme_original .sc_input_hover_accent input[type="search"]:focus,.scheme_original .sc_input_hover_accent select:focus,.scheme_original .sc_input_hover_accent textarea:focus{box-shadow:0 0 0 2px #262262}.scheme_original .sc_input_hover_accent input[type="text"]+label:before,.scheme_original .sc_input_hover_accent input[type="number"]+label:before,.scheme_original .sc_input_hover_accent input[type="email"]+label:before,.scheme_original .sc_input_hover_accent input[type="password"]+label:before,.scheme_original .sc_input_hover_accent input[type="search"]+label:before,.scheme_original .sc_input_hover_accent select+label:before,.scheme_original .sc_input_hover_accent textarea+label:before{color:rgba(38,34,98,.6)}.scheme_original .sc_input_hover_path input[type="text"]+label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="number"]+label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="email"]+label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="password"]+label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="search"]+label>.sc_form_graphic,.scheme_original .sc_input_hover_path textarea+label>.sc_form_graphic{stroke:#00a9e1}.scheme_original .sc_input_hover_jump .sc_form_label_content:before{color:#fff}.scheme_original .sc_input_hover_jump input[type="text"],.scheme_original .sc_input_hover_jump input[type="number"],.scheme_original .sc_input_hover_jump input[type="email"],.scheme_original .sc_input_hover_jump input[type="password"],.scheme_original .sc_input_hover_jump input[type="search"],.scheme_original .sc_input_hover_jump textarea{border-color:#00a9e1}.scheme_original .sc_input_hover_jump input[type="text"]:focus,.scheme_original .sc_input_hover_jump input[type="number"]:focus,.scheme_original .sc_input_hover_jump input[type="email"]:focus,.scheme_original .sc_input_hover_jump input[type="password"]:focus,.scheme_original .sc_input_hover_jump input[type="search"]:focus,.scheme_original .sc_input_hover_jump textarea:focus,.scheme_original .sc_input_hover_jump input[type="text"].filled,.scheme_original .sc_input_hover_jump input[type="number"].filled,.scheme_original .sc_input_hover_jump input[type="email"].filled,.scheme_original .sc_input_hover_jump input[type="password"].filled,.scheme_original .sc_input_hover_jump input[type="search"].filled,.scheme_original .sc_input_hover_jump textarea.filled{border-color:#262262}.scheme_original .sc_input_hover_underline input[type="text"]+label:before,.scheme_original .sc_input_hover_underline input[type="number"]+label:before,.scheme_original .sc_input_hover_underline input[type="email"]+label:before,.scheme_original .sc_input_hover_underline input[type="password"]+label:before,.scheme_original .sc_input_hover_underline input[type="search"]+label:before,.scheme_original .sc_input_hover_underline textarea+label:before{background-color:#00a9e1}.scheme_original .sc_input_hover_jump input[type="text"]:focus+label:before,.scheme_original .sc_input_hover_jump input[type="number"]:focus+label:before,.scheme_original .sc_input_hover_jump input[type="email"]:focus+label:before,.scheme_original .sc_input_hover_jump input[type="password"]:focus+label:before,.scheme_original .sc_input_hover_jump input[type="search"]:focus+label:before,.scheme_original .sc_input_hover_jump textarea:focus+label:before,.scheme_original .sc_input_hover_jump input[type="text"].filled+label:before,.scheme_original .sc_input_hover_jump input[type="number"].filled+label:before,.scheme_original .sc_input_hover_jump input[type="email"].filled+label:before,.scheme_original .sc_input_hover_jump input[type="password"].filled+label:before,.scheme_original .sc_input_hover_jump input[type="search"].filled+label:before,.scheme_original .sc_input_hover_jump textarea.filled+label:before{background-color:#bbb}.scheme_original .sc_input_hover_underline input[type="text"]+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"]+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"]+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"]+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"]+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea+label>.sc_form_label_content{color:#8a8a8a}.scheme_original .sc_input_hover_underline input[type="text"]:focus+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"]:focus+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"]:focus+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"]:focus+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"]:focus+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea:focus+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="text"].filled+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"].filled+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"].filled+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"].filled+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"].filled+label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea.filled+label>.sc_form_label_content{color:#020817}.scheme_original .sc_input_hover_iconed input[type="text"]+label,.scheme_original .sc_input_hover_iconed input[type="number"]+label,.scheme_original .sc_input_hover_iconed input[type="email"]+label,.scheme_original .sc_input_hover_iconed input[type="password"]+label,.scheme_original .sc_input_hover_iconed input[type="search"]+label,.scheme_original .sc_input_hover_iconed textarea+label{color:#8a8a8a}.scheme_original .sc_input_hover_iconed input[type="text"]:focus+label,.scheme_original .sc_input_hover_iconed input[type="number"]:focus+label,.scheme_original .sc_input_hover_iconed input[type="email"]:focus+label,.scheme_original .sc_input_hover_iconed input[type="password"]:focus+label,.scheme_original .sc_input_hover_iconed input[type="search"]:focus+label,.scheme_original .sc_input_hover_iconed textarea:focus+label,.scheme_original .sc_input_hover_iconed input[type="text"].filled+label,.scheme_original .sc_input_hover_iconed input[type="number"].filled+label,.scheme_original .sc_input_hover_iconed input[type="email"].filled+label,.scheme_original .sc_input_hover_iconed input[type="password"].filled+label,.scheme_original .sc_input_hover_iconed input[type="search"].filled+label,.scheme_original .sc_input_hover_iconed textarea.filled+label{color:#8a8a8a}.scheme_original .body_wrap{color:#656c77}.scheme_original .body_style_boxed .body_wrap{background-color:#fff}.scheme_original body:not(.video_bg_show),.scheme_original body:not(.video_bg_show) .page_wrap,.scheme_original .copy_wrap,.scheme_original .sidebar_cart,.scheme_original .widget_area_inner,.scheme_original #page_preloader{background-color:#fff}.scheme_original .widget_area_inner{background-color:#f0f4f9}.scheme_original .footer_wrap_inner.widget_area_inner{background-color:#fff}.scheme_original .widget_rss .widget_title a{color:#262262}.scheme_original .widget_rss .widget_title a:hover{color:#00a9e1}.scheme_original .footer_wrap_inner .widget_rss .widget_title a,.scheme_original .footer_wrap_inner .widget_rss .rsswidget,.scheme_original .footer_wrap_inner .widget_rss .rss-date,.scheme_original .footer_wrap_inner .widget_rss .rssSummary{color:#262262}.scheme_original .footer_wrap_inner .widget_rss .widget_title a:hover,.scheme_original .footer_wrap_inner .widget_rss a.rsswidget:hover{color:#00a9e1}.scheme_original .article_style_boxed .content>article>.post_content,.scheme_original .article_style_boxed[class*="single-"] .content>.comments_wrap,.scheme_original .article_style_boxed[class*="single-"] .content>article>.post_info_share,.scheme_original .article_style_boxed:not(.layout_excerpt):not(.single) .content .post_item{background-color:#f0f4f9}.scheme_original .top_panel_wrap_inner{background-color:#fff}.scheme_original .top_panel_fixed .top_panel_position_over.top_panel_wrap_inner{background-color:#f0f4f9!important}.scheme_original .top_panel_inner_style_3 .top_panel_cart_button,.scheme_original .top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,169,225,.2)}.scheme_original .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:#262262}.scheme_original .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after{color:#fff}.scheme_original .top_panel_middle .sidebar_cart:after,.scheme_original .top_panel_middle .sidebar_cart{border-color:#dfe5ea;background-color:#fff}.scheme_original .top_panel_inner_style_3 .top_panel_top,.scheme_original .top_panel_inner_style_4 .top_panel_top,.scheme_original .top_panel_inner_style_5 .top_panel_top,.scheme_original .top_panel_inner_style_3 .top_panel_top .sidebar_cart,.scheme_original .top_panel_inner_style_4 .top_panel_top .sidebar_cart{color:#fff;background-color:#262262}.scheme_original .top_panel_top a{color:#656c77}.scheme_original .top_panel_top a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .top_panel_top strong,.scheme_original .top_panel_inner_style_3 .top_panel_top a,.scheme_original .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_4 .top_panel_top a,.scheme_original .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_5 .top_panel_top a,.scheme_original .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a{color:#fff}.scheme_original .top_panel_inner_style_3 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_4 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_5 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a:hover{color:#fff}.scheme_original .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]{color:#fff}.scheme_original .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]:hover{color:#fff}.scheme_original .top_panel_wrap .contact_label{color:#00a9e1}.scheme_original .top_panel_bottom .search_wrap .search_form button:before{color:#00a9e1}.scheme_original .top_panel_bottom .search_wrap .search_form button:hover:before{color:#00a9e1}.scheme_original .menu_user_nav>li>a{color:#656c77}.scheme_original .menu_user_nav>li>a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>a{color:#fff}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>a:hover,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>a:hover,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>a:hover{color:#fff}.scheme_original .menu_user_nav>li ul:not(.cart_list){border-color:#dfe5ea;background-color:#fff}.scheme_original .top_panel_inner_style_1 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_2 .menu_user_nav>li>ul:after{border-color:#dfe5ea;background-color:#fff}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul{color:#fff;background-color:#262262;border-color:#00a9e1}.scheme_original .menu_user_nav>li ul li a{color:#8a8a8a}.scheme_original .menu_user_nav>li ul li a:hover,.scheme_original .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .menu_user_nav>li ul li.current-menu-ancestor>a{color:#232a34;background-color:#f0f0f0}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#00a9e1}.scheme_original .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#dfe5ea}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#fff}.scheme_original .menu_user_nav>li.menu_user_bookmarks .bookmarks_add{border-bottom-color:#ddd}.scheme_original .logo .logo_text{color:#262262}.scheme_original .logo .logo_slogan{color:#656c77}.scheme_original .top_panel_image_hover{background-color:rgba(0,169,225,.8)}.scheme_original .top_panel_image_header,.scheme_original .top_panel_image_title,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_text,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_slogan{color:#fff}.scheme_original .top_panel_image_header a,.scheme_original .top_panel_image_title>a,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a{color:#fff}.scheme_original .post_featured .post_header a:hover,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a:hover{color:#fff}.scheme_original .menu_main_nav>li>a{color:#262262}.scheme_original .menu_main_nav>li ul{color:#fff;background-color:#00a9e1}.scheme_original .menu_main_nav>a:hover,.scheme_original .menu_main_nav>li>a:hover,.scheme_original .menu_main_nav>li.sfHover>a,.scheme_original .menu_main_nav>li.current-menu-item>a,.scheme_original .menu_main_nav>li.current-menu-parent>a,.scheme_original .menu_main_nav>li.current-menu-ancestor>a{border-color:#00a9e1;color:#00a9e1}.scheme_original .menu_main_nav>li ul li a{color:#fff}.scheme_original .menu_main_nav>li ul li a:hover,.scheme_original .menu_main_nav>li ul li.current-menu-item>a,.scheme_original .menu_main_nav>li ul li.current-menu-ancestor>a{color:#262262}.scheme_original .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#f0f0f0}.scheme_original .top_panel_inner_style_1 .menu_hover_slide_box .menu_main_nav>li#blob,.scheme_original .top_panel_inner_style_2 .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#00a9e1}.scheme_original .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_slide_line .menu_main_nav>li#blob,.scheme_original .top_panel_inner_style_2 .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#fff}.scheme_original .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_zoom_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#fff}.scheme_original .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:after,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#fff}.scheme_original .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_roll_down .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#fff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:focus{color:#232a34}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#fff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#232a34}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#fff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:after,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#fff}.scheme_original .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:focus{color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#fff}.scheme_original .top_panel_middle .contact_field,.scheme_original .top_panel_middle .contact_field>a{color:#262262}.scheme_original .top_panel_middle .contact_icon{color:rgba(157,170,176,.6)}.scheme_original .top_panel_middle .content_wrap>.columns_wrap{border-color:#ddd}.scheme_original .top_panel_inner_style_1 .search_field,.scheme_original .top_panel_inner_style_2 .search_field,.scheme_original .top_panel_inner_style_3 .search_field{border-color:rgba(255,255,255,.1);background-color:rgba(0,169,225,.2)}.scheme_original .top_panel_inner_style_4 .search_field{background-color:rgba(38,34,98,.05)}.scheme_original .content .search_field{background-color:#f0f4f9}.scheme_original .content .search_field,.scheme_original .content .search_submit{color:#8a8a8a}.scheme_original .content .search_submit:before{color:#fff}.scheme_original .content .search_field:focus,.scheme_original .content .search_submit:hover{color:#232a34}.scheme_original .top_panel_inner_style_1 .search_field,.scheme_original .top_panel_inner_style_1 .search_submit,.scheme_original .top_panel_inner_style_2 .search_field,.scheme_original .top_panel_inner_style_2 .search_submit,.scheme_original .top_panel_inner_style_4 .search_field,.scheme_original .top_panel_inner_style_4 .search_submit{color:#262262}.scheme_original .top_panel_inner_style_3 .search_field,.scheme_original .top_panel_inner_style_3 .search_submit{color:#fff}.scheme_original .top_panel_inner_style_3 .search_field:focus,.scheme_original .top_panel_inner_style_3 .search_submit:focus,.scheme_original .top_panel_inner_style_3 .search_submit:hover{color:#fff}.scheme_original .top_panel_inner_style_8 .search_field:hover,.scheme_original .top_panel_inner_style_8 .search_field:focus{color:#232a34!important;background-color:#f0f0f0!important}.scheme_original .top_panel_icon.search_wrap{background-color:#fff;color:#262262}.scheme_original .top_panel_icon .contact_icon,.scheme_original .top_panel_icon .search_submit{color:#262262}.scheme_original .top_panel_icon.menu_main_cart .contact_icon{background-color:#fff}.scheme_original .top_panel_middle a:hover .contact_icon,.scheme_original .top_panel_icon.search_wrap:hover,.scheme_original .top_panel_icon:hover .contact_icon,.scheme_original .top_panel_icon:hover .search_submit{background-color:#262262}.scheme_original .top_panel_middle a:hover .contact_icon,.scheme_original .top_panel_icon.search_wrap:hover input,.scheme_original .top_panel_icon.search_wrap:hover button,.scheme_original .top_panel_icon:hover .contact_icon,.scheme_original .top_panel_icon:hover .search_submit{color:#fff}.scheme_original .search_style_fullscreen.search_state_closed:not(.top_panel_icon) .search_submit,.scheme_original .search_style_slide.search_state_closed:not(.top_panel_icon) .search_submit{color:#fff}.scheme_original .search_style_expand.search_state_opened:not(.top_panel_icon) .search_submit:hover,.scheme_original .search_style_slide.search_state_opened:not(.top_panel_icon) .search_submit:hover{color:#020817}.scheme_original .top_panel_inner_style_3 .search_style_expand.search_state_opened .search_submit:hover,.scheme_original .top_panel_inner_style_3 .search_style_slide.search_state_opened .search_submit:hover{color:#fff}.scheme_original .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap{top:.8em}.scheme_original .search_results .post_more,.scheme_original .search_results .search_results_close{color:#262262}.scheme_original .search_results .post_more:hover,.scheme_original .search_results .search_results_close:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_1 .search_results,.scheme_original .top_panel_inner_style_1 .search_results:after,.scheme_original .top_panel_inner_style_2 .search_results,.scheme_original .top_panel_inner_style_2 .search_results:after,.scheme_original .top_panel_inner_style_3 .search_results,.scheme_original .top_panel_inner_style_3 .search_results:after{color:#fff;background-color:#262262;border-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .search_results a,.scheme_original .top_panel_inner_style_1 .search_results .post_info a,.scheme_original .top_panel_inner_style_1 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_1 .search_results .post_more,.scheme_original .top_panel_inner_style_1 .search_results .search_results_close,.scheme_original .top_panel_inner_style_2 .search_results a,.scheme_original .top_panel_inner_style_2 .search_results .post_info a,.scheme_original .top_panel_inner_style_2 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_2 .search_results .post_more,.scheme_original .top_panel_inner_style_2 .search_results .search_results_close,.scheme_original .top_panel_inner_style_3 .search_results a,.scheme_original .top_panel_inner_style_3 .search_results .post_info a,.scheme_original .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_3 .search_results .post_more,.scheme_original .top_panel_inner_style_3 .search_results .search_results_close{color:#fff}.scheme_original .top_panel_inner_style_1 .search_results a:hover,.scheme_original .top_panel_inner_style_1 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_1 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_1 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_1 .search_results .search_results_close:hover,.scheme_original .top_panel_inner_style_2 .search_results a:hover,.scheme_original .top_panel_inner_style_2 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_2 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_2 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_2 .search_results .search_results_close:hover,.scheme_original .top_panel_inner_style_3 .search_results a:hover,.scheme_original .top_panel_inner_style_3 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_3 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_3 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_3 .search_results .search_results_close:hover{color:#fff}.scheme_original .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{color:#8a8a8a}.scheme_original .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button:hover{color:#232a34}.scheme_original .top_panel_inner_style_8 .top_panel_buttons .contact_icon,.scheme_original .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon .search_submit{color:#8a8a8a}.scheme_original .top_panel_inner_style_8 .top_panel_buttons a:hover .contact_icon,.scheme_original .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit{color:#232a34}.scheme_original .pushy_inner{color:#656c77;background-color:#fff}.scheme_original .pushy_inner a{color:#262262}.scheme_original .pushy_inner a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .popup_wrap a,.scheme_original .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap a,.scheme_original .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap a,.scheme_original .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:#262262}.scheme_original .top_panel_inner_style_3 .popup_wrap a:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap a:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .popup_wrap,.scheme_original .top_panel_inner_style_4 .popup_wrap,.scheme_original .top_panel_inner_style_5 .popup_wrap,.scheme_original .top_panel_inner_style_3 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_4 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_5 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a{color:#656c77}.scheme_original .top_panel_inner_style_3 .popup_wrap .popup_close:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap .popup_close:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap .popup_close:hover{color:#262262}.scheme_original .header_mobile .menu_button,.scheme_original .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon{color:#262262}.scheme_original .header_mobile .side_wrap{color:#fff}.scheme_original .header_mobile .panel_top,.scheme_original .header_mobile .side_wrap{background-color:#262262}.scheme_original .header_mobile .panel_middle{background-color:#262262}.scheme_original .header_mobile .menu_button:hover,.scheme_original .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon:hover,.scheme_original .header_mobile .menu_main_cart.top_panel_icon:hover .top_panel_cart_button .contact_icon,.scheme_original .header_mobile .side_wrap .close:hover{color:#262262}.scheme_original .header_mobile .menu_main_nav>li a,.scheme_original .header_mobile .menu_main_nav>li>a:hover{color:#fff}.scheme_original .header_mobile .menu_main_nav>a:hover,.scheme_original .header_mobile .menu_main_nav>li.sfHover>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-item>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-parent>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-ancestor>a,.scheme_original .header_mobile .menu_main_nav>li>a:hover,.scheme_original .header_mobile .menu_main_nav>li ul li a:hover,.scheme_original .header_mobile .menu_main_nav>li ul li.current-menu-item>a,.scheme_original .header_mobile .menu_main_nav>li ul li.current-menu-ancestor>a,.scheme_original .header_mobile .login a:hover{color:#fff}.scheme_original .header_mobile .popup_wrap .popup_close:hover{color:#262262}.scheme_original .header_mobile .search_wrap,.scheme_original .header_mobile .login{border-color:#262262}.scheme_original .header_mobile .login .popup_link,.scheme_original .header_mobile .sc_socials.sc_socials_type_icons a{color:#fff}.scheme_original .header_mobile .search_wrap .search_field,.scheme_original .header_mobile .search_wrap .search_field:focus{color:#fff}.scheme_original .header_mobile .popup_wrap .sc_socials.sc_socials_type_icons a{color:#9daab0}.scheme_original .tparrows.default{color:#fff}.scheme_original .tp-bullets.simplebullets.round .bullet{background-color:#fff}.scheme_original .tp-bullets.simplebullets.round .bullet.selected{border-color:#fff}.scheme_original .slider_over_content_inner{background-color:rgba(255,255,255,.8)}.scheme_original .slider_over_button{color:#262262;background-color:rgba(255,255,255,.8)}.scheme_original .slider_over_close{color:#262262}.scheme_original .sc_button.slider_button{background:#ffffff!important;color:#262262!important}.scheme_original .sc_button.slider_button:hover{background:#262262!important;color:#ffffff!important}.scheme_original .persephone.tparrows{border-color:rgba(255,255,255,.3)!important}.scheme_original .persephone.tparrows:before{color:rgba(255,255,255,.7)!important}.scheme_original .persephone.tparrows:hover{border-color:#00a9e1!important}.scheme_original .persephone.tparrows:hover:before{color:#00a9e1!important}.scheme_original .top_panel_title_inner{background-color:#f0f4f9;border-color:rgba(221,221,221,.1)}.scheme_original .top_panel_title_inner .page_title{color:#262262}.scheme_original .top_panel_title_inner .post_navi .post_navi_item a,.scheme_original .top_panel_title_inner .breadcrumbs a.breadcrumbs_item{color:#232a34}.scheme_original .top_panel_title_inner .post_navi .post_navi_item a:hover,.scheme_original .top_panel_title_inner .breadcrumbs a.breadcrumbs_item:hover{color:#acb4b6}.scheme_original .top_panel_title_inner .post_navi span,.scheme_original .top_panel_title_inner .breadcrumbs span{color:#acb4b6}.scheme_original .post_navi .post_navi_item+.post_navi_item:before,.scheme_original .top_panel_title_inner .breadcrumbs .breadcrumbs_delimiter{color:#acb4b6}.scheme_original .post_title .post_icon{color:#262262}.scheme_original .pagination>a{border-color:#262262}.scheme_original .post_format_aside.post_item_single .post_content p,.scheme_original .post_format_aside .post_descr{border-color:#262262;background-color:#fff}.scheme_original .hover_icon:before{color:#fff;background-color:#00a9e1}.scheme_original .hover_icon:after{background-color:rgba(38,34,98,.8)}.scheme_original .post_info a,.scheme_original .post_info a>span{color:#9daab0}.scheme_original .post_info a[class*="icon-"]{color:#262262}.scheme_original .post_info a:hover,.scheme_original .post_info a:hover>span{color:#00a9e1}.scheme_original .post_item .post_readmore_label{color:#262262}.scheme_original .post_item .post_readmore:hover .post_readmore_label{color:#00a9e1}.scheme_original .post_info .post_info_counters .post_counters_item:before,.scheme_original .post_info .post_info_posted:before{color:#00a9e1}.scheme_original .post_info .post_info_posted_by:before,.scheme_original .post_info .post_info_tags:before{color:#9daab0}.scheme_original .post_info .post_info_posted_by,.scheme_original .post_info .post_info_tags{color:#9daab0}.scheme_original .post_info.post_info_bottom .post_info_tags a{background-color:#dfe5ea;color:#656c77}.scheme_original .post_info.post_info_bottom .post_info_tags a:hover{color:#fff;background-color:#00a9e1}.scheme_original .post_info_bottom_cat_tag{border-color:#dfe5ea}.scheme_original .post_item_related .post_info a{color:#656c77}.scheme_original .post_item_related .post_info a:hover,.scheme_original .post_item_related .post_title a:hover{color:#00a9e1}.scheme_original .article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related{background-color:#f0f4f9}.scheme_original .post_item_related .post_content .post_content_wrap .post_title a{color:#262262}.scheme_original .post_item_related .post_content .post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_original .post_item_related .post_content .post_featured+.post_content_wrap .post_title a{color:#fff}.scheme_original .post_item_related .post_content .post_featured+.post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_original .post_item_related .post_content .post_featured .hover_icon:after{background:-moz-linear-gradient(bottom,rgba(38,34,98,.8) 0%,rgba(125,185,232,0) 100%);background:-webkit-linear-gradient(bottom,rgba(38,34,98,.8) 0%,rgba(125,185,232,0) 100%);background:linear-gradient(to top,rgba(38,34,98,.8) 0%,rgba(125,185,232,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e5799',endColorstr='#007db9e8',GradientType=0)}.scheme_original .single-post .related_wrap{border-color:#dfe5ea}.scheme_original .isotope_item_colored .post_featured .post_mark_new,.scheme_original .isotope_item_colored .post_featured .post_title,.scheme_original .isotope_item_colored .post_content.ih-item.square.colored .info{color:#fff;background-color:#262262}.scheme_original .isotope_item_colored .post_featured .post_title a{color:#fff}.scheme_original .isotope_item_colored .post_category a,.scheme_original .isotope_item_colored .post_rating .reviews_stars_bg,.scheme_original .isotope_item_colored .post_rating .reviews_stars_hover,.scheme_original .isotope_item_colored .post_rating .reviews_value{color:#262262}.scheme_original .isotope_item_colored .post_featured .post_descr{background-color:#f0f4f9}.scheme_original .article_style_boxed .isotope_item_colored .post_featured .post_descr{background-color:#f0f4f9}.scheme_original .isotope_item_colored .post_info_wrap .post_button .sc_button{color:#262262;background-color:#fff}.scheme_original .isotope_item_colored_1 .post_item{background-color:#f0f4f9;color:#8a8a8a}.scheme_original .isotope_item_colored_1 a,.scheme_original .isotope_item_colored_1 .post_title a{color:#00a9e1}.scheme_original .isotope_item_colored_1 a:hover,.scheme_original .isotope_item_colored_1 .post_title a:hover,.scheme_original .isotope_item_colored_1 .post_category a:hover{color:#00a9e1}.scheme_original .isotope_wrap .isotope_item_colored_1 .post_featured{border-color:#262262}.scheme_original .isotope_filters a{border-color:#262262;background-color:#262262;color:#fff}.scheme_original .isotope_filters a.active,.scheme_original .isotope_filters a:hover{border-color:#00a9e1;background-color:#00a9e1}.scheme_original .pagination_single>.pager_numbers,.scheme_original .pagination_single a,.scheme_original .pagination_single .current,.scheme_original .pagination_slider .pager_cur,.scheme_original .pagination_pages>a,.scheme_original .pagination_pages>span{background-color:#fff;color:#00a9e1;border-color:#00a9e1}.scheme_original .pagination_single>.pager_numbers,.scheme_original .pagination_single a:hover,.scheme_original .pagination_single .current,.scheme_original .pagination_slider .pager_cur:hover,.scheme_original .pagination_slider .pager_cur:focus,.scheme_original .pagination_pages>.active,.scheme_original .pagination_pages>a:hover{border-color:#00a9e1;background-color:#00a9e1;color:#fff}.scheme_original .pagination_slider .pager_slider{border-color:#dfe5ea;background-color:#fff}.scheme_original .pagination_wrap .pager_next,.scheme_original .pagination_wrap .pager_prev,.scheme_original .pagination_wrap .pager_last,.scheme_original .pagination_wrap .pager_first{color:#262262}.scheme_original .pagination_wrap .pager_next:hover,.scheme_original .pagination_wrap .pager_prev:hover,.scheme_original .pagination_wrap .pager_last:hover,.scheme_original .pagination_wrap .pager_first:hover{color:#00a9e1}.scheme_original .pagination_viewmore>a{color:#fff;background-color:#262262}.scheme_original .pagination_viewmore>a:hover{color:#fff;background-color:#00a9e1}.scheme_original .viewmore_loader,.scheme_original .mfp-preloader span,.scheme_original .sc_video_frame.sc_video_active:before{background-color:#00a9e1}.scheme_original .post_featured .post_nav_item{color:#fff}.scheme_original .post_featured .post_nav_item:before{background-color:#262262;color:#fff}.scheme_original .post_featured .post_nav_item .post_nav_info{background-color:#262262}.scheme_original .reviews_block .reviews_summary .reviews_item{background-color:#262262}.scheme_original .reviews_block .reviews_summary,.scheme_original .reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:#f0f0f0}.scheme_original .reviews_block .reviews_max_level_100 .reviews_stars_hover,.scheme_original .reviews_block .reviews_item .reviews_slider{color:#fff;background-color:#262262}.scheme_original .reviews_block .reviews_item .reviews_stars_hover{color:#262262}.scheme_original .reviews_block .reviews_value{color:#262262}.scheme_original .reviews_block .reviews_summary .reviews_criteria{color:#656c77}.scheme_original .reviews_block .reviews_summary .reviews_value{color:#fff}.scheme_original .post_item .post_rating .reviews_stars_bg,.scheme_original .post_item .post_rating .reviews_stars_hover,.scheme_original .post_item .post_rating .reviews_value{color:#262262}.scheme_original .post_author{background-color:#f0f4f9;color:#232a34}.scheme_original .post_author .post_author_title{color:#232a34}.scheme_original .post_author .post_author_title a{color:#262262}.scheme_original .post_author .post_author_title a:hover{color:#00a9e1}.scheme_original .post_author .post_author_info .sc_socials_shape_square a{color:#232a34}.scheme_original .post_author .post_author_info .sc_socials_shape_square a:hover{color:#00a9e1}.scheme_original .post_author_inner{border-color:#dfe5ea}.scheme_original .comments_list_wrap ul.children,.scheme_original .comments_list_wrap ul>li+li{border-top-color:#9daab0}.scheme_original .comments_list_wrap .comment-respond{border-bottom-color:#262262}.scheme_original .comments_list_wrap>ul{border-bottom-color:#dfe5ea}.scheme_original .comments_list_wrap .comment_info>.comment_date>.comment_date_value,.scheme_original .comments_list_wrap .comment_info .comment_date+span:before,.scheme_original .comments_list_wrap .comment_time{color:#9daab0}.scheme_original .comments_list_wrap .comment_author{color:#262262}.scheme_original .comments_list_wrap .comment_reply a{color:#00a9e1}.scheme_original .comments_list_wrap .comment_reply a:hover{color:#00a9e1}.scheme_original .post_item_404 .page_title,.scheme_original .post_item_404 .page_subtitle,.scheme_original .post_item_404 .page_search .search_wrap .search_submit:before{color:#262262}.scheme_original .post_item_404 .page_search .search_wrap .search_submit:hover:before{color:#00a9e1}.scheme_original .sidebar_outer_menu .menu_side_nav li>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li>a{color:#262262}.scheme_original .sidebar_outer_menu .menu_side_nav li>a:hover,.scheme_original .sidebar_outer_menu .menu_side_nav li.sfHover>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li>a:hover,.scheme_original .sidebar_outer_menu .menu_side_responsive li.sfHover>a{color:#232a34;background-color:#f0f0f0}.scheme_original .sidebar_outer_menu .menu_side_nav>li ul,.scheme_original .sidebar_outer_menu .menu_side_responsive>li ul{color:#262262;background-color:#fff;border-color:#dfe5ea}.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-item>a,.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-parent>a,.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-ancestor>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-item>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-parent>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-ancestor>a{color:#9daab0}.scheme_original .sidebar_outer_menu .sidebar_outer_menu_buttons>a{color:#262262}.scheme_original .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:#262262}.scheme_original .sidebar_inner aside:nth-child(3n+4),.scheme_original .sidebar_inner aside:nth-child(3n+5),.scheme_original .sidebar_inner aside:nth-child(3n+6),.scheme_original .sidebar_outer_inner aside:nth-child(3n+4),.scheme_original .sidebar_outer_inner aside:nth-child(3n+5),.scheme_original .sidebar_outer_inner aside:nth-child(3n+6),.scheme_original .widget_area_inner aside:nth-child(2n+3),.scheme_original .widget_area_inner aside:nth-child(2n+4),.scheme_original .widget_area_inner aside+aside{border-color:#dfe5ea}.scheme_original .widget_area_inner{color:#656c77}.scheme_original .widget_area_inner a,.scheme_original .widget_area_inner ul li:before,.scheme_original .widget_area_inner ul li a:hover,.scheme_original .widget_area_inner button:before{color:#656c77}.scheme_original .widget_area_inner button:before,.scheme_original .widget_area_inner ul li:before{color:#00a9e1}.scheme_original .widget_area_inner a:hover,.scheme_original .widget_area_inner ul li a,.scheme_original .widget_area_inner button:hover:before{color:#262262}.scheme_original .widget_area_inner ul li a:hover{color:#00a9e1}.scheme_original .widget_area_inner .post_title a{color:#262262}.scheme_original .widget_area_inner .widget_text a:not(.sc_button),.scheme_original .widget_area_inner .post_info a{color:#262262}.scheme_original .widget_area_inner .widget_text a:not(.sc_button):hover,.scheme_original .widget_area_inner .post_info a:hover{color:#00a9e1}.scheme_original .widget_area_inner .widget_product_search .search_form,.scheme_original .widget_area_inner .widget_search .search_form,.scheme_original .widget_area_inner .widget_categories select,.scheme_original .widget_area_inner .widget_text select,.scheme_original .widget_area_inner .widget_archive select{background-color:#fff}.scheme_original .footer_wrap_inner.widget_area_inner .widget_search .search_form,.scheme_original .footer_wrap_inner.widget_area_inner .widget_archive select,.scheme_original .footer_wrap_inner.widget_area_inner .widget_text select,.scheme_original .footer_wrap_inner.widget_area_inner .widget_categories select{background-color:#f0f4f9}.scheme_original .widget_area_inner .widget_product_search .search_field,.scheme_original .widget_area_inner .widget_search .search_field{color:#8a8a8a}.scheme_original .widget_area_inner .widget_product_search .search_button:before,.scheme_original .widget_area_inner .widget_search .search_button:before{color:#9daab0}.scheme_original .widget_area_inner .widget_product_search .search_button,.scheme_original .widget_area_inner .widget_search .search_button{color:#656c77}.scheme_original .widget_area_inner .widget_product_search .search_button:hover,.scheme_original .widget_area_inner .widget_search .search_button:hover{color:#232a34}.scheme_original .widget_area_inner .widget_calendar .weekday,.scheme_original .wp-block-calendar .weekday{color:#262262}.scheme_original .widget_area_inner .widget_calendar td a:hover,.scheme_original .wp-block-calendar td a:hover{background-color:#00a9e1;color:#fff}.scheme_original .wp-block-calendar .today .day_wrap,.scheme_original .widget_area_inner .widget_calendar .today .day_wrap{color:#fff}.scheme_original .wp-block-calendar .today .day_wrap:before,.scheme_original .widget_area_inner .widget_calendar .today .day_wrap:before{background-color:#00a9e1}.scheme_original .widget_area .widget_calendar td a:after{color:#00a9e1}.scheme_original .widget_area .widget_calendar th.month_prev a,.scheme_original .widget_area .widget_calendar th.month_next a{color:#00a9e1}.scheme_original .widget_area .widget_calendar th.month_prev a:hover,.scheme_original .widget_area .widget_calendar th.month_next a:hover{color:#00a9e1}.scheme_original .widget_area .widget_calendar .month_cur{color:#00a9e1}.scheme_original .widget_area .widget_calendar td,.scheme_original .wp-block-calendar td{color:#656c77}.scheme_original .widget_area .widget_calendar .weekday{color:#262262}.scheme_original .widget_area .widget_recent_comments ul li .comment-author-link{color:#262262}.scheme_original .footer_wrap.widget_area .widget_recent_comments ul li .comment-author-link{color:#fff}.scheme_original .footer_wrap.widget_area .widget_rss cite{color:#fff}.scheme_original .wp-block-tag-cloud a,.scheme_original .widget_area_inner .widget_product_tag_cloud a,.scheme_original .widget_area_inner .widget_tag_cloud a{background-color:#dfe5ea;color:#656c77}.scheme_original .wp-block-tag-cloud a:not([class*="sc_button_hover_"]):hover,.scheme_original .widget_area_inner .widget_product_tag_cloud a:not([class*="sc_button_hover_"]):hover,.scheme_original .widget_area_inner .widget_tag_cloud a:not([class*="sc_button_hover_"]):hover{color:#fff;background-color:#00a9e1}.scheme_original .widget_text .mail_footer,.scheme_original .widget_text .address_footer,.scheme_original .widget_text .mail_footer:before,.scheme_original .widget_text .address_footer:before{color:#00a9e1}.scheme_original .widget_text .textwidget h5{color:#fff}.scheme_original .sidebar_outer_inner aside,.scheme_original .sidebar_inner aside{border-top-color:#dfe5ea}.scheme_original .pre_footer_wrap{background-color:#00a9e1}.scheme_original .pre_footer_wrap a{color:#fff}.scheme_original .pre_footer_wrap a:hover{color:#00a9e1}.scheme_original .footer_wrap_inner.widget_area_inner .content_wrap{border-color:rgba(255,255,255,.1)}.scheme_original .contacts_wrap_inner{color:#656c77;background-color:#fff}.scheme_original .testimonials_wrap_inner,.scheme_original .twitter_wrap_inner{color:#656c77;background-color:#fff}.scheme_original .copyright_wrap_inner{background-color:#fff}.scheme_original .copyright_wrap_inner .copyright_text{color:#8a8a8a}.scheme_original .copyright_wrap_inner .menu_footer_nav li a{color:#656c77}.scheme_original .copyright_wrap_inner .menu_footer_nav li a:hover{color:#262262}.scheme_original .scroll_to_top{background:#262262;background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%);background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%);background:linear-gradient(to right,#262262 9%,#00a9e1 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);background-size:200%;background-position:0;color:#fff}.scheme_original .scroll_to_top:hover{color:#fff}.scheme_original #page_preloader{background-color:#fff}.scheme_original .preloader_wrap>div{background-color:#262262}.scheme_original.gallery_preview:before{background-color:#fff}.scheme_original .popup_wrap{background-color:#fff}.scheme_original .woocommerce div.quantity span,.scheme_original .woocommerce-page div.quantity span{color:#262262;background-color:#f0f4f9}.scheme_original .woocommerce div.quantity span:hover,.scheme_original .woocommerce-page div.quantity span:hover{color:#00a9e1;background-color:#f0f4f9}.scheme_original .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#acb4b6}.scheme_original .woocommerce .widget_price_filter .ui-slider .ui-slider-range,.scheme_original .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background-color:#262262}.scheme_original .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.scheme_original .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{background:#262262}.scheme_original .woocommerce .woocommerce-message,.scheme_original .woocommerce-page .woocommerce-message,.scheme_original .woocommerce a.button.alt:active,.scheme_original .woocommerce button.button.alt:active,.scheme_original .woocommerce input.button.alt:active,.scheme_original .woocommerce #respond input#submit.alt:active,.scheme_original .woocommerce #content input.button.alt:active,.scheme_original .woocommerce-page a.button.alt:active,.scheme_original .woocommerce-page button.button.alt:active,.scheme_original .woocommerce-page input.button.alt:active,.scheme_original .woocommerce-page #respond input#submit.alt:active,.scheme_original .woocommerce-page #content input.button.alt:active,.scheme_original .woocommerce a.button:active,.scheme_original .woocommerce button.button:active,.scheme_original .woocommerce input.button:active,.scheme_original .woocommerce #respond input#submit:active,.scheme_original .woocommerce #content input.button:active,.scheme_original .woocommerce-page a.button:active,.scheme_original .woocommerce-page button.button:active,.scheme_original .woocommerce-page input.button:active,.scheme_original .woocommerce-page #respond input#submit:active,.scheme_original .woocommerce-page #content input.button:active{border-top-color:#262262}.scheme_original .woocommerce a.button:not(.pswp__button),.scheme_original .woocommerce button.button,.scheme_original .woocommerce input.button,.scheme_original .woocommerce #respond input#submit,.scheme_original .woocommerce #content input.button,.scheme_original .woocommerce-page a.button,.scheme_original .woocommerce-page button.button,.scheme_original .woocommerce-page input.button,.scheme_original .woocommerce-page #respond input#submit,.scheme_original .woocommerce-page #content input.button,.scheme_original .woocommerce a.button.alt,.scheme_original .woocommerce button.button.alt,.scheme_original .woocommerce input.button.alt,.scheme_original .woocommerce #respond input#submit.alt,.scheme_original .woocommerce #content input.button.alt,.scheme_original .woocommerce-page a.button.alt,.scheme_original .woocommerce-page button.button.alt,.scheme_original .woocommerce-page input.button.alt,.scheme_original .woocommerce-page #respond input#submit.alt,.scheme_original .woocommerce-page #content input.button.alt,.scheme_original .woocommerce-account .addresses .title .edit,.scheme_original .woocommerce ul.products li.product .add_to_cart_button,.scheme_original .woocommerce-page ul.products li.product .add_to_cart_button{background-color:#262262;color:#fff}.scheme_original .article_style_boxed.woocommerce .woocommerce-error,.scheme_original .article_style_boxed.woocommerce .woocommerce-info,.scheme_original .article_style_boxed.woocommerce .woocommerce-message,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-error,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-info,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-message{background-color:#f0f4f9}.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-error,.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-info,.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-message,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-error,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-info,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-message{background-color:#f0f4f9}.scheme_original .woocommerce span.new,.scheme_original .woocommerce-page span.new,.scheme_original .woocommerce span.onsale,.scheme_original .woocommerce-page span.onsale{background-color:#00a9e1;color:#fff}.scheme_original .article_style_boxed.woocommerce ul.products li.product .post_item_wrap,.scheme_original .article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#f0f4f9}.scheme_original .woocommerce ul.products li.product .price del,.scheme_original .woocommerce-page ul.products li.product .price del{color:#9daab0}.scheme_original.article_style_boxed.woocommerce ul.products li.product .post_item_wrap{background-color:#f0f0f0}.scheme_original.article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#f0f0f0}.scheme_original.article_style_boxed.woocommerce ul.products li.product .post_content{background-color:#f0f4f9}.scheme_original.article_style_boxed.woocommerce-page ul.products li.product .post_content{background-color:#f0f4f9}.scheme_original .woocommerce nav.woocommerce-pagination ul li a,.scheme_original .woocommerce nav.woocommerce-pagination ul li span.current{background-color:#fff;color:#00a9e1;border-color:#00a9e1}.scheme_original .woocommerce nav.woocommerce-pagination ul li a:focus,.scheme_original .woocommerce nav.woocommerce-pagination ul li a:hover,.scheme_original .woocommerce nav.woocommerce-pagination ul li span.current{color:#fff;background-color:#00a9e1}.scheme_original .woocommerce nav.woocommerce-pagination ul li .next,.scheme_original .woocommerce nav.woocommerce-pagination ul li .prev{color:#262262}.scheme_original .woocommerce nav.woocommerce-pagination ul li .next:hover,.scheme_original .woocommerce nav.woocommerce-pagination ul li .prev:hover{color:#00a9e1}.scheme_original .woocommerce div.product .woocommerce-tabs .panel,.scheme_original .woocommerce #content div.product .woocommerce-tabs .panel,.scheme_original .woocommerce-page div.product .woocommerce-tabs .panel,.scheme_original .woocommerce-page #content div.product .woocommerce-tabs .panel{border-color:#dfe5ea}.scheme_original.woocommerce-tabs.trx-stretch-width{background-color:#fff}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a{color:#656c77}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a:hover,.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a{color:#262262}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a:after{background-color:#262262}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a::after{background-color:#00a9e1}.scheme_original .woocommerce table.cart thead th,.scheme_original .woocommerce #content table.cart thead th,.scheme_original .woocommerce-page table.cart thead th,.scheme_original .woocommerce-page #content table.cart thead th{background-color:#262262;color:#fff}.scheme_original .woocommerce-account .woocommerce-MyAccount-navigation,.scheme_original .woocommerce-MyAccount-navigation li+li{border-color:#dfe5ea}.scheme_original .woocommerce-MyAccount-navigation li.is-active a{color:#262262}.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .empty,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .quantity,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .quantity .amount,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .total,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .total .amount{color:#fff}.scheme_original .top_panel_wrap .widget_shopping_cart ul.cart_list>li>a:hover{color:#00a9e1}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li+li{border-color:#ddd}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a{color:#656c77}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover>a,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a:hover{color:#262262}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories ul{background-color:#f0f4f9}.scheme_original .widget_shopping_cart_content .woocommerce-Price-amount,.scheme_original .product_list_widget ins .woocommerce-Price-amount{color:#00a9e1}.scheme_original .woocommerce-page .product .entry-summary p.price del{color:#9daab0}.scheme_original .woocommerce-page .product .entry-summary p.price ins{color:#00a9e1}.scheme_original .woocommerce div.product form.cart .variations tr{color:#656c77}.scheme_original .tribe-events-calendar thead th{background-color:#262262}.scheme_original a.tribe-events-read-more,.scheme_original .tribe-events-button,.scheme_original .tribe-events-nav-previous a,.scheme_original .tribe-events-nav-next a,.scheme_original .tribe-events-widget-link a,.scheme_original .tribe-events-viewmore a{background-color:#262262;color:#fff}.scheme_original a.tribe-events-read-more:hover,.scheme_original .tribe-events-button:hover,.scheme_original .tribe-events-nav-previous a:hover,.scheme_original .tribe-events-nav-next a:hover,.scheme_original .tribe-events-widget-link a:hover,.scheme_original .tribe-events-viewmore a:hover{background-color:#00a9e1;color:#fff}.scheme_original #bbpress-forums div.bbp-topic-content a,.scheme_original #buddypress button,.scheme_original #buddypress a.button,.scheme_original #buddypress input[type="submit"],.scheme_original #buddypress input[type="button"],.scheme_original #buddypress input[type="reset"],.scheme_original #buddypress ul.button-nav li a,.scheme_original #buddypress div.generic-button a,.scheme_original #buddypress .comment-reply-link,.scheme_original a.bp-title-button,.scheme_original #buddypress div.item-list-tabs ul li.selected a,.scheme_original #buddypress .acomment-options a{background:#262262;color:#fff}.scheme_original #bbpress-forums div.bbp-topic-content a:hover,.scheme_original #buddypress button:hover,.scheme_original #buddypress a.button:hover,.scheme_original #buddypress input[type="submit"]:hover,.scheme_original #buddypress input[type="button"]:hover,.scheme_original #buddypress input[type="reset"]:hover,.scheme_original #buddypress ul.button-nav li a:hover,.scheme_original #buddypress div.generic-button a:hover,.scheme_original #buddypress .comment-reply-link:hover,.scheme_original a.bp-title-button:hover,.scheme_original #buddypress div.item-list-tabs ul li.selected a:hover,.scheme_original #buddypress .acomment-options a:hover{background:#00a9e1;color:#fff}.scheme_original #buddypress #item-nav,.scheme_original #buddypress div#subnav.item-list-tabs,.scheme_original #buddypress div.item-list-tabs{background-color:#f0f4f9}.scheme_original #buddypress #item-nav li:not(.selected) a,.scheme_original #buddypress div#subnav.item-list-tabs li:not(.selected) a,.scheme_original #buddypress div.item-list-tabs li:not(.selected) a{color:#8a8a8a}.scheme_original #buddypress #item-nav li:not(.selected) a:hover,.scheme_original #buddypress div#subnav.item-list-tabs li:not(.selected) a:hover,.scheme_original #buddypress div.item-list-tabs li:not(.selected) a:hover{color:#232a34;background-color:#f0f0f0}.scheme_original #buddypress .dir-search input[type="search"],.scheme_original #buddypress .dir-search input[type="text"],.scheme_original #buddypress .groups-members-search input[type="search"],.scheme_original #buddypress .groups-members-search input[type="text"],.scheme_original #buddypress .standard-form input[type="color"],.scheme_original #buddypress .standard-form input[type="date"],.scheme_original #buddypress .standard-form input[type="datetime-local"],.scheme_original #buddypress .standard-form input[type="datetime"],.scheme_original #buddypress .standard-form input[type="email"],.scheme_original #buddypress .standard-form input[type="month"],.scheme_original #buddypress .standard-form input[type="number"],.scheme_original #buddypress .standard-form input[type="password"],.scheme_original #buddypress .standard-form input[type="range"],.scheme_original #buddypress .standard-form input[type="search"],.scheme_original #buddypress .standard-form input[type="tel"],.scheme_original #buddypress .standard-form input[type="text"],.scheme_original #buddypress .standard-form input[type="time"],.scheme_original #buddypress .standard-form input[type="url"],.scheme_original #buddypress .standard-form input[type="week"],.scheme_original #buddypress .standard-form select,.scheme_original #buddypress .standard-form textarea,.scheme_original #buddypress form#whats-new-form textarea{color:#8a8a8a;background-color:#fff;border-color:#00a9e1}.scheme_original #buddypress .dir-search input[type="search"]:focus,.scheme_original #buddypress .dir-search input[type="text"]:focus,.scheme_original #buddypress .groups-members-search input[type="search"]:focus,.scheme_original #buddypress .groups-members-search input[type="text"]:focus,.scheme_original #buddypress .standard-form input[type="color"]:focus,.scheme_original #buddypress .standard-form input[type="date"]:focus,.scheme_original #buddypress .standard-form input[type="datetime-local"]:focus,.scheme_original #buddypress .standard-form input[type="datetime"]:focus,.scheme_original #buddypress .standard-form input[type="email"]:focus,.scheme_original #buddypress .standard-form input[type="month"]:focus,.scheme_original #buddypress .standard-form input[type="number"]:focus,.scheme_original #buddypress .standard-form input[type="password"]:focus,.scheme_original #buddypress .standard-form input[type="range"]:focus,.scheme_original #buddypress .standard-form input[type="search"]:focus,.scheme_original #buddypress .standard-form input[type="tel"]:focus,.scheme_original #buddypress .standard-form input[type="text"]:focus,.scheme_original #buddypress .standard-form input[type="time"]:focus,.scheme_original #buddypress .standard-form input[type="url"]:focus,.scheme_original #buddypress .standard-form input[type="week"]:focus,.scheme_original #buddypress .standard-form select:focus,.scheme_original #buddypress .standard-form textarea:focus,.scheme_original #buddypress form#whats-new-form textarea:focus{color:#8a8a8a;background-color:#f0f0f0;border-color:#bbb}.scheme_original #buddypress #reply-title small a span,.scheme_original #buddypress a.bp-primary-action span{color:#262262;background-color:#fff}.scheme_original #buddypress .activity .activity-item:nth-child(2n+1){background-color:#f0f4f9}.scheme_original.vc_row{background-color:#fff}.scheme_original .booking_month_container_custom,.scheme_original .booking_month_navigation_button_custom{background-color:#f0f4f9!important}.scheme_original .booking_month_name_custom,.scheme_original .booking_month_navigation_button_custom{color:#232a34!important}.scheme_original .booking_month_navigation_button_custom:hover{color:#ffffff!important;background-color:#00a9e1!important}.scheme_original #learndash_next_prev_link>a{color:#fff;background-color:#262262}.scheme_original #learndash_next_prev_link>a:hover{background-color:#00a9e1}.scheme_original .widget_area dd.course_progress div.course_progress_blue{background-color:#00a9e1}.scheme_original #myplayer .ttw-music-player .progress-wrapper{background-color:#f0f0f0}.scheme_original #myplayer .ttw-music-player .tracklist li.track{border-color:#dfe5ea}.scheme_original #myplayer .ttw-music-player .tracklist,.scheme_original #myplayer .ttw-music-player .buy,.scheme_original #myplayer .ttw-music-player .description,.scheme_original #myplayer .ttw-music-player .artist,.scheme_original #myplayer .ttw-music-player .artist-outer{color:#656c77}.scheme_original #myplayer .ttw-music-player .player .title,.scheme_original #myplayer .ttw-music-player .tracklist li:hover{color:#262262}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title{border-color:#dfe5ea}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon{color:#acb4b6;background-color:#f0f4f9}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active{color:#262262;border-color:#262262}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened{color:#fff;background-color:#262262}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title:hover{color:#00a9e1;border-color:#00a9e1}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title:hover .sc_accordion_icon_opened{background-color:#00a9e1}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_content{border-color:#dfe5ea}.scheme_original .sc_audio.sc_audio_info,.scheme_original .sc_audio_player.sc_audio,.scheme_original .wp-audio-shortcode{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1)}.scheme_original .sc_audio .sc_audio_title{color:#fff}.scheme_original .sc_audio .sc_audio_author_name{color:#fff}.scheme_original .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.scheme_original .wp-audio-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider,.scheme_original .mejs-controls .mejs-time-rail .mejs-time-current{background:#f0f4f9!important}.scheme_original .mejs-container .mejs-controls .mejs-time{color:#262262}.scheme_original .mejs-container.wp-video-shortcode .mejs-controls .mejs-time{color:#f0f4f9}.scheme_original .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,.scheme_original .mejs-controls .mejs-time-rail .mejs-time-total:before{background-color:rgba(255,255,255,.1)}.scheme_original .mejs-controls .mejs-time-rail .mejs-time-loaded{background:rgba(138,138,138,.1)!important}.scheme_original .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_original .mejs-container .mejs-controls .mejs-volume-button,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button{background:#ffffff!important}.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-volume-button,.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-playpause-button{background:#f0f4f9!important}.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before,.scheme_original .mejs-container .mejs-controls .mejs-fullscreen-button:before,.scheme_original .mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before,.scheme_original .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{color:#00a9e1}.scheme_original input[type="submit"],.scheme_original input[type="reset"],.scheme_original input[type="button"],.scheme_original button:not(.pswp__button),.scheme_original .sc_button.sc_button_style_filled,.scheme_original .woocommerce a.button,.scheme_original .woocommerce button.button,.scheme_original .woocommerce input.button,.scheme_original .woocommerce #respond input#submit,.scheme_original .woocommerce #content input.button,.scheme_original .woocommerce-page a.button,.scheme_original .woocommerce-page button.button,.scheme_original .woocommerce-page input.button,.scheme_original .woocommerce-page #respond input#submit,.scheme_original .woocommerce-page #content input.button,.scheme_original .woocommerce a.button.alt,.scheme_original .woocommerce button.button.alt,.scheme_original .woocommerce input.button.alt,.scheme_original .woocommerce #respond input#submit.alt,.scheme_original .woocommerce #content input.button.alt,.scheme_original .woocommerce-page a.button.alt,.scheme_original .woocommerce-page button.button.alt,.scheme_original .woocommerce-page input.button.alt,.scheme_original .woocommerce-page #respond input#submit.alt,.scheme_original .woocommerce-page #content input.button.alt,.scheme_original .woocommerce-account .addresses .title .edit,.scheme_original #btn-buy,.scheme_original #btn-pay{background:#262262;background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%);background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%);background:linear-gradient(to right,#262262 9%,#00a9e1 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);background-size:200%;background-position:0;color:#fff}.scheme_original input[type="submit"].sc_button_style_color_style2,.scheme_original input[type="reset"].sc_button_style_color_style2,.scheme_original input[type="button"].sc_button_style_color_style2,.scheme_original button.sc_button_style_color_style2,.scheme_original .cff-container-field input[type="button"],.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style2{color:#fff;background:#262262;background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%);background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%);background:linear-gradient(to right,#262262 9%,#00a9e1 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);background-size:200%;background-position:0}.scheme_original .sc_button.sc_button_style_border{border-color:#262262;color:#262262}.scheme_original .sc_button.sc_button_style_border:hover{border-color:#00a9e1!important;color:#00a9e1!important}.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button{background:#fff;color:#262262}.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button:hover{background:#00a9e1;color:#fff}.scheme_original [class*="sc_button_hover_fade"]:hover{background-color:#00a9e1!important;color:#ffffff!important}.scheme_original [class*="sc_button_hover_slide"]{color:#ffffff!important;background-color:#262262}.scheme_original [class*="sc_button_hover_slide"]:hover{background-color:#00a9e1!important}.scheme_original .sc_button_hover_slide_left{background:linear-gradient(to right,#00a9e1 50%,#262262 50%) repeat scroll right bottom / 210% 100% rgba(0,0,0,0)!important}.scheme_original .sc_button_hover_slide_top{background:linear-gradient(to bottom,#00a9e1 50%,#262262 50%) repeat scroll right bottom / 100% 210% rgba(0,0,0,0)!important}.scheme_original .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:#262262;border-color:#262262;color:#fff}.scheme_original .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before{border-color:#fff}.scheme_original .sc_blogger.layout_date .sc_blogger_item::before{background-color:#f0f4f9}.scheme_original .sc_blogger_item.sc_plain_item{background-color:#f0f4f9}.scheme_original .sc_blogger.layout_polaroid .photostack nav span.current{color:#fff;background-color:#262262}.scheme_original .sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#00a9e1}.scheme_original .sc_call_to_action .sc_call_to_action_descr{color:#656c77}.scheme_original .sc_call_to_action_accented{color:#fff;background-color:#262262}.scheme_original .sc_call_to_action_accented .sc_item_title,.scheme_original .sc_call_to_action_accented .sc_item_subtitle,.scheme_original .sc_call_to_action_accented .sc_item_descr{color:#fff}.scheme_original .sc_call_to_action_accented .sc_item_button>a{color:#262262;background-color:#fff}.scheme_original .sc_call_to_action_accented .sc_item_button>a:before{background-color:#262262;color:#fff}.scheme_original .sc_call_to_action .sc_item_subtitle{color:#00a9e1}.scheme_original .sc_call_to_action .sc_item_buttons>.sc_item_button+.sc_item_button a{color:#00a9e1}.scheme_original .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button+.sc_item_button a:before{color:#00a9e1}.scheme_original .sc_chat:after{background-color:#f0f4f9;border-color:#ddd}.scheme_original .sc_chat_inner{color:#8a8a8a;background-color:#f0f4f9;border-color:#ddd}.scheme_original .sc_chat_inner a{color:#00a9e1}.scheme_original .sc_chat_inner a:hover{color:#00a9e1}.scheme_original .sc_clients_style_clients-2 .sc_client_image .sc_client_hover{color:#fff;background-color:rgba(38,34,98,.8)}.scheme_original .sc_clients_style_clients-2 .sc_client_title,.scheme_original .sc_clients_style_clients-2 .sc_client_title a{color:#fff}.scheme_original .sc_clients_style_clients-2 .sc_client_title a:hover{color:#262262}.scheme_original .sc_clients_style_clients-2 .sc_client_description:before,.scheme_original .sc_clients_style_clients-2 .sc_client_position{color:#262262}.scheme_original .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{background:#fff;color:#262262}.scheme_original .sc_form .sc_form_item.sc_form_button button{color:#fff;background:#262262;background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%);background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%);background:linear-gradient(to right,#262262 9%,#00a9e1 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);background-size:200%;background-position:0}.scheme_original .sc_form .sc_form_item .sc_form_element input[type="radio"]+label:before,.scheme_original .sc_form .sc_form_item .sc_form_element input[type="checkbox"]+label:before{border-color:#00a9e1;background-color:#fff}.scheme_original .sc_form_select_container{background-color:#fff}.scheme_original .sc_form .sc_form_item input[type="text"],.scheme_original .sc_form .sc_form_item select,.scheme_original .sc_form .sc_form_item textarea{background-color:#f0f4f9}.scheme_original .sc_form .picker{color:#8a8a8a;border-color:#00a9e1;background-color:#fff}.scheme_original .picker__month,.scheme_original .picker__year{color:#020817}.scheme_original .sc_form .picker__nav--prev:before,.scheme_original .sc_form .picker__nav--next:before{color:#8a8a8a}.scheme_original .sc_form .picker__nav--prev:hover:before,.scheme_original .sc_form .picker__nav--next:hover:before{color:#020817}.scheme_original .sc_form .picker__nav--disabled,.scheme_original .sc_form .picker__nav--disabled:hover,.scheme_original .sc_form .picker__nav--disabled:before,.scheme_original .sc_form .picker__nav--disabled:before:hover{color:#acb4b6}.scheme_original .sc_form table.picker__table th{color:#fff;background-color:#262262}.scheme_original .sc_form .picker__day--infocus{color:#020817}.scheme_original .sc_form .picker__day--today,.scheme_original .sc_form .picker__day--infocus:hover,.scheme_original .sc_form .picker__day--outfocus:hover,.scheme_original .sc_form .picker__day--highlighted:hover,.scheme_original .sc_form .picker--focused .picker__day--highlighted{color:#020817;background-color:#f0f0f0}.scheme_original .sc_form .picker__day--disabled,.scheme_original .sc_form .picker__day--disabled:hover{color:#acb4b6}.scheme_original .sc_form .picker__day--highlighted.picker__day--disabled,.scheme_original .sc_form .picker__day--highlighted.picker__day--disabled:hover{color:#acb4b6;background-color:#f0f0f0!important}.scheme_original .sc_form .picker__day--today:before,.scheme_original .sc_form .picker__button--today:before,.scheme_original .sc_form .picker__button--clear:before,.scheme_original .sc_form button:focus{border-color:#262262}.scheme_original .sc_form .picker__button--close:before{color:#262262}.scheme_original .sc_form .picker--time .picker__button--clear:hover,.scheme_original .sc_form .picker--time .picker__button--clear:focus{background-color:#00a9e1}.scheme_original .sc_form .picker__footer{border-color:#00a9e1}.scheme_original .sc_form .picker__button--today,.scheme_original .sc_form .picker__button--clear,.scheme_original .sc_form .picker__button--close{color:#8a8a8a}.scheme_original .sc_form .picker__button--today:hover,.scheme_original .sc_form .picker__button--clear:hover,.scheme_original .sc_form .picker__button--close:hover{color:#020817;background-color:#f0f0f0!important}.scheme_original .sc_form .picker__button--today[disabled],.scheme_original .sc_form .picker__button--today[disabled]:hover{color:#acb4b6;background-color:#f0f0f0;border-color:#f0f0f0}.scheme_original .sc_form .picker__button--today[disabled]:before{border-top-color:#acb4b6}.scheme_original .sc_form .picker__list-item{color:#8a8a8a;border-color:#00a9e1}.scheme_original .sc_form .picker__list-item:hover,.scheme_original .sc_form .picker__list-item--highlighted,.scheme_original .sc_form .picker__list-item--highlighted:hover,.scheme_original .sc_form .picker--focused .picker__list-item--highlighted,.scheme_original .sc_form .picker__list-item--selected,.scheme_original .sc_form .picker__list-item--selected:hover,.scheme_original .sc_form .picker--focused .picker__list-item--selected{color:#020817;background-color:#f0f0f0;border-color:#bbb}.scheme_original .sc_form .picker__list-item--disabled,.scheme_original .sc_form .picker__list-item--disabled:hover,.scheme_original .sc_form .picker--focused .picker__list-item--disabled{color:#acb4b6;background-color:#fff;border-color:#00a9e1}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:#262262}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_digits{border-color:#ddd;background-color:#f0f4f9}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:#262262}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:#262262}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:#262262}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:#262262}.scheme_original .sc_dropcaps .sc_dropcaps_item{color:#fff}.scheme_original .sc_dropcaps.sc_dropcaps_style_1 .sc_dropcaps_item{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1)}.scheme_original .sc_dropcaps.sc_dropcaps_style_2 .sc_dropcaps_item{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1)}.scheme_original .mc4wp-form input[type="email"]{background-color:#020817}.scheme_original .sc_video_frame.hover_icon:before{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);color:#fff}.scheme_original .sc_events_item .sc_events_item_readmore{color:#262262}.scheme_original .sc_events_item .sc_events_item_readmore span{color:#262262}.scheme_original .sc_events_item .sc_events_item_readmore:hover,.scheme_original .sc_events_item .sc_events_item_readmore:hover span{color:#00a9e1}.scheme_original .sc_events_style_events-1 .sc_events_item{background-color:#fff;color:#656c77}.scheme_original .sc_events_style_events-2 .sc_events_item{border-color:#dfe5ea}.scheme_original .sc_events_style_events-2 .sc_events_item_date{background-color:#262262;color:#fff}.scheme_original .sc_events_style_events-2 .sc_events_item_time:before,.scheme_original .sc_events_style_events-2 .sc_events_item_details:before{background-color:#dfe5ea}.scheme_original .sc_googlemap_content{background-color:#fff}.scheme_original .sc_highlight_style_1{background-color:#262262;color:#fff}.scheme_original .sc_highlight_style_2{background-color:#00a9e1;color:#fff}.scheme_original .sc_highlight_style_3{background-color:#f0f4f9;color:#8a8a8a}.scheme_original .sc_icon_hover:hover,.scheme_original a:hover .sc_icon_hover{color:#ffffff!important;background-color:#262262!important}.scheme_original .sc_icon_shape_round.sc_icon,.scheme_original .sc_icon_shape_square.sc_icon{background-color:#262262;border-color:#262262;color:#fff}.scheme_original .sc_icon_shape_round.sc_icon:hover,.scheme_original .sc_icon_shape_square.sc_icon:hover,.scheme_original a:hover .sc_icon_shape_round.sc_icon,.scheme_original a:hover .sc_icon_shape_square.sc_icon{color:#262262;background-color:#fff}.scheme_original figure figcaption,.scheme_original .sc_image figcaption,.scheme_original .wp-caption .wp-caption-text,{background-color:#f0f4f9;color:#9daab0}.scheme_original figure figcaption a,.scheme_original .sc_image figcaption a,.scheme_original .wp-caption .wp-caption-text a{color:#00a9e1}.scheme_original figure figcaption a:hover,.scheme_original .sc_image figcaption a:hover,.scheme_original .wp-caption .wp-caption-text a:hover{color:#00a9e1}.scheme_original .sc_infobox.sc_infobox_style_regular{background-color:#262262}.scheme_original .sc_intro_inner .sc_intro_subtitle{color:#00a9e1}.scheme_original .sc_intro_inner .sc_intro_title{color:#fff}.scheme_original .sc_intro_inner .sc_intro_descr,.scheme_original .sc_intro_inner .sc_intro_icon{color:#fff}.scheme_original .sc_list_style_iconed li:before,.scheme_original .sc_list_style_iconed .sc_list_icon{color:#262262}.scheme_original .sc_list_style_iconed li .sc_list_title{color:#262262}.scheme_original .sc_list_style_iconed li a:hover .sc_list_title{color:#00a9e1}.scheme_original .sc_list .sc_list_item{color:#262262}.scheme_original .sc_line{border-color:#dfe5ea}.scheme_original .sc_line .sc_line_title{color:#262262;background-color:#fff}.scheme_original .match_block .player_country{background-color:#262262;color:#fff}.scheme_original .match_block .player_name a{color:#232a34;background-color:#f0f4f9}.scheme_original .match_block .player_name a:hover{color:#fff;background-color:#262262}.scheme_original .match_block .match_score{color:#232a34;background-color:#f0f4f9}.scheme_original .match_block .match_category a{color:#656c77}.scheme_original .match_block .match_category a:hover,.scheme_original .match_block .match_date{color:#262262}.scheme_original .post_item_colored .match_date{color:#262262}.scheme_original .matches_hover>a:after{background-color:rgba(38,34,98,.3)}.scheme_original .sc_matches.style_matches-1 .sc_matches_next{background-color:#262262;color:#fff}.scheme_original .sc_matches_next h2,.scheme_original .sc_matches_next .sc_item_subtitle{color:#fff}.scheme_original .sc_matches_next .sc_item_title:after{background-color:#fff}.scheme_original .sc_match_date{background-color:#fff;color:#00a9e1}.scheme_original .sc_matches.style_matches-2 .sc_match_info{background-color:rgba(240,240,240,.5)}.scheme_original .sc_matches.style_matches-2 .sc_matches_next .sc_item_title{background-color:#262262}.scheme_original .sc_matches.style_matches-2 .sc_matches_next .sc_match_date{background-color:#f0f0f0}.scheme_original .post_item_single_players .post_title:after{background-color:#262262}.scheme_original .post_item_single_players .player_info span{color:#262262}.scheme_original .sc_player .sc_player_info .sc_player_title a{color:#262262}.scheme_original .sc_player .sc_player_info .sc_player_club,.scheme_original .sc_player .sc_player_info .sc_player_title a:hover{color:#262262}.scheme_original .sc_player .sc_player_info{border-color:#262262}.scheme_original .sc_player .sc_player_avatar .sc_player_hover{background-color:rgba(38,34,98,.8)}.scheme_original .sc_player .sc_socials.sc_socials_type_icons a,.scheme_original .sc_player .sc_socials.sc_socials_type_icons a:hover{color:#fff;border-color:#fff}.scheme_original .post_item_colored .player_info{color:#262262}.scheme_original .sc_players_table table tr .country{color:#9daab0}.scheme_original .sc_players_table.style_2 table tr:nth-child(n+2){background-color:rgba(240,240,240,.5)}.scheme_original .sc_players_table.style_2 .sc_table td{border-color:#fff}.scheme_original .sc_menuitems_style_menuitems-1 .sc_menuitem_price{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_spicy{color:#262262;background-color:#fff}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_box_title{color:#fff;background-color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions{color:#656c77;border-color:#dfe5ea}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span{color:#262262}.scheme_original .popup_menuitem>.sc_menuitems_wrap{background-color:#fff}.scheme_original .sc_popup:before{background-color:#262262}.scheme_original .sc_price .sc_price_currency,.scheme_original .sc_price .sc_price_money,.scheme_original .sc_price .sc_price_penny{color:#262262}.scheme_original .sc_price .sc_price_info{color:#9daab0}.scheme_original .sc_price_block,.scheme_original .sc_price_block .sc_price_block_money *{color:#fff}.scheme_original .sc_price_block.sc_price_block_style_1{background-color:#262262}.scheme_original .sc_price_block.sc_price_block_style_1 .sc_price_block_link .sc_button{background-color:#00a9e1}.scheme_original .sc_price_block.sc_price_block_style_2{background-color:#00a9e1}.scheme_original .sc_price_block.sc_price_block_style_3,.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_money *{color:#262262;background-color:#f0f4f9}.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_title{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);color:#fff}.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_money{border-color:#dfe5ea}.scheme_original .sc_promo_image,.scheme_original .sc_promo_block{background-color:#f0f0f0}.scheme_original .sc_promo_title{color:#232a34}.scheme_original .sc_promo_descr{color:#8a8a8a}.scheme_original .sc_recent_news_header{border-color:#262262}.scheme_original .sc_recent_news_header_category_item_more{color:#262262}.scheme_original .sc_recent_news_header_more_categories{border-color:#ddd;background-color:#f0f4f9}.scheme_original .sc_recent_news_header_more_categories>a{color:#00a9e1}.scheme_original .sc_recent_news_header_more_categories>a:hover{color:#00a9e1;background-color:#f0f0f0}.scheme_original .sc_recent_news .post_counters_item,.scheme_original .sc_recent_news .post_counters .post_edit a{background-color:#f0f4f9}.scheme_original .sidebar .sc_recent_news .post_counters_item,.scheme_original .sidebar .sc_recent_news .post_counters .post_edit a{background-color:#fff}.scheme_original .sc_recent_news .post_counters .post_edit a{color:#232a34}.scheme_original .sc_recent_news_style_news-magazine .post_accented_border{border-color:#dfe5ea}.scheme_original .sc_recent_news_style_news-excerpt .post_item{border-color:#dfe5ea}.scheme_original .sc_section_inner{color:#656c77}.scheme_original .sc_services_item .sc_services_item_readmore{color:#262262}.scheme_original .sc_services_item .sc_services_item_readmore span{color:#262262}.scheme_original .sc_services_item .sc_services_item_readmore:hover,.scheme_original .sc_services_item .sc_services_item_readmore:hover span{color:#00a9e1}.scheme_original .sc_services_style_services-1 .sc_services_item{color:#656c77}.scheme_original .sc_services_style_services-1 .sc_icon,.scheme_original .sc_services_style_services-2 .sc_icon{color:#00a9e1;background-color:#fff}.scheme_original .sc_services_style_services-1 .sc_icon:hover,.scheme_original .sc_services_style_services-1 a:hover .sc_icon,.scheme_original .sc_services_style_services-2 .sc_icon:hover,.scheme_original .sc_services_style_services-2 a:hover .sc_icon{background:#262262;background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%);background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%);background:linear-gradient(to right,#262262 0%,#00a9e1 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);color:#fff}.scheme_original .sc_services_style_services-3 a:hover .sc_icon,.scheme_original .sc_services_style_services-3 .sc_icon:hover{color:#262262;background-color:#fff}.scheme_original .sc_services_style_services-3 a:hover .sc_services_item_title{color:#262262}.scheme_original .sc_services_style_services-4 .sc_icon{color:#fff;background-color:#262262}.scheme_original .sc_services_style_services-4 .sc_services_item_title{color:#262262}.scheme_original .sc_services_style_services-4 a:hover .sc_icon,.scheme_original .sc_services_style_services-4 .sc_icon:hover{background-color:#00a9e1}.scheme_original .sc_services_style_services-4 a:hover .sc_services_item_title{color:#262262}.scheme_original .sc_services_style_services-5 .sc_icon{border-color:#00a9e1}.scheme_original .sc_services_style_services-5 .sc_icon{color:#00a9e1}.scheme_original .sc_services_style_services-5 .sc_icon:hover,.scheme_original .sc_services_style_services-5 a:hover .sc_icon{background-color:#00a9e1}.scheme_original .sc_services_style_services-5 .sc_icon:hover,.scheme_original .sc_services_style_services-5 a:hover .sc_icon{color:#fff}.scheme_original .sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{color:#00a9e1}.scheme_original .sc_scroll_controls_wrap a{background-color:#262262;color:#fff}.scheme_original .sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(38,34,98,.8)}.scheme_original .sc_scroll_controls_wrap a:hover{color:#fff;background-color:#00a9e1}.scheme_original .sc_scroll_bar .swiper-scrollbar-drag:before{background-color:#262262}.scheme_original .sc_scroll .sc_scroll_bar{border-color:#f0f4f9}.scheme_original .sc_skills_bar .sc_skills_item{background-color:#f0f4f9}.scheme_original .sc_skills_counter .sc_skills_item .sc_skills_icon{color:#262262}.scheme_original .sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#00a9e1}.scheme_original .sc_skills_counter .sc_skills_item .sc_skills_info{color:#262262}.scheme_original .sc_skills_bar .sc_skills_item .sc_skills_count{border-color:#262262}.scheme_original .sc_skills_bar .sc_skills_info .sc_skills_label{color:#262262}.scheme_original .sc_skills_bar.sc_skills_horizontal .sc_skills_total{color:#9daab0}.scheme_original .sc_skills_legend_title,.scheme_original .sc_skills_legend_value{color:#262262}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1{color:#fff;background:#262262;background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%);background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%);background:linear-gradient(to right,#262262 9%,#00a9e1 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#262262',endColorstr='#00a9e1',GradientType=1);background-size:200%;background-position:0}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count{color:#232a34}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info{color:#fff}.scheme_original .sc_skills_bar .sc_skills_item .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{color:#fff;background-color:#262262}.scheme_original .sc_skills_pie.sc_skills_compact_off .sc_skills_total,.scheme_original .sc_skills_pie.sc_skills_compact_off .sc_skills_label{color:#262262}.scheme_original .sc_skills .sc_skills_descr{color:#9daab0}.scheme_original .sc_slider_controls_wrap a{color:#fff;border-color:#fff}.scheme_original .sc_slider_controls_bottom .sc_slider_controls_wrap a:hover{color:#fff;background-color:#262262}.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap span{border-color:#dfe5ea}.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap span:hover{border-color:#00a9e1;background-color:#00a9e1}.scheme_original .sc_slider_swiper .sc_slider_info{background-color:rgba(38,34,98,.8)!important}.scheme_original .sc_slider_pagination.widget_area .post_item+.post_item{border-color:#dfe5ea}.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap span{border-color:#dfe5ea}.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:#262262;background-color:#262262}.scheme_original .sc_slider_pagination_over .sc_slider_pagination .post_title{color:#232a34}.scheme_original .sc_slider_pagination_over .sc_slider_pagination .post_info{color:#8a8a8a}.scheme_original .sc_slider_pagination_area .sc_slider_pagination .post_item.active{background-color:#f0f4f9!important}.scheme_original .sc_slider_controls_bottom .sc_slider_controls_wrap a{background-color:#00a9e1;color:#fff}.scheme_original .sc_socials.sc_socials_type_icons a{color:#acb4b6;border-color:#acb4b6}.scheme_original .sc_socials.sc_socials_type_icons a:hover{color:#262262;border-color:#262262}.scheme_original .sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a{background-color:#f0f4f9}.scheme_original .sc_socials .social_icons{background-color:#00a9e1}.scheme_original .sc_socials .social_icons span{color:#fff}.scheme_original .sc_socials .social_icons:hover span{color:#00a9e1}.scheme_original .sc_socials .social_icons:hover{background-color:#ffffff!important}.scheme_original .post_author .post_author_info a{color:#00a9e1}.scheme_original .post_author .post_author_info a:hover{color:#00a9e1}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a{color:#262262;border-color:#dfe5ea}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:#262262}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:#262262}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_content,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_content{border-color:#dfe5ea}.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:#262262;background-color:#262262;color:#fff}.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:#262262}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_title a{color:#262262}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#00a9e1}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_position{color:#00a9e1}.scheme_original .sc_team_style_team-1 .sc_team_item_info,.scheme_original .sc_team_style_team-3 .sc_team_item_info{border-color:#262262;color:#656c77;background-color:#fff}.scheme_original .sc_team_style_team-1.team_grey .sc_team_item_info,.scheme_original .sc_team_style_team-3.team_grey .sc_team_item_info{background-color:#f0f4f9}.scheme_original .sc_team.sc_team_style_team-3 .sc_socials_item a{color:#fff;border-color:#fff}.scheme_original .sc_team.sc_team_style_team-3 .sc_socials_item a:hover{color:#fff;border-color:#fff}.scheme_original .sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(38,34,98,.8)}.scheme_original .sc_team.sc_team_style_team-4 .sc_socials_item a{color:#fff;border-color:#fff}.scheme_original .sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:#262262;border-color:#262262}.scheme_original .sc_team.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover{color:#fff;background-color:rgba(38,34,98,.8)}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a{color:#fff}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:#262262}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_position{color:#fff}.scheme_original .sc_team .sc_team_descr{color:#9daab0}.scheme_original .post_item_single_team .single_team_post_description .team_position{color:#00a9e1}.scheme_original .post_item_single_team .single_team_post_description .team_meta{color:#9daab0}.scheme_original .post_item_single_team .single_team_post_description .team_brief_info_text p:after{background-color:#dfe5ea}.scheme_original .sc_testimonials{color:#656c77}.scheme_original .sc_testimonial_author_name{color:#262262}.scheme_original .sc_testimonial_position_position{color:#9daab0}.scheme_original .sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before{color:#9daab0}.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content,.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content:after{background-color:#fff}.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before{color:#262262}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{color:#00a9e1}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#262262}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content{background-color:#fff}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{background-color:#fff;border-color:#fff}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#9daab0}.scheme_original .sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{background-color:#f0f4f9}.scheme_original .sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{background-color:#f0f4f9;border-color:#f0f4f9}.scheme_original .sc_title_icon{color:#262262}.scheme_original .sc_title_underline::after{border-color:#262262}.scheme_original .sc_title_divider .sc_title_divider_before,.scheme_original .sc_title_divider .sc_title_divider_after{background-color:#262262}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title{border-color:#dfe5ea}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon{color:#acb4b6;background-color:#f0f4f9}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:#262262;border-color:#262262}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{color:#fff;background-color:#262262}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#00a9e1;border-color:#00a9e1}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#00a9e1}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_content{border-color:#dfe5ea}.scheme_original .sc_tooltip_parent .sc_tooltip,.scheme_original .sc_tooltip_parent .sc_tooltip:before{background-color:#262262}.scheme_original .sc_twitter{color:#656c77}.scheme_original .sc_twitter .sc_slider_controls_wrap a{color:#fff}.scheme_original .sc_item_subtitle{color:#00a9e1}.scheme_original .sc_item_title:after{background-color:#262262}.scheme_original .sc_item_button>a:before{color:#262262;background-color:#fff}.scheme_original .sc_item_button>a:hover:before{color:#00a9e1}.scheme_original body table.booked-calendar thead th .monthName,.scheme_original body table.booked-calendar thead th .monthName a{color:#262262}.scheme_original body table.booked-calendar thead th .monthName a:hover{color:#00a9e1}.scheme_original body table.booked-calendar thead th .page-right,.scheme_original body table.booked-calendar thead th .page-left{color:#00a9e1!important}.scheme_original body table.booked-calendar td .date{background-color:#f0f4f9}.scheme_original body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover{background-color:#262262!important}.scheme_original .wpcf7-form-control-wrap .select_container:after{color:#acb4b6}.scheme_original .cff-container-field label,.scheme_original .cff-number-field label,.scheme_original .cff-dropdown-field label,.scheme_original .cff-date-field label,.scheme_original .calculated-result .field[type="text"],.scheme_original .cff-calculated-field label{color:#262262}.scheme_original .wp-block-button:not(.is-style-outline) .wp-block-button__link{color:#00a9e1}.scheme_original .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{color:#00a9e1}.scheme_original .is-style-outline>.wp-block-button__link:not(.has-text-color),.scheme_original .wp-block-button__link.is-style-outline:not(.has-text-color){color:#00a9e1}.scheme_original .is-style-outline>.wp-block-button__link:not(.has-text-color):hover,.scheme_original .wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#00a9e1}.scheme_original .wp-block-audio .mejs-container .mejs-controls .mejs-time{color:#00a9e1}.scheme_original body .booked-modal input[type=submit].button-primary:hover{color:#00a9e1}.scheme_original .widget_block .wp-block-search__button-outside input[type="search"]{background-color:#fff}.scheme_dark h1,.scheme_dark h2,.scheme_dark h3,.scheme_dark h4,.scheme_dark h5,.scheme_dark h6,.scheme_dark h1 a,.scheme_dark h2 a,.scheme_dark h3 a,.scheme_dark h4 a,.scheme_dark h5 a,.scheme_dark h6 a{color:#fff}.scheme_dark a{color:#fff}.scheme_dark a:hover{color:#00a9e1}.scheme_dark blockquote:before{color:#fff}.scheme_dark blockquote a{color:#fff}.scheme_dark blockquote a:hover{color:#00a9e1}.scheme_dark blockquote,.scheme_dark blockquote p{color:#fff}.scheme_dark blockquote{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1);color:#fff}.scheme_dark .accent1{color:#fff}.scheme_dark .accent1_bgc{background-color:#fff}.scheme_dark .accent1_bg{background:#fff}.scheme_dark .accent1_border{border-color:#fff}.scheme_dark a.accent1:hover{color:#00a9e1}.scheme_dark .post_content.ih-item.circle.effect1.colored .info,.scheme_dark .post_content.ih-item.circle.effect2.colored .info,.scheme_dark .post_content.ih-item.circle.effect3.colored .info,.scheme_dark .post_content.ih-item.circle.effect4.colored .info,.scheme_dark .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect6.colored .info,.scheme_dark .post_content.ih-item.circle.effect7.colored .info,.scheme_dark .post_content.ih-item.circle.effect8.colored .info,.scheme_dark .post_content.ih-item.circle.effect9.colored .info,.scheme_dark .post_content.ih-item.circle.effect10.colored .info,.scheme_dark .post_content.ih-item.circle.effect11.colored .info,.scheme_dark .post_content.ih-item.circle.effect12.colored .info,.scheme_dark .post_content.ih-item.circle.effect13.colored .info,.scheme_dark .post_content.ih-item.circle.effect14.colored .info,.scheme_dark .post_content.ih-item.circle.effect15.colored .info,.scheme_dark .post_content.ih-item.circle.effect16.colored .info,.scheme_dark .post_content.ih-item.circle.effect18.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect19.colored .info,.scheme_dark .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect1.colored .info,.scheme_dark .post_content.ih-item.square.effect2.colored .info,.scheme_dark .post_content.ih-item.square.effect3.colored .info,.scheme_dark .post_content.ih-item.square.effect4.colored .mask1,.scheme_dark .post_content.ih-item.square.effect4.colored .mask2,.scheme_dark .post_content.ih-item.square.effect5.colored .info,.scheme_dark .post_content.ih-item.square.effect6.colored .info,.scheme_dark .post_content.ih-item.square.effect7.colored .info,.scheme_dark .post_content.ih-item.square.effect8.colored .info,.scheme_dark .post_content.ih-item.square.effect9.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect10.colored .info,.scheme_dark .post_content.ih-item.square.effect11.colored .info,.scheme_dark .post_content.ih-item.square.effect12.colored .info,.scheme_dark .post_content.ih-item.square.effect13.colored .info,.scheme_dark .post_content.ih-item.square.effect14.colored .info,.scheme_dark .post_content.ih-item.square.effect15.colored .info,.scheme_dark .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect_book.colored .info,.scheme_dark .post_content.ih-item.square.effect_pull.colored .post_descr{background:#fff;color:#fff}.scheme_dark .post_content.ih-item.circle.effect1.colored .info,.scheme_dark .post_content.ih-item.circle.effect2.colored .info,.scheme_dark .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect19.colored .info,.scheme_dark .post_content.ih-item.square.effect4.colored .mask1,.scheme_dark .post_content.ih-item.square.effect4.colored .mask2,.scheme_dark .post_content.ih-item.square.effect6.colored .info,.scheme_dark .post_content.ih-item.square.effect7.colored .info,.scheme_dark .post_content.ih-item.square.effect12.colored .info,.scheme_dark .post_content.ih-item.square.effect13.colored .info,.scheme_dark .post_content.ih-item.square.effect_more.colored .info,.scheme_dark .post_content.ih-item.square.effect_dir.colored .info,.scheme_dark .post_content.ih-item.square.effect_shift.colored .info{background:rgba(255,255,255,.6);color:#fff}.scheme_dark .post_content.ih-item.square.effect_border.colored .img,.scheme_dark .post_content.ih-item.square.effect_fade.colored .img,.scheme_dark .post_content.ih-item.square.effect_slide.colored .img{background:#fff}.scheme_dark .post_content.ih-item.square.effect_border.colored .info,.scheme_dark .post_content.ih-item.square.effect_fade.colored .info,.scheme_dark .post_content.ih-item.square.effect_slide.colored .info{color:#fff}.scheme_dark .post_content.ih-item.square.effect_border.colored .info:before,.scheme_dark .post_content.ih-item.square.effect_border.colored .info:after{border-color:#fff}.scheme_dark .post_content.ih-item.circle.effect1 .spinner{border-right-color:#fff;border-bottom-color:#fff}.scheme_dark .post_content.ih-item .post_readmore .post_readmore_label,.scheme_dark .post_content.ih-item .info a,.scheme_dark .post_content.ih-item .info a>span{color:#fff}.scheme_dark .post_content.ih-item .post_readmore:hover .post_readmore_label,.scheme_dark .post_content.ih-item .info a:hover,.scheme_dark .post_content.ih-item .info a:hover>span{color:#e5e5e5}.scheme_dark td,.scheme_dark th{border-color:rgba(38,34,98,.8)}.scheme_dark table{color:#0a1f54}.scheme_dark table tr:nth-child(2n+1){background-color:rgba(255,255,255,.4)}.scheme_dark table:not(.shop_attributes):not(.shop_table):not(.group_table):not(.variations):not(#debug_bar_http) tr:first-child{background-color:#fff;color:#fff}.scheme_dark table tr:first-child td{border-color:rgba(38,34,98,.1)}.scheme_dark table tr:nth-child(2n){background-color:#fff}.scheme_dark table thead+tbody tr:first-child{background-color:rgba(255,255,255,.4);color:#0a1f54}.scheme_dark .sc_table th{color:#fff;background-color:#0a1f54}.scheme_dark pre.code,.scheme_dark #toc .toc_item.current,.scheme_dark #toc .toc_item:hover{border-color:#fff}.scheme_dark::selection,.scheme_dark::-moz-selection{background-color:#fff;color:#fff}.scheme_dark input[type="text"],.scheme_dark input[type="number"],.scheme_dark input[type="tel"],.scheme_dark input[type="email"],.scheme_dark input[type="search"],.scheme_dark input[type="password"],.scheme_dark select,.scheme_dark textarea{color:#999;border-color:#909090;background-color:#fff}.scheme_dark input[type="text"]:focus,.scheme_dark input[type="number"]:focus,.scheme_dark input[type="tel"]:focus,.scheme_dark input[type="email"]:focus,.scheme_dark input[type="search"]:focus,.scheme_dark input[type="password"]:focus,.scheme_dark select:focus,.scheme_dark textarea:focus{color:#999;border-color:#888;background-color:#fff}.scheme_dark input::-webkit-input-placeholder,.scheme_dark textarea::-webkit-input-placeholder{color:#aaa}.scheme_dark input:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_dark textarea:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_dark input:focus:-moz-placeholder{color:#00a9e1}.scheme_dark textarea:focus:-moz-placeholder{color:#00a9e1}.scheme_dark input:focus::-moz-placeholder{color:#00a9e1}.scheme_dark textarea:focus::-moz-placeholder{color:#00a9e1}.scheme_dark fieldset{border-color:#29395f}.scheme_dark fieldset legend{background-color:#262262;color:#9daab0}.scheme_dark .sc_input_hover_accent input[type="text"]:focus,.scheme_dark .sc_input_hover_accent input[type="number"]:focus,.scheme_dark .sc_input_hover_accent input[type="email"]:focus,.scheme_dark .sc_input_hover_accent input[type="password"]:focus,.scheme_dark .sc_input_hover_accent input[type="search"]:focus,.scheme_dark .sc_input_hover_accent select:focus,.scheme_dark .sc_input_hover_accent textarea:focus{box-shadow:0 0 0 2px #fff}.scheme_dark .sc_input_hover_accent input[type="text"]+label:before,.scheme_dark .sc_input_hover_accent input[type="number"]+label:before,.scheme_dark .sc_input_hover_accent input[type="email"]+label:before,.scheme_dark .sc_input_hover_accent input[type="password"]+label:before,.scheme_dark .sc_input_hover_accent input[type="search"]+label:before,.scheme_dark .sc_input_hover_accent select+label:before,.scheme_dark .sc_input_hover_accent textarea+label:before{color:rgba(255,255,255,.6)}.scheme_dark .sc_input_hover_path input[type="text"]+label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="number"]+label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="email"]+label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="password"]+label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="search"]+label>.sc_form_graphic,.scheme_dark .sc_input_hover_path textarea+label>.sc_form_graphic{stroke:#909090}.scheme_dark .sc_input_hover_jump .sc_form_label_content:before{color:#fff}.scheme_dark .sc_input_hover_jump input[type="text"],.scheme_dark .sc_input_hover_jump input[type="number"],.scheme_dark .sc_input_hover_jump input[type="email"],.scheme_dark .sc_input_hover_jump input[type="password"],.scheme_dark .sc_input_hover_jump input[type="search"],.scheme_dark .sc_input_hover_jump textarea{border-color:#909090}.scheme_dark .sc_input_hover_jump input[type="text"]:focus,.scheme_dark .sc_input_hover_jump input[type="number"]:focus,.scheme_dark .sc_input_hover_jump input[type="email"]:focus,.scheme_dark .sc_input_hover_jump input[type="password"]:focus,.scheme_dark .sc_input_hover_jump input[type="search"]:focus,.scheme_dark .sc_input_hover_jump textarea:focus,.scheme_dark .sc_input_hover_jump input[type="text"].filled,.scheme_dark .sc_input_hover_jump input[type="number"].filled,.scheme_dark .sc_input_hover_jump input[type="email"].filled,.scheme_dark .sc_input_hover_jump input[type="password"].filled,.scheme_dark .sc_input_hover_jump input[type="search"].filled,.scheme_dark .sc_input_hover_jump textarea.filled{border-color:#fff}.scheme_dark .sc_input_hover_underline input[type="text"]+label:before,.scheme_dark .sc_input_hover_underline input[type="number"]+label:before,.scheme_dark .sc_input_hover_underline input[type="email"]+label:before,.scheme_dark .sc_input_hover_underline input[type="password"]+label:before,.scheme_dark .sc_input_hover_underline input[type="search"]+label:before,.scheme_dark .sc_input_hover_underline textarea+label:before{background-color:#909090}.scheme_dark .sc_input_hover_jump input[type="text"]:focus+label:before,.scheme_dark .sc_input_hover_jump input[type="number"]:focus+label:before,.scheme_dark .sc_input_hover_jump input[type="email"]:focus+label:before,.scheme_dark .sc_input_hover_jump input[type="password"]:focus+label:before,.scheme_dark .sc_input_hover_jump input[type="search"]:focus+label:before,.scheme_dark .sc_input_hover_jump textarea:focus+label:before,.scheme_dark .sc_input_hover_jump input[type="text"].filled+label:before,.scheme_dark .sc_input_hover_jump input[type="number"].filled+label:before,.scheme_dark .sc_input_hover_jump input[type="email"].filled+label:before,.scheme_dark .sc_input_hover_jump input[type="password"].filled+label:before,.scheme_dark .sc_input_hover_jump input[type="search"].filled+label:before,.scheme_dark .sc_input_hover_jump textarea.filled+label:before{background-color:#888}.scheme_dark .sc_input_hover_underline input[type="text"]+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"]+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"]+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"]+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"]+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea+label>.sc_form_label_content{color:#999}.scheme_dark .sc_input_hover_underline input[type="text"]:focus+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"]:focus+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"]:focus+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"]:focus+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"]:focus+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea:focus+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="text"].filled+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"].filled+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"].filled+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"].filled+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"].filled+label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea.filled+label>.sc_form_label_content{color:#d0d0d0}.scheme_dark .sc_input_hover_iconed input[type="text"]+label,.scheme_dark .sc_input_hover_iconed input[type="number"]+label,.scheme_dark .sc_input_hover_iconed input[type="email"]+label,.scheme_dark .sc_input_hover_iconed input[type="password"]+label,.scheme_dark .sc_input_hover_iconed input[type="search"]+label,.scheme_dark .sc_input_hover_iconed textarea+label{color:#999}.scheme_dark .sc_input_hover_iconed input[type="text"]:focus+label,.scheme_dark .sc_input_hover_iconed input[type="number"]:focus+label,.scheme_dark .sc_input_hover_iconed input[type="email"]:focus+label,.scheme_dark .sc_input_hover_iconed input[type="password"]:focus+label,.scheme_dark .sc_input_hover_iconed input[type="search"]:focus+label,.scheme_dark .sc_input_hover_iconed textarea:focus+label,.scheme_dark .sc_input_hover_iconed input[type="text"].filled+label,.scheme_dark .sc_input_hover_iconed input[type="number"].filled+label,.scheme_dark .sc_input_hover_iconed input[type="email"].filled+label,.scheme_dark .sc_input_hover_iconed input[type="password"].filled+label,.scheme_dark .sc_input_hover_iconed input[type="search"].filled+label,.scheme_dark .sc_input_hover_iconed textarea.filled+label{color:#999}.scheme_dark .body_wrap{color:#9daab0}.scheme_dark .body_style_boxed .body_wrap{background-color:#262262}.scheme_dark body:not(.video_bg_show),.scheme_dark body:not(.video_bg_show) .page_wrap,.scheme_dark .copy_wrap,.scheme_dark .sidebar_cart,.scheme_dark .widget_area_inner,.scheme_dark #page_preloader{background-color:#262262}.scheme_dark .widget_area_inner{background-color:#fff}.scheme_dark .footer_wrap_inner.widget_area_inner{background-color:#262262}.scheme_dark .widget_rss .widget_title a{color:#0a1f54}.scheme_dark .widget_rss .widget_title a:hover{color:#00a9e1}.scheme_dark .footer_wrap_inner .widget_rss .widget_title a,.scheme_dark .footer_wrap_inner .widget_rss .rsswidget,.scheme_dark .footer_wrap_inner .widget_rss .rss-date,.scheme_dark .footer_wrap_inner .widget_rss .rssSummary{color:#fff}.scheme_dark .footer_wrap_inner .widget_rss .widget_title a:hover,.scheme_dark .footer_wrap_inner .widget_rss a.rsswidget:hover{color:#00a9e1}.scheme_dark .article_style_boxed .content>article>.post_content,.scheme_dark .article_style_boxed[class*="single-"] .content>.comments_wrap,.scheme_dark .article_style_boxed[class*="single-"] .content>article>.post_info_share,.scheme_dark .article_style_boxed:not(.layout_excerpt):not(.single) .content .post_item{background-color:#fff}.scheme_dark .top_panel_wrap_inner{background-color:#262262}.scheme_dark .top_panel_fixed .top_panel_position_over.top_panel_wrap_inner{background-color:#ffffff!important}.scheme_dark .top_panel_inner_style_3 .top_panel_cart_button,.scheme_dark .top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,169,225,.2)}.scheme_dark .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:#fff}.scheme_dark .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after{color:#fff}.scheme_dark .top_panel_middle .sidebar_cart:after,.scheme_dark .top_panel_middle .sidebar_cart{border-color:#29395f;background-color:#262262}.scheme_dark .top_panel_inner_style_3 .top_panel_top,.scheme_dark .top_panel_inner_style_4 .top_panel_top,.scheme_dark .top_panel_inner_style_5 .top_panel_top,.scheme_dark .top_panel_inner_style_3 .top_panel_top .sidebar_cart,.scheme_dark .top_panel_inner_style_4 .top_panel_top .sidebar_cart{color:#fff;background-color:#fff}.scheme_dark .top_panel_top a{color:#9daab0}.scheme_dark .top_panel_top a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .top_panel_top strong,.scheme_dark .top_panel_inner_style_3 .top_panel_top a,.scheme_dark .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_4 .top_panel_top a,.scheme_dark .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_5 .top_panel_top a,.scheme_dark .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a{color:#fff}.scheme_dark .top_panel_inner_style_3 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_4 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_5 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a:hover{color:#e5e5e5}.scheme_dark .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]{color:#fff}.scheme_dark .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]:hover{color:#e5e5e5}.scheme_dark .top_panel_wrap .contact_label{color:#00a9e1}.scheme_dark .top_panel_bottom .search_wrap .search_form button:before{color:#00a9e1}.scheme_dark .top_panel_bottom .search_wrap .search_form button:hover:before{color:#00a9e1}.scheme_dark .menu_user_nav>li>a{color:#9daab0}.scheme_dark .menu_user_nav>li>a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>a{color:#fff}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>a:hover,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>a:hover,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>a:hover{color:#e5e5e5}.scheme_dark .menu_user_nav>li ul:not(.cart_list){border-color:#29395f;background-color:#262262}.scheme_dark .top_panel_inner_style_1 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_2 .menu_user_nav>li>ul:after{border-color:#29395f;background-color:#262262}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul{color:#fff;background-color:#fff;border-color:#00a9e1}.scheme_dark .menu_user_nav>li ul li a{color:#5e657c}.scheme_dark .menu_user_nav>li ul li a:hover,.scheme_dark .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .menu_user_nav>li ul li.current-menu-ancestor>a{color:#d0d0d0;background-color:#505050}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#00a9e1}.scheme_dark .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#29395f}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#fff}.scheme_dark .menu_user_nav>li.menu_user_bookmarks .bookmarks_add{border-bottom-color:#909090}.scheme_dark .logo .logo_text{color:#0a1f54}.scheme_dark .logo .logo_slogan{color:#9daab0}.scheme_dark .top_panel_image_hover{background-color:rgba(0,169,225,.8)}.scheme_dark .top_panel_image_header,.scheme_dark .top_panel_image_title,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_text,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_slogan{color:#fff}.scheme_dark .top_panel_image_header a,.scheme_dark .top_panel_image_title>a,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a{color:#fff}.scheme_dark .post_featured .post_header a:hover,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a:hover{color:#e5e5e5}.scheme_dark .menu_main_nav>li>a{color:#0a1f54}.scheme_dark .menu_main_nav>li ul{color:#fff;background-color:#00a9e1}.scheme_dark .menu_main_nav>a:hover,.scheme_dark .menu_main_nav>li>a:hover,.scheme_dark .menu_main_nav>li.sfHover>a,.scheme_dark .menu_main_nav>li.current-menu-item>a,.scheme_dark .menu_main_nav>li.current-menu-parent>a,.scheme_dark .menu_main_nav>li.current-menu-ancestor>a{border-color:#00a9e1;color:#00a9e1}.scheme_dark .menu_main_nav>li ul li a{color:#fff}.scheme_dark .menu_main_nav>li ul li a:hover,.scheme_dark .menu_main_nav>li ul li.current-menu-item>a,.scheme_dark .menu_main_nav>li ul li.current-menu-ancestor>a{color:#0a1f54}.scheme_dark .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#505050}.scheme_dark .top_panel_inner_style_1 .menu_hover_slide_box .menu_main_nav>li#blob,.scheme_dark .top_panel_inner_style_2 .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#00a9e1}.scheme_dark .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_slide_line .menu_main_nav>li#blob,.scheme_dark .top_panel_inner_style_2 .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#fff}.scheme_dark .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_zoom_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#fff}.scheme_dark .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#fff}.scheme_dark .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_roll_down .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#fff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:focus{color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#fff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#fff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#e5e5e5}.scheme_dark .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:focus{color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#e5e5e5}.scheme_dark .top_panel_middle .contact_field,.scheme_dark .top_panel_middle .contact_field>a{color:#0a1f54}.scheme_dark .top_panel_middle .contact_icon{color:rgba(157,170,176,.6)}.scheme_dark .top_panel_middle .content_wrap>.columns_wrap{border-color:#909090}.scheme_dark .top_panel_inner_style_1 .search_field,.scheme_dark .top_panel_inner_style_2 .search_field,.scheme_dark .top_panel_inner_style_3 .search_field{border-color:rgba(255,255,255,.1);background-color:rgba(0,169,225,.2)}.scheme_dark .top_panel_inner_style_4 .search_field{background-color:rgba(10,31,84,.05)}.scheme_dark .content .search_field{background-color:#fff}.scheme_dark .content .search_field,.scheme_dark .content .search_submit{color:#5e657c}.scheme_dark .content .search_submit:before{color:#fff}.scheme_dark .content .search_field:focus,.scheme_dark .content .search_submit:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .search_field,.scheme_dark .top_panel_inner_style_1 .search_submit,.scheme_dark .top_panel_inner_style_2 .search_field,.scheme_dark .top_panel_inner_style_2 .search_submit,.scheme_dark .top_panel_inner_style_4 .search_field,.scheme_dark .top_panel_inner_style_4 .search_submit{color:#0a1f54}.scheme_dark .top_panel_inner_style_3 .search_field,.scheme_dark .top_panel_inner_style_3 .search_submit{color:#fff}.scheme_dark .top_panel_inner_style_3 .search_field:focus,.scheme_dark .top_panel_inner_style_3 .search_submit:focus,.scheme_dark .top_panel_inner_style_3 .search_submit:hover{color:#fff}.scheme_dark .top_panel_inner_style_8 .search_field:hover,.scheme_dark .top_panel_inner_style_8 .search_field:focus{color:#d0d0d0!important;background-color:#505050!important}.scheme_dark .top_panel_icon.search_wrap{background-color:#262262;color:#fff}.scheme_dark .top_panel_icon .contact_icon,.scheme_dark .top_panel_icon .search_submit{color:#fff}.scheme_dark .top_panel_icon.menu_main_cart .contact_icon{background-color:#262262}.scheme_dark .top_panel_middle a:hover .contact_icon,.scheme_dark .top_panel_icon.search_wrap:hover,.scheme_dark .top_panel_icon:hover .contact_icon,.scheme_dark .top_panel_icon:hover .search_submit{background-color:#fff}.scheme_dark .top_panel_middle a:hover .contact_icon,.scheme_dark .top_panel_icon.search_wrap:hover input,.scheme_dark .top_panel_icon.search_wrap:hover button,.scheme_dark .top_panel_icon:hover .contact_icon,.scheme_dark .top_panel_icon:hover .search_submit{color:#fff}.scheme_dark .search_style_fullscreen.search_state_closed:not(.top_panel_icon) .search_submit,.scheme_dark .search_style_slide.search_state_closed:not(.top_panel_icon) .search_submit{color:#fff}.scheme_dark .search_style_expand.search_state_opened:not(.top_panel_icon) .search_submit:hover,.scheme_dark .search_style_slide.search_state_opened:not(.top_panel_icon) .search_submit:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_3 .search_style_expand.search_state_opened .search_submit:hover,.scheme_dark .top_panel_inner_style_3 .search_style_slide.search_state_opened .search_submit:hover{color:#fff}.scheme_dark .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap{top:.8em}.scheme_dark .search_results .post_more,.scheme_dark .search_results .search_results_close{color:#fff}.scheme_dark .search_results .post_more:hover,.scheme_dark .search_results .search_results_close:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_1 .search_results,.scheme_dark .top_panel_inner_style_1 .search_results:after,.scheme_dark .top_panel_inner_style_2 .search_results,.scheme_dark .top_panel_inner_style_2 .search_results:after,.scheme_dark .top_panel_inner_style_3 .search_results,.scheme_dark .top_panel_inner_style_3 .search_results:after{color:#fff;background-color:#fff;border-color:#00a9e1}.scheme_dark .top_panel_inner_style_1 .search_results a,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_1 .search_results .post_more,.scheme_dark .top_panel_inner_style_1 .search_results .search_results_close,.scheme_dark .top_panel_inner_style_2 .search_results a,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_2 .search_results .post_more,.scheme_dark .top_panel_inner_style_2 .search_results .search_results_close,.scheme_dark .top_panel_inner_style_3 .search_results a,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_more,.scheme_dark .top_panel_inner_style_3 .search_results .search_results_close{color:#fff}.scheme_dark .top_panel_inner_style_1 .search_results a:hover,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_1 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_1 .search_results .search_results_close:hover,.scheme_dark .top_panel_inner_style_2 .search_results a:hover,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_2 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_2 .search_results .search_results_close:hover,.scheme_dark .top_panel_inner_style_3 .search_results a:hover,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_3 .search_results .search_results_close:hover{color:#e5e5e5}.scheme_dark .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{color:#5e657c}.scheme_dark .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .contact_icon,.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon .search_submit{color:#5e657c}.scheme_dark .top_panel_inner_style_8 .top_panel_buttons a:hover .contact_icon,.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit{color:#d0d0d0}.scheme_dark .pushy_inner{color:#9daab0;background-color:#262262}.scheme_dark .pushy_inner a{color:#fff}.scheme_dark .pushy_inner a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .popup_wrap a,.scheme_dark .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap a,.scheme_dark .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap a,.scheme_dark .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:#fff}.scheme_dark .top_panel_inner_style_3 .popup_wrap a:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap a:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .popup_wrap,.scheme_dark .top_panel_inner_style_4 .popup_wrap,.scheme_dark .top_panel_inner_style_5 .popup_wrap,.scheme_dark .top_panel_inner_style_3 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_4 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_5 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a{color:#9daab0}.scheme_dark .top_panel_inner_style_3 .popup_wrap .popup_close:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap .popup_close:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_dark .header_mobile .menu_button,.scheme_dark .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon{color:#0a1f54}.scheme_dark .header_mobile .side_wrap{color:#fff}.scheme_dark .header_mobile .panel_top,.scheme_dark .header_mobile .side_wrap{background-color:#fff}.scheme_dark .header_mobile .panel_middle{background-color:#fff}.scheme_dark .header_mobile .menu_button:hover,.scheme_dark .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon:hover,.scheme_dark .header_mobile .menu_main_cart.top_panel_icon:hover .top_panel_cart_button .contact_icon,.scheme_dark .header_mobile .side_wrap .close:hover{color:#fff}.scheme_dark .header_mobile .menu_main_nav>li a,.scheme_dark .header_mobile .menu_main_nav>li>a:hover{color:#fff}.scheme_dark .header_mobile .menu_main_nav>a:hover,.scheme_dark .header_mobile .menu_main_nav>li.sfHover>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-item>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-parent>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-ancestor>a,.scheme_dark .header_mobile .menu_main_nav>li>a:hover,.scheme_dark .header_mobile .menu_main_nav>li ul li a:hover,.scheme_dark .header_mobile .menu_main_nav>li ul li.current-menu-item>a,.scheme_dark .header_mobile .menu_main_nav>li ul li.current-menu-ancestor>a,.scheme_dark .header_mobile .login a:hover{color:#e5e5e5}.scheme_dark .header_mobile .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_dark .header_mobile .search_wrap,.scheme_dark .header_mobile .login{border-color:#fff}.scheme_dark .header_mobile .login .popup_link,.scheme_dark .header_mobile .sc_socials.sc_socials_type_icons a{color:#fff}.scheme_dark .header_mobile .search_wrap .search_field,.scheme_dark .header_mobile .search_wrap .search_field:focus{color:#fff}.scheme_dark .header_mobile .popup_wrap .sc_socials.sc_socials_type_icons a{color:#656c77}.scheme_dark .tparrows.default{color:#262262}.scheme_dark .tp-bullets.simplebullets.round .bullet{background-color:#262262}.scheme_dark .tp-bullets.simplebullets.round .bullet.selected{border-color:#262262}.scheme_dark .slider_over_content_inner{background-color:rgba(38,34,98,.8)}.scheme_dark .slider_over_button{color:#0a1f54;background-color:rgba(38,34,98,.8)}.scheme_dark .slider_over_close{color:#0a1f54}.scheme_dark .sc_button.slider_button{background:#ffffff!important;color:#0a1f54!important}.scheme_dark .sc_button.slider_button:hover{background:#0a1f54!important;color:#ffffff!important}.scheme_dark .persephone.tparrows{border-color:rgba(255,255,255,.3)!important}.scheme_dark .persephone.tparrows:before{color:rgba(255,255,255,.7)!important}.scheme_dark .persephone.tparrows:hover{border-color:#00a9e1!important}.scheme_dark .persephone.tparrows:hover:before{color:#00a9e1!important}.scheme_dark .top_panel_title_inner{background-color:#fff;border-color:rgba(144,144,144,.1)}.scheme_dark .top_panel_title_inner .page_title{color:#0a1f54}.scheme_dark .top_panel_title_inner .post_navi .post_navi_item a,.scheme_dark .top_panel_title_inner .breadcrumbs a.breadcrumbs_item{color:#d0d0d0}.scheme_dark .top_panel_title_inner .post_navi .post_navi_item a:hover,.scheme_dark .top_panel_title_inner .breadcrumbs a.breadcrumbs_item:hover{color:#aaa}.scheme_dark .top_panel_title_inner .post_navi span,.scheme_dark .top_panel_title_inner .breadcrumbs span{color:#aaa}.scheme_dark .post_navi .post_navi_item+.post_navi_item:before,.scheme_dark .top_panel_title_inner .breadcrumbs .breadcrumbs_delimiter{color:#aaa}.scheme_dark .post_title .post_icon{color:#fff}.scheme_dark .pagination>a{border-color:#fff}.scheme_dark .post_format_aside.post_item_single .post_content p,.scheme_dark .post_format_aside .post_descr{border-color:#fff;background-color:#262262}.scheme_dark .hover_icon:before{color:#fff;background-color:#00a9e1}.scheme_dark .hover_icon:after{background-color:rgba(255,255,255,.8)}.scheme_dark .post_info a,.scheme_dark .post_info a>span{color:#656c77}.scheme_dark .post_info a[class*="icon-"]{color:#fff}.scheme_dark .post_info a:hover,.scheme_dark .post_info a:hover>span{color:#00a9e1}.scheme_dark .post_item .post_readmore_label{color:#0a1f54}.scheme_dark .post_item .post_readmore:hover .post_readmore_label{color:#00a9e1}.scheme_dark .post_info .post_info_counters .post_counters_item:before,.scheme_dark .post_info .post_info_posted:before{color:#00a9e1}.scheme_dark .post_info .post_info_posted_by:before,.scheme_dark .post_info .post_info_tags:before{color:#656c77}.scheme_dark .post_info .post_info_posted_by,.scheme_dark .post_info .post_info_tags{color:#656c77}.scheme_dark .post_info.post_info_bottom .post_info_tags a{background-color:#29395f;color:#9daab0}.scheme_dark .post_info.post_info_bottom .post_info_tags a:hover{color:#fff;background-color:#00a9e1}.scheme_dark .post_info_bottom_cat_tag{border-color:#29395f}.scheme_dark .post_item_related .post_info a{color:#9daab0}.scheme_dark .post_item_related .post_info a:hover,.scheme_dark .post_item_related .post_title a:hover{color:#00a9e1}.scheme_dark .article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related{background-color:#fff}.scheme_dark .post_item_related .post_content .post_content_wrap .post_title a{color:#0a1f54}.scheme_dark .post_item_related .post_content .post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_dark .post_item_related .post_content .post_featured+.post_content_wrap .post_title a{color:#fff}.scheme_dark .post_item_related .post_content .post_featured+.post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_dark .post_item_related .post_content .post_featured .hover_icon:after{background:-moz-linear-gradient(bottom,rgba(255,255,255,.8) 0%,rgba(125,185,232,0) 100%);background:-webkit-linear-gradient(bottom,rgba(255,255,255,.8) 0%,rgba(125,185,232,0) 100%);background:linear-gradient(to top,rgba(255,255,255,.8) 0%,rgba(125,185,232,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e5799',endColorstr='#007db9e8',GradientType=0)}.scheme_dark .single-post .related_wrap{border-color:#29395f}.scheme_dark .isotope_item_colored .post_featured .post_mark_new,.scheme_dark .isotope_item_colored .post_featured .post_title,.scheme_dark .isotope_item_colored .post_content.ih-item.square.colored .info{color:#fff;background-color:#fff}.scheme_dark .isotope_item_colored .post_featured .post_title a{color:#fff}.scheme_dark .isotope_item_colored .post_category a,.scheme_dark .isotope_item_colored .post_rating .reviews_stars_bg,.scheme_dark .isotope_item_colored .post_rating .reviews_stars_hover,.scheme_dark .isotope_item_colored .post_rating .reviews_value{color:#fff}.scheme_dark .isotope_item_colored .post_featured .post_descr{background-color:#fff}.scheme_dark .article_style_boxed .isotope_item_colored .post_featured .post_descr{background-color:#fff}.scheme_dark .isotope_item_colored .post_info_wrap .post_button .sc_button{color:#fff;background-color:#262262}.scheme_dark .isotope_item_colored_1 .post_item{background-color:#fff;color:#5e657c}.scheme_dark .isotope_item_colored_1 a,.scheme_dark .isotope_item_colored_1 .post_title a{color:#00a9e1}.scheme_dark .isotope_item_colored_1 a:hover,.scheme_dark .isotope_item_colored_1 .post_title a:hover,.scheme_dark .isotope_item_colored_1 .post_category a:hover{color:#e5631b}.scheme_dark .isotope_wrap .isotope_item_colored_1 .post_featured{border-color:#fff}.scheme_dark .isotope_filters a{border-color:#fff;background-color:#fff;color:#fff}.scheme_dark .isotope_filters a.active,.scheme_dark .isotope_filters a:hover{border-color:#00a9e1;background-color:#00a9e1}.scheme_dark .pagination_single>.pager_numbers,.scheme_dark .pagination_single a,.scheme_dark .pagination_single .current,.scheme_dark .pagination_slider .pager_cur,.scheme_dark .pagination_pages>a,.scheme_dark .pagination_pages>span{background-color:#fff;color:#00a9e1;border-color:#00a9e1}.scheme_dark .pagination_single>.pager_numbers,.scheme_dark .pagination_single a:hover,.scheme_dark .pagination_single .current,.scheme_dark .pagination_slider .pager_cur:hover,.scheme_dark .pagination_slider .pager_cur:focus,.scheme_dark .pagination_pages>.active,.scheme_dark .pagination_pages>a:hover{border-color:#00a9e1;background-color:#00a9e1;color:#fff}.scheme_dark .pagination_slider .pager_slider{border-color:#29395f;background-color:#262262}.scheme_dark .pagination_wrap .pager_next,.scheme_dark .pagination_wrap .pager_prev,.scheme_dark .pagination_wrap .pager_last,.scheme_dark .pagination_wrap .pager_first{color:#fff}.scheme_dark .pagination_wrap .pager_next:hover,.scheme_dark .pagination_wrap .pager_prev:hover,.scheme_dark .pagination_wrap .pager_last:hover,.scheme_dark .pagination_wrap .pager_first:hover{color:#00a9e1}.scheme_dark .pagination_viewmore>a{color:#fff;background-color:#fff}.scheme_dark .pagination_viewmore>a:hover{color:#fff;background-color:#00a9e1}.scheme_dark .viewmore_loader,.scheme_dark .mfp-preloader span,.scheme_dark .sc_video_frame.sc_video_active:before{background-color:#00a9e1}.scheme_dark .post_featured .post_nav_item{color:#fff}.scheme_dark .post_featured .post_nav_item:before{background-color:#fff;color:#fff}.scheme_dark .post_featured .post_nav_item .post_nav_info{background-color:#fff}.scheme_dark .reviews_block .reviews_summary .reviews_item{background-color:#fff}.scheme_dark .reviews_block .reviews_summary,.scheme_dark .reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:#505050}.scheme_dark .reviews_block .reviews_max_level_100 .reviews_stars_hover,.scheme_dark .reviews_block .reviews_item .reviews_slider{color:#fff;background-color:#fff}.scheme_dark .reviews_block .reviews_item .reviews_stars_hover{color:#fff}.scheme_dark .reviews_block .reviews_value{color:#0a1f54}.scheme_dark .reviews_block .reviews_summary .reviews_criteria{color:#9daab0}.scheme_dark .reviews_block .reviews_summary .reviews_value{color:#fff}.scheme_dark .post_item .post_rating .reviews_stars_bg,.scheme_dark .post_item .post_rating .reviews_stars_hover,.scheme_dark .post_item .post_rating .reviews_value{color:#fff}.scheme_dark .post_author{background-color:#fff;color:#d0d0d0}.scheme_dark .post_author .post_author_title{color:#d0d0d0}.scheme_dark .post_author .post_author_title a{color:#fff}.scheme_dark .post_author .post_author_title a:hover{color:#00a9e1}.scheme_dark .post_author .post_author_info .sc_socials_shape_square a{color:#d0d0d0}.scheme_dark .post_author .post_author_info .sc_socials_shape_square a:hover{color:#00a9e1}.scheme_dark .post_author_inner{border-color:#29395f}.scheme_dark .comments_list_wrap ul.children,.scheme_dark .comments_list_wrap ul>li+li{border-top-color:#656c77}.scheme_dark .comments_list_wrap .comment-respond{border-bottom-color:#fff}.scheme_dark .comments_list_wrap>ul{border-bottom-color:#29395f}.scheme_dark .comments_list_wrap .comment_info>.comment_date>.comment_date_value,.scheme_dark .comments_list_wrap .comment_info .comment_date+span:before,.scheme_dark .comments_list_wrap .comment_time{color:#656c77}.scheme_dark .comments_list_wrap .comment_author{color:#0a1f54}.scheme_dark .comments_list_wrap .comment_reply a{color:#00a9e1}.scheme_dark .comments_list_wrap .comment_reply a:hover{color:#e5631b}.scheme_dark .post_item_404 .page_title,.scheme_dark .post_item_404 .page_subtitle,.scheme_dark .post_item_404 .page_search .search_wrap .search_submit:before{color:#0a1f54}.scheme_dark .post_item_404 .page_search .search_wrap .search_submit:hover:before{color:#00a9e1}.scheme_dark .sidebar_outer_menu .menu_side_nav li>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li>a{color:#0a1f54}.scheme_dark .sidebar_outer_menu .menu_side_nav li>a:hover,.scheme_dark .sidebar_outer_menu .menu_side_nav li.sfHover>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li>a:hover,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.sfHover>a{color:#d0d0d0;background-color:#505050}.scheme_dark .sidebar_outer_menu .menu_side_nav>li ul,.scheme_dark .sidebar_outer_menu .menu_side_responsive>li ul{color:#0a1f54;background-color:#262262;border-color:#29395f}.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-item>a,.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-parent>a,.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-ancestor>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-item>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-parent>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-ancestor>a{color:#656c77}.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a{color:#0a1f54}.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:#fff}.scheme_dark .sidebar_inner aside:nth-child(3n+4),.scheme_dark .sidebar_inner aside:nth-child(3n+5),.scheme_dark .sidebar_inner aside:nth-child(3n+6),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+4),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+5),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+6),.scheme_dark .widget_area_inner aside:nth-child(2n+3),.scheme_dark .widget_area_inner aside:nth-child(2n+4),.scheme_dark .widget_area_inner aside+aside{border-color:#29395f}.scheme_dark .widget_area_inner{color:#9daab0}.scheme_dark .widget_area_inner a,.scheme_dark .widget_area_inner ul li:before,.scheme_dark .widget_area_inner ul li a:hover,.scheme_dark .widget_area_inner button:before{color:#9daab0}.scheme_dark .widget_area_inner button:before,.scheme_dark .widget_area_inner ul li:before{color:#00a9e1}.scheme_dark .widget_area_inner a:hover,.scheme_dark .widget_area_inner ul li a,.scheme_dark .widget_area_inner button:hover:before{color:#fff}.scheme_dark .widget_area_inner ul li a:hover{color:#00a9e1}.scheme_dark .widget_area_inner .post_title a{color:#0a1f54}.scheme_dark .widget_area_inner .widget_text a:not(.sc_button),.scheme_dark .widget_area_inner .post_info a{color:#fff}.scheme_dark .widget_area_inner .widget_text a:not(.sc_button):hover,.scheme_dark .widget_area_inner .post_info a:hover{color:#00a9e1}.scheme_dark .widget_area_inner .widget_product_search .search_form,.scheme_dark .widget_area_inner .widget_search .search_form,.scheme_dark .widget_area_inner .widget_categories select,.scheme_dark .widget_area_inner .widget_text select,.scheme_dark .widget_area_inner .widget_archive select{background-color:#666}.scheme_dark .footer_wrap_inner.widget_area_inner .widget_search .search_form,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_archive select,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_text select,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_categories select{background-color:#fff}.scheme_dark .widget_area_inner .widget_product_search .search_field,.scheme_dark .widget_area_inner .widget_search .search_field{color:#5e657c}.scheme_dark .widget_area_inner .widget_product_search .search_button:before,.scheme_dark .widget_area_inner .widget_search .search_button:before{color:#656c77}.scheme_dark .widget_area_inner .widget_product_search .search_button,.scheme_dark .widget_area_inner .widget_search .search_button{color:#9daab0}.scheme_dark .widget_area_inner .widget_product_search .search_button:hover,.scheme_dark .widget_area_inner .widget_search .search_button:hover{color:#d0d0d0}.scheme_dark .widget_area_inner .widget_calendar .weekday,.scheme_dark .wp-block-calendar .weekday{color:#0a1f54}.scheme_dark .widget_area_inner .widget_calendar td a:hover,.scheme_dark .wp-block-calendar td a:hover{background-color:#00a9e1;color:#fff}.scheme_dark .wp-block-calendar .today .day_wrap,.scheme_dark .widget_area_inner .widget_calendar .today .day_wrap{color:#fff}.scheme_dark .wp-block-calendar .today .day_wrap:before,.scheme_dark .widget_area_inner .widget_calendar .today .day_wrap:before{background-color:#00a9e1}.scheme_dark .widget_area .widget_calendar td a:after{color:#00a9e1}.scheme_dark .widget_area .widget_calendar th.month_prev a,.scheme_dark .widget_area .widget_calendar th.month_next a{color:#00a9e1}.scheme_dark .widget_area .widget_calendar th.month_prev a:hover,.scheme_dark .widget_area .widget_calendar th.month_next a:hover{color:#e5631b}.scheme_dark .widget_area .widget_calendar .month_cur{color:#00a9e1}.scheme_dark .widget_area .widget_calendar td,.scheme_dark .wp-block-calendar td{color:#9daab0}.scheme_dark .widget_area .widget_calendar .weekday{color:#0a1f54}.scheme_dark .widget_area .widget_recent_comments ul li .comment-author-link{color:#fff}.scheme_dark .footer_wrap.widget_area .widget_recent_comments ul li .comment-author-link{color:#fff}.scheme_dark .footer_wrap.widget_area .widget_rss cite{color:#fff}.scheme_dark .wp-block-tag-cloud a,.scheme_dark .widget_area_inner .widget_product_tag_cloud a,.scheme_dark .widget_area_inner .widget_tag_cloud a{background-color:#29395f;color:#9daab0}.scheme_dark .wp-block-tag-cloud a:not([class*="sc_button_hover_"]):hover,.scheme_dark .widget_area_inner .widget_product_tag_cloud a:not([class*="sc_button_hover_"]):hover,.scheme_dark .widget_area_inner .widget_tag_cloud a:not([class*="sc_button_hover_"]):hover{color:#fff;background-color:#00a9e1}.scheme_dark .widget_text .mail_footer,.scheme_dark .widget_text .address_footer,.scheme_dark .widget_text .mail_footer:before,.scheme_dark .widget_text .address_footer:before{color:#00a9e1}.scheme_dark .widget_text .textwidget h5{color:#fff}.scheme_dark .sidebar_outer_inner aside,.scheme_dark .sidebar_inner aside{border-top-color:#29395f}.scheme_dark .pre_footer_wrap{background-color:#909090}.scheme_dark .pre_footer_wrap a{color:#fff}.scheme_dark .pre_footer_wrap a:hover{color:#00a9e1}.scheme_dark .footer_wrap_inner.widget_area_inner .content_wrap{border-color:rgba(255,255,255,.1)}.scheme_dark .contacts_wrap_inner{color:#9daab0;background-color:#262262}.scheme_dark .testimonials_wrap_inner,.scheme_dark .twitter_wrap_inner{color:#9daab0;background-color:#262262}.scheme_dark .copyright_wrap_inner{background-color:#262262}.scheme_dark .copyright_wrap_inner .copyright_text{color:#5e657c}.scheme_dark .copyright_wrap_inner .menu_footer_nav li a{color:#9daab0}.scheme_dark .copyright_wrap_inner .menu_footer_nav li a:hover{color:#fff}.scheme_dark .scroll_to_top{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%);background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%);background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1);background-size:200%;background-position:0;color:#fff}.scheme_dark .scroll_to_top:hover{color:#fff}.scheme_dark #page_preloader{background-color:#262262}.scheme_dark .preloader_wrap>div{background-color:#fff}.scheme_dark.gallery_preview:before{background-color:#262262}.scheme_dark .popup_wrap{background-color:#262262}.scheme_dark .woocommerce div.quantity span,.scheme_dark .woocommerce-page div.quantity span{color:#0a1f54;background-color:#fff}.scheme_dark .woocommerce div.quantity span:hover,.scheme_dark .woocommerce-page div.quantity span:hover{color:#e5631b;background-color:#fff}.scheme_dark .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#aaa}.scheme_dark .woocommerce .widget_price_filter .ui-slider .ui-slider-range,.scheme_dark .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background-color:#0a1f54}.scheme_dark .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.scheme_dark .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{background:#fff}.scheme_dark .woocommerce .woocommerce-message,.scheme_dark .woocommerce-page .woocommerce-message,.scheme_dark .woocommerce a.button.alt:active,.scheme_dark .woocommerce button.button.alt:active,.scheme_dark .woocommerce input.button.alt:active,.scheme_dark .woocommerce #respond input#submit.alt:active,.scheme_dark .woocommerce #content input.button.alt:active,.scheme_dark .woocommerce-page a.button.alt:active,.scheme_dark .woocommerce-page button.button.alt:active,.scheme_dark .woocommerce-page input.button.alt:active,.scheme_dark .woocommerce-page #respond input#submit.alt:active,.scheme_dark .woocommerce-page #content input.button.alt:active,.scheme_dark .woocommerce a.button:active,.scheme_dark .woocommerce button.button:active,.scheme_dark .woocommerce input.button:active,.scheme_dark .woocommerce #respond input#submit:active,.scheme_dark .woocommerce #content input.button:active,.scheme_dark .woocommerce-page a.button:active,.scheme_dark .woocommerce-page button.button:active,.scheme_dark .woocommerce-page input.button:active,.scheme_dark .woocommerce-page #respond input#submit:active,.scheme_dark .woocommerce-page #content input.button:active{border-top-color:#fff}.scheme_dark .woocommerce a.button:not(.pswp__button),.scheme_dark .woocommerce button.button,.scheme_dark .woocommerce input.button,.scheme_dark .woocommerce #respond input#submit,.scheme_dark .woocommerce #content input.button,.scheme_dark .woocommerce-page a.button,.scheme_dark .woocommerce-page button.button,.scheme_dark .woocommerce-page input.button,.scheme_dark .woocommerce-page #respond input#submit,.scheme_dark .woocommerce-page #content input.button,.scheme_dark .woocommerce a.button.alt,.scheme_dark .woocommerce button.button.alt,.scheme_dark .woocommerce input.button.alt,.scheme_dark .woocommerce #respond input#submit.alt,.scheme_dark .woocommerce #content input.button.alt,.scheme_dark .woocommerce-page a.button.alt,.scheme_dark .woocommerce-page button.button.alt,.scheme_dark .woocommerce-page input.button.alt,.scheme_dark .woocommerce-page #respond input#submit.alt,.scheme_dark .woocommerce-page #content input.button.alt,.scheme_dark .woocommerce-account .addresses .title .edit,.scheme_dark .woocommerce ul.products li.product .add_to_cart_button,.scheme_dark .woocommerce-page ul.products li.product .add_to_cart_button{background-color:#fff;color:#fff}.scheme_dark .article_style_boxed.woocommerce .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce .woocommerce-message,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-message{background-color:#fff}.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-message,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-message{background-color:#fff}.scheme_dark .woocommerce span.new,.scheme_dark .woocommerce-page span.new,.scheme_dark .woocommerce span.onsale,.scheme_dark .woocommerce-page span.onsale{background-color:#00a9e1;color:#fff}.scheme_dark .article_style_boxed.woocommerce ul.products li.product .post_item_wrap,.scheme_dark .article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#fff}.scheme_dark .woocommerce ul.products li.product .price del,.scheme_dark .woocommerce-page ul.products li.product .price del{color:#656c77}.scheme_dark.article_style_boxed.woocommerce ul.products li.product .post_item_wrap{background-color:#505050}.scheme_dark.article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#505050}.scheme_dark.article_style_boxed.woocommerce ul.products li.product .post_content{background-color:#fff}.scheme_dark.article_style_boxed.woocommerce-page ul.products li.product .post_content{background-color:#fff}.scheme_dark .woocommerce nav.woocommerce-pagination ul li a,.scheme_dark .woocommerce nav.woocommerce-pagination ul li span.current{background-color:#fff;color:#00a9e1;border-color:#00a9e1}.scheme_dark .woocommerce nav.woocommerce-pagination ul li a:focus,.scheme_dark .woocommerce nav.woocommerce-pagination ul li a:hover,.scheme_dark .woocommerce nav.woocommerce-pagination ul li span.current{color:#fff;background-color:#00a9e1}.scheme_dark .woocommerce nav.woocommerce-pagination ul li .next,.scheme_dark .woocommerce nav.woocommerce-pagination ul li .prev{color:#fff}.scheme_dark .woocommerce nav.woocommerce-pagination ul li .next:hover,.scheme_dark .woocommerce nav.woocommerce-pagination ul li .prev:hover{color:#00a9e1}.scheme_dark .woocommerce div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce #content div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce-page div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce-page #content div.product .woocommerce-tabs .panel{border-color:#29395f}.scheme_dark.woocommerce-tabs.trx-stretch-width{background-color:#262262}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a{color:#9daab0}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a:hover,.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a{color:#0a1f54}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a:after{background-color:#fff}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a::after{background-color:#00a9e1}.scheme_dark .woocommerce table.cart thead th,.scheme_dark .woocommerce #content table.cart thead th,.scheme_dark .woocommerce-page table.cart thead th,.scheme_dark .woocommerce-page #content table.cart thead th{background-color:#fff;color:#fff}.scheme_dark .woocommerce-account .woocommerce-MyAccount-navigation,.scheme_dark .woocommerce-MyAccount-navigation li+li{border-color:#29395f}.scheme_dark .woocommerce-MyAccount-navigation li.is-active a{color:#0a1f54}.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .empty,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .quantity,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .quantity .amount,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .total,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .total .amount{color:#fff}.scheme_dark .top_panel_wrap .widget_shopping_cart ul.cart_list>li>a:hover{color:#00a9e1}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li+li{border-color:#909090}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a{color:#9daab0}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover>a,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a:hover{color:#0a1f54}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories ul{background-color:#fff}.scheme_dark .widget_shopping_cart_content .woocommerce-Price-amount,.scheme_dark .product_list_widget ins .woocommerce-Price-amount{color:#00a9e1}.scheme_dark .woocommerce-page .product .entry-summary p.price del{color:#656c77}.scheme_dark .woocommerce-page .product .entry-summary p.price ins{color:#00a9e1}.scheme_dark .woocommerce div.product form.cart .variations tr{color:#9daab0}.scheme_dark .tribe-events-calendar thead th{background-color:#fff}.scheme_dark a.tribe-events-read-more,.scheme_dark .tribe-events-button,.scheme_dark .tribe-events-nav-previous a,.scheme_dark .tribe-events-nav-next a,.scheme_dark .tribe-events-widget-link a,.scheme_dark .tribe-events-viewmore a{background-color:#fff;color:#fff}.scheme_dark a.tribe-events-read-more:hover,.scheme_dark .tribe-events-button:hover,.scheme_dark .tribe-events-nav-previous a:hover,.scheme_dark .tribe-events-nav-next a:hover,.scheme_dark .tribe-events-widget-link a:hover,.scheme_dark .tribe-events-viewmore a:hover{background-color:#00a9e1;color:#fff}.scheme_dark #bbpress-forums div.bbp-topic-content a,.scheme_dark #buddypress button,.scheme_dark #buddypress a.button,.scheme_dark #buddypress input[type="submit"],.scheme_dark #buddypress input[type="button"],.scheme_dark #buddypress input[type="reset"],.scheme_dark #buddypress ul.button-nav li a,.scheme_dark #buddypress div.generic-button a,.scheme_dark #buddypress .comment-reply-link,.scheme_dark a.bp-title-button,.scheme_dark #buddypress div.item-list-tabs ul li.selected a,.scheme_dark #buddypress .acomment-options a{background:#fff;color:#fff}.scheme_dark #bbpress-forums div.bbp-topic-content a:hover,.scheme_dark #buddypress button:hover,.scheme_dark #buddypress a.button:hover,.scheme_dark #buddypress input[type="submit"]:hover,.scheme_dark #buddypress input[type="button"]:hover,.scheme_dark #buddypress input[type="reset"]:hover,.scheme_dark #buddypress ul.button-nav li a:hover,.scheme_dark #buddypress div.generic-button a:hover,.scheme_dark #buddypress .comment-reply-link:hover,.scheme_dark a.bp-title-button:hover,.scheme_dark #buddypress div.item-list-tabs ul li.selected a:hover,.scheme_dark #buddypress .acomment-options a:hover{background:#00a9e1;color:#fff}.scheme_dark #buddypress #item-nav,.scheme_dark #buddypress div#subnav.item-list-tabs,.scheme_dark #buddypress div.item-list-tabs{background-color:#fff}.scheme_dark #buddypress #item-nav li:not(.selected) a,.scheme_dark #buddypress div#subnav.item-list-tabs li:not(.selected) a,.scheme_dark #buddypress div.item-list-tabs li:not(.selected) a{color:#5e657c}.scheme_dark #buddypress #item-nav li:not(.selected) a:hover,.scheme_dark #buddypress div#subnav.item-list-tabs li:not(.selected) a:hover,.scheme_dark #buddypress div.item-list-tabs li:not(.selected) a:hover{color:#d0d0d0;background-color:#505050}.scheme_dark #buddypress .dir-search input[type="search"],.scheme_dark #buddypress .dir-search input[type="text"],.scheme_dark #buddypress .groups-members-search input[type="search"],.scheme_dark #buddypress .groups-members-search input[type="text"],.scheme_dark #buddypress .standard-form input[type="color"],.scheme_dark #buddypress .standard-form input[type="date"],.scheme_dark #buddypress .standard-form input[type="datetime-local"],.scheme_dark #buddypress .standard-form input[type="datetime"],.scheme_dark #buddypress .standard-form input[type="email"],.scheme_dark #buddypress .standard-form input[type="month"],.scheme_dark #buddypress .standard-form input[type="number"],.scheme_dark #buddypress .standard-form input[type="password"],.scheme_dark #buddypress .standard-form input[type="range"],.scheme_dark #buddypress .standard-form input[type="search"],.scheme_dark #buddypress .standard-form input[type="tel"],.scheme_dark #buddypress .standard-form input[type="text"],.scheme_dark #buddypress .standard-form input[type="time"],.scheme_dark #buddypress .standard-form input[type="url"],.scheme_dark #buddypress .standard-form input[type="week"],.scheme_dark #buddypress .standard-form select,.scheme_dark #buddypress .standard-form textarea,.scheme_dark #buddypress form#whats-new-form textarea{color:#999;background-color:#666;border-color:#909090}.scheme_dark #buddypress .dir-search input[type="search"]:focus,.scheme_dark #buddypress .dir-search input[type="text"]:focus,.scheme_dark #buddypress .groups-members-search input[type="search"]:focus,.scheme_dark #buddypress .groups-members-search input[type="text"]:focus,.scheme_dark #buddypress .standard-form input[type="color"]:focus,.scheme_dark #buddypress .standard-form input[type="date"]:focus,.scheme_dark #buddypress .standard-form input[type="datetime-local"]:focus,.scheme_dark #buddypress .standard-form input[type="datetime"]:focus,.scheme_dark #buddypress .standard-form input[type="email"]:focus,.scheme_dark #buddypress .standard-form input[type="month"]:focus,.scheme_dark #buddypress .standard-form input[type="number"]:focus,.scheme_dark #buddypress .standard-form input[type="password"]:focus,.scheme_dark #buddypress .standard-form input[type="range"]:focus,.scheme_dark #buddypress .standard-form input[type="search"]:focus,.scheme_dark #buddypress .standard-form input[type="tel"]:focus,.scheme_dark #buddypress .standard-form input[type="text"]:focus,.scheme_dark #buddypress .standard-form input[type="time"]:focus,.scheme_dark #buddypress .standard-form input[type="url"]:focus,.scheme_dark #buddypress .standard-form input[type="week"]:focus,.scheme_dark #buddypress .standard-form select:focus,.scheme_dark #buddypress .standard-form textarea:focus,.scheme_dark #buddypress form#whats-new-form textarea:focus{color:#999;background-color:#505050;border-color:#888}.scheme_dark #buddypress #reply-title small a span,.scheme_dark #buddypress a.bp-primary-action span{color:#fff;background-color:#fff}.scheme_dark #buddypress .activity .activity-item:nth-child(2n+1){background-color:#fff}.scheme_dark.vc_row{background-color:#262262}.scheme_dark .booking_month_container_custom,.scheme_dark .booking_month_navigation_button_custom{background-color:#ffffff!important}.scheme_dark .booking_month_name_custom,.scheme_dark .booking_month_navigation_button_custom{color:#d0d0d0!important}.scheme_dark .booking_month_navigation_button_custom:hover{color:#ffffff!important;background-color:#00a9e1!important}.scheme_dark #learndash_next_prev_link>a{color:#fff;background-color:#fff}.scheme_dark #learndash_next_prev_link>a:hover{background-color:#00a9e1}.scheme_dark .widget_area dd.course_progress div.course_progress_blue{background-color:#00a9e1}.scheme_dark #myplayer .ttw-music-player .progress-wrapper{background-color:#505050}.scheme_dark #myplayer .ttw-music-player .tracklist li.track{border-color:#29395f}.scheme_dark #myplayer .ttw-music-player .tracklist,.scheme_dark #myplayer .ttw-music-player .buy,.scheme_dark #myplayer .ttw-music-player .description,.scheme_dark #myplayer .ttw-music-player .artist,.scheme_dark #myplayer .ttw-music-player .artist-outer{color:#9daab0}.scheme_dark #myplayer .ttw-music-player .player .title,.scheme_dark #myplayer .ttw-music-player .tracklist li:hover{color:#0a1f54}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title{border-color:#29395f}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon{color:#aaa;background-color:#fff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active{color:#fff;border-color:#fff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened{color:#fff;background-color:#fff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title:hover{color:#00a9e1;border-color:#00a9e1}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title:hover .sc_accordion_icon_opened{background-color:#00a9e1}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_content{border-color:#29395f}.scheme_dark .sc_audio.sc_audio_info,.scheme_dark .sc_audio_player.sc_audio,.scheme_dark .wp-audio-shortcode{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1)}.scheme_dark .sc_audio .sc_audio_title{color:#fff}.scheme_dark .sc_audio .sc_audio_author_name{color:#fff}.scheme_dark .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.scheme_dark .wp-audio-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider,.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-current{background:#ffffff!important}.scheme_dark .mejs-container .mejs-controls .mejs-time{color:#fff}.scheme_dark .mejs-container.wp-video-shortcode .mejs-controls .mejs-time{color:#fff}.scheme_dark .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-total:before{background-color:rgba(38,34,98,.1)}.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-loaded{background:rgba(94,101,124,.1)!important}.scheme_dark .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button{background:#262262!important}.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-volume-button,.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-playpause-button{background:#ffffff!important}.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before,.scheme_dark .mejs-container .mejs-controls .mejs-fullscreen-button:before,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{color:#e5631b}.scheme_dark input[type="submit"],.scheme_dark input[type="reset"],.scheme_dark input[type="button"],.scheme_dark button:not(.pswp__button),.scheme_dark .sc_button.sc_button_style_filled,.scheme_dark .woocommerce a.button,.scheme_dark .woocommerce button.button,.scheme_dark .woocommerce input.button,.scheme_dark .woocommerce #respond input#submit,.scheme_dark .woocommerce #content input.button,.scheme_dark .woocommerce-page a.button,.scheme_dark .woocommerce-page button.button,.scheme_dark .woocommerce-page input.button,.scheme_dark .woocommerce-page #respond input#submit,.scheme_dark .woocommerce-page #content input.button,.scheme_dark .woocommerce a.button.alt,.scheme_dark .woocommerce button.button.alt,.scheme_dark .woocommerce input.button.alt,.scheme_dark .woocommerce #respond input#submit.alt,.scheme_dark .woocommerce #content input.button.alt,.scheme_dark .woocommerce-page a.button.alt,.scheme_dark .woocommerce-page button.button.alt,.scheme_dark .woocommerce-page input.button.alt,.scheme_dark .woocommerce-page #respond input#submit.alt,.scheme_dark .woocommerce-page #content input.button.alt,.scheme_dark .woocommerce-account .addresses .title .edit,.scheme_dark #btn-buy,.scheme_dark #btn-pay{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%);background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%);background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1);background-size:200%;background-position:0;color:#fff}.scheme_dark input[type="submit"].sc_button_style_color_style2,.scheme_dark input[type="reset"].sc_button_style_color_style2,.scheme_dark input[type="button"].sc_button_style_color_style2,.scheme_dark button.sc_button_style_color_style2,.scheme_dark .cff-container-field input[type="button"],.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style2{color:#fff;background:#d64a1a;background:-moz-linear-gradient(left,#d64a1a 9%,#f88120 55%);background:-webkit-linear-gradient(left,#d64a1a 9%,#f88120 55%);background:linear-gradient(to right,#d64a1a 9%,#f88120 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1);background-size:200%;background-position:0}.scheme_dark .sc_button.sc_button_style_border{border-color:#fff;color:#fff}.scheme_dark .sc_button.sc_button_style_border:hover{border-color:#00a9e1!important;color:#00a9e1!important}.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button{background:#fff;color:#0a1f54}.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button:hover{background:#00a9e1;color:#fff}.scheme_dark [class*="sc_button_hover_fade"]:hover{background-color:#00a9e1!important;color:#ffffff!important}.scheme_dark [class*="sc_button_hover_slide"]{color:#ffffff!important;background-color:#fff}.scheme_dark [class*="sc_button_hover_slide"]:hover{background-color:#00a9e1!important}.scheme_dark .sc_button_hover_slide_left{background:linear-gradient(to right,#00a9e1 50%,#ffffff 50%) repeat scroll right bottom / 210% 100% rgba(0,0,0,0)!important}.scheme_dark .sc_button_hover_slide_top{background:linear-gradient(to bottom,#00a9e1 50%,#ffffff 50%) repeat scroll right bottom / 100% 210% rgba(0,0,0,0)!important}.scheme_dark .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:#fff;border-color:#fff;color:#fff}.scheme_dark .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before{border-color:#fff}.scheme_dark .sc_blogger.layout_date .sc_blogger_item::before{background-color:#fff}.scheme_dark .sc_blogger_item.sc_plain_item{background-color:#fff}.scheme_dark .sc_blogger.layout_polaroid .photostack nav span.current{color:#fff;background-color:#fff}.scheme_dark .sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#00a9e1}.scheme_dark .sc_call_to_action .sc_call_to_action_descr{color:#9daab0}.scheme_dark .sc_call_to_action_accented{color:#fff;background-color:#fff}.scheme_dark .sc_call_to_action_accented .sc_item_title,.scheme_dark .sc_call_to_action_accented .sc_item_subtitle,.scheme_dark .sc_call_to_action_accented .sc_item_descr{color:#fff}.scheme_dark .sc_call_to_action_accented .sc_item_button>a{color:#fff;background-color:#fff}.scheme_dark .sc_call_to_action_accented .sc_item_button>a:before{background-color:#fff;color:#fff}.scheme_dark .sc_call_to_action .sc_item_subtitle{color:#e5631b}.scheme_dark .sc_call_to_action .sc_item_buttons>.sc_item_button+.sc_item_button a{color:#e5631b}.scheme_dark .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button+.sc_item_button a:before{color:#e5631b}.scheme_dark .sc_chat:after{background-color:#fff;border-color:#909090}.scheme_dark .sc_chat_inner{color:#5e657c;background-color:#fff;border-color:#909090}.scheme_dark .sc_chat_inner a{color:#00a9e1}.scheme_dark .sc_chat_inner a:hover{color:#e5631b}.scheme_dark .sc_clients_style_clients-2 .sc_client_image .sc_client_hover{color:#fff;background-color:rgba(10,31,84,.8)}.scheme_dark .sc_clients_style_clients-2 .sc_client_title,.scheme_dark .sc_clients_style_clients-2 .sc_client_title a{color:#fff}.scheme_dark .sc_clients_style_clients-2 .sc_client_title a:hover{color:#fff}.scheme_dark .sc_clients_style_clients-2 .sc_client_description:before,.scheme_dark .sc_clients_style_clients-2 .sc_client_position{color:#fff}.scheme_dark .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{background:#fff;color:#0a1f54}.scheme_dark .sc_form .sc_form_item.sc_form_button button{color:#fff;background:#0071c3;background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%);background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%);background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1);background-size:200%;background-position:0}.scheme_dark .sc_form .sc_form_item .sc_form_element input[type="radio"]+label:before,.scheme_dark .sc_form .sc_form_item .sc_form_element input[type="checkbox"]+label:before{border-color:#909090;background-color:#666}.scheme_dark .sc_form_select_container{background-color:#666}.scheme_dark .sc_form .sc_form_item input[type="text"],.scheme_dark .sc_form .sc_form_item select,.scheme_dark .sc_form .sc_form_item textarea{background-color:#fff}.scheme_dark .sc_form .picker{color:#999;border-color:#909090;background-color:#666}.scheme_dark .picker__month,.scheme_dark .picker__year{color:#d0d0d0}.scheme_dark .sc_form .picker__nav--prev:before,.scheme_dark .sc_form .picker__nav--next:before{color:#999}.scheme_dark .sc_form .picker__nav--prev:hover:before,.scheme_dark .sc_form .picker__nav--next:hover:before{color:#d0d0d0}.scheme_dark .sc_form .picker__nav--disabled,.scheme_dark .sc_form .picker__nav--disabled:hover,.scheme_dark .sc_form .picker__nav--disabled:before,.scheme_dark .sc_form .picker__nav--disabled:before:hover{color:#aaa}.scheme_dark .sc_form table.picker__table th{color:#fff;background-color:#fff}.scheme_dark .sc_form .picker__day--infocus{color:#d0d0d0}.scheme_dark .sc_form .picker__day--today,.scheme_dark .sc_form .picker__day--infocus:hover,.scheme_dark .sc_form .picker__day--outfocus:hover,.scheme_dark .sc_form .picker__day--highlighted:hover,.scheme_dark .sc_form .picker--focused .picker__day--highlighted{color:#d0d0d0;background-color:#505050}.scheme_dark .sc_form .picker__day--disabled,.scheme_dark .sc_form .picker__day--disabled:hover{color:#aaa}.scheme_dark .sc_form .picker__day--highlighted.picker__day--disabled,.scheme_dark .sc_form .picker__day--highlighted.picker__day--disabled:hover{color:#aaa;background-color:#505050!important}.scheme_dark .sc_form .picker__day--today:before,.scheme_dark .sc_form .picker__button--today:before,.scheme_dark .sc_form .picker__button--clear:before,.scheme_dark .sc_form button:focus{border-color:#fff}.scheme_dark .sc_form .picker__button--close:before{color:#fff}.scheme_dark .sc_form .picker--time .picker__button--clear:hover,.scheme_dark .sc_form .picker--time .picker__button--clear:focus{background-color:#00a9e1}.scheme_dark .sc_form .picker__footer{border-color:#909090}.scheme_dark .sc_form .picker__button--today,.scheme_dark .sc_form .picker__button--clear,.scheme_dark .sc_form .picker__button--close{color:#999}.scheme_dark .sc_form .picker__button--today:hover,.scheme_dark .sc_form .picker__button--clear:hover,.scheme_dark .sc_form .picker__button--close:hover{color:#d0d0d0;background-color:#505050!important}.scheme_dark .sc_form .picker__button--today[disabled],.scheme_dark .sc_form .picker__button--today[disabled]:hover{color:#aaa;background-color:#505050;border-color:#505050}.scheme_dark .sc_form .picker__button--today[disabled]:before{border-top-color:#aaa}.scheme_dark .sc_form .picker__list-item{color:#999;border-color:#909090}.scheme_dark .sc_form .picker__list-item:hover,.scheme_dark .sc_form .picker__list-item--highlighted,.scheme_dark .sc_form .picker__list-item--highlighted:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--highlighted,.scheme_dark .sc_form .picker__list-item--selected,.scheme_dark .sc_form .picker__list-item--selected:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--selected{color:#d0d0d0;background-color:#505050;border-color:#888}.scheme_dark .sc_form .picker__list-item--disabled,.scheme_dark .sc_form .picker__list-item--disabled:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--disabled{color:#aaa;background-color:#666;border-color:#909090}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:#fff}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_digits{border-color:#909090;background-color:#fff}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:#fff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:#fff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:#fff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:#fff}.scheme_dark .sc_dropcaps .sc_dropcaps_item{color:#fff}.scheme_dark .sc_dropcaps.sc_dropcaps_style_1 .sc_dropcaps_item{background:#d64a1a;background:-moz-linear-gradient(left,#d64a1a 0%,#f88120 100%);background:-webkit-linear-gradient(left,#d64a1a 0%,#f88120 100%);background:linear-gradient(to right,#d64a1a 0%,#f88120 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1)}.scheme_dark .sc_dropcaps.sc_dropcaps_style_2 .sc_dropcaps_item{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1)}.scheme_dark .mc4wp-form input[type="email"]{background-color:#d0d0d0}.scheme_dark .sc_video_frame.hover_icon:before{background:#d64a1a;background:-moz-linear-gradient(left,#d64a1a 0%,#f88120 100%);background:-webkit-linear-gradient(left,#d64a1a 0%,#f88120 100%);background:linear-gradient(to right,#d64a1a 0%,#f88120 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1);color:#fff}.scheme_dark .sc_events_item .sc_events_item_readmore{color:#0a1f54}.scheme_dark .sc_events_item .sc_events_item_readmore span{color:#fff}.scheme_dark .sc_events_item .sc_events_item_readmore:hover,.scheme_dark .sc_events_item .sc_events_item_readmore:hover span{color:#00a9e1}.scheme_dark .sc_events_style_events-1 .sc_events_item{background-color:#262262;color:#9daab0}.scheme_dark .sc_events_style_events-2 .sc_events_item{border-color:#29395f}.scheme_dark .sc_events_style_events-2 .sc_events_item_date{background-color:#fff;color:#fff}.scheme_dark .sc_events_style_events-2 .sc_events_item_time:before,.scheme_dark .sc_events_style_events-2 .sc_events_item_details:before{background-color:#29395f}.scheme_dark .sc_googlemap_content{background-color:#262262}.scheme_dark .sc_highlight_style_1{background-color:#fff;color:#fff}.scheme_dark .sc_highlight_style_2{background-color:#00a9e1;color:#fff}.scheme_dark .sc_highlight_style_3{background-color:#fff;color:#5e657c}.scheme_dark .sc_icon_hover:hover,.scheme_dark a:hover .sc_icon_hover{color:#ffffff!important;background-color:#ffffff!important}.scheme_dark .sc_icon_shape_round.sc_icon,.scheme_dark .sc_icon_shape_square.sc_icon{background-color:#fff;border-color:#fff;color:#fff}.scheme_dark .sc_icon_shape_round.sc_icon:hover,.scheme_dark .sc_icon_shape_square.sc_icon:hover,.scheme_dark a:hover .sc_icon_shape_round.sc_icon,.scheme_dark a:hover .sc_icon_shape_square.sc_icon{color:#fff;background-color:#262262}.scheme_dark figure figcaption,.scheme_dark .sc_image figcaption,.scheme_dark .wp-caption .wp-caption-text,{background-color:#fff;color:#656c77}.scheme_dark figure figcaption a,.scheme_dark .sc_image figcaption a,.scheme_dark .wp-caption .wp-caption-text a{color:#00a9e1}.scheme_dark figure figcaption a:hover,.scheme_dark .sc_image figcaption a:hover,.scheme_dark .wp-caption .wp-caption-text a:hover{color:#00a9e1}.scheme_dark .sc_infobox.sc_infobox_style_regular{background-color:#fff}.scheme_dark .sc_intro_inner .sc_intro_subtitle{color:#00a9e1}.scheme_dark .sc_intro_inner .sc_intro_title{color:#fff}.scheme_dark .sc_intro_inner .sc_intro_descr,.scheme_dark .sc_intro_inner .sc_intro_icon{color:#fff}.scheme_dark .sc_list_style_iconed li:before,.scheme_dark .sc_list_style_iconed .sc_list_icon{color:#fff}.scheme_dark .sc_list_style_iconed li .sc_list_title{color:#0a1f54}.scheme_dark .sc_list_style_iconed li a:hover .sc_list_title{color:#00a9e1}.scheme_dark .sc_list .sc_list_item{color:#0a1f54}.scheme_dark .sc_line{border-color:#29395f}.scheme_dark .sc_line .sc_line_title{color:#0a1f54;background-color:#262262}.scheme_dark .match_block .player_country{background-color:#fff;color:#fff}.scheme_dark .match_block .player_name a{color:#d0d0d0;background-color:#fff}.scheme_dark .match_block .player_name a:hover{color:#fff;background-color:#fff}.scheme_dark .match_block .match_score{color:#d0d0d0;background-color:#fff}.scheme_dark .match_block .match_category a{color:#9daab0}.scheme_dark .match_block .match_category a:hover,.scheme_dark .match_block .match_date{color:#fff}.scheme_dark .post_item_colored .match_date{color:#fff}.scheme_dark .matches_hover>a:after{background-color:rgba(255,255,255,.3)}.scheme_dark .sc_matches.style_matches-1 .sc_matches_next{background-color:#fff;color:#fff}.scheme_dark .sc_matches_next h2,.scheme_dark .sc_matches_next .sc_item_subtitle{color:#fff}.scheme_dark .sc_matches_next .sc_item_title:after{background-color:#fff}.scheme_dark .sc_match_date{background-color:#fff;color:#00a9e1}.scheme_dark .sc_matches.style_matches-2 .sc_match_info{background-color:rgba(80,80,80,.5)}.scheme_dark .sc_matches.style_matches-2 .sc_matches_next .sc_item_title{background-color:#fff}.scheme_dark .sc_matches.style_matches-2 .sc_matches_next .sc_match_date{background-color:#505050}.scheme_dark .post_item_single_players .post_title:after{background-color:#fff}.scheme_dark .post_item_single_players .player_info span{color:#0a1f54}.scheme_dark .sc_player .sc_player_info .sc_player_title a{color:#0a1f54}.scheme_dark .sc_player .sc_player_info .sc_player_club,.scheme_dark .sc_player .sc_player_info .sc_player_title a:hover{color:#fff}.scheme_dark .sc_player .sc_player_info{border-color:#fff}.scheme_dark .sc_player .sc_player_avatar .sc_player_hover{background-color:rgba(255,255,255,.8)}.scheme_dark .sc_player .sc_socials.sc_socials_type_icons a,.scheme_dark .sc_player .sc_socials.sc_socials_type_icons a:hover{color:#fff;border-color:#fff}.scheme_dark .post_item_colored .player_info{color:#fff}.scheme_dark .sc_players_table table tr .country{color:#656c77}.scheme_dark .sc_players_table.style_2 table tr:nth-child(n+2){background-color:rgba(80,80,80,.5)}.scheme_dark .sc_players_table.style_2 .sc_table td{border-color:#262262}.scheme_dark .sc_menuitems_style_menuitems-1 .sc_menuitem_price{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_spicy{color:#0a1f54;background-color:#262262}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_box_title{color:#fff;background-color:#fff}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions{color:#9daab0;border-color:#29395f}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span{color:#fff}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span{color:#fff}.scheme_dark .popup_menuitem>.sc_menuitems_wrap{background-color:#262262}.scheme_dark .sc_popup:before{background-color:#fff}.scheme_dark .sc_price .sc_price_currency,.scheme_dark .sc_price .sc_price_money,.scheme_dark .sc_price .sc_price_penny{color:#0a1f54}.scheme_dark .sc_price .sc_price_info{color:#656c77}.scheme_dark .sc_price_block,.scheme_dark .sc_price_block .sc_price_block_money *{color:#fff}.scheme_dark .sc_price_block.sc_price_block_style_1{background-color:#fff}.scheme_dark .sc_price_block.sc_price_block_style_1 .sc_price_block_link .sc_button{background-color:#00a9e1}.scheme_dark .sc_price_block.sc_price_block_style_2{background-color:#00a9e1}.scheme_dark .sc_price_block.sc_price_block_style_3,.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_money *{color:#fff;background-color:#fff}.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_title{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1);color:#fff}.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_money{border-color:#29395f}.scheme_dark .sc_promo_image,.scheme_dark .sc_promo_block{background-color:#505050}.scheme_dark .sc_promo_title{color:#d0d0d0}.scheme_dark .sc_promo_descr{color:#5e657c}.scheme_dark .sc_recent_news_header{border-color:#0a1f54}.scheme_dark .sc_recent_news_header_category_item_more{color:#fff}.scheme_dark .sc_recent_news_header_more_categories{border-color:#909090;background-color:#fff}.scheme_dark .sc_recent_news_header_more_categories>a{color:#00a9e1}.scheme_dark .sc_recent_news_header_more_categories>a:hover{color:#e5631b;background-color:#505050}.scheme_dark .sc_recent_news .post_counters_item,.scheme_dark .sc_recent_news .post_counters .post_edit a{background-color:#fff}.scheme_dark .sidebar .sc_recent_news .post_counters_item,.scheme_dark .sidebar .sc_recent_news .post_counters .post_edit a{background-color:#262262}.scheme_dark .sc_recent_news .post_counters .post_edit a{color:#d0d0d0}.scheme_dark .sc_recent_news_style_news-magazine .post_accented_border{border-color:#29395f}.scheme_dark .sc_recent_news_style_news-excerpt .post_item{border-color:#29395f}.scheme_dark .sc_section_inner{color:#9daab0}.scheme_dark .sc_services_item .sc_services_item_readmore{color:#0a1f54}.scheme_dark .sc_services_item .sc_services_item_readmore span{color:#fff}.scheme_dark .sc_services_item .sc_services_item_readmore:hover,.scheme_dark .sc_services_item .sc_services_item_readmore:hover span{color:#00a9e1}.scheme_dark .sc_services_style_services-1 .sc_services_item{color:#9daab0}.scheme_dark .sc_services_style_services-1 .sc_icon,.scheme_dark .sc_services_style_services-2 .sc_icon{color:#00a9e1;background-color:#fff}.scheme_dark .sc_services_style_services-1 .sc_icon:hover,.scheme_dark .sc_services_style_services-1 a:hover .sc_icon,.scheme_dark .sc_services_style_services-2 .sc_icon:hover,.scheme_dark .sc_services_style_services-2 a:hover .sc_icon{background:#0071c3;background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%);background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1);color:#fff}.scheme_dark .sc_services_style_services-3 a:hover .sc_icon,.scheme_dark .sc_services_style_services-3 .sc_icon:hover{color:#fff;background-color:#262262}.scheme_dark .sc_services_style_services-3 a:hover .sc_services_item_title{color:#fff}.scheme_dark .sc_services_style_services-4 .sc_icon{color:#fff;background-color:#fff}.scheme_dark .sc_services_style_services-4 .sc_services_item_title{color:#0a1f54}.scheme_dark .sc_services_style_services-4 a:hover .sc_icon,.scheme_dark .sc_services_style_services-4 .sc_icon:hover{background-color:#00a9e1}.scheme_dark .sc_services_style_services-4 a:hover .sc_services_item_title{color:#fff}.scheme_dark .sc_services_style_services-5 .sc_icon{border-color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon{color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon:hover,.scheme_dark .sc_services_style_services-5 a:hover .sc_icon{background-color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon:hover,.scheme_dark .sc_services_style_services-5 a:hover .sc_icon{color:#fff}.scheme_dark .sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{color:#00a9e1}.scheme_dark .sc_scroll_controls_wrap a{background-color:#fff;color:#fff}.scheme_dark .sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(255,255,255,.8)}.scheme_dark .sc_scroll_controls_wrap a:hover{color:#fff;background-color:#00a9e1}.scheme_dark .sc_scroll_bar .swiper-scrollbar-drag:before{background-color:#fff}.scheme_dark .sc_scroll .sc_scroll_bar{border-color:#fff}.scheme_dark .sc_skills_bar .sc_skills_item{background-color:#fff}.scheme_dark .sc_skills_counter .sc_skills_item .sc_skills_icon{color:#fff}.scheme_dark .sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#00a9e1}.scheme_dark .sc_skills_counter .sc_skills_item .sc_skills_info{color:#0a1f54}.scheme_dark .sc_skills_bar .sc_skills_item .sc_skills_count{border-color:#fff}.scheme_dark .sc_skills_bar .sc_skills_info .sc_skills_label{color:#fff}.scheme_dark .sc_skills_bar.sc_skills_horizontal .sc_skills_total{color:#656c77}.scheme_dark .sc_skills_legend_title,.scheme_dark .sc_skills_legend_value{color:#0a1f54}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1{color:#fff;background:#d64a1a;background:-moz-linear-gradient(left,#d64a1a 9%,#f88120 55%);background:-webkit-linear-gradient(left,#d64a1a 9%,#f88120 55%);background:linear-gradient(to right,#d64a1a 9%,#f88120 55%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1);background-size:200%;background-position:0}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count{color:#d0d0d0}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info{color:#fff}.scheme_dark .sc_skills_bar .sc_skills_item .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{color:#fff;background-color:#fff}.scheme_dark .sc_skills_pie.sc_skills_compact_off .sc_skills_total,.scheme_dark .sc_skills_pie.sc_skills_compact_off .sc_skills_label{color:#fff}.scheme_dark .sc_skills .sc_skills_descr{color:#9daab0}.scheme_dark .sc_slider_controls_wrap a{color:#fff;border-color:#fff}.scheme_dark .sc_slider_controls_bottom .sc_slider_controls_wrap a:hover{color:#fff;background-color:#fff}.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap span{border-color:#29395f}.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap span:hover{border-color:#00a9e1;background-color:#00a9e1}.scheme_dark .sc_slider_swiper .sc_slider_info{background-color:rgba(255,255,255,.8)!important}.scheme_dark .sc_slider_pagination.widget_area .post_item+.post_item{border-color:#29395f}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap span{border-color:#29395f}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:#fff;background-color:#fff}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination .post_title{color:#d0d0d0}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination .post_info{color:#5e657c}.scheme_dark .sc_slider_pagination_area .sc_slider_pagination .post_item.active{background-color:#ffffff!important}.scheme_dark .sc_slider_controls_bottom .sc_slider_controls_wrap a{background-color:#00a9e1;color:#fff}.scheme_dark .sc_socials.sc_socials_type_icons a{color:#aaa;border-color:#aaa}.scheme_dark .sc_socials.sc_socials_type_icons a:hover{color:#fff;border-color:#fff}.scheme_dark .sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a{background-color:#fff}.scheme_dark .sc_socials .social_icons{background-color:#00a9e1}.scheme_dark .sc_socials .social_icons span{color:#fff}.scheme_dark .sc_socials .social_icons:hover span{color:#00a9e1}.scheme_dark .sc_socials .social_icons:hover{background-color:#ffffff!important}.scheme_dark .post_author .post_author_info a{color:#00a9e1}.scheme_dark .post_author .post_author_info a:hover{color:#00a9e1}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a{color:#0a1f54;border-color:#29395f}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:#fff}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:#fff}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_content,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_content{border-color:#29395f}.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:#fff;background-color:#fff;color:#fff}.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:#fff}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_title a{color:#0a1f54}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#00a9e1}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_position{color:#00a9e1}.scheme_dark .sc_team_style_team-1 .sc_team_item_info,.scheme_dark .sc_team_style_team-3 .sc_team_item_info{border-color:#fff;color:#9daab0;background-color:#fff}.scheme_dark .sc_team_style_team-1.team_grey .sc_team_item_info,.scheme_dark .sc_team_style_team-3.team_grey .sc_team_item_info{background-color:#fff}.scheme_dark .sc_team.sc_team_style_team-3 .sc_socials_item a{color:#fff;border-color:#fff}.scheme_dark .sc_team.sc_team_style_team-3 .sc_socials_item a:hover{color:#e5e5e5;border-color:#e5e5e5}.scheme_dark .sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(255,255,255,.8)}.scheme_dark .sc_team.sc_team_style_team-4 .sc_socials_item a{color:#fff;border-color:#fff}.scheme_dark .sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:#fff;border-color:#fff}.scheme_dark .sc_team.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover{color:#fff;background-color:rgba(10,31,84,.8)}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a{color:#fff}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:#fff}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_position{color:#fff}.scheme_dark .sc_team .sc_team_descr{color:#9daab0}.scheme_dark .post_item_single_team .single_team_post_description .team_position{color:#00a9e1}.scheme_dark .post_item_single_team .single_team_post_description .team_meta{color:#656c77}.scheme_dark .post_item_single_team .single_team_post_description .team_brief_info_text p:after{background-color:#29395f}.scheme_dark .sc_testimonials{color:#9daab0}.scheme_dark .sc_testimonial_author_name{color:#0a1f54}.scheme_dark .sc_testimonial_position_position{color:#656c77}.scheme_dark .sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before{color:#656c77}.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content,.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content:after{background-color:#262262}.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before{color:#fff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{color:#00a9e1}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#fff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content{background-color:#fff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{background-color:#fff;border-color:#fff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#656c77}.scheme_dark .sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{background-color:#fff}.scheme_dark .sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{background-color:#fff;border-color:#fff}.scheme_dark .sc_title_icon{color:#fff}.scheme_dark .sc_title_underline::after{border-color:#fff}.scheme_dark .sc_title_divider .sc_title_divider_before,.scheme_dark .sc_title_divider .sc_title_divider_after{background-color:#0a1f54}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title{border-color:#29395f}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon{color:#aaa;background-color:#fff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:#fff;border-color:#fff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{color:#fff;background-color:#fff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#00a9e1;border-color:#00a9e1}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#00a9e1}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_content{border-color:#29395f}.scheme_dark .sc_tooltip_parent .sc_tooltip,.scheme_dark .sc_tooltip_parent .sc_tooltip:before{background-color:#fff}.scheme_dark .sc_twitter{color:#9daab0}.scheme_dark .sc_twitter .sc_slider_controls_wrap a{color:#fff}.scheme_dark .sc_item_subtitle{color:#e5631b}.scheme_dark .sc_item_title:after{background-color:#fff}.scheme_dark .sc_item_button>a:before{color:#fff;background-color:#fff}.scheme_dark .sc_item_button>a:hover:before{color:#00a9e1}.scheme_dark body table.booked-calendar thead th .monthName,.scheme_dark body table.booked-calendar thead th .monthName a{color:#0a1f54}.scheme_dark body table.booked-calendar thead th .monthName a:hover{color:#00a9e1}.scheme_dark body table.booked-calendar thead th .page-right,.scheme_dark body table.booked-calendar thead th .page-left{color:#00a9e1!important}.scheme_dark body table.booked-calendar td .date{background-color:#fff}.scheme_dark body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover{background-color:#0a1f54!important}.scheme_dark .wpcf7-form-control-wrap .select_container:after{color:#aaa}.scheme_dark .cff-container-field label,.scheme_dark .cff-number-field label,.scheme_dark .cff-dropdown-field label,.scheme_dark .cff-date-field label,.scheme_dark .calculated-result .field[type="text"],.scheme_dark .cff-calculated-field label{color:#0a1f54}.scheme_dark .wp-block-button:not(.is-style-outline) .wp-block-button__link{color:#00a9e1}.scheme_dark .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{color:#00a9e1}.scheme_dark .is-style-outline>.wp-block-button__link:not(.has-text-color),.scheme_dark .wp-block-button__link.is-style-outline:not(.has-text-color){color:#00a9e1}.scheme_dark .is-style-outline>.wp-block-button__link:not(.has-text-color):hover,.scheme_dark .wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#00a9e1}.scheme_dark .wp-block-audio .mejs-container .mejs-controls .mejs-time{color:#00a9e1}.scheme_dark body .booked-modal input[type=submit].button-primary:hover{color:#00a9e1}.scheme_dark .widget_block .wp-block-search__button-outside input[type="search"]{background-color:#fff}.sidebar_outer_logo .logo_main,.top_panel_wrap .logo_main,.top_panel_wrap .logo_fixed{height:52px}.contacts_wrap .logo img{height:30px}@media (max-width:1023px){header.top_panel_wrap{display:none}.header_mobile{display:block}}/*!
https://daneden.github.io/animate.css/
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

[data-animation^="animated"] {
	visibility:hidden;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
	visibility:visible;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.animated.fast {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.animated.slow {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}




@-webkit-keyframes elastic {
  0%, 100% {
    -webkit-transform: scale3d(1,1,1);
            transform: scale3d(1,1,1);
  }
  25% {
    -webkit-transform: scale3d(1, 1.2, 1);
            transform: scale3d(1, 1.2, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 0.85, 1);
            transform: scale3d(1, 0.85, 1);
  }
  75% {
    -webkit-transform: scale3d(1, 1.05, 1);
            transform: scale3d(1, 1.05, 1);
  }
}

@keyframes elastic {
  0%, 100% {
    -webkit-transform: scale3d(1,1,1);
        -ms-transform: scale3d(1,1,1);
            transform: scale3d(1,1,1);
  }
  25% {
    -webkit-transform: scale3d(1, 1.2, 1);
        -ms-transform: scale3d(1, 1.2, 1);
            transform: scale3d(1, 1.2, 1);
  }
  50% {
    -webkit-transform: scale3d(1, 0.85, 1);
        -ms-transform: scale3d(1, 0.85, 1);
            transform: scale3d(1, 0.85, 1);
  }
  75% {
    -webkit-transform: scale3d(1, 1.05, 1);
        -ms-transform: scale3d(1, 1.05, 1);
            transform: scale3d(1, 1.05, 1);
  }
}
@-webkit-keyframes elastic-inner { 
	0% {
		-webkit-transform: translate3d(0,-25px,0);
		opacity:0;
	}
	25% {
		-webkit-transform: translate3d(0,10px,0);
	}
	50% {
		-webkit-transform: translate3d(0,-6px,0);
	}
	75% {
		-webkit-transform: translate3d(0,2px,0);
	}
	100% {
		-webkit-transform: translate3d(0,0,0);
		opacity: 1;
	}
}

@keyframes elastic-inner { 
	0% {
		opacity:0;
		-webkit-transform: translate3d(0,-25px,0);
		    -ms-transform: translate3d(0,-25px,0);
		        transform: translate3d(0,-25px,0);
	}
	25% {
		-webkit-transform: translate3d(0,10px,0);
		    -ms-transform: translate3d(0,10px,0);
		        transform: translate3d(0,10px,0);
	}
	50% {
		-webkit-transform: translate3d(0,-6px,0);
		    -ms-transform: translate3d(0,-6px,0);
		        transform: translate3d(0,-6px,0);
	}
	75% {
		-webkit-transform: translate3d(0,2px,0);
		    -ms-transform: translate3d(0,2px,0);
		        transform: translate3d(0,2px,0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		    -ms-transform: translate3d(0,0,0);
		        transform: translate3d(0,0,0);
	}
}


.elastic {
    -webkit-animation-name: elastic;
            animation-name: elastic;
    -webkit-transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
        -ms-transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
            transition-timing-function: cubic-bezier(0.2, 0.6, 0.3, 1);
    -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
            transform-origin: center top;
}
.elastic > * {
	-webkit-transform: translate3d(0,0,0);
	    -ms-transform: translate3d(0,0,0);
	        transform: translate3d(0,0,0);
	opacity: 1;
	-webkit-transition: none;
	    -ms-transition: none;
	        transition: none;
	-webkit-animation: elastic-inner 0.5s ease-out;
	    -ms-animation: elastic-inner 0.5s ease-out;
	        animation: elastic-inner 0.5s ease-out;
}




@-webkit-keyframes wipeInLeftTop {
  0% {
    -webkit-transform: scale(0,0);
            transform: scale(0,0);
  }
  100% {
    -webkit-transform: scale(1,1);
            transform: scale(1,1);
  }
}

@keyframes wipeInLeftTop {
  0% {
	-webkit-transform: scale(0,0);
	    -ms-transform: scale(0,0);
	        transform: scale(0,0);
  }
  100% {
    -webkit-transform: scale(1,1);
        -ms-transform: scale(1,1);
            transform: scale(1,1);
  }
}
@-webkit-keyframes wipeInLeftTop-inner { 
	0% {
		opacity:0;
		-webkit-transform: translate3d(0,-10px,0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
	}
}

@keyframes wipeInLeftTop-inner { 
	0% {
		opacity:0;
		-webkit-transform: translate3d(0,-10px,0);
		    -ms-transform: translate3d(0,-10px,0);
		        transform: translate3d(0,-10px,0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		    -ms-transform: translate3d(0,0,0);
		        transform: translate3d(0,0,0);
	}
}

.wipeInLeftTop {
    -webkit-animation-name: wipeInLeftTop;
            animation-name: wipeInLeftTop;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
        -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
            transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
}
.wipeInLeftTop > * {
	opacity: 0;
	-webkit-animation: wipeInLeftTop-inner 0.35s ease-out forwards;
	    -ms-animation: wipeInLeftTop-inner 0.35s ease-out forwards;
	        animation: wipeInLeftTop-inner 0.35s ease-out forwards;
}
.wipeInLeftTop > *:first-child {	-webkit-animation-delay: 0.05s;	-ms-animation-delay: 0.05s;	animation-delay: 0.05s; }
.wipeInLeftTop > *:nth-child(2) {	-webkit-animation-delay: 0.10s;	-ms-animation-delay: 0.10s;	animation-delay: 0.10s; }
.wipeInLeftTop > *:nth-child(3) {	-webkit-animation-delay: 0.15s;	-ms-animation-delay: 0.15s;	animation-delay: 0.15s; }
.wipeInLeftTop > *:nth-child(4) {	-webkit-animation-delay: 0.20s;	-ms-animation-delay: 0.20s;	animation-delay: 0.20s; }
.wipeInLeftTop > *:nth-child(5) {	-webkit-animation-delay: 0.25s;	-ms-animation-delay: 0.25s;	animation-delay: 0.25s; }
.wipeInLeftTop > *:nth-child(6) {	-webkit-animation-delay: 0.30s;	-ms-animation-delay: 0.30s;	animation-delay: 0.30s; }
.wipeInLeftTop > *:nth-child(7) {	-webkit-animation-delay: 0.35s;	-ms-animation-delay: 0.35s;	animation-delay: 0.35s; }
.wipeInLeftTop > *:nth-child(8) {	-webkit-animation-delay: 0.40s;	-ms-animation-delay: 0.40s;	animation-delay: 0.40s; }
.wipeInLeftTop > *:nth-child(9) {	-webkit-animation-delay: 0.45s;	-ms-animation-delay: 0.45s;	animation-delay: 0.45s; }
.wipeInLeftTop > *:nth-child(10){	-webkit-animation-delay: 0.50s;	-ms-animation-delay: 0.50s;	animation-delay: 0.50s; }
.wipeInLeftTop > *:nth-child(11){	-webkit-animation-delay: 0.55s;	-ms-animation-delay: 0.55s;	animation-delay: 0.55s; }
.wipeInLeftTop > *:nth-child(12){	-webkit-animation-delay: 0.60s;	-ms-animation-delay: 0.60s;	animation-delay: 0.60s; }
.wipeInLeftTop > *:nth-child(12){	-webkit-animation-delay: 0.65s;	-ms-animation-delay: 0.65s;	animation-delay: 0.65s; }
.wipeInLeftTop > *:nth-child(12){	-webkit-animation-delay: 0.70s;	-ms-animation-delay: 0.70s;	animation-delay: 0.70s; }


@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
            transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
            transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}

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

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
          animation-name: flash;
    opacity: 1;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
            transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
            transform: scale3d(1.05, .95, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
            transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
            transform: scale3d(.97, .97, .97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
            transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
            transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
          animation-name: bounceOut;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
          animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
          animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
          animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
          animation-name: bounceOutUp;
}

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

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

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}


@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
          animation-name: fadeInUpSmall;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

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

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

.fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}

.fadeOutDownSmall {
  -webkit-animation-name: fadeOutDownSmall;
          animation-name: fadeOutDownSmall;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
          animation-name: fadeOutDownBig;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
          animation-name: fadeOutLeftBig;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
          animation-name: fadeOutRightBig;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
          animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
            transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
            transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

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

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
          animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
            transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
          animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
          animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
            transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
          animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
          animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
            transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

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

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            transform: scale3d(.3, .3, .3);
  }

  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
          animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
            transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
            transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
          animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
            transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
            transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
            transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
          animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
            transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
            animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
            transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
          animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
          animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
          animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
          animation-name: slideOutUp;
}/* Accordion
-------------------------------------------------------------- */
.sc_accordion .sc_accordion_item {
	margin-bottom:1.25em;
}
.sc_accordion > .sc_accordion_item .sc_accordion_content {
	overflow: hidden;
	display: none;
}
.sc_accordion .sc_accordion_item .sc_accordion_title {
	position:relative;
	overflow:hidden;
	cursor:pointer;
	margin:0;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	    -ms-transition: all ease 0.3s;
	     -o-transition: all ease 0.3s;
	        transition: all ease 0.3s;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_items_counter:after {
	content:'. ';
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon {
	position:absolute;
	left:0;
	top:0;
	height:100%;
	padding:0;
	text-align:center;
	overflow:hidden;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	    -ms-transition: all ease 0.3s;
	     -o-transition: all ease 0.3s;
	        transition: all ease 0.3s;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon:before {
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
}
.sc_accordion .sc_accordion_item .sc_accordion_content {
	padding:1.5em 1.8em;
}

.sc_accordion .sc_accordion_item .sc_accordion_title {
	border:1px solid #e4e7e8;
	padding:0.5em 0.5em 0.5em 3em;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon {
	width:2.3333em;
	background-color:#e4e7e8;
	color: #ffffff;
}
.sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon_opened {
	margin-top:-4em;	/* -2.3333em */
}
.sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened {
	margin-top:0;
}
.sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_closed {
	margin-top:4em;	/* 2.3333em */
}
.sc_accordion .sc_accordion_item .sc_accordion_content {
	border-width:1px;
	border-style: solid;
	border-top-width:0;
}




/* Audio
-------------------------------------------------------------- */

/* Modern style */
.mejs-offscreen {
	display:none !important;
}
.mejs-controls .mejs-time-rail .mejs-time-total {
	-webkit-border-radius: 0 !important;
	   -moz-border-radius: 0 !important;
			border-radius: 0 !important;
	margin-top: 6px !important;
}
.mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-controls .mejs-time-rail .mejs-time-buffering,
.mejs-controls .mejs-time-rail .mejs-time-loaded,
.mejs-controls .mejs-time-rail .mejs-time-current {
	height:8px !important;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,
.mejs-controls .mejs-time-rail .mejs-time-total:before {
	content:" ";
	display:block;
	border:1px solid #575757;
	position: absolute;
	left: -2px;
	right: -2px;
	top:-2px;
	bottom:-2px;
}
.mejs-container .mejs-controls .mejs-time {
	padding-top:10px !important;
}
.sc_audio {
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.sc_audio.sc_show {
	     opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}
.sc_audio .mejs-container {
	margin: 0;
}
.sc_audio .mejs-container,
.sc_audio .mejs-embed,
.sc_audio .mejs-embed body,
.sc_audio .mejs-container .mejs-controls,
.wp-audio-shortcode .mejs-controls{
	background: transparent !important;
	border-width: 0 !important;
}
.sc_audio.sc_audio_image {
	padding: 13em 2em 2em 2em;
	background-position: center center;
	position: relative;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover; 
			background-size: cover;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box; 
		    box-sizing: border-box;
}

.wp-audio-shortcode.mejs-container,
.sc_audio{
	background: #0071c3; /* Old browsers */
	background: -moz-linear-gradient(left, #0071c3 0%, #00a8eb 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #0071c3 0%,#00a8eb 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #0071c3 0%, #00a8eb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.sc_audio.sc_audio_info {
	position:relative;
	padding:7.1em 3em 3.2em;
    border-radius: 2em;
}
.sc_audio .sc_audio_header {
	padding: 0 0 1.5em 0;
}
.sc_audio.sc_audio_image .sc_audio_header {
	min-height: 5em;
}
.sc_audio.sc_audio_image .sc_audio_container {
	position:absolute;
	left:2em;
	right:2em;
	bottom: 2em;
}
.sc_audio .sc_audio_header {
	position:absolute;
	top: 0;
	left:0;
	padding:2.67em 2em 2em 3.7em;
    letter-spacing: 1px;
}
.sc_audio .sc_audio_title {
	margin:0;
    text-transform: capitalize;
    font-size: 1.3571em;
}
.sc_audio .sc_audio_author {
	font-size: 0.9285em;
}

.mejs-container:not(.mejs-video) {
	height: 44px !important;
	border: 0 !important;
}

.mejs-container .mejs-controls {
	height: 42px !important;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,
.mejs-controls .mejs-time-rail .mejs-time-total:before {
	content: " ";
	display: block;
	background: #dddddd;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border: 0;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-controls .mejs-time-rail .mejs-time-total,
.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.mejs-controls .mejs-time-rail .mejs-time-total, .mejs-controls .mejs-time-rail .mejs-time-buffering, .mejs-controls .mejs-time-rail .mejs-time-loaded, .mejs-controls .mejs-time-rail .mejs-time-current {
	height: 4px !important;
}

.mejs-container .mejs-controls .mejs-time {
	font-size: 0.666em !important;
	margin-top: 5px !important;
}

.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls div.mejs-time-rail {
	margin-top: 2px !important;
}

.mejs-controls .mejs-button button {
	margin: 5px !important;
	background-image: url(https://www.coolfog.sk/wp-content/plugins/trx_utils/shortcodes/../images/controls.png) !important;
}

.mejs-container .mejs-controls .mejs-volume-button {
	margin-left: 10px !important;
}
.mejs-container .mejs-controls .mejs-fullscreen-button,
.mejs-container .mejs-controls .mejs-volume-button,
.mejs-container .mejs-controls .mejs-volume-button:hover,
.mejs-container .mejs-controls .mejs-playpause-button {
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-top: 7px !important;
	margin-right: 6px !important;
}
.mejs-container .mejs-controls .mejs-fullscreen-button {
	margin-right: 0 !important;
}

/* Highlight */

.sc_highlight{
    padding-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 4px;
    border-radius: 3px;
}
.mejs-container .mejs-controls .mejs-button {
    margin: 3px 3px 3px 0;
    overflow: hidden;
    position: relative;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}
.mejs-container .mejs-controls .mejs-button button {
    display:block;
    margin:0;
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    width: 100%;
    height: 100%;
    background: none !important;
}
.mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before {
    content: '\e8e1';
    font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before {
    content: '\e8e3';
    font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before {
    content: '\e8f9';
    font-family:'fontello';font-size: 1.3em;
}
.mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before {
    content: '\e8f8';
    font-family:'fontello';font-size: 1.3em;
}

.mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before{
	content: '\e80e';
	font-family:'fontello';font-size: 1.3em;
}

/* Button
-------------------------------------------------------------- */
input[type="submit"],
input[type="button"],
button,
.sc_button {
	display:inline-block;
	text-align:center;
	padding:1.35em 2em;
    font-weight: 400;
    border-radius: 2em;
    letter-spacing: 1px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.sc_button.sc_button_style_border{
    padding:1.2em 2em;
}
.sc_button.sc_button_round {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
input[type="submit"]:before,
input[type="button"]:before,
button:before,
.sc_button:before {
	margin-right:10px;
}
input[type="submit"].sc_button_size_medium,
input[type="button"].sc_button_size_medium,
button.sc_button_size_medium,
.sc_button.sc_button_size_medium {
	font-size:1em;
    padding:1.45em 2.2em;
}
input[type="submit"].sc_button_size_large,
input[type="button"].sc_button_size_large,
button.sc_button_size_large,
.sc_button.sc_button_size_large {
	font-size:1.125em;
    padding:1.55em 2.2em;
}
.sc_button.sc_button_style_border {
	border-width: 2px;
	border-style: solid;
}
input[type="submit"].sc_button.aligncenter,
input[type="button"].sc_button.aligncenter,
button.sc_button_size.aligncenter,
.sc_button.sc_button.aligncenter {
	max-width:30%;
}
input[type="submit"].sc_button_size_medium.aligncenter,
input[type="button"].sc_button_size_medium.aligncenter,
button.sc_button_size_medium.aligncenter,
.sc_button.sc_button_size_medium.aligncenter {
	max-width:40%;
}
input[type="submit"].sc_button_size_large.aligncenter,
input[type="button"].sc_button_size_large.aligncenter,
button.sc_button_size_large.aligncenter,
.sc_button.sc_button_size_large.aligncenter {
	max-width:50%;
}



/* ================= BUTTON'S HOVERS ==================== */
/* This way via gradient */
[class*="sc_button_hover_slide"] {
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
	background-position: right bottom !important;
}
.sc_button_hover_slide_left {
	background-size: 210% 100% !important;
}
.sc_button_hover_slide_top {
	background-size: 100% 210% !important;
}
.sc_button_hover_slide_left:hover,
.sc_button_hover_slide_left.active {
    background-position: left bottom !important;
}
.sc_button_hover_slide_top:hover,
.sc_button_hover_slide_top.active {
    background-position: right top !important;
}

/* Arrow */
.sc_button_hover_arrow {
	position:relative;
	overflow:hidden;
	padding-left: 2em !important;
	padding-right: 2em !important;
}
.sc_button_hover_arrow:before {
	content: '\e8f4';
	font-family:'fontello';
	position:absolute;
	z-index:1;
	right: -2em !important;
	left: auto !important;
	top: 50% !important;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
	background-color:transparent !important;
	color: inherit !important;
}
.sc_button_hover_arrow:hover:before,
.sc_button_hover_arrow.active:before {
	right: 0.5em !important;
}
/* ================= END BUTTON'S HOVERS ==================== */



/* Blogger
-------------------------------------------------------------- */
.sc_blogger.sc_scroll_controls {
	position: relative;
}
.sc_blogger.sc_scroll_controls_type_top {
	overflow: visible !important;	
}
.sc_blogger.sc_scroll_controls_type_top .sc_scroll_controls_wrap {
	top: 0;
}

/* Style 'Polaroid' */
.sc_blogger.layout_polaroid .sc_blogger_elements *,
.sc_blogger.layout_polaroid .sc_blogger_elements *:after,
.sc_blogger.layout_polaroid .sc_blogger_elements *:before {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.sc_blogger.layout_polaroid .sc_blogger_elements {
    height: 0;
}
.js .sc_blogger.layout_polaroid .sc_blogger_elements .photostack {
	height: 40em;
}
.sc_blogger.layout_polaroid .sc_blogger_elements+.sc_blogger_button {
	margin-top:3em;
}

.sc_blogger.layout_polaroid .sc_blogger_elements figure {
    overflow: visible;
}

.sc_blogger.layout_polaroid .sc_blogger_elements figure figcaption {
    background: transparent;
    display: block;
    height: auto;
    margin: 0;
    padding: 0;
	position:static;
    vertical-align: middle;
	font-size:1em;
}
.sc_blogger.layout_polaroid .sc_blogger_elements .sc_polaroid_title {
	font-weight:400;
	margin: 0.6em 0 0 0;
}
.sc_blogger.layout_polaroid .sc_blogger_elements .photostack-back {
	font-size:1.0769em;
	line-height:1.5em;
	padding:2.3077em;
}

/* Style 'Date' */
.sc_blogger.layout_date .sc_blogger_item {
	position: relative;
}
.sc_blogger.layout_date .sc_blogger_item:before {
	content: ' ';
	display: block;
	background-color: #ddd;
	position: absolute;
	z-index: 1;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item:before {
	width: 1px;
	height: 100%;
	left: 40px;
	top: 0;
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item:before {
	height: 1px;
	width: 100%;
	left: 0;
	top: 40px;
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item.sc_blogger_item_last:before {
	content: none;
}

.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date { 
	width: 78px;
	height: 78px;
	border: 1px solid #ddd;
	position: relative;
	z-index: 2;
	background-color: #fff;
	text-align: center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .day_month {
	display: block;
	padding: 14px 0 6px 0;
	font-size: 1.15em;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year {
	display: block;
	font-size: 0.75em;
	margin: 0 auto;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before {
	width: 33px;
	display: block;
	margin: 0 auto 3px;
	content: ' ';
	border-top: 1px solid #ddd;
}
.sc_blogger.layout_date .sc_blogger_item .sc_blogger_title {
	margin:0 0 0.6em 0;
}
.sc_blogger.template_masonry .post_item_classic .post_title{
    margin-top: 1.5em;
    max-height: none;
    font-size: 1.5em;
    margin-bottom: 0.9em;
}
.sc_blogger.template_masonry .post_item_classic .post_descr p {
    margin-bottom: 2.2em;
}
.sc_blogger.template_masonry .post_item_classic .post_info {
    margin-bottom: 2.05em;
}
.sc_blogger_title.sc_item_title_without_descr {
    margin-bottom: 1em;
}
.sc_blogger.layout_date.sc_blogger_horizontal {
	overflow: hidden;	
}
.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item {
	float: left;
}
.sc_blogger.layout_date.sc_blogger_horizontal .post_content {
	padding-right:2em;
}

.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item .sc_blogger_date {
	margin-bottom: 1.25em;
}

.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item + .sc_blogger_item {
	padding-top: 2em;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item .sc_blogger_date { 
	float: left;
}
.sc_blogger.layout_date.sc_blogger_vertical .post_content {
	padding-left:100px;
}
.sc_blogger.layout_date.sc_blogger_vertical .post_content:after {
	content:' ';
	width:100%;
	height:0;
	display:block;
	clear:both;
}
.sc_blogger.layout_date.sc_blogger_vertical .sc_blogger_item .post_info { 
	margin: 0;
}

.sc_blogger.layout_date .load_more {
	height: 60px;
	position: relative;
}
.sc_blogger.layout_date .load_more:before {
	width: 28px;
	height: 28px;
	border: 1px solid #ddd;
	background-color: #fff;
	font-family: "fontello";
	content: '\e82d';
	text-align: center;
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 24px;
	line-height: 28px;
}
.sc_blogger.layout_date .load_more:after {
	content: '';
	display: block;
	width: 1px;
	height: 100%;
	background-color: #ddd;
	position: absolute;
	left: 40px;
	top: 0;
	z-index: 1;
}


/* Style Plain */
.sc_blogger_item.sc_plain_item {
	padding: 2.2857em;
	background-color:#f0f0f0;
	margin-bottom:2px;
	text-align:center;
}
.sc_blogger_item.sc_plain_item .post_category {
	font-style:italic;
}
.sc_blogger_item.sc_plain_item .post_title {
	margin-top:0.6em;
	margin-top:0.4em;
}
.sc_blogger_item.sc_plain_item .post_info {
	margin-bottom:0;
}
.sc_blogger.layout_plain .sc_item_button {
	margin-top:2.2857em;
}

/* Style News */
.sc_blogger.sc_blogger_horizontal.layout_news {
	overflow:hidden;
}
.sc_blogger.sc_blogger_horizontal.layout_news .post_featured {
	width: 40%;
	float: left;
	vertical-align: top;
	margin: 0 2em 0.7em 0;
}
.sc_blogger.sc_blogger_horizontal.layout_news .columns_wrap .post_featured {
	width: 100%;
	float: none;
	margin: 0 0 0.7em 0;
}
.sc_blogger.sc_blogger_vertical.layout_news .sc_blogger_item+.sc_blogger_item {
	padding-top:2em;
	margin-top:2em;
	border-top:1px solid #ddd;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}

/* Style 'Related' */
.article_style_boxed .sc_blogger.template_related .post_content_wrap {
	background-color:#f7f7f7;
}

/* Style 'Masonry' */
.article_style_boxed .sc_blogger.template_masonry .post_content {
	background-color:#f7f7f7;
}

/* Isotope filters */
.sc_blogger .isotope_filters {
    margin: 1.5em 0 1em;
}

/* Button below posts */
.sc_blogger.no_margins .sc_blogger_button {
	margin-top: 2em;
}

/* Blogger with scroll */
.sc_scroll_horizontal .sc_blogger .isotope_item,
.sc_scroll_horizontal .sc_blogger [class*=column-],
.sc_blogger .sc_scroll_horizontal .isotope_item,
.sc_blogger .sc_scroll_horizontal [class*=column-] {
	width: 400px;
	display: inline-block;
	vertical-align:top;
	position:relative;
	padding-bottom:0;
	white-space:nowrap; 
}
.sc_scroll_horizontal .sc_blogger .isotope_column_2,
.sc_scroll_horizontal .sc_blogger .column-1_2,
.sc_blogger .sc_scroll_horizontal .isotope_column_2,
.sc_blogger .sc_scroll_horizontal .column-1_2 {
	width: 600px;
}
.sc_scroll_horizontal .sc_blogger .isotope_column_4,
.sc_scroll_horizontal .sc_blogger .column-1_4,
.sc_blogger .sc_scroll_horizontal .isotope_column_4,
.sc_blogger .sc_scroll_horizontal .column-1_4 {
	width: 300px;
}
.sc_scroll_horizontal .sc_blogger .isotope_column_5,
.sc_scroll_horizontal .sc_blogger .column-1_5,
.sc_blogger .sc_scroll_horizontal .isotope_column_5,
.sc_blogger .sc_scroll_horizontal .column-1_5 {
	width: 240px;
}
.sc_scroll_horizontal .sc_blogger .isotope_column_6,
.sc_scroll_horizontal .sc_blogger .column-1_6,
.sc_blogger .sc_scroll_horizontal .isotope_column_6,
.sc_blogger .sc_scroll_horizontal .column-1_6 {
	width: 200px;
}
.sc_scroll_vertical .sc_blogger .isotope_wrap,
.sc_blogger .sc_scroll_vertical .isotope_wrap {
	/*margin-right:0;*/
}
.sc_scroll_vertical .sc_blogger .isotope_item,
.sc_scroll_vertical .sc_blogger [class*=column-],
.sc_blogger .sc_scroll_vertical .isotope_item,
.sc_blogger .sc_scroll_vertical [class*=column-] {
	position:relative;
/*
	width: 100%;
	display: block;
	padding-right:0;
*/
	width: auto;
	max-width:400px;
	display: inline-block;
	padding-right:50px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}



/* Call to action
-------------------------------------------------------------- */
.sc_call_to_action_align_left .sc_call_to_action_title, .sc_call_to_action_align_left .sc_call_to_action_subtitle, .sc_call_to_action_align_left .sc_call_to_action_descr,
.sc_call_to_action_align_right .sc_call_to_action_title, .sc_call_to_action_align_right .sc_call_to_action_subtitle, .sc_call_to_action_align_right .sc_call_to_action_descr {
	text-align:left;
}
.sc_call_to_action_align_left .sc_call_to_action_featured, .sc_call_to_action_align_left .sc_call_to_action_info,
.sc_call_to_action_align_right .sc_call_to_action_featured, .sc_call_to_action_align_right .sc_call_to_action_info {
	vertical-align:middle;
}
.sc_call_to_action_align_none .sc_call_to_action_info,
.sc_call_to_action_align_center .sc_call_to_action_info {
	text-align:center;
}

.sc_call_to_action_align_none .sc_call_to_action_featured,
.sc_call_to_action_align_center .sc_call_to_action_featured {
	margin: 0 auto 2.2857em;
}

.sc_call_to_action .sc_call_to_action_title {
	font-weight:600;
	margin-bottom:0.85em;
}
.sc_call_to_action .sc_call_to_action_title:after {
	display:none;
}
.sc_call_to_action .sc_call_to_action_descr {
	font-size: 1em;
	font-style:normal;
	font-weight:400;
	line-height: 2em;
	text-transform:capitalize;
	margin-bottom:0;
    width: 90%;
    margin-top: 3em;
}
.sc_call_to_action .sc_call_to_action_buttons {
	margin-top:2.95em;
}
.sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a{
    font-size: 1.4em;
    font-weight: 700;
    padding-top: 0.7em;
    padding-left: 0;
    padding-right: 0;
}
.sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a:before{
    font-family: 'fontello';
    content: '\e8fa';
    display: inline-block;
    position: relative;
    background: transparent;
    font-size: 1.3em;
    width: 1.1em;
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}
/*
.sc_call_to_action_align_left .sc_call_to_action_buttons,
.sc_call_to_action_align_right .sc_call_to_action_buttons {
	margin-top:0;
}
*/
.sc_call_to_action_accented {
	padding: 3em 0;
}
.sc_call_to_action_style_2 .sc_call_to_action_info,
.sc_call_to_action_style_2 .sc_call_to_action_buttons {
	vertical-align:middle;
}
.sc_call_to_action_style_2 .sc_call_to_action_buttons {
	text-align: center;
}
.sc_call_to_action_style_2 .sc_call_to_action_title {
	font-size: 1.7857em;
	font-weight:300;
	margin-bottom:0.25em;
}
.sc_call_to_action_style_2 .sc_call_to_action_descr {
	line-height: 1.2857em;
	text-transform: none;
}
.sc_call_to_action_style_2.sc_call_to_action_align_none {
	text-align:center;
}
.sc_call_to_action_style_2.sc_call_to_action_align_none .sc_call_to_action_info,
.sc_call_to_action_style_2.sc_call_to_action_align_none .sc_call_to_action_buttons {
	display:inline-block;
}
.sc_call_to_action_style_2.sc_call_to_action_align_none .sc_call_to_action_buttons {
	margin-left:4em;
}
.sc_call_to_action_style_2.sc_call_to_action_align_center {
	text-align:center;
}
.sc_call_to_action .sc_item_buttons > .sc_item_button + .sc_item_button a{
    background: transparent;
}

/* Chat
-------------------------------------------------------------- */
.sc_chat {
	position: relative;
	padding-left:20px;
	overflow:hidden;
}
.sc_chat+.sc_chat {
	margin-top:1.5em;
}
.sc_chat_inner {
	position: relative;
	background-color: #ffffff;
	border: 1px solid #1eaace;
	padding: 1.2em 1.2em 0.875em;
	overflow:hidden;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}
.sc_chat:after {
	content:' ';
	position:absolute;
	z-index:1;
	top:30%;
	left:14px;
	width:11px;
	height:30px;
	-webkit-transform: rotate(30deg) skewY(-45deg);
	   -moz-transform: rotate(30deg) skewY(-45deg);
	    -ms-transform: rotate(30deg) skewY(-45deg);
	     -o-transform: rotate(30deg) skewY(-45deg);
			transform: rotate(30deg) skewY(-45deg);
	background-color:#ffffff;
	border-left:1px solid #1eaace;
	border-bottom:1px solid #1eaace;
}
.sc_chat .sc_chat_title {
	margin-bottom: 1em;
	font-weight:400;
}
.sc_chat .sc_chat_avatar {
	width: 75px;
	height:75px;
	float:left;
	margin:0 20px 10px 0;
	overflow:hidden;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}
.sc_chat p {
	margin-bottom:0;
}



/* Clients
-------------------------------------------------------------- */
.sc_clients .sc_slider_swiper:not(.sc_slider_height_auto) .slides .swiper-slide {
	min-height: 3em;
}
.sc_clients .sc_client_image {
	text-align:center;
}
.sc_clients_style_clients-2 .sc_client_hover {
	text-align:center;
}
.sc_clients_style_clients-2 .sc_client_title {
	margin: 0.5em 0 0 0;
	font-size:1.3333em;
	font-weight:700;
}
.sc_clients_style_clients-2 .sc_client_position {
	margin-top:0.25em;
	font-style:italic;
}
.sc_clients_style_clients-2 .sc_client_description {
	font-size:1.2857em;
	font-weight:300;
	font-style:italic;
	line-height:1.2857em;
}
.sc_clients_style_clients-2 .sc_client_description:before {
	content: '\e8b6';
	font-family: 'fontello';
	font-size:1.5em;
	font-style:normal;
	line-height:1.5em;
	display:block;
}
.sc_clients_style_clients-2 .sc_client_description p {
	margin:0;
}
.sc_clients_style_clients-2 .sc_client_description p+p {
	margin-top:0.5em;
}
.sc_clients_style_clients-2 .sc_client_image {
	background-color:#fff;
}
.sc_clients_style_clients-2 .sc_client_image img {
	vertical-align:middle;
}
.sc_clients_style_clients-2 .sc_client_info {
	padding-top: 1.5em;
}
.sc_clients_style_clients-2 .sc_client_image {
	position:relative;
}
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity: 0;
	filter: alpha(opacity=0);
	text-align:center;
}
.sc_clients_style_clients-2 .sc_clients_item:hover .sc_client_image .sc_client_hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover,
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover .sc_client_info {
	overflow:hidden;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.sc_clients_style_clients-2 .sc_client_image .sc_client_hover .sc_client_info {
	position:absolute;
	left:0;
	top:50%;
	width:100%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-top: 50px;
	padding:1.5em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_clients_style_clients-2 .sc_clients_item:hover .sc_client_image .sc_client_hover .sc_client_info {
	margin-top: 0;
}

.sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a {
   border: none;
    font-size: 1.1em;
    font-weight: 700;
    width: 3.5em;
    height: 3.5em;
    line-height: 3.5em;
}
.sc_clients .sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_prev{
    margin-left: 0;
}
.sc_clients .sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_next {
    margin-right: 0;
}


/* Columns
-------------------------------------------------------------- */
.sc_columns .sc_column_item_inner {
	padding:1.5em;
}



/* Contact form
-------------------------------------------------------------- */
.sc_form form {
	position:relative;
}
.sc_form .result {
	display:none;
	width:70%;
	position:absolute;
	z-index:1000;
	top:38%;
	left:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	    -ms-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
	-webkit-box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.2);
	   -moz-box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.2);
			box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.2);	
}
.sc_form .sc_item_descr .sc_socials {
	display:block;
	font-size:0.6667em;
	margin-top:1em;
}
.sc_form .sc_form_item {
	margin-bottom:1.5em;
	width:100%;
	text-align:center;
}
.sc_form .sc_form_item input[type="text"],
.sc_form .sc_form_item select,
.sc_form .sc_form_item textarea {
	padding: 1em;
	text-align:center;
    font-weight: 400;
    border-radius: 2em;
    font-size: 1em;
    line-height: 2.3em;
}

.sc_form .sc_form_address_field {
	margin-bottom:2em;
	text-align:left;
}
.sc_form .sc_form_address .sc_socials {
	text-align:left;
	display:block;
}
.sc_form .sc_form_address_label {
	display:block;
	font-weight:700;
}

.sc_form .sc_form_field  {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.sc_form .sc_form_item.label_top label {
	display:block;
	margin-bottom:0.4em;
}
.sc_form .sc_form_item.label_bottom label {
	display:block;
	margin-top:0.4em;
}
.sc_form .sc_form_item.label_left {
	overflow:hidden;
}
.sc_form .sc_form_item.label_left label {
	display:inline-block;
	margin-right: 1.5em;
	vertical-align:middle;
}
.sc_form .sc_form_item.label_left input,
.sc_form .sc_form_item.label_left .sc_form_select_container,
.sc_form .sc_form_item.label_left textarea {
	display:inline-block;
	width: auto;
	vertical-align:middle;
}
.sc_form .sc_form_item .sc_form_element {
	width:auto;
	display:inline-block;
}
.sc_form .sc_form_item .sc_form_element+.sc_form_element {
	margin-left:2em;
}
.sc_form .sc_form_item .sc_form_element input,
.sc_form .sc_form_item .sc_form_element label {
	width:auto;
	margin-right:0.5em;
	display:inline-block;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"],
.sc_form .sc_form_item .sc_form_element input[type="checkbox"] {
	display:none;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"] + label,
.sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label {
	position:relative;
	padding-left:1.75em;
	line-height:1.5em;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before,
.sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label:before {
	content:' ';
	font-family:fontello;
	display:block;
	text-align:center;
	border: 1px solid #ebebeb;
	position:absolute;
	left:0;
	top:3px;
	width:1em;
	height:1em;
	line-height:1em;
}
.sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_form .sc_form_item .sc_form_element input[type="checkbox"]:checked + label:before {
	content:'\e8ab';
}
.sc_form .sc_form_item .sc_form_element input[type="radio"]:checked + label:before {
	content:'\e8e4';
}

.sc_form .sc_form_field input,
.sc_form .sc_form_message textarea {
	width:100%;
	padding:0.5em 1em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_form .sc_form_message textarea {
	min-height:8em;
}

.sc_form .sc_form_field input[type="checkbox"]{
	width: auto;
}

/* Date and Time picker */
.sc_form .picker {
	position: absolute;
	z-index: 10000;
	left: 0;
	top: 4em;
	width: 100%;
	height: 0;
	padding:1.5em;
	overflow:hidden;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
         opacity: 0;
    -webkit-transition: all 0.15s ease-out;
       -moz-transition: all 0.15s ease-out;
            transition: all 0.15s ease-out;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.sc_form .picker--opened {
	height: auto;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	     opacity: 1;
}
.sc_form .picker__header {
	position: relative;
	margin: 0 1.5em;
	font-size: 1.2857em;
    text-transform: uppercase;
	text-align: center;
}
.sc_form .picker__month,
.sc_form .picker__year {
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
}
.sc_form .picker__nav--prev,
.sc_form .picker__nav--next {
    position: absolute;
	z-index:1;
    top: 0;
	left: 0;
    line-height: 1.5em;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
}
.sc_form .picker__nav--next {
	left: auto;
	right: 0;
}
.sc_form .picker__nav--prev:before,
.sc_form .picker__nav--next:before {
    font-family: "fontello";
    display: inline-block;
	line-height:inherit;
}
.sc_form .picker__nav--prev:before {
    content: '\e837';
}
.sc_form .picker__nav--next:before {
    content: '\e836';
}
.sc_form .picker__nav--prev:hover,
.sc_form .picker__nav--next:hover {
    cursor: pointer;
}
.sc_form .picker__nav--disabled,
.sc_form .picker__nav--disabled:hover,
.sc_form .picker__nav--disabled:before,
.sc_form .picker__nav--disabled:before:hover {
    cursor: default;
}

.sc_form .picker__table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: center;
    table-layout: fixed;
    margin: 0.8em 0 0 0;
}
.sc_form .picker__table th,
.sc_form .picker__table td {
    border: none;
	padding:0.25em;
    vertical-align: top;
    text-align: center;
}
.sc_form .picker__weekday {
    width: 14.285714286%;
    text-transform: uppercase;
}
.sc_form .picker__day--today {
    position: relative;
}
.sc_form .picker__day--today:before {
    content: " ";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 0;
    height: 0;
    border-top: 7px solid #f15a23;
    border-left: 7px solid transparent !important;
}
.sc_form .picker__day--infocus:hover,
.sc_form .picker__day--outfocus:hover,
.sc_form .picker__day--highlighted:hover,
.sc_form .picker--focused .picker__day--highlighted {
    cursor: pointer;
}
.sc_form .picker__day--disabled,
.sc_form .picker__day--disabled:hover,
.sc_form .picker--focused .picker__day--disabled {
    cursor: default;
	background-color: transparent !important;
}
.sc_form .picker__footer {
    text-align: center;
    border-top: 1px solid #ddd;
    margin-top: 0.5em;
    padding: 0.5em 0 0 0;
}
.sc_form .picker__button--today,
.sc_form .picker__button--clear,
.sc_form .picker__button--close {
    display: inline-block;
    vertical-align: bottom;
    font-style: italic;
	font-weight:400;
	line-height: 2em;
    width: 33%;
	background-color:transparent !important;
}
.sc_form .picker__button--today:hover,
.sc_form .picker__button--clear:hover,
.sc_form .picker__button--close:hover {
    cursor: pointer;
}
.sc_form .picker__button--today:focus,
.sc_form .picker__button--clear:focus,
.sc_form .picker__button--close:focus {
    background: transparent;
    outline: none;
}
.sc_form .picker__button--today:before,
.sc_form .picker__button--clear:before,
.sc_form .picker__button--close:before {
    position: relative;
    display: inline-block;
    height: 0;
}
.sc_form .picker__button--today:before,
.sc_form .picker__button--clear:before {
    content: " ";
    margin-right: 0.3em;
}
.sc_form .picker__button--today:before {
    top: -1px;
    width: 0;
    border-top: 7px solid transparent;
    border-left: 7px solid transparent !important;
}
.sc_form .picker__button--clear:before {
    top: -3px;
    width: 10px;
    border-top: 3px solid transparent;
}
.sc_form .picker__button--close:before {
    content: "\D7";
    vertical-align: top;
    margin-right: 0.4em;
    font-size: 1.5385em;
    font-style: normal;
    font-weight: 700;
}
.sc_form .picker__button--today[disabled],
.sc_form .picker__button--today[disabled]:hover {
    cursor: default;
}

/* Time */
.sc_form .picker--time {
	padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.sc_form .picker--time.picker--opened {
    height: 16em;
}
.sc_form .picker__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sc_form .picker__list li {
	margin-bottom:0;
}
.sc_form .picker__list-item {
    position: relative;
    padding: 0.5em 1em;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	margin-bottom:-1px;
}
.sc_form .picker__list-item:hover {
	z-index: 10;
}
.sc_form .picker__list-item:hover,
.sc_form .picker__list-item--highlighted,
.sc_form .picker__list-item--highlighted:hover,
.sc_form .picker--focused .picker__list-item--highlighted,
.sc_form .picker__list-item--selected,
.sc_form .picker__list-item--selected:hover,
.sc_form .picker--focused .picker__list-item--selected {
    cursor: pointer;
}
.sc_form .picker__list-item--disabled,
.sc_form .picker__list-item--disabled:hover,
.sc_form .picker--focused .picker__list-item--disabled {
    cursor: default;
    z-index: auto;
}

/* The clear button */
.sc_form .picker--time .picker__button--clear {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0.75em;
    background-color: transparent;
    border: 0;
    text-align: center;
    text-transform: uppercase;
}
.sc_form .picker--time .picker__button--clear:hover,
.sc_form .picker--time .picker__button--clear:focus {
    outline: none;
}

.sc_form .sc_form_field [class*="icon-"] {
	position:relative;
}
.sc_form .sc_form_field [class*="icon-"]:before {
	position:absolute;
	right: 0.5em;
	top: 0.5em;
	display:block;
	width: 2em;
	height: 2em;
	line-height:2em;
}

.sc_form_select_container {
	width:100%;
	overflow:hidden;
	position:relative;
}
.sc_form_select_container:after {
	content:'\e828';
	font-family:fontello;
	display:block;
	text-align:center;
	position:absolute;
	right:0;
	top:0;
	width:1.5em;
	height:3.5em;
	line-height:3.5em;
	z-index:0;
	pointer-events: none;
	cursor:pointer;
}
.sc_form_select_container select {
	width:100%;
	padding-left: 0.5em !important;
	background:none !important;
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
}

.sc_form .sc_form_button { 
	text-align:center;
	margin: 1.3em 0 0;
}
.sc_form .sc_form_item.sc_form_button button {
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}

.sc_form_style_form_2 .sc_form_item,
.sc_form_style_form_2 .sc_form_button,
.sc_form_style_form_2 .sc_form_item input[type="text"],
.sc_form_style_form_2 .sc_form_item select,
.sc_form_style_form_2 .sc_form_item textarea {
	text-align:left;
}
.sc_form .sc_form_item.sc_form_button button{
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.sc_form .sc_form_item.sc_form_button button:hover {
    background-position: 100%;
}



/* form style 1*/
.sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item{
    width: 48%;
    float: left;
}
.sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item:first-child{
    margin-right: 26px;
}
.sc_form.sc_form_style_form_1 .sc_form_item.sc_form_message{
    clear: both;
}


/* Content
-------------------------------------------------------------- */
.sc_content {
	/*overflow:hidden;*/
}



/* Countdown
-------------------------------------------------------------- */
.sc_countdown {
	overflow:hidden;
}
.sc_countdown .sc_countdown_inner {
	display:inline-block;
}
.sc_countdown .sc_countdown_item {
	display:block;
	float:left;
	text-align:center;
}
.sc_countdown .sc_countdown_digits {
	display:block;
	overflow:hidden;
	text-align:center;
	margin-bottom: 12px;
}
.sc_countdown .sc_countdown_digits span {
	display:inline-block;
}
.sc_countdown .sc_countdown_separator {
	display:block;
	float:left;
	margin: 0 8px;
}

/* Countdown Style 1 */
.sc_countdown.sc_countdown_style_1 .sc_countdown_digits,
.sc_countdown.sc_countdown_style_1 .sc_countdown_separator {
	font-size:2.45em;
	height: 2.45em;
	line-height:2.45em;
	margin-bottom:6px;
}
.sc_countdown.sc_countdown_style_1 .sc_countdown_digits {
	width: 2.45em;
	border-width: 6px;
	border-style: solid;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_countdown.sc_countdown_style_1 .sc_countdown_label {
	font-weight:400;
}

/* Countdown Style 2 */
.sc_countdown.sc_countdown_style_2 .sc_countdown_digits,
.sc_countdown.sc_countdown_style_2 .sc_countdown_separator {
	font-size:3em;
	font-weight:700;
	height: 1.3542em;
	line-height:1.3542em;
	
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_separator {
	font-weight:300;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_digits span {
	display:inline-block;
	text-align:center;
	width: 1.1458em;
	color: #ffffff;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_digits span+span {
	margin-left:2px;
}
.sc_countdown.sc_countdown_style_2 .sc_countdown_label {
	font-weight:400;
}



/* Dropcaps
-------------------------------------------------------------- */
.sc_dropcaps {
	overflow:hidden;
}
.sc_dropcaps .sc_dropcaps_item {
    font-size: 2.2em;
    font-weight: 500;
	line-height:1em;
	display: block;
    padding: 16px 20px;
    margin: 8px 8px 2px 0;
    float: left;
    border-radius: 50%;
}




/* Events
-------------------------------------------------------------- */
.sc_events_item .sc_events_item_title {
	margin:1em 0;
	font-size:1.2857em;
}
.sc_events_item .sc_events_item_description {
	line-height:1.75em;
	overflow:hidden;
}
.sc_events_item .sc_events_item_description p {
	margin-bottom:0;
	height: 5em;
	overflow:hidden;
}
.sc_events_item .sc_events_item_readmore {
	display:block;
	margin-top: 1em;
}
.sc_events_item .sc_events_item_readmore span {
	display:inline-block;
	margin-left:0.5em;
}

.sc_events_style_events-1 .sc_events_item {
	text-align:center;
	padding:0;
}
.sc_events_style_events-1 .sc_events_item_content {
	padding:0 2.5em 2.5em;
}
.sc_events_style_events-1 .sc_events_item_date {
	font-size:0.8571em;
	margin-bottom: 1em;
}
.sc_events_style_events-1 .sc_events_item_title {
	margin-top:0;
}
.sc_events_style_events-2 .sc_events_item {
	border: 1px solid #eee;
	height: 4em;
	position:relative;
	white-space:nowrap;
	padding: 1.1em 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_events_style_events-2 .sc_events_item+.sc_events_item {
	margin-top:4px;
}
.sc_events_style_events-2 .sc_events_item > span,
.sc_events_style_events-2 .sc_events_item_title {
	display:inline-block;
	margin:0;
	vertical-align:middle;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_events_style_events-2 .sc_events_item_date {
	position:absolute;
	z-index:1;
	left:-1px;
	top:-1px;
	bottom: -1px;
	width: 4em;
	text-align:center;
}
.sc_events_style_events-2 .sc_events_item_month {
	display:block;
	text-transform:uppercase;
	margin-top:0.35em;
	font-size:0.8571em;
}
.sc_events_style_events-2 .sc_events_item_day {
	display:block;
	font-size:1.7em;
}
.sc_events_style_events-2 .sc_events_item_title {
	font-size:1em;
	padding:0 1em 0 6em;
	text-transform:uppercase;
	width:50%;
}
.sc_events_style_events-2 .sc_events_item_time {
	position:relative;
	width:30%;
	padding: 0 1em 0 2em;
}
.sc_events_style_events-2 .sc_events_item_details {
	position:relative;
	width:20%;
	padding: 0 1em 0 2em;
}
.sc_events_style_events-2 .sc_events_item_time:before,
.sc_events_style_events-2 .sc_events_item_details:before {
	content: ' ';
	position:absolute;
	z-index:1;
	left: 0;
	top: -0.2em;
	bottom: -0.2em;
	width: 1px;
}
.sc_events_style_events-2 .sc_events_button {
	margin-top: 2em;
}


/* Google map
------------------------------------------------------------- */
.sc_googlemap{
    border-radius: 2em;
}
.sc_googlemap img {
	max-width: none;
}
.sc_googlemap_wrap {
	position:relative;
}
.sc_googlemap_content {
	position:absolute;
	z-index:1;
	right:10%;
	top: 0;
	bottom:0;
	width: 25%;
	padding:2em 3em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_googlemap_content .sc_item_title:after {
	margin-bottom:0.3em;
	display:none;
}




/* Icon
-------------------------------------------------------------- */
.sc_icon {
	display:inline-block;
	position:relative;
	margin-right:0.25em;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.sc_icon_shape_square,
.sc_icon_shape_round {
	display:inline-block; 
	padding: 4px;
	text-align:center;
	width: 1.2em;
	height: 1.2em;
	line-height: 1.2em;
	border: 0.05em solid #f4f7f9;
}
.sc_icon_shape_round,
a.sc_icon.sc_icon_shape_round:after,
a .sc_icon.sc_icon_shape_round:after {
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_icon.sc_icon_shape_square:hover,
.sc_icon.sc_icon_shape_round:hover,
a.sc_icon.sc_icon_shape_square:hover,
a.sc_icon.sc_icon_shape_round:hover,
a:hover .sc_icon.sc_icon_shape_square,
a:hover .sc_icon.sc_icon_shape_round {
	background-color:transparent;
}

a.sc_icon.sc_icon_shape_round:after,
a.sc_icon.sc_icon_shape_square:after,
a .sc_icon.sc_icon_shape_round:after,
a .sc_icon.sc_icon_shape_square:after {
    background-color: inherit;
    box-sizing: content-box;
    content: " ";
    height: 100%;
    width: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	    -ms-transition: all ease 0.3s;
	     -o-transition: all ease 0.3s;
	        transition: all ease 0.3s;
    z-index: -1;
}
a.sc_icon.sc_icon_shape_round:hover:after,
a.sc_icon.sc_icon_shape_square:hover:after,
a:hover .sc_icon.sc_icon_shape_round:after,
a:hover .sc_icon.sc_icon_shape_square:after {
    opacity: 0;
    transform: scale(1.8);
}


/* Image
-------------------------------------------------------------- */
.sc_image {
	overflow:hidden;
    border-radius: 1.8em;
}
.sc_image img {
    border-radius: 1.8em;
}
figure figcaption,
.sc_image figcaption {
	font-size: 0.8571em;
    text-align: center;
    line-height: 4em;
    border-radius: 0;
}
.sc_image figcaption span {
	display:inline-block;
	margin-right: 0.3em;
}

.sc_image.sc_image_shape_round {
	display: block;
	position:relative;
	overflow:hidden;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_image.sc_image_shape_round figcaption {
	top:0;
	bottom:0;
	padding:0;
	font-size:1em;
	line-height:1.2857em;
	text-align:center;
	overflow:hidden;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_image_shape_round:hover figcaption {
	opacity:0;
	margin-bottom: 0;
	-webkit-transform: rotate(360deg);
	   -moz-transform: rotate(360deg);
	     -o-transform: rotate(360deg);
	    -ms-transform: rotate(360deg);
}
.sc_image_shape_round figcaption span {
	display:block;
	margin: 0 auto;
	font-size:2em;
}
.sc_image_shape_round figcaption span:before {
	display:block;
	margin: 35% auto 0.5em;
}



/* Infobox
-------------------------------------------------------------- */
.sc_infobox {
	display: block;
	margin:1.25em 0;
	color: #ffffff;
	font-size: 0.875em;
	line-height:1.5em;
	padding:1.5em;
	clear: both;
}
.sc_infobox.sc_infobox_style_info {		background-color:#ffb20e; }
.sc_infobox.sc_infobox_style_success {	background-color:#1dbb90; }
.sc_infobox.sc_infobox_style_error {	background-color:#e05100; }

.sc_infobox b,
.sc_infobox strong { 
	font-weight: 900;
}
.sc_infobox p {
	margin: 0;
}
.sc_infobox p+p,.sc_infobox h1+p,.sc_infobox h2+p,.sc_infobox h3+p,.sc_infobox h4+p,.sc_infobox h5+p,.sc_infobox h6+p {
	margin-top: 1em;
}
.sc_infobox h1, .sc_infobox h2, .sc_infobox h3, .sc_infobox h4, .sc_infobox h5, .sc_infobox h6 {
	text-align:left;
	margin:-0.1em 0 0.5em 0;
	line-height:1.2em;
	color: inherit;
}

.sc_infobox.sc_infobox_iconed {
	position:relative;
	padding-left: 5em;
}
.sc_infobox.sc_infobox_iconed:before {
	font-size:1.9em;
	line-height:1em;
	margin-right:0.6em;
	position:absolute;
	left:0.8em;
	top:0.68em;
}

.sc_infobox.sc_infobox_closeable {
	cursor: pointer;
	padding-right: 3.5em;
}
.sc_infobox.sc_infobox_closeable:after {
	content: '\e8ac';
	font-family: "fontello";
	cursor:pointer;
	position:absolute;
	right:1.25em;
	top:1.5em;
}



/* Intro
-------------------------------------------------------------- */
.sc_intro[data-href] {
	cursor: pointer;
}
.sc_intro {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    overflow: hidden;
    display: block;
    padding: 2em 8%;
    box-sizing: border-box;
    border-radius: 2em;
}
/*.sc_intro:before {*/
    /*position: absolute;*/
	/*z-index:1;*/
    /*top: 0;*/
    /*left: -10%;*/
    /*width: 120%;*/
    /*height: 100%;*/
    /*background: rgba(255,255,255,0.2);*/
    /*content: '';*/
    /*-webkit-transition: -webkit-transform .6s;*/
    /*transition: transform .8s;*/
    /*-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);*/
    /*transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,135deg) translate3d(0,100%,0);*/
    /*opacity: 0;*/
    /*filter: alpha(opacity=0);*/
    /*visibility: hidden;*/
    /*-webkit-box-sizing: border-box;*/
    /*-moz-box-sizing: border-box;*/
    /*box-sizing: border-box;*/
/*}*/
/*.sc_intro:hover:before {*/
    /*-webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);*/
    /*transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,135deg) translate3d(0,-100%,0);*/
    /*opacity: 1;*/
    /*filter: alpha(opacity=100);*/
    /*visibility: initial;*/
/*}*/
.sc_intro.small_padding {
    padding: 1.2em;
}
.sc_intro_inner {
	position:relative;
	z-index:2;
}
.sc_intro .sc_intro_subtitle {
	font-size: 0.85em;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: 0;
	margin: 0;
}
.sc_intro .sc_intro_title {
	font-size: 1.5em;
	line-height: 1.2em;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: 0;
	display: inline-block;
	margin:0;
}
.sc_intro .sc_intro_subtitle + .sc_intro_title {
	margin-top:0.2em;
}


/* Intro style 1 */
.sc_intro_style_1 {
	display: table;
	height: 100%;
	width: 100%;
}
.sc_intro_position_top_right .sc_intro_inner,
.sc_intro_position_bottom_right .sc_intro_inner {
	float:right;
}
.sc_intro_style_1 .sc_intro_content {
	display: table-cell;
	text-align:left;
	vertical-align: top;
}
.sc_intro_style_1 .sc_intro_subtitle {
	letter-spacing: 1px;
}
.sc_intro_style_1 .sc_intro_title {
    margin-bottom: 0;
}
.sc_intro_position_bottom_right .sc_intro_style_1 .sc_intro_content,
.sc_intro_position_bottom_left .sc_intro_style_1 .sc_intro_content {
	vertical-align: bottom;
}

/* Intro style 2 */
.sc_intro_style_2 {
	display: table;
	height: 100%;
	width: 100%;
}
.sc_intro_style_2 .sc_intro_content {
	display: table-cell;
	vertical-align: bottom;
}
.sc_intro_style_2 .sc_intro_subtitle {
	font-size: 1.5em;
	letter-spacing: 0;
	margin-bottom: 0;
	line-height: 1.1em;
}
.sc_intro_style_2 .sc_intro_title {
	font-size: 2.5em;
	letter-spacing: 0;
	line-height: 1em;
}
.sc_intro_style_2 .sc_intro_descr {
	font-size: 0.9em;
	text-transform:uppercase;
	font-weight: 700;
	line-height: 1.2em;
	margin-top:0.8em;
}
.sc_intro_style_2 .sc_intro_buttons {
	margin-top: 1.2em; 
}

/* Intro style 3 */
.sc_intro_style_3 {
	display: table;
	height: 100%;
	width: 100%;
	padding: 4.8em 0 3.1em 0;
	text-align:center;
}
.sc_intro_style_3 .sc_intro_content {
	display: table-cell;
	vertical-align: middle;
}
.sc_intro_style_3 .sc_intro_subtitle {
	font-size: 1.5em;
	letter-spacing: 0;
	margin-bottom: 0;
	line-height: 1.1em;
}
.sc_intro_style_3 .sc_intro_title {
    font-size: 3.3em;
    line-height: 1em;
    letter-spacing: 0;
    font-weight: 600;
    margin-bottom: 0.2em;
}
.sc_intro_style_3 .sc_intro_descr {
	font-size: 0.857em;
	text-transform:uppercase;
	font-weight: 700;
	line-height: 1.2em;
	margin-top:0.8em;
}
.sc_intro_style_3 .sc_intro_buttons {
	margin-top: 1.2em; 
}
.sc_intro_style_3 .sc_intro_buttons > .sc_item_button {
	margin:0;
    float: none;
    text-align: center;
}
.sc_intro_style_3 .sc_intro_buttons > .sc_item_button + .sc_item_button {
	margin-left: 1em;
}

.sc_intro_style_3 .sc_intro_buttons{
    display: block;
}

/* Intro style 4 */
.sc_intro_style_4 {
	display: table;
	height: 100%;
	width: 100%;
	padding: 0.1em;
	text-align: center;
}
.sc_intro_style_4 .sc_intro_content {
	display: table-cell;
	vertical-align: middle;
}
.sc_intro_style_4 .sc_intro_title {
	font-size: 1.28em;
	letter-spacing: 0;
    line-height: 1em;
    margin-bottom: 0;
}
.sc_intro_style_4 .sc_intro_descr {
	font-size: 1.142em;
	text-transform:none;
	font-weight: 400;
}

/* Intro style 5 */
.sc_intro_style_5 {
	display: table;
	height: 100%;
	width: 100%;
	text-align: left;
}
.sc_intro_style_5 .sc_intro_icon,
.sc_intro_style_5 .sc_intro_content {
	display: table-cell;
	vertical-align: middle;
}
.sc_intro_style_5 .sc_intro_icon {
	text-align: center;
}
.sc_intro_style_5 .sc_intro_icon:before {
	font-size: 2em;
	width: 1.7em;
	height: 1.7em;
	line-height: 1.7em;
	border: 4px solid;
	border-radius: 50%;
	text-align: center;
}
.sc_intro_style_5 .sc_intro_content {
	padding-left: 10px;
}
.sc_intro_style_5 .sc_intro_title {
	font-size: 1.28em;
	letter-spacing: 0;
    line-height: 1em;
    margin-bottom: 0;
}
.sc_intro_style_5 .sc_intro_descr {
	font-size: 1.142em;
	text-transform:none;
	font-weight: 400;
}


/* List
-------------------------------------------------------------- */
ul.sc_list_style_iconed {
	padding-left: 0;
}
.sc_list_style_iconed li {
	padding: 0 0 0 1.5em !important;
	list-style: none;
	position: relative;
	line-height:1.9em;
}
.sc_list_style_iconed li .sc_list_icon {
	position:absolute;
	left: 0;
	top: 0;
	width: 1em;
	display:inline-block;
	text-align:center;
}
.sc_list li {
    line-height:1.9em;
}


/* Line
-------------------------------------------------------------- */
.sc_line {
	display: block;
	width: 100%;
	height: 0;
	border-top: 1px solid #e4e7e8;
	margin:5.1em 0 4.95em;
	position:relative;
}
.sc_line.sc_line_position_left_top:not(.sc_line_style_image),
.sc_line.sc_line_position_center_top:not(.sc_line_style_image),
.sc_line.sc_line_position_right_top:not(.sc_line_style_image) {
	border-top: none;
	border-bottom: 1px solid #e4e7e8;
}
.sc_line.sc_line_style_dashed { border-style: dashed; }
.sc_line.sc_line_style_dotted { border-style: dotted; }
.sc_line.sc_line_style_double { height: 4px; border-bottom-width: 1px; }
.sc_line.sc_line_style_image {
	background-position:center;
	background-repeat:no-repeat;
	border:none;
}
.sc_line .sc_line_title {
	margin:0;
	padding: 0 1em;
	text-transform:uppercase;
	display:inline-block;
	position:absolute;
	z-index:1;
}
.sc_line.sc_line_position_left_top { background-position: left bottom; }
.sc_line.sc_line_position_left_top .sc_line_title {
	top:0;
	left:0;
	padding-left:0;
}
.sc_line.sc_line_position_center_top { background-position: center bottom; }
.sc_line.sc_line_position_center_top .sc_line_title {
	top:0;
	left:50%;
	-webkit-transform:translateX(-50%);
	   -moz-transform:translateX(-50%);
	    -ms-transform:translateX(-50%);
	        transform:translateX(-50%);
}
.sc_line.sc_line_position_right_top { background-position: right bottom; }
.sc_line.sc_line_position_right_top .sc_line_title {
	top:0;
	right: 0;
	padding-right:0;
}
.sc_line.sc_line_position_left_center { background-position: left center; }
.sc_line.sc_line_position_left_center .sc_line_title {
	top:50%;
	left:0;
	padding-left:0;
	margin-top:-2px;
	-webkit-transform:translateY(-50%);
	   -moz-transform:translateY(-50%);
	    -ms-transform:translateY(-50%);
	        transform:translateY(-50%);
}
.sc_line.sc_line_position_center_center { background-position: center center; }
.sc_line.sc_line_position_center_center .sc_line_title {
	top:50%;
	left:50%;
	margin-top:-2px;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	    -ms-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
}
.sc_line.sc_line_position_right_center { background-position: right center; }
.sc_line.sc_line_position_right_center .sc_line_title {
	top:50%;
	right: 0;
	padding-right:0;
	margin-top:-2px;
	-webkit-transform:translateY(-50%);
	   -moz-transform:translateY(-50%);
	    -ms-transform:translateY(-50%);
	        transform:translateY(-50%);
}
.sc_line.sc_line_position_left_bottom { background-position: left top; }
.sc_line.sc_line_position_left_bottom .sc_line_title {
	bottom:0;
	left:0;
	padding-left:0;
}
.sc_line.sc_line_position_center_bottom { background-position: center top; }
.sc_line.sc_line_position_center_bottom .sc_line_title {
	bottom:0;
	left:50%;
	-webkit-transform:translateX(-50%);
	   -moz-transform:translateX(-50%);
	    -ms-transform:translateX(-50%);
	        transform:translateX(-50%);
}
.sc_line.sc_line_position_right_bottom { background-position: right top; }
.sc_line.sc_line_position_right_bottom .sc_line_title {
	bottom:0;
	right: 0;
	padding-right:0;
}





/* Matches & Players
-------------------------------------------------------------- */

/* Matches */
.match_block {
	display: block;
	width: 100%;
	margin-bottom: 30px;
    text-align: center;
}
.match_block .player, 
.match_block .match_info {
	display: inline-block;
	vertical-align:middle;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.match_block .player {
	width: 35%;
	position: relative;
}
.match_block .player_country {
    width: 3.5em;
    height: 3.5em;
	line-height: 3.5em;
	text-align: center;
    position: absolute;
	top: 0;
    left: 0;
	font-size: 0.7857em;
	text-transform: uppercase;
    z-index: 2;
}
.match_block .player_name a {
    text-align: center;
    padding: 1em;
    font-weight: 600;
	display: block;
}
.match_block .match_info {
	width: 30%;
	padding: 0 2em;
}
.match_block .match_date {
	font-weight: 600;
	margin-bottom: 1.2em;
}
.match_block .match_score {
    font-size: 3.5714em;
    font-weight: 600;
    line-height: 1.6em;
    padding: 0 0.4em;
	display: inline-block;
    background-color: #f7f7f7;
	margin-bottom: 0.3333em;
}
.match_block .match_category {
    font-size: 0.8571em;
    text-transform: uppercase;
}
.match_preview {
    margin-bottom: 1em;
}


/* Matches Blogger */
.type_match.post_item_colored .match_date {
    margin-top: 1.25em;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.15em;
    margin: 1.8em 1em 0.5em 0;
    display: inline-block;
}
.type_match.post_item_colored .match_date + .post_category{
	margin: 0 0 0.5em 0;
    overflow: visible;	
	display: inline-block;
}
.type_match.post_item_colored .post_title{
	margin-top: 0 !important;
}
.post_item_colored .match_date,
.post_item_colored .post_category {
    font-size: 1.125em;
    line-height: 1.15em;
}
.matches_hover > a:before {
    content: '\e843';
    font-family: 'fontello';
    font-size: 3em;
    color: #ffffff;
    text-shadow: -4px 3px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 35%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 100px;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.matches_hover > a:after {
    content: ' ';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity ease .3s;
    -moz-transition: opacity ease .3s;
    -ms-transition: opacity ease .3s;
    -o-transition: opacity ease .3s;
    transition: opacity ease .3s;
}
.matches_hover > a:hover:before {
    opacity: 1;
    filter: alpha(opacity=100);
    margin-top: 0;
}
.matches_hover > a:hover:after {
    opacity: 1;
}

/* Matches Shortcode */
.sc_matches {
    overflow: hidden;
}
.sc_matches_next, .sc_matches_current {
    padding: 4em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.sc_matches_next {
	width: 40%;
    float: left;
}
.sc_matches_current {
    width: 60%;
    float: right;
	padding-right: 0;
}
.sc_matches.style_matches-1 .sc_matches_subtitle,
.sc_matches.style_matches-1 .sc_matches_title,
.sc_matches.style_matches-1 .sc_matches_descr,
.sc_matches.style_matches-1 .sc_matches_button {
    text-align: left;
}
.sc_matches.style_matches-1 .sc_item_title:after {
	width: 2em;
	margin-left:0;
}
.sc_matches.style_matches-1 .sc_matches_descr {
	font-style:normal;
}
.sc_matches_current .sc_match {
	display: none;
}
.sc_matches_current .sc_match:first-child {
	display: block;
}
.sc_matches_list {
    padding-left: 0;
    margin-top: 4em;
	list-style-type: none;
}
.sc_matches_next .sc_matches_list .sc_match {
    padding-left: 0;
    margin-bottom: 3px;
	position: relative;
	cursor: pointer;
}
.sc_match_date {
    width: 5em;
    height: 100%;
    text-align: center;
    position: absolute;
}
.sc_match_date .day {
	font-size: 1.7857em;
    font-weight: 600;
	display: block;
    padding-top: 0.6em;
}
.sc_match_date .month {
	font-size: 0.8571em;
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.sc_match_info {
    padding: 1em 1.5em;
    margin-left: 5em;
    background-color: rgba(255,255,255,0.1);
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.sc_matches_next .sc_matches_list .sc_match:hover .sc_match_info {
    background-color: rgba(255,255,255,0.2);
}
.sc_match_info .name {
	font-weight: 600;
}
.sc_match_info .time, .sc_match_info .players{
	display: inline;
}

/* style 2 */
.sc_matches.style_matches-2 .match_preview {
    text-align: center;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_title {
	font-size: 1.7857em;
    line-height: 1.3em;
    font-weight: 700;
    padding: 0.6em 0;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_item_title:after {
	display:none;
}
.sc_matches.style_matches-2 .sc_matches_current,
.sc_matches.style_matches-2 .sc_matches_next {
    width: 100%;
}
.sc_matches.style_matches-2 .sc_matches_next{
    padding: 0;
}
.sc_matches.style_matches-2 .sc_matches_current {
    padding: 0 0 2em 0;
}
.sc_matches.style_matches-2 .sc_matches_current .sc_matches_list {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list {
    margin: 0;
    width: 50%;
    float: left;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list .sc_match {
    margin-right: 2px;
	margin-left: 0;
}
.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list:last-child .sc_match {
    margin-left: 2px;
	margin-right: 0;
}
.sc_matches.style_matches-2 .sc_match_info .photo,
.sc_matches.style_matches-2 .sc_match_info .name,
.sc_matches.style_matches-2 .sc_match_info .vs {
    display: inline-block;
    vertical-align: middle;
	text-align: center;
}
.sc_matches.style_matches-2 .sc_match_info .photo {
	max-width:40px;
}
.sc_matches.style_matches-2 .sc_match_info .name {
    width: 10em;
	line-height: 1.4em;
    margin: 0 1em;
	text-align: left;
}
.sc_matches.style_matches-2 .sc_match_info .vs+.name {
	text-align:right
}

/* latest matches */
.sc_latest_matches_list {
    list-style: none;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
	padding-left: 0;
}

/* players shortcode */
.sc_player .sc_player_avatar {
    position: relative;
}
.sc_player .sc_player_avatar .sc_player_hover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    text-align: center;
}
.sc_player .sc_player_avatar .sc_player_hover,
.sc_player .sc_player_avatar .sc_player_hover .sc_player_socials {
    overflow: hidden;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.sc_player:hover .sc_player_avatar .sc_player_hover {
    opacity: 1;
    filter: alpha(opacity=100);
}
.sc_player .sc_player_avatar .sc_player_hover .sc_player_socials {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 3.5em;
}
.sc_player:hover .sc_player_avatar .sc_player_hover .sc_player_socials {
    margin-top: 0;
}
.sc_player .sc_player_info {
    padding-top: 1.5em;
    border-top-width: 5px;
    border-top-style: solid;
}
.sc_player .sc_player_info .sc_player_title{
    margin: 0;
    font-size: 1.3333em;
}
.sc_player .sc_player_info .sc_player_title a{
	font-weight: 400;
}
.sc_player .sc_player_info .sc_player_club {
	 margin-top: 0.5em;
	font-style: italic;
}

/* Player - Blogger */
.post_item_colored .player_info {
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0;
}
.post_item_colored .player_info span + span:before {
    content: '/';
    margin: 0 0.7143em;
}

.type_player.post_item_colored .post_featured .post_title {
    height: 2em;
}
.type_player.post_item_colored .player_info {
    font-size: 1em;
}
.type_player.post_item_colored .player_info span {
	display: block;
}
.type_player.post_item_colored .player_info span + span:before {
    content: none;
}
.type_player.post_item_colored .post_featured .post_title {
	bottom: 22%;
}
.type_player.post_item_colored .post_featured .post_descr {
    height: 22%;
}

/* Players table */
.sc_players_table {
    max-width: 100%;
}
.sc_players_table .sc_table {
    margin-bottom: 3em;
}
.sc_players_table table {
    table-layout: fixed;
    text-align: left;
}
.sc_players_table .sc_players_table_category {
    margin-bottom: 1.5em;
}
.sc_players_table table td:nth-child(2) {
	text-align:right;
}
.sc_players_table table th,
.sc_players_table table td {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_players_table table th:nth-child(2),
.sc_players_table table td:nth-child(2) {
	width:25%;
}
.sc_players_table .sort {
	cursor: pointer;
}
.sc_players_table .sort:after {
    content: '\e8f1';
    font-family: fontello;
    font-size: 0.7em;
    margin-left: 0.5em;
}
.sc_players_table .sort_desc:after {
    content: '\e8f0';
}
.sc_players_table .sc_table img {
    margin-right: 1em;
}
.sc_players_table .sc_table .title {
    margin: 0.3571em 0;
    display: inline-block;
}
/* style 2 */
.sc_players_table.style_2 .sc_players_table_category,
.sc_players_table.style_2 .sc_table tr:first-child {
    display: none;
}
.sc_players_table.style_2 .sc_table td {
    border: none;
	border-bottom: 2px solid #ffffff;
    padding: 1em;
}
.sc_players_table.style_2 .sc_table tr:nth-child(2) {
	counter-reset:plr;
}
.sc_players_table.style_2 .sc_table .player {
    padding-left: 3em;
	position:relative;
}
.sc_players_table.style_2 .sc_table .player:before {
	content: counter(plr) ".";
	counter-increment:plr;
	position:absolute;
	left: 1em;
	top: 1.4em;
}
.sc_players_table.style_2 .sc_table .points {
    padding-right: 2em;
    font-weight: 600;
}

/* Single player */
.sidebar_hide .post_item_single_players.post_featured_left > .post_featured {
    width: 32%;
}
.sidebar_show .post_item_single_players.post_featured_left > .post_featured {
    width: 45%;
}
.sidebar_show .post_item_single_players .post_content > .sc_socials {
    display: none;
}
.post_item_single_players .post_title {
	font-weight: 400;
}
.post_item_single_players .post_title:after {
	content: ' ';
    display: block;
    width: 1em;
    height: 2px;
    margin: 0.6667em 0;
}
.post_item_single_players .player_info span {
    text-transform: uppercase;
    font-style: italic;
    font-weight: 600;
    display: block;
    line-height: 2em;
}
.post_item_single_players .player_content {
    display: block;
    clear: both;
    padding-top: 3.5714em;
}



/* Menu items
-------------------------------------------------------------- */

/* Style 1 */
.sc_menuitems_style_menuitems-1 .sc_menuitems_item {
	padding-top:1px;
}
.sc_menuitems_style_menuitems-1 .sc_menuitem_image {
	float: left;
	margin-right: 1em;
}
.sc_menuitems_style_menuitems-1 .sc_menuitem_price {
	float: right;
	margin-left: 1em;
	font-weight: bold;
	font-size: 1.3em;
}
.sc_menuitems_style_menuitems-1 .sc_menuitem_title {
	margin: -0.25em 0 0;
}

/* Style 2 */
.sc_menuitems_style_menuitems-2 .sc_menuitem_image {
	position: relative;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_spicy {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 0.857em;
	text-transform: uppercase;
	padding-right: 0.5em;
	vertical-align: top;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_spicy span {
	display: inline-block;
	color: #ffffff;
	width: 2.143em;
	height: 2.143em;
	line-height: 2.143em;
	text-align: center;
	margin-right: 0.5em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_spicy span:before {
	font-size: 1.35em;
}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_1 span { background: #44b21e;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_2 span { background: #97f216;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_3 span { background: #f7dd00;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_4 span { background: #f25e16;}
.sc_menuitems_style_menuitems-2 .menuitem_spicylevel_5 span { background: #e41111;}
.sc_menuitems_style_menuitems-2 .sc_menuitem_box_title {
	display: block;
	position: relative;
	padding: 0.560em 1.200em 0.600em;
	font-size: 1.786em;
	line-height: normal;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_title {
	float: left;
	font-weight: bold;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_price {
	float: right;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_content,
.sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions {
	display: block;
	position: relative;
	border-bottom: 1px solid #e4e7e8;
	padding: 2.143em 2.143em 2.143em 5.000em;
	line-height: 1.929em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,
.sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title, 
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title {
	display: block;
	position: relative;
	margin-bottom: 0.25em;
	font-size: 1.286em;
	font-weight: 800;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,
.sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span {
	position: absolute;
	left: -1.5em;
	top: 0;
	font-size: 1.5em;
}

.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li {
	position: relative;
	display: inline-block;
	padding-left: 1em;
	width: 35%;
	text-transform: uppercase;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before {
	content: '\e836';
	font-family: 'fontello';
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span {
	font-weight: bold;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_more {
	padding: 2.143em;
}
.sc_menuitems_style_menuitems-2 .sc_menuitem_share {
	float: right;
}
.cL { clear: both; }

/* Popup menuitem */
#overlay {
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	position: fixed;
	background-color:#000;
	opacity: 0.8;
	z-index: 100005;
}
.popup_menuitem {
	overflow-y: auto;
	overflow-x: hidden;
	top: 0;
	bottom: 0;
	left: 0;
	right: -16px;
	margin: 0;
	padding: 0;
	position: fixed;
	display: none;
	z-index: 100010;
}

.popup_menuitem > .sc_menuitems_wrap {
	display: block;
	position: relative;
	width: 770px;
	margin: 50px auto;
	z-index: 100020;
}
.popup_menuitem a.close_menuitem {
	position: absolute;
	font-size: 2em;
	top: -0.8em;
	right: -0.8em;
	color: #fff;
}
.popup_menuitem a.prev_menuitem {
	position: absolute;
	font-size: 3em;
	font-weight: normal;
	top: 0.6em;
	left: -1em;
	color: #fff;
}
.popup_menuitem a.next_menuitem {
	position: absolute;
	font-size: 3em;
	font-weight: normal;
	top: 0.6em;
	right: -1em;
	color: #fff;
}
.popup_menuitem a.prevnext_menuitem {
	text-align: center;
	display: block;
	width: 1em;
	height: 1em;
	line-height: 0.855em;
}



/* Number
-------------------------------------------------------------- */
.sc_number_item {
	display: inline-block;
	text-align:center;
	font-size: 3em;
	font-weight:700;
	width: 1em;
	height: 1.25em;
	line-height:1.25em;
	background-color:rgba(0,0,0, 0.15);
	color: #ffffff;
}
.sc_number_item+.sc_number_item {
	margin-left:2px;
}



/* Parallax
-------------------------------------------------------------- */
.sc_parallax {
	position: relative;
	overflow: hidden;
	background-repeat:no-repeat;
}
.sc_parallax .sc_parallax_content {
	position: relative;
	overflow: hidden;
	z-index: 2;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-repeat:no-repeat;
}
.sc_parallax .sc_parallax_overlay {
	overflow: hidden;
}
.sc_parallax .sc_video_bg_wrapper {
	position:absolute;
	z-index: 1;
	left: 0;
	top: 0;
	right:0;
	bottom:0;
}
.sc_parallax video.sc_video_bg { 
	opacity: 0;
	filter: alpha(opacity=0);
}




/* Popup
-------------------------------------------------------------- */
.sc_popup {
	position: relative;
	background-color: #fff;
	padding: 24px 20px 20px 20px;
	width: auto;
	max-width: 500px;
	max-height:600px;
	margin: 20px auto;
	border: 1px solid #ddd;
	overflow-x:hidden;
	overflow-y:auto;
}
.sc_popup:before {
	height: 4px;
	content: ' ';
	position: absolute;
	width: 100%;
	top: -1px;
	left: -1px;
	display: block;
	padding: 0 1px;
}
.sc_popup.mfp-hide {
	display:none;
}
.sc_popup .mfp-close {
	top:3px;
	width:1em;
	height:1em;
	line-height:1em;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}
.sc_popup .mfp-close:active {
	top:3px;
}



/* Price
-------------------------------------------------------------- */
.sc_price {
	display:inline-block;
	position:relative;
}
.sc_price .sc_price_currency,
.sc_price .sc_price_money {
	font-size:1.875em;
	line-height:1em;
	color: #222222;
}
.sc_price .sc_price_info {
	display:inline-block;
	position:relative;
	vertical-align:baseline;
}
.sc_price .sc_price_penny {
	display:block;
	text-decoration:underline;
	margin-bottom:0.2em;
	margin-left:0.1em;
	font-size: 0.75em;
	line-height:1em;
	color: #222222;
}
.sc_price .sc_price_period:before {
	content:'/';
	display:inline-block;
	margin-left:0.3em;
	margin-right:0;
}
.sc_price .sc_price_period_empty:before {
	content:' ';
	display:inline-block;
}



/* Price block
-------------------------------------------------------------- */
.sc_price_block {
	display:inline-block;
	overflow:hidden;
    width: 100%;
    border-radius: 2em 2em 2em 2em;
}
.sc_price_block .sc_price_block_title {
	font-size: 1.7857em;
	line-height: 1.3em;
	height: 3.1em;
	padding-top: 0.5em;
	background-color:rgba(0,0,0, 0.1);
	position:relative;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
    border-radius: 1em 1em 0 0;
}
.sc_price_block .sc_price_block_title span {
	display:block;
    font-size:0.875em;
	text-align:center;
	position:absolute;
	left: 0;
	top:50%;
	width: 100%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.sc_price_block .sc_price_block_money {
	text-align:center;
	font-size: 1.125em;
	line-height: 8.15em;
	height: 8.4em;
	overflow:hidden;
}
.sc_price_block.sc_price_block_style_3 .sc_price_block_money{
    border-bottom: 1px solid;
}
.sc_price_block .sc_price_block_money .sc_price_period {
    font-weight: 600;
    font-size: 1.4em;
}
.sc_price_block .sc_price_block_money .sc_price_period:before{
    font-size: 1em;
}
.sc_price_block .sc_price_block_money .sc_price_block_icon {
	font-size: 4em;
	line-height:inherit;
	display:inline-block;
}
.sc_price_block .sc_price_block_money .sc_price {
	display:inline-block;
}
.sc_price_block .sc_price_block_money .sc_price_block_icon + .sc_price {
	margin-left:0.5em;
}
.sc_price_block .sc_price_block_money .sc_price_currency {
    font-weight: 300;
    font-size: 3.25em;
	line-height:inherit;
}
.sc_price_block .sc_price_block_money .sc_price_money {
    font-weight: 300;
    font-size: 3.3em;
	line-height:inherit;
}
.sc_price_block .sc_price_block_description {
	text-align: left;
	font-size: 1em;
	line-height: 1.5em;
	padding: 2.3em 2em 0;
	overflow: hidden;
}
.sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description {
	margin-left: 45%;
	-webkit-transform: translateX(-40%);
	-moz-transform: translateX(-40%);
	transform: translateX(-40%);
}
.sc_price_block .sc_price_block_description .sc_list_item{
    line-height: 2.4em;
}
.sc_price_block .sc_price_block_description .sc_list_item span:before{
    font-size: 1.2em;
    position: relative;
    left: -7px;
}
.sc_price_block .sc_price_block_description li,
.sc_price_block .sc_price_block_description p {
	margin-bottom:0;
}
.sc_price_block .sc_price_block_link {
	height:7.5em;
	text-align:center;
	padding-top:0.5em;
}
.sc_price_block .sc_price_block_link .sc_button {
	background-color:rgba(0,0,0, 0.2);
}
.sc_price_block .sc_price_block_link .sc_button:hover {
	background-color:#ef631f !important;
}

/* Promo
-------------------------------------------------------------- */
.sc_promo_inner {
	position: relative;
	overflow: hidden;
}
.sc_promo_image {
    position: absolute;
    top: 0;
    bottom: 0;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}
.sc_promo_size_small .sc_promo_image {
	background-size:100%;
}
.sc_promo_block {
    width: 50%;
    position: relative;
}
.sc_promo_block_inner {
	padding: 3em 4em;
}
.sc_promo .sc_promo_title {
	font-weight:700;
}
.sc_promo .sc_promo_title:after {
	display:none;
}
.sc_promo .sc_promo_descr {
	font-weight:400;
	font-style:normal;
	margin-bottom: 0;
}
.sc_promo .sc_promo_button {
	margin-top: 2em;
}
.sc_promo.sc_promo_size_small .sc_promo_block_inner {
	padding: 1.5em 2em;
}
.sc_promo.sc_promo_size_small .sc_promo_title {
	font-size: 1.5em;
	line-height:1.3em;
}
.sc_promo.sc_promo_size_small .sc_promo_descr {
	font-size: 1.2857em;
}
.sc_promo.sc_promo_size_small .sc_promo_button {
	margin-top:1.25em;
}
.sc_promo_block.sc_align_left *,
.sc_promo_block.sc_align_left *:after {
	text-align: left !important;
    margin-left: 0;
}
.sc_promo_block.sc_align_right *,
.sc_promo_block.sc_align_right *:after {
	text-align: right !important;
    margin-right: 0;
}



/* Scroll
-------------------------------------------------------------- */
.sc_scroll {
	overflow: hidden;
	width: 100%;
	position:relative;
}
.sc_scroll_wrapper {
	overflow: hidden;
}
.sc_scroll_horizontal .sc_scroll_wrapper {
	width: 100000px;
}
.sc_scroll_horizontal {
	width:100%;
	padding-bottom:10px;
}
.sc_scroll_vertical {
	min-height:200px;
	padding-right:6px;
}
.sc_scroll_vertical .swiper-wrapper {
	height: auto;
	display:block;
}
.sc_scroll_vertical .swiper-slide {
	float: none;
	display:block;
	height: auto;
}
/* Scroll bar */
.sc_scroll_bar {
	background:transparent;
	position:absolute;
	z-index:100;
}
.sc_scroll_vertical .sc_scroll_bar {
	right:1px;
	top:0;
	bottom:0;
	width:10px;
	border-right:1px solid #dddddd;
}
.sc_scroll_horizontal .sc_scroll_bar {
	right:0;
	left:0;
	bottom:1px;
	height:10px;
	border-bottom:1px solid #dddddd;
}

.sc_scroll_bar .swiper-scrollbar-drag {
	background:none !important;
}
.sc_scroll_vertical .sc_scroll_bar .swiper-scrollbar-drag {
	width:10px;
	left:2px;
}
.sc_scroll_horizontal .sc_scroll_bar .swiper-scrollbar-drag {
	height:10px;
	top:2px;
}
.sc_scroll_bar .swiper-scrollbar-drag:before {
	content:' ';
	display:block;
	position:absolute;
	background-color: #1dbb90;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
}
.sc_scroll_vertical .sc_scroll_bar .swiper-scrollbar-drag:before {
	width:3px;
	right:-2px;
	top:0;
	bottom:0;
	height:100%;
}
.sc_scroll_horizontal .sc_scroll_bar .swiper-scrollbar-drag:before {
	height:3px;
	left:0;
	right:0;
	bottom:-2px;
	width:100%;
}

/* Scroll controls */
.sc_scroll_container {
	position:relative;
}
.sc_scroll_controls_type_top .sc_scroll_controls_wrap {
	position: absolute;
	top:-8em;
	right:0;
	width:12em;
	padding-bottom:5px;
	overflow:hidden;
	text-align:right;
}
.sc_scroll_controls_type_side .sc_scroll_controls_wrap {
	position: absolute;
	top:50%;
	left:0;
	width:100%;
	height: 0;
}
.sc_scroll_controls_type_side .sc_scroll_controls_wrap a {
	margin-top:-25px;
	margin-left: -80px;
	display:block;
	position:absolute;
	top:0;
	left:8px;
	opacity:0;
}
.sc_scroll_controls_type_side .sc_scroll_controls_wrap a+a {
	left:auto;
	right:8px;
	margin-right: -80px;
}
.sc_scroll_controls_type_side:hover .sc_scroll_controls_wrap a {
	margin-left:0;
	margin-right:0;
	opacity:1;
}
.sc_scroll_controls_wrap a {
	display: inline-block;
	text-align:center;
	font-size: 1.5em;
	width: 2em;
	height: 2em;
	line-height: 2em;
	margin-left: 0.6667em;
}
.sc_scroll_controls_wrap a:before {
	font-family:fontello;
}
.sc_scroll_controls_wrap .sc_scroll_next:before {
	content:'\e836';
}
.sc_scroll_controls_wrap .sc_scroll_prev:before {
	content:'\e837';
}
.sc_scroll_controls_vertical .sc_scroll_controls_wrap .sc_scroll_next:before {
	content:'\e828';
}
.sc_scroll_controls_vertical .sc_scroll_controls_wrap .sc_scroll_prev:before {
	content:'\e835';
}




/* Section
------------------------------------------------------------ */
.sc_section {
	position: relative;
	/*overflow: hidden;*/
	/*padding:1px 0;*/
}
.sc_section:after {
	content:' ';
	display:block;
	width:100%;
	height:0;
	clear:both;
}
.sc_section:not(.sc_scroll_controls) .sc_section_overlay,
.sc_section .sc_section_overlay {
	overflow: hidden;
}
.sc_section .sc_section_content {
	padding: 1em 1.5em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_section .sc_section_content.padding_off {
	padding: 0;
}
.sc_section .sc_section_button {
	margin-top:2em;
}

.sc_pan {
	position:absolute;
	width:100%; 
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
/*
.sc_pan_vertical { cursor: n-resize; }
.sc_pan_horizontal { cursor:e-resize; }
*/
.sc_pan_vertical,
.sc_pan_horizontal {
	cursor: all-scroll;
}

.sc_section .sc_section_title{
    margin-bottom: 1em;
}

/* Recent News: Widget and schortcode
---------------------------------------------------------------- */
.sc_recent_news_header {
	padding-bottom: 1em;
	border-bottom: 3px solid #000;
	margin-bottom:2em;
}
.sc_recent_news_header_captions,
.sc_recent_news_header_categories {
	display: inline-block;
	vertical-align:bottom;
}
.sc_recent_news_header_split .sc_recent_news_header_captions,
.sc_recent_news_header_split .sc_recent_news_header_categories {
	width:50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.sc_recent_news_header_split .sc_recent_news_header_captions {
	padding-right:2em;
}
.sc_recent_news_title {
	margin:0;
	line-height:1.5em;
	text-transform:uppercase;
	font-weight: bold;	
}
.sc_recent_news_subtitle {
	margin: 0;
	line-height:1.5em;
	font-size:1em;
	text-transform:uppercase;
	font-size:0.9231em;
}
.sc_recent_news_header_split .sc_recent_news_header_categories {
	line-height:1.5em;
	text-align: right;
}
.sc_recent_news_header_split .sc_recent_news_header_categories > * {
	display:inline-block;
	margin-left: 1em;
	text-transform:uppercase;
	font-size:0.9231em;
}
.sc_recent_news_header_category_item_more {
	position:relative;
	cursor:pointer;
}
.sc_recent_news_header_category_item_more:after {
	content: '\e828';
	font-family:'fontello';
	display:inline-block;
	margin-left:0.5em;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.sc_recent_news_header_category_item_more.opened:after {
	-webkit-transform:rotate(180deg);
	   -moz-transform:rotate(180deg);
	    -ms-transform:rotate(180deg);
	        transform:rotate(180deg);
}
.sc_recent_news_header_more_categories {
	display:none;
	position:absolute;
	right:0;
	top: 2em;
	z-index:1;
	border: 1px solid #eee;
	text-align:left;
	padding:0.5em 1px;
}
.sc_recent_news_header_more_categories > a {
	display:block;
	white-space:nowrap;
	line-height:2em;
	padding:0 1.5em;
}

.sc_recent_news .post_item {
	background-color:transparent;
	text-align:left;
	overflow:hidden;
	margin-bottom:2.1427em;
}
.sc_recent_news .post_item + .post_item {
	padding-top: 0 !important;
	margin-top: 0 !important;
}
aside .sc_recent_news .post_item.post_accented_on {
	margin-bottom: 2.3077em;
}
.sc_recent_news_style_news-magazine .post_accented_border {
	border-bottom: 1px solid #eee;
	padding-bottom:2.3077em;
}

.sc_recent_news .post_item .post_thumb {
	float:none;
	width: auto;
	height:auto;
	margin:0;
}

.sc_recent_news .post_accented_on .post_featured {
	margin-bottom:1.2857em;
}
.sc_recent_news_with_accented .post_accented_off .post_featured {
	float: left;
	margin-bottom: 0;
	width: 35%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_recent_news_with_accented .post_accented_off .post_header {
	float:left;
	width:65%;
}
.sc_recent_news_without_accented .post_accented_off .post_featured {
	margin-bottom:1em;
}
.sc_recent_news .post_featured .post_info {
	position:absolute;
	left: 0;
	bottom:0;
	padding: 0.5em;
	z-index:10;
	font-size: 1em;
	font-style:normal;
}
.sc_recent_news .post_featured .post_info .post_categories {
	display:inline-block;
	padding:0 0.5em;
	line-height:1.5em;
	font-size:0.7692em;
	font-weight: bold;
	background-color: #000000;
}
.sc_recent_news .post_featured .post_info *,
.sc_recent_news .post_featured .post_info *:hover {
	color: #ffffff;
	text-shadow:1px 1px #000;
}

.sc_recent_news .post_header {
	text-align:left;
}
.sc_recent_news .post_item .post_title {
	margin: 0;
}
.sc_recent_news .post_meta {
	margin-top: 0.3em;
	font-size:0.8462em;
	line-height:1.5em;
}
.sc_recent_news .post_meta_author,
.sc_recent_news .post_meta_date {
	display:inline-block;
}
.sc_recent_news .post_meta_date:before {
	content: '|';
	display:inline-block;
	margin:0 0.6em;
	position:relative;
	top: -1px;
}

.sc_recent_news .post_content {
	margin-top:1em;
}
.sc_recent_news .post_content p {
	margin:0;
}

.sc_recent_news .post_footer {
	margin-top: 1.2857em;
	overflow:hidden;
}
.sc_recent_news .post_counters {
	text-align:left;
	float:none;
	width: 100%;
	line-height:1.8em;
}
.sc_recent_news .post_counters_item,
.sc_recent_news .post_counters .post_edit a {
	padding:0 1em;
	font-size:0.8462em;
	margin-left:0 !important;
	margin-right:0.5em;
	float:left;
}
.sc_recent_news .post_counters_item .post_counters_number {
	margin-left:0.5em;
}
.sc_recent_news .post_counters .post_edit:before {
	display:none;
}
.sc_recent_news .post_counters .post_edit a:before {
	content:'\e8bb';
	font-family:'fontello';
	display:inline-block;
	margin-right:0.5em;
}

.sc_recent_news .post_delimiter {
	margin-bottom: 2.3077em;
}
.sc_recent_news .post_delimiter:before {
	content: ' ';
	display:block;
	height:0;
	border-top: 1px solid #eee;
}

/* Style Excerpt */
.sc_recent_news_style_news-excerpt {
	overflow:hidden;
}
.sc_recent_news_style_news-excerpt .post_item {
	padding-bottom:2.3077em;
	border-bottom: 1px solid #eee;
}
.sc_recent_news_style_news-excerpt .post_featured {
	margin-bottom:0;
    margin-right: 1em;
	float:left;
	width:33.3333%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_recent_news_style_news-excerpt .post_body {
	overflow:hidden;
	float:left;
	width:66.6667%;
}
.sidebar_show .sc_recent_news_style_news-excerpt .post_featured,
.vc_column_container .sc_recent_news_style_news-excerpt .post_featured,
.columns_wrap .sc_recent_news_style_news-excerpt .post_featured {
	width:48%;
}
.sidebar_show .sc_recent_news_style_news-excerpt .post_body,
.vc_column_container .sc_recent_news_style_news-excerpt .post_body,
.columns_wrap .sc_recent_news_style_news-excerpt .post_body {
	width:48%;
}
.post_item_excerpt .post_featured {
    border-radius: 2em;
}
.post_item_excerpt .hover_icon:after {
    border-radius: 2em;
}


/* Style Portfolio & Announce */
.sc_recent_news_style_news-portfolio .columns_wrap {
	margin-right: -0.4615em !important;
}
.sc_recent_news_style_news-portfolio [class*="column-"] {
	padding: 0 0.4615em 0.4615em 0 !important;
}
.sc_recent_news_style_news-portfolio .post_item,
.sc_recent_news_style_news-portfolio .post_featured,
.sc_recent_news_style_news-announce .post_item,
.sc_recent_news_style_news-announce .post_featured {
	margin-bottom:0 !important;
}
.sc_recent_news_style_news-portfolio .post_featured .post_info,
.sc_recent_news_style_news-announce .post_featured .post_info {
	padding: 1em 1.5em;
}
.sc_recent_news_style_news-announce {					overflow:hidden; }
.sc_recent_news_style_news-announce .post_item {		float:left; }
.sc_recent_news_style_news-announce .post_size_full {	width:100%; height: 432px; }
.sc_recent_news_style_news-announce .post_size_big {	width:50%; height: 216px; }
.sc_recent_news_style_news-announce .post_size_medium {	width:50%; height: 108px;  }
.sc_recent_news_style_news-announce .post_size_small {	width:25%; height: 108px; }
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full { height: 656px; }
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big { height: 328px;  }
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small { height: 164px;  }



/* Services
-------------------------------------------------------------- */
.sc_services_item .sc_services_item_title {
	margin:1em 0 0.7em;
	font-size:1.2857em;
}
.sc_services .sc_services_title{
    margin-bottom: 1em;
}
.sc_services_item .sc_services_item_description {
	line-height:1.75em;
	overflow:hidden;
}
.sc_services_item .sc_services_item_description p {
	margin-bottom:0;
}
.sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{
    content: '...';
    display: block;
    position: relative;
    font-size: 1.4em;
    letter-spacing: 2px;
    margin-top: 0.85em;
    margin-bottom: 0.85em;
}

.sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{
    margin-top: 0.3em;
    margin-bottom: 0.5em;
}
.sc_services_style_services-1 .sc_services_item_title {
    margin: 1.3em 0 0.85em;
    font-size: 1.4em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item .sc_services_item_description p{
    line-height: 2em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item_title{
    margin: 1.3em 0 0.8em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item .sc_services_item_description p:after{
    margin-top: 0.6em;
}
.sc_services_item .sc_icon {
	display: block;
    width: 7em;
    height: 7em;
    line-height: 7em;
	margin:0 auto;
	text-align:center;
	-webkit-border-radius: 2em;
	   -moz-border-radius:  2em;
			border-radius:  2em;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.sc_services_item .sc_icon:before {
	font-size:2em;
}
.sc_services_item .sc_services_item_readmore {
	display:block;
	margin-top: 1em;
}
.sc_services_item .sc_services_item_readmore span {
	display:inline-block;
	margin-left:0.5em;
}

.sc_services_style_services-1 .sc_services_item {
	text-align:center;
	padding: 2.5em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item {
	padding:0;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item_content {
	padding:0 2.5em 2.5em;
}
.sc_services_style_services-1.sc_services_type_images .sc_services_item_title {
	margin-top:0;
}

.sc_services_style_services-2 .sc_icon,
.sc_services_style_services-2.sc_services_type_images .sc_services_item_featured {
	float:left;
	margin-right:2.2857em;
}
.sc_services_style_services-2.sc_services_type_images .sc_services_item_featured {
	width:30%;
	min-height:4em;
}
.sc_services_style_services-2 .sc_services_item_title {
	margin-top:0;
}
.sc_services_style_services-3 .sc_services_item_title {
	text-align:center;
	text-transform:uppercase;
	font-weight:400;
	font-size:1em;
}
.sc_services_style_services-4 .sc_services_item {
	margin-bottom:0.5em;
}
.sc_services_style_services-4 .sc_icon {
	width:1.5em;
	height:1.5em;
	line-height:1.4em;
	margin:0 0.5em 0 0;
	float:left;
}
.sc_services_style_services-4 .sc_icon:before {
	font-size:0.8571em;
	margin-right:0;
}
.sc_services_style_services-4 .sc_services_item_title {
	margin: 0;
	font-size:1em;
	line-height:1.2857em;
}
.sc_services_style_services-4 .sc_services_button {
	margin-top:3em;
}
.sc_services_style_services-5 .sc_service_container {
	position: relative;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item {
    margin-right: 48%;
    position: relative;
    top: 1.8em;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
    margin-left: 48%;
	margin-right: 0;
}
.sc_services_style_services-5 .sc_services_item.sc_services_item_1, .sc_services_style_services-5 .sc_services_item.sc_services_item_2{
     margin-top: 4.3em;
 }
.sc_services_style_services-5 .sc_services_item.sc_services_item_3, .sc_services_style_services-5 .sc_services_item.sc_services_item_4{
    margin-top: 3.6em;
    top: 0!important;
}
.sc_services_style_services-5 .sc_services_item .sc_icon {
	margin-bottom:2.2857em;
    width: 3.5em;
    height: 3.5em;
    line-height: 3.5em;
	z-index: 1000;
}
.sc_services_style_services-5 .sc_services_item .sc_icon :before {
    font-size: 2em;
}
.sc_services_style_services-5 .sc_service_container .sc_services_image{
	position: absolute;
    width: 43%;
    left: 50%;
	top:57%;
    transform: translateY(-50%) translateX(-50%);
	text-align: center;
}
.sc_services_style_services-5 .sc_icon {
	border: 2px solid #ddd;
    border-radius: 50%;
}

.sc_services_style_services-5 .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_services_item_featured {
	float:left;
	margin-right:2.2857em;
	margin-left: 0;
}
.sc_services_style_services-5 .sc_service_container .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_service_container .sc_services_item_featured {
	float:right;
	margin-left:2.2857em;
	margin-right:0;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_featured {
	float:left;
	margin-right:2.2857em;
	margin-left: 0;
}
.sc_services_style_services-5  .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_content{
	text-align: left;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item_content{
	text-align: right;
}
.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_content{
	text-align: left;
}
/* aligment left */
.sc_services_style_services-5 .sc_service_container.sc_align_left .sc_services_image {
    left: 0;
    transform: translateY(-50%) translateX(0%);
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap > .column-1_2 .sc_services_item, 
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
    margin-left: 0;
    margin-right: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .sc_icon, 
.sc_services_style_services-5.sc_services_type_images .sc_service_container.sc_align_left .sc_services_item_featured {
    float: left;
    margin-right: 2.2857em;
    margin-left: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap > .column-1_2 .sc_services_item_content {
    text-align: left;
}
.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap {
    margin-left: 33%;
}
/* aligment right */
.sc_services_style_services-5 .sc_service_container.sc_align_right .sc_services_image {
    right: 0;
	left: auto;
    transform: translateY(-50%) translateX(0%);
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2 .sc_services_item, 
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
    margin-left: 0;
    margin-right: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_icon,
.sc_services_style_services-5.sc_services_type_images .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_featured {
    float: right;
    margin-left: 2.2857em;
    margin-right: 0;
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2 .sc_services_item_content {
    text-align: right;
}
.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap {
    margin-right: calc(33% - 30px);
}
.sc_services_style_services-5 .sc_item_title {
    text-align: center;
    margin-bottom: 0.8em;
}
.sc_services_style_services-5 .sc_services_item .sc_services_item_title{
    font-size: 1.5em;
    position: relative;
    top: 0.05em;
}
.sc_services_style_services-5 .sc_services_item .sc_services_item_description p{
    line-height: 2em;
    margin-top: -0.5em;
}
.sc_services_style_services-5 .sc_item_button{
    margin-top: 8em;
}





/* Skills
-------------------------------------------------------------- */
.sc_skills {
	width: 100%;
}

.sc_skills .sc_skills_button {
	margin-top:3em;
}

/* Type Counter */
.sc_skills_counter {
	text-align: center;
}
.sc_skills_counter .sc_skills_item {
	text-align: center;
	display: inline-block;
	padding: 0 10px;
}
.sc_skills_counter .sc_skills_item .sc_skills_icon {
	font-size: 3em;
	font-weight:300;
	line-height:1.2857em;
	margin-bottom:0.5em;
}
.sc_skills_counter .sc_skills_item .sc_skills_count {
	font-size: 3.2143em;
	line-height: 1em;
}
.sc_skills_counter .sc_skills_item .sc_skills_count .sc_skills_total {
	position:relative;
	z-index:1;
}
.sc_skills_counter .sc_skills_item .sc_skills_info {
	color: #222222;
	font-size: 1.125em;
	line-height: 1.2857em;
	margin: 10px 0;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 {
	width:100%;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 2.25em 1em 1em;
    border-radius: 2.1em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count {
	font-weight: 900;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info {
	margin-top:1.1em;
	position:relative;
	text-transform:capitalize;
    font-size: 0.9285em;
    line-height: 1.75em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info .sc_skills_label {
    min-height:3.5em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_total{
    font-size: 2.8571em;}

.sc_skills_counter .sc_skills_item.sc_skills_style_2 .sc_skills_count {
	font-weight: 300;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count { 
	font-weight: 300;
	color:#fff;
	padding: 0 10px;
	position: relative;
	overflow: hidden;
	font-size: 3.75em;
	height: 1.3333em;
	line-height: 1.3333em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count:before {
	content: ' ';
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
    border-top: 1.3333em solid #fff; 
    border-right: 1.6667em solid transparent;	
	opacity: 0.2;
	filter: alpha(opacity=20);
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count {
	font-weight: 300;
	color:#fff;
	padding: 0 10px;
	font-size: 3.75em;
	line-height: 1.3333em;
	height: 1.3333em;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info {
	color: #fff;
	padding: 10px;
	margin:0;
	position: relative;
	border-top: 1px solid #fff;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info:before {
	position: absolute;
	top: 0;
	left: 0;
	content: ' ';
	background-color: #000;
	z-index: 1;
	width: 100%;
	height: 100%;  
	opacity: 0.1;			
	filter: alpha(opacity=10);
}
.sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info .sc_skills_label {
	position:relative;
	z-index:2;
}

.sc_skills_counter .sc_skills_button {
	margin-top:3em;
}

/* Type Bar */
.sc_skills_bar .sc_skills_item {
	height:4px;
	line-height: 4px;
	background-color:#f4f7f9;
	position:relative;
    margin-bottom: 1.5em;
}
.sc_skills_bar .sc_skills_item .sc_skills_count {
	text-align:right;
	width:0;
	height: 4px;
	color:#fff;
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	z-index:2;
}
.sc_skills_bar .sc_skills_info {
	margin: 10px 0 0 0;
}
.sc_skills_bar .sc_skills_info .sc_skills_label {

    font-size: 0.9285em;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_item {
	height: 30em;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_item .sc_skills_count {
	width: 100%;
	height: auto;
	top: auto; 
	bottom: 0;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_total { 
	text-align: center;
	font-size: 1.25em;
	width: 100%;
	line-height: 3em;
	font-weight: 300;
}
.sc_skills_bar.sc_skills_vertical .sc_skills_columns .sc_skills_column {
	text-align:center;
}
.sc_skills_bar.sc_skills_horizontal .sc_skills_columns .sc_skills_info { 
	margin-top: 0;
}
.sc_skills_bar.sc_skills_horizontal .sc_skills_total {
	text-align: right;
	padding-right: 10px;
}

.sc_skills_bar.sc_skills_horizontal .sc_skills_total {
    font-size: 0.9285em;
    padding-right: 10px;
    position: relative;
    text-align: right;
    top: -14px;
}


/* Type Pie */
.sc_skills_pie.sc_skills_compact_off {
	text-align: center;
	display: inline-block;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
	font-size: 1.125em;
}

.sc_skills_pie.sc_skills_compact_on {
	overflow:hidden;
}
.sc_skills_pie.sc_skills_compact_on .sc_skills_item {
	min-width:100px;
	min-height:100px;
	float:left;
	width:50%;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_item {
    position: relative;
    padding: 0 40px 0 40px;
}
.sc_skills_pie.sc_skills_compact_off .sc_skills_total {
    font-size: 2.8571em;
    position: absolute;
    text-align: center;
    top: 40%;
    left: 0;
    font-weight: 300;
    width: 100%;
    z-index: 10;
}
.sc_skills_pie.sc_skills_compact_off  .sc_skills_label{
    font-size: 1.1428em;
    font-weight: 600;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1{
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.sc_skills_counter .sc_skills_item.sc_skills_style_1:hover{
    background-position: 100%;
}

/* Type Arc */
.sc_skills_arc {
	overflow:hidden;
}
.sc_skills_arc .sc_skills_arc_canvas {
	min-width:100px;
	min-height:100px;
	float:left;
	width:60%;
}
.sc_skills_arc .sc_skills_legend {
	width:40%;
}


/* Legend */
.sc_skills_legend {
	width:50%;
	float:right;
}
.sc_skills_legend_marker {
	display: inline-block;
	margin:0 10px 2px 0;
	width:6px;
	height:6px;
	line-height:1.5em;
	overflow:hidden;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_skills_legend_title,
.sc_skills_legend_value {
	color: #222222;
}
.sc_skills_legend_value {
	display:inline-block;
	margin-left:6px;
}
.sc_skills_legend_value:before {
	content: '(';
}
.sc_skills_legend_value:after {
	content: ')';
}



/* Slider
-------------------------------------------------------------- */

.sc_slider {
	overflow:hidden;
}
.sc_slider_height_auto {
 -webkit-transition: height ease .5s;
    -moz-transition: height ease .5s;
     -ms-transition: height ease .5s;
      -o-transition: height ease .5s;
         transition: height ease .5s; 
}
.sc_slider_swiper {
	position: relative;
	overflow: hidden;
	visibility: hidden;
	max-width:100%;
}
.sc_slider_swiper.inited {
	visibility: visible;
}
/*
.sc_slider_swiper .slides {
	overflow: hidden;
}
*/
.sc_slider_swiper .slides .swiper-slide {
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
    border-radius: 2.5em;

/*	Not work in IE9
	position: absolute; 
*/

/*	Work in IE9 */
	float: left;
	min-height: 8em;
}
/*
.sc_slider_swiper.sc_slider_bg:not(.sc_slider_height_auto) .slides .swiper-slide {
	min-height:20em;
}
*/
.sc_slider_swiper .slides .swiper-slide > img {
	width: 100%;
	height: auto;
}

/* Prev / Next controls */
.sc_slider_controls_wrap {
	color:#ffffff;
	position:absolute;
	z-index: 10;
	left:0;
	right:0;
	top:50%;
	height:0;
}
.sc_slider_nocontrols .sc_slider_controls_wrap {
	display:none !important;
}
.sc_slider_controls_wrap a {
	display:block;
	cursor:pointer;
	width:2.6em;
	height:2.6em;
	line-height: 2.6em;
    border-radius: 50%;
	font-size: 1.5em;
    border: 2px solid;
	text-align:center;
	-webkit-transition: all ease .5s;
	   -moz-transition: all ease .5s;
	    -ms-transition: all ease .5s;
	     -o-transition: all ease .5s;
	        transition: all ease .5s;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
	opacity: 0;
	filter: alpha(opacity=0);
}
.sc_slider_controls_wrap .sc_slider_prev {
	float:left;
	margin-left: -100px;
}
.sc_slider_controls_wrap .sc_slider_next {
	float:right;
	margin-right: -100px;
}
.sc_slider_controls_wrap a:before {
	font-family:'fontello';
}
.sc_slider_controls_wrap .sc_slider_next:before {
	content:'\e836';
}
.sc_slider_controls_wrap .sc_slider_prev:before {
	content:'\e837';
}
.sc_slider_swiper:hover .sc_slider_controls_wrap a,
.sc_slider_swiper + .sc_slider_controls_wrap a {
	opacity: 1;
	filter: alpha(opacity=100);
}
.sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_prev {
	margin-left: 1em;
}
.sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_next {
	margin-right: 1em;
}

/* Side controls */
.sc_slider_swiper + .sc_slider_controls_wrap a {
	width:3em;
	height:3em;
	line-height: 3em;
	font-size: 1.5em;
}
.sc_slider_swiper + .sc_slider_controls_wrap .sc_slider_prev {
	margin-left: 0.8em;
}
.sc_slider_swiper + .sc_slider_controls_wrap .sc_slider_next {
	margin-right: 0.8em;
}

/* Top controls */
.sc_slider_swiper.sc_slider_controls_top + .sc_slider_controls_wrap {
	top:6px;
	right: 6px;
	text-align:right;
	cursor:default;
	-webkit-transform: none;
	   -moz-transform: none;
	        transform: none;
}
.sc_slider_swiper.sc_slider_controls_top + .sc_slider_controls_wrap .sc_slider_next,
.sc_slider_swiper.sc_slider_controls_top + .sc_slider_controls_wrap .sc_slider_prev {
	display:inline-block;
	float:none;
	margin-left: 6px;
	margin-right: 0;
}


/* White circles with accent hover */
.sc_slider_nopagination .sc_slider_pagination_wrap {
	display:none !important;
}
.sc_slider_swiper .sc_slider_pagination_wrap {
	position: absolute;
	z-index:10;
	height:12px;
	margin: 0;
	left: 0;
	right: 0;
	bottom: -12px;
	text-align:center;
	-webkit-transition: all ease .5s;
	-moz-transition: all ease .5s;
	-ms-transition: all ease .5s;
	-o-transition: all ease .5s;
	transition: all ease .5s;
}
.sc_slider_swiper:hover .sc_slider_pagination_wrap {
	bottom: 20px;
	-webkit-transition: all ease .5s .5s;
	-moz-transition: all ease .5s .5s;
	-ms-transition: all ease .5s .5s;
	-o-transition: all ease .5s .5s;
	transition: all ease .5s .5s;
}
.sc_slider_swiper .sc_slider_pagination_wrap span {
	display:inline-block;
	vertical-align:top;
	border: 2px solid;
	background-color:transparent;
	width:8px;
	height:8px;
	margin:0 8px 0 0;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
	cursor:pointer;
	opacity: 1;
}
.sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,
.sc_slider_swiper .sc_slider_pagination_wrap span:hover {
	background-color:#ddd;
}

/* Full pagination - posts titles */
.sc_slider_pagination_area {
	overflow:hidden;
	position:relative;
}

.sc_slider_pagination_area .sc_slider {
	float:left;
}
.sc_slider_pagination_area:not(.sc_slider_pagination_over) .sc_slider {
	width:67%;
}
.sc_slider_pagination_area .sc_slider_pagination {
	float:left;
	width:33%;
	position:static;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_slider_pagination_over .sc_slider_pagination {
	position:absolute;
	width:40%;
	left: auto;
	right:-40%;
	top:0;
	bottom:auto;
	float:none;
	background-color:rgba(255,255,255, 0.8);
	-webkit-transition: all ease .5s;
	-moz-transition: all ease .5s;
	-ms-transition: all ease .5s;
	-o-transition: all ease .5s;
	transition: all ease .5s;
}
.sc_slider_pagination_over:hover .sc_slider_pagination {
	right:0;
}
.sc_slider_pagination_over .sc_slider_pagination .post_item {
	background-color:transparent !important;
}

.slider_fullwide .sc_slider_pagination_over .sc_slider_pagination,
.slider_fullscreen .sc_slider_pagination_over .sc_slider_pagination {
	width: 20%;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item {
	padding: 1em;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item+.post_item {
	margin:0;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item.active {
	background-color: rgba(0,0,0,0.1) !important;
}
.sc_slider_pagination_area .sc_slider_pagination .post_item .post_info .post_info_item + .post_info_item:before {
	content: "|";
	margin:0 5px;
}

.sc_slider_pagination.widget_area .post_item + .post_item {
	border-top-width: 1px;
	border-top-style: solid;
}

/* Info block*/
.sc_slider_swiper .sc_slider_info {
	max-width:80%;
	min-width:50%;
	max-height:100px;
	padding:1em 1.5em;
	overflow:hidden;
	position:absolute;
	right:0;
	bottom:0;
	background-color: rgba(30,170,206, 0.8);
	-webkit-transition: all ease .5s .5s;
	-moz-transition: all ease .5s .5s;
	-ms-transition: all ease .5s .5s;
	-o-transition: all ease .5s .5s;
	transition: all ease .5s .5s;
	margin-bottom:0;
}
.sc_slider_pagination_area .sc_slider .sc_slider_info {
	/*left:0;*/
	max-width:100%;
}

.sc_slider_swiper:hover .sc_slider_info.sc_slider_info_fixed,
.sc_slider_swiper:hover .sc_slider_info:hover,
.sc_slider_swiper .sc_slider_info:hover {
	margin-bottom:0 !important;
}
.sc_slider_pagination_over:hover .sc_slider_info,
.sc_slider_swiper:hover .sc_slider_info {
	-webkit-transition: all ease .5s;
	-moz-transition: all ease .5s;
	-ms-transition: all ease .5s;
	-o-transition: all ease .5s;
	transition: all ease .5s;
	margin-bottom:-130px !important;
}
	.sc_slider_swiper .slides .swiper-slide .sc_slider_info a {
		display:inline;
		min-height:0;
		color:#ffffff;
	}
	.sc_slider_swiper .slides .swiper-slide .sc_slider_info a:hover {
		color:#cccccc;
	}
	.sc_slider_swiper .sc_slider_info .sc_slider_subtitle {
		margin:0;
		padding:0;
		text-transform:uppercase;
		font-size:1.5em;
		line-height:1.2857em;
		margin:0 0 4px;
	}
	.sc_slider_swiper .sc_slider_info .sc_slider_reviews {
		margin:0 0 4px;
	}
	.sc_slider_swiper .sc_slider_info .sc_slider_reviews.after_category {
		display:inline-block;
		position: relative;
		margin:0 0 0 2px;
		top: 2px;
		font-size:0.8765em;
	}
	.sc_slider_reviews.post_rating .reviews_value {
		display:none;
	}
	.sc_slider_reviews.post_rating .reviews_stars_bg,
	.sc_slider_reviews.post_rating .reviews_stars_hover,
	.sc_slider_reviews.post_rating .reviews_value {
		color: #ffffff !important;
	}
	.sc_slider_swiper .sc_slider_info .sc_slider_descr {
		color:#ffffff;
		line-height:16px;
	}
	.sc_slider_swiper .sc_slider_info .sc_slider_category {
		display:inline-block;
		vertical-align:top;
		text-transform:uppercase;
		position:relative;
		/*max-width:50%;*/
		/*min-width:135px;*/
		font-size: 0.8765em;
		height: 2em;
		line-height:2em;
		padding:0 2em 0 0;
		text-align:left;
		overflow:hidden;
	}
	.sc_slider_pagination_area .sc_slider .sc_slider_info .sc_slider_category {
		min-width:0;
	}
.slider_fullscreen .sc_slider_swiper .sc_slider_info,
.slider_main .sc_slider_swiper .sc_slider_info {
	max-width:50%;
	min-width:40%;
	padding:30px;
	max-height:150px;
}
.slider_fullscreen .sc_slider_swiper:hover .sc_slider_info,
.slider_main .sc_slider_swiper:hover .sc_slider_info {
	margin-bottom:-180px;
}
.slider_fullscreen .sc_slider_swiper:hover .sc_slider_info.sc_slider_info_fixed,
.slider_fullscreen .sc_slider_swiper:hover .sc_slider_info:hover,
.slider_fullscreen .sc_slider_swiper .sc_slider_info:hover,
.slider_main .sc_slider_swiper:hover .sc_slider_info.sc_slider_info_fixed,
.slider_main .sc_slider_swiper:hover .sc_slider_info:hover,
.slider_main .sc_slider_swiper .sc_slider_info:hover {
	margin-bottom:0;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info .sc_slider_category,
.slider_main .sc_slider_swiper .sc_slider_info .sc_slider_category {
	font-size:14px;
	font-weight:300;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info .sc_slider_subtitle,
.slider_main .sc_slider_swiper .sc_slider_info .sc_slider_subtitle {
	font-size:21px;
	line-height:28px;
	font-weight:300;
}
.slider_fullscreen .sc_slider_swiper .sc_slider_info .sc_slider_descr,
.slider_main .sc_slider_swiper .sc_slider_info .sc_slider_descr {
	font-size:13px;
	line-height:18px;
	font-weight:300;
}






/* Socials icons
-------------------------------------------------------------- */
.sc_socials {
	overflow:hidden;
	display:inline-block;
	margin-right:-1.25em;
}
.sc_socials .sc_socials_item {
	display:inline-block;
	margin: 0 1.25em 0.5em 0;
	outline:none;
}
.sc_socials a {
	display:inline-block;
	outline:none;
}
.sc_socials a,
.sc_socials a .sc_socials_hover {
	overflow:hidden;
	width:4em;
	height:4em;
	line-height:4em;
	text-align:center;
	overflow:hidden;
	position:relative;
	-webkit-border-radius: 6px;		/* Hack for Chrome - show sharp corners while animation */
	background-repeat: no-repeat;
	background-position: 0 -4em;
	-webkit-background-size: 4em 8em;
	   -moz-background-size: 4em 8em;
	     -o-background-size: 4em 8em;
	        background-size: 4em 8em;
}
.sc_socials .social_icons span {
	font-size:4em;
	line-height:inherit;
}
.sc_socials.sc_socials_size_tiny {
	margin-right:-1em;
}
.sc_socials.sc_socials_size_tiny .sc_socials_item {
	margin: 0.25em 1em 0.25em 0;
}
.sc_socials.sc_socials_size_small {
	margin-right:-0.5em;
}
.sc_socials.sc_socials_size_small .sc_socials_item {
	margin:0.25em 0.65em 0.25em 0;
}
.sc_socials.sc_socials_size_medium {
	margin-right:-0.625em;
}
.sc_socials.sc_socials_size_medium .sc_socials_item {
	margin:0.25em 0.625em 0.25em 0;
}
.sc_socials.sc_socials_shape_round .sc_socials_item {
	margin:0 0.25em 0.25em 0;
}
.sc_socials.sc_socials_shape_round.sc_socials_size_medium .sc_socials_item {
	margin:0.25em 0.5em 0.25em 0;
}
.sc_socials.sc_socials_size_tiny a {
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
.sc_socials.sc_socials_size_tiny a .sc_socials_hover {
	-webkit-border-radius: 2px;		/* Hack for Chrome - show sharp corners while animation */
}
.sc_socials.sc_socials_size_small a,
.sc_socials.sc_socials_size_medium a {
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}
.sc_socials.sc_socials_size_small a .sc_socials_hover,
.sc_socials.sc_socials_size_medium a .sc_socials_hover {
	-webkit-border-radius: 4px;		/* Hack for Chrome - show sharp corners while animation */
}
.sc_socials.sc_socials_shape_round a {
	display:block;
	text-align:center;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_socials_shape_round.sc_socials_size_tiny a .sc_socials_hover {
	-webkit-border-radius: 50%;		/* Hack for Chrome - show sharp corners while animation */
}
.sc_socials_shape_round.sc_socials_size_small a .sc_socials_hover,
.sc_socials_shape_round.sc_socials_size_medium a .sc_socials_hover {
	-webkit-border-radius: 50%;		/* Hack for Chrome - show sharp corners while animation */
}
.sc_socials.sc_socials_size_tiny .social_icons span {
	font-size: 1.2em;
	line-height:inherit;
}
.sc_socials.sc_socials_size_tiny a,
.sc_socials.sc_socials_size_tiny a .sc_socials_hover {
	width:1.2em;
	height:1.2em;
	line-height:1.2em;
	background-position: 0 -1.2em;
	-webkit-background-size: 1.2em 2.4em;
	   -moz-background-size: 1.2em 2.4em;
	     -o-background-size: 1.2em 2.4em;
	        background-size: 1.2em 2.4em;
}
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_tiny a,
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_tiny a .sc_socials_hover {
	width:2.5em;
	height:2.5em;
	line-height:2.5em;
}
.sc_socials.sc_socials_size_small .social_icons span {
	font-size:1.3em;
	line-height:inherit;
}
.sc_socials.sc_socials_size_small a,
.sc_socials.sc_socials_size_small a .sc_socials_hover {
	width:2em;
	height:2em;
	line-height:2em;
	background-position: 0 -2em;
	-webkit-background-size: 2em 4em;
	   -moz-background-size: 2em 4em;
	     -o-background-size: 2em 4em;
	        background-size: 2em 4em;
}
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a,
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a .sc_socials_hover {
	width:4em;
	height:4em;
	line-height:4em;
}
.sc_socials.sc_socials_size_medium .social_icons span {
	font-size:2em;
	line-height:inherit;
}
.sc_socials.sc_socials_size_medium a,
.sc_socials.sc_socials_size_medium a .sc_socials_hover {
	width:2.5em;
	height:2.5em;
	line-height:2.5em;
	background-position: 0 -2.5em;
	-webkit-background-size: 2.5em 5em;
	   -moz-background-size: 2.5em 5em;
	     -o-background-size: 2.5em 5em;
	        background-size: 2.5em 5em;
}
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_medium a,
.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_medium a .sc_socials_hover {
	width:5em;
	height:5em;
	line-height:5em;
}
.sc_socials a .sc_socials_hover,
.sc_socials.sc_socials_size_tiny a .sc_socials_hover,
.sc_socials.sc_socials_size_small a .sc_socials_hover,
.sc_socials.sc_socials_size_medium a .sc_socials_hover {
	position: absolute;
	display:block;
	left:0;
	top:0;
	background-position: 0 0;
	     opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.sc_socials a:hover .sc_socials_hover {
	     opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}
.sc_socials .sc_socials_item_custom a,
.sc_socials .sc_socials_item_custom a .sc_socials_hover {
	background-position: 50% 50%;
	background-size: contain;
}


/* Share buttons */
.sc_socials .sc_socials_item {
	vertical-align:top;
    margin: 0.25em 0.85em 0.25em 0;
}
.sc_socials.sc_socials_share .share_caption {
	display:inline-block;
	font-size:1.25em;
	line-height:2em;
	color: #222222;
	margin-right:0.6em;
}
.single .sc_socials .social_icons{
    border-radius: 50%;
    padding: 1em;
}
.post_info_share .sc_socials .social_icons{
    border-radius: 50%;
    padding: 1.3em;
}
.sc_socials .social_icons.social_facebook{
    background-color: #2b57b3!important;
}
.sc_socials .social_icons.social_linkedin{
    background-color: #d73d32!important;
}
.sc_socials .social_icons.social_gplus{
    background-color: #d73d32!important;
}
.sc_socials .social_icons.social_youtube{
    background-color: #d73d32!important;
}
.sc_socials .social_icons.social_twitter{
    background-color: #35cdff!important;
}
.sc_socials.sc_socials_size_small a, .sc_socials.sc_socials_size_medium a{
    border-radius: 50%;
    padding: 1em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical {
	position:fixed;
	left:0px;
	top:18%;
	z-index:9998;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item {
	display:block;
	margin-top:6px;
	line-height:1em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .share_caption {
	display:none;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a {
	padding:0.25em;
}
.sc_socials.sc_socials_share .share_counter{
	display:inline-block;
	vertical-align:top;
	margin-left:6px;
	position:relative;
	background:#fff;
	color:#666;
	padding:0 8px;
	line-height:3.8em;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical .share_counter {
	line-height:4.2em;
}
.sc_socials.sc_socials_share .share_counter:before{
	content:" ";
	position:absolute;
	z-index:1;
	top:50%;
	left:-4px;
	width:6px;
	height:6px;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background:#fff;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.sc_socials.sc_socials_share.sc_socials_size_small .share_counter{
	line-height:2em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical.sc_socials_size_small .share_counter{
	line-height:2.4em;
}
.sc_socials.sc_socials_share.sc_socials_size_medium .share_counter{
	line-height:2.3em;
}
.sc_socials.sc_socials_share.sc_socials_dir_vertical.sc_socials_size_medium .share_counter{
	line-height:2.8em;
}





/* Table
-------------------------------------------------------------- */
.sc_table table {
	width: 100%;
}
.sc_table table th,
.sc_table table td {
	padding: 1em;
    line-height: 3.7em;
}
.sc_table table tr:first-child{
    font-weight: 600;
}
.help_table .sc_price_block .sc_price_block_description {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -o-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    margin-left:0;
    height: 13em;
}





/* Tabs
-------------------------------------------------------------- */
.sc_tabs .sc_tabs_titles {
	overflow:hidden;
	margin:0;
	padding:0;
}
.sc_tabs .sc_tabs_titles li {
	padding:0;
	list-style:none;
	font-size:1.5em;
	float:left;
}
.sc_tabs .sc_tabs_titles li:before {
	display:none;
}
.sc_tabs .sc_tabs_titles li a {
	display:block;
	padding:0.5833em;
}
.sc_tabs .sc_tabs_content {
	display: none;
	overflow:hidden;
}

/* Style 1 */
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles,
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li {
	margin-bottom: 0;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a {
	border: 1px solid #e4e7e8;
	position:relative;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,
.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after {
	content: ' ';
	position:absolute;
	bottom:-1px;
	left:0;
	right:0;
	height: 5px;
}

.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li+li {
	margin-left: -1px;
}
.sc_tabs.sc_tabs_style_1 .sc_tabs_content {
	margin-top:-1px;
	padding: 1.5em;
	border: 1px solid #e4e7e8;
}

/* Style 2 */
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li {
	margin:0 0 0.6667em 0;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li+li {
	margin-left: 0.6667em;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
	text-transform:uppercase;
	border:2px solid #ddd;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,
.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a {
	background-color: transparent !important;
}
.sc_tabs.sc_tabs_style_2 .sc_tabs_content {
	padding: 1.5em;
	border: 1px solid #e4e7e8;
}



/* Team
-------------------------------------------------------------- */
.sc_team_item .sc_team_item_info .sc_team_item_title {
	margin:0 0 -0.1em 0;

}
.sc_team_item .sc_team_item_info .sc_team_item_title a {
	font-weight:600;
}
.sc_team_item .sc_team_item_info .sc_team_item_position {
	margin-top:0;
    font-weight: 600;
    font-size: 1.1428em;
}
.sc_team_item .sc_team_item_info .sc_team_item_description {
	margin-top:1em;
	line-height:1.75em;
	overflow:hidden;
}
.sc_team_item .sc_team_item_info .sc_socials {
	margin-top:1.5em;
}
.sc_team_item .sc_team_item_avatar img {
	width: 100%;
}
.sc_team_style_team-3 .sc_team_item .sc_team_item_avatar img {
    border-radius: 2em 2em 0 0;
}
.sc_team_style_team-1 .sc_slider_swiper .sc_team_item,
.sc_team_style_team-2 .sc_slider_swiper .sc_team_item {
	padding-right: 2em;
}

.sc_team_style_team-1 .sc_team_item_info,
.sc_team_style_team-3 .sc_team_item_info {
	padding-top: 2.3em;
    border-radius: 0 0 2em 2em;
    text-align: center;
    padding-bottom: 2.5em;
}
.sc_team_style_team-3 .sc_team_item_avatar,
.sc_team_style_team-4 .sc_team_item_avatar {
	position:relative;
}
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover {
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	opacity: 0;
	filter: alpha(opacity=0);
	text-align:center;
}
.sc_team_style_team-3 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-4 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_socials,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
	overflow:hidden;
	-webkit-transition: all ease .3s;
	   -moz-transition: all ease .3s;
	    -ms-transition: all ease .3s;
	     -o-transition: all ease .3s;
	        transition: all ease .3s;
}
.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_socials,
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
	position:absolute;
	left:0;
	top:50%;
	width:100%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-top: 50px;
}
.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
	padding:1.5em;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.sc_team_style_team-3 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover .sc_team_item_socials,
.sc_team_style_team-4 .sc_team_item:hover .sc_team_item_avatar .sc_team_item_hover .sc_team_item_info {
	margin-top: 0;
}
.sc_team.sc_team_style_team-3 .sc_socials_item a{
    padding: 0.7em;
    margin-right: 0.5em;
}
.sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{
    border-radius: 2em 2em 0 0;
}
.sc_team .sc_team_descr{
    margin: 1.8em 0 2.5em 0;
}

/* Testimonials
-------------------------------------------------------------- */
.sc_testimonials_wrap {
	position:relative;
}
.sc_testimonials_wrap .sc_section_overlay {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	width:100%;
	padding:1.5em 0;
}
.sc_testimonial_item {
	text-align:center;
	padding: 0 5em;
}
.sc_testimonials .sc_columns .sc_testimonial_item {
	padding: 0;
}

.sc_testimonial_content {
	font-size:1.1428em;
	line-height:1.85em;
    font-weight: 400;
    border-radius: 2em;
}
.sc_testimonial_content p {
	margin:0;
}
.sc_testimonial_content p+p {
	margin-top:0.5em;
}
.sc_testimonials .sc_testimonial_avatar {
	overflow:hidden;
	margin:0 auto;
    width: 4.2em;
    height: 4.2em;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}

/* Style 1 */
.sc_testimonials_style_testimonials-1 .sc_testimonial_content p:first-child:before,
.sc_testimonials_style_testimonials-1 .sc_testimonial_content p:last-child:after {
	content: '"';
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_content {
	margin-bottom:1.5em;
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_avatar,
.sc_testimonials_style_testimonials-1 .sc_testimonial_author {
	display: inline-block;
	vertical-align:middle;
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_avatar {
	margin-right:0.75em;
}
.sc_testimonials_style_testimonials-1 .sc_testimonial_author_name,
.sc_testimonials_style_testimonials-1 .sc_testimonial_author_position {
	display:block;
	text-align:left;
}

/* Style 2 */
.sc_testimonials_style_testimonials-2 .sc_testimonial_content p:first-child:before,
.sc_testimonials_style_testimonials-2 .sc_testimonial_content p:last-child:after {
	content: '"';
}
.sc_testimonials_style_testimonials-2 .sc_testimonial_content {
	margin-bottom:1.5em;
}
.sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before {
	content:'-';
	display:inline-block;
	margin-right:0.5em;
}
.sc_testimonials_style_testimonials-2 .sc_testimonial_author_position {
	font-style:normal;
}

/* Style 3 */
.sc_testimonials_style_testimonials-3 .sc_testimonial_item {
	padding: 0 1em;
	line-height:1.4em;
	text-align:right;
}
.sc_testimonials_style_testimonials-3 .sc_slider_swiper .sc_testimonial_item {
	padding: 0;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_content {
	padding: 1em 1em 1em 3em;
	background-color:#ffffff;
	text-align:left;
	position:relative;
	margin-bottom:1em;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_content:after {
	content:' ';
	display:block;
	position:absolute;
	width: 0.8em;
	height: 0.8em;
	right: 1em;
	bottom:-0.4em;
	background-color:#ffffff;
	-webkit-transform:rotate(45deg);
	   -moz-transform:rotate(45deg);
	        transform:rotate(45deg);
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before,
.sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before {
	content: '\e8b6';
	font-family: 'fontello';
	font-size:1.3em;
	display:block;
	position: absolute;
    left: 1.9em;
    top: 1.9em;
	-webkit-transform:rotate(180deg);
	   -moz-transform:rotate(180deg);
	        transform:rotate(180deg);
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_avatar,
.sc_testimonials_style_testimonials-3 .sc_testimonial_author {
	display: inline-block;
	vertical-align:middle;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_avatar {
	margin-left: 0.75em;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_name,
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_position {
	display:block;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_name {
	font-size:1.2857em;
	font-weight:bold;
}
.sc_testimonials_style_testimonials-3 .sc_testimonial_author_position {
	font-style:italic;
}

/* Style 4 */
.sc_testimonials_style_testimonials-4 .sc_testimonial_item {
	padding: 1.5em !important;
	line-height:1.4em;
	text-align:left;
    margin-top: 2em;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content {
	position:relative;
	padding: 2.7em 3em 2.5em 4.6em;
}

.sc_testimonials_style_testimonials-4 .sc_testimonial_avatar,
.sc_testimonials_style_testimonials-4 .sc_testimonial_author {
	display: inline-block;
	vertical-align:middle;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_avatar {
    margin-right: 0.75em;
    margin-top: 1.95em;
    margin-left: 4.2em;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_name,
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_position {
	display:block;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_name {
	font-size:1.1428em;
    margin-top: 2em;
    font-weight: 600;
    margin-bottom: 1px;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_author_position {
	text-transform: capitalize;
    font-size:0.928em;
    font-weight: 400;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content{
    position: relative;
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{
    content: " ";
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-left: 1px solid;
    border-top: 1px solid;
    position: absolute;
    bottom: -9px;
    left: 5.1em;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{}

.sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{
    background-color: red;
}
.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{
    background-color: red;
}



/* Title
-------------------------------------------------------------- */
.sc_title {
	overflow: hidden;
	position:relative;
	padding-bottom:2px;
}
.sc_title.sc_align_center {
	text-align:center;
	margin-left:auto;
	margin-right:auto;
}

/* Underline */
.sc_title_underline {
	padding-bottom:16px;
}
.sc_title_underline:after {
	content:' ';
	display:block;
	position:absolute;
	border-top: 2px solid #222222;
	height:0;
	width:8%;
	min-width:2em;
	left:0;
	bottom:0.1em;
}
.sc_title_underline.sc_align_center:after {
	left:50%;
	-webkit-transform:translateX(-50%);
	   -moz-transform:translateX(-50%);
	        transform:translateX(-50%);
}
.sc_title_underline.sc_align_right:after {
	right:0;
	left:auto;
}

/* Divider */
.sc_title_divider { 
	position:relative; 
	padding-left: 5ex; 
	padding-right: 5ex;
	text-align:center;
}
.sc_title_divider .sc_title_divider_before,
.sc_title_divider .sc_title_divider_after {
	display:block;
	width:20%;
	height:1px;
	background-color:#222222;
	position:absolute;
	top: 50%;
}
.sc_title_divider .sc_title_divider_before {
	left:0;
}
.sc_title_divider .sc_title_divider_after {
	right:0;
}

/* Icon */
.sc_title_icon {
	display:inline-block;
}
.sc_title_icon_left {
	margin-right:0.5em;
}
.sc_title_icon_top {
	display:block;
}
.sc_title_icon img {
	width:auto;
}
.sc_title_icon_left img {
	vertical-align:middle;
}
.sc_title_icon_top img {
	vertical-align:baseline;
}
.sc_title_icon_small img {
	height: 1em;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}
.sc_title_icon_medium img {
	height: 2em;
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}
.sc_title_icon_large img {
	height: 3em;
	-webkit-border-radius: 10px;
	   -moz-border-radius: 10px;
			border-radius: 10px;
}



/* Toggles
-------------------------------------------------------------- */
.sc_toggles .sc_toggles_item {
	margin-bottom:1.25em;
}
.sc_toggles > .sc_toggles_item .sc_toggles_content {
	overflow: hidden;
	display: none;
}
.sc_toggles .sc_toggles_item .sc_toggles_title {
	position:relative;
	overflow:hidden;
	cursor:pointer;
	margin:0;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	    -ms-transition: all ease 0.3s;
	     -o-transition: all ease 0.3s;
	        transition: all ease 0.3s;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_items_counter:after {
	content:'. ';
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon {
	position:absolute;
	left:0;
	top:0;
	height:100%;
	padding:0;
	text-align:center;
	overflow:hidden;
	-webkit-transition: all ease 0.3s;
	   -moz-transition: all ease 0.3s;
	    -ms-transition: all ease 0.3s;
	     -o-transition: all ease 0.3s;
	        transition: all ease 0.3s;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon:before {
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translateX(-50%) translateY(-50%);
	   -moz-transform:translateX(-50%) translateY(-50%);
	        transform:translateX(-50%) translateY(-50%);
}
.sc_toggles .sc_toggles_item .sc_toggles_content {
	padding:1.5em 1.8em;
}

.sc_toggles .sc_toggles_item .sc_toggles_title {
	border:1px solid #e4e7e8;
	padding:0.5em 0.5em 0.5em 3em;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon {
	width:2.3333em;
	background-color:#e4e7e8;
	color: #ffffff;
}
.sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon_opened {
	margin-top:-4em;	/*-2.3333em;*/
}
.sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened {
	margin-top:0;
}
.sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_closed {
	margin-top:4em;		/*2.3333em;*/
}
.sc_toggles .sc_toggles_item .sc_toggles_content {
	border-width:1px;
	border-style:solid;
	border-top-width:0;
}



/* Tooltip
-------------------------------------------------------------- */
.sc_tooltip_parent {
	text-decoration: none;
	border-bottom: 1px dashed #666666;
	position: relative;
	display:inline-block;
}
.sc_tooltip_parent .sc_tooltip {
	position: absolute;
	color: #fff;
	background-color:#333333;
	white-space: nowrap;
	top: -4em;
	left: 50%;
	-webkit-transform:translateX(-50%);
	   -moz-transform:translateX(-50%);
	        transform:translateX(-50%);
	padding: 2px 6px;
	z-index: 2;
	font-size:0.75em;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all ease-out 0.1s;
	   -moz-transition: all ease-out 0.1s;
	    -ms-transition: all ease-out 0.1s;
	     -o-transition: all ease-out 0.1s;
	        transition: all ease-out 0.1s;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
.sc_tooltip_parent:hover .sc_tooltip {
	opacity: 1;
	filter: alpha(opacity=100);
	top: -2.5em;
}
.sc_tooltip_parent .sc_tooltip:before {
	content: ' ';
	width: 6px;
	height: 6px;
	position: absolute;
	left: 50%;
	bottom: -3px;
	margin-left: -3px;
	z-index: 1;
	background-color:#333333;
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
}



/* Twitter
-------------------------------------------------------------- */
.sc_twitter_wrap {
	position:relative;
}
.sc_twitter_wrap .sc_section_overlay {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	width:100%;
	padding:1.5em 0;
}
.sc_twitter_item {
	text-align:center;
	padding: 0 5em;
}
.sc_twitter_content {
	font-size:1.125em;
	line-height:1.5em;
}
.sc_twitter_icon {
	font-size:2.5em;
	line-height:1em;
	display:block;
	text-align:center;
	margin-bottom:0.5em;
}
.sc_twitter_content p {
	margin:0;
}
.sc_twitter_content p+p {
	margin-top:0.5em;
}
.bg_tint_dark .sc_twitter a {
	color: #ffffff;
}
.sc_twitter .sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_prev {
	margin-left:10px;
}
.sc_twitter .sc_slider_swiper:hover .sc_slider_controls_wrap .sc_slider_next {
	margin-right:10px;
}
.sc_twitter .sc_slider_controls_wrap a {
	font-size:2.5em;
    background-color: transparent;
}





/* Video player
-------------------------------------------------------------- */
.sc_video_player {
	background-repeat:no-repeat;
	-webkit-background-size: 100% auto;
	   -moz-background-size: 100% auto;
	     -o-background-size: 100% auto;
		    background-size: 100% auto;
}
.sc_video_player.sc_video_bordered {
	width:auto;
	height:auto;
	display:inline-block;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
/*
.sc_video_player.sc_video_bordered {
	width:100%;
	display:block;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
*/
.sc_video_frame {
	position:relative;
	overflow:hidden;
    border-radius: 2em;
}
.sc_video_frame.hover_icon:after{
    border-radius: 2em;
}
.sc_video_frame.hover_icon:before{
    width: 3em;
    height: 3em;
    line-height: 3em;
}
.sc_video_frame img {
	width: 100%;
	height:auto;
}
/* Media elements */
.mejs-container {
	max-width:100%;
}




/* Zoom
-------------------------------------------------------------- */
.sc_zoom_wrap {
	width:auto;
	height:auto;
	display:inline-block;
	background-repeat:no-repeat;
	-webkit-background-size: 100% auto;
	   -moz-background-size: 100% auto;
	     -o-background-size: 100% auto;
		    background-size: 100% auto;
}
.sc_zoom {
	position:relative;
	overflow:hidden;
}
.sc_zoom img {
	width: 100%;
	height:auto;
}




/* VC_ROW
-------------------------------------------------------------- */
.vc_row.inverse_colors * {
	color: #fff !important;
	border-color: #fff !important;
}



/* Common styles (title, subtitle, description, slider controls for some shortcodes)
--------------------------------------------------------------------- */

/* Subtitle */
.sc_item_subtitle {
	margin:0 0 0.37em;
	font-size: 1.5em;
	text-align:center;
    text-transform: capitalize;
}

/* Title */
.sc_item_title {
	margin: 0;
    font-size: 3.4285em;
}

/* Description */
.sc_item_descr {
	font-size:0.9285em;
	font-weight:600;
	line-height:1.8em;
	margin:3.25em 0 2em 0;
	text-align:center;
    letter-spacing: 1px;
    left: 50%;
    position: relative;
    text-transform: uppercase;
    width: 45%;
    -webkit-transform:translateX(-50%);
    -moz-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    transform:translateX(-50%);

}


/* Learn more botton */

.sc_item_button {
	display:block;
	margin: 0;
	text-align:center;
}
.sc_item_button > a {
	overflow:hidden;
}

.sc_slider_swiper + .sc_item_button {
	margin-top: 2em;
}

.sc_item_buttons {
	display:inline-block;
	overflow:hidden;
}
.sc_item_buttons > .sc_item_button {
	float:left;
	margin-right: 1.5em;
}
.sc_item_buttons > .sc_item_button+.sc_item_button {
	margin-right: 0;
}

.text_align_left, 
.text_align_left .sc_item_title, 
.text_align_left .sc_item_title:after,
.text_align_left .sc_item_descr, 
.text_align_left .sc_item_button {
    text-align: left;
    margin-left: 0;
}


/* Slider controls side */
.sc_slider_controls_side .sc_slider_controls_wrap a {
	width: 2em;
	height: 2em;
	line-height: 2em;
	color: #ddd;
	border: 2px solid #ddd;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
}
.sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_prev {
	margin-left:10px;
}
.sc_slider_controls_side:hover .sc_slider_controls_wrap .sc_slider_next {
	margin-right:10px;
}


/* Slider controls bottom */
.sc_slider_controls_bottom .swiper-slide {
	padding-bottom:5em;
}
.sc_slider_controls_bottom .sc_slider_controls_wrap {
	top: auto;
	bottom:1px;
	text-align:center;
	padding-bottom:0;
	height: 4em;
}
.sc_slider_controls_bottom .sc_slider_controls_wrap a {
	width: 2.6em;
	height: 2.6em;
	line-height: 2.6em;
	margin-left:0;
	margin-right:0;
	float:none;
	display:inline-block;
	-webkit-border-radius: 50%;
	   -moz-border-radius: 50%;
			border-radius: 50%;
				opacity: 1;
	-webkit-transform: none;
	   -moz-transform: none;
	        transform: none;
	filter: alpha(opacity=100);
}
.sc_slider_controls_bottom .sc_slider_controls_wrap .sc_slider_prev {
	margin-right:0.3em;
}
.sc_slider_controls_bottom:hover .sc_slider_controls_wrap .sc_slider_prev {
	margin-left:0;
}
.sc_slider_controls_bottom:hover .sc_slider_controls_wrap .sc_slider_next {
	margin-right:0;
}
.sc_slider_controls_bottom .sc_slider_pagination_wrap {
	display:none;
}

/* Slider pagination bottom */
.sc_slider_pagination_bottom .swiper-slide {
	padding-bottom: 3em;
}
.sc_slider_pagination_bottom:hover .sc_slider_pagination_wrap {
	bottom: 0.5em;
}


/* MailChimp */
.mc4wp-form input[type="email"]{
    padding: 1.3em 2.5em;
    border-radius: 2em;
    margin-right: 0.8em;
    width: 24.5em;
}/* ATTENTION! This file was generated automatically! Don't change it!!!*/
body{font-family:"Raleway",sans-serif;	font-size:14px;	font-weight:500; line-height:2em}h1{font-family:"Raleway",sans-serif;	font-size:3.4285em;	font-weight:600; line-height:1.235em; margin-top:1.73em;	margin-bottom:0.9em}h2{font-family:"Raleway",sans-serif;	font-size:2.8571em;	font-weight:500; line-height:1.3em; margin-top:1em;	margin-bottom:1.05em}h3{font-family:"Raleway",sans-serif;	font-size:24px;	font-weight:400; line-height:32px; margin-top:1.25em;	margin-bottom:0.7em}h4{font-family:"Raleway",sans-serif;	font-size:1.5em;	font-weight:600; line-height:1.7em; margin-top:2.15em;	margin-bottom:1.2em}h5{font-family:"Raleway",sans-serif;	font-size:1.3571em;	font-weight:600; line-height:1.5em; margin-top:2.5em;	margin-bottom:1.45em}h6{font-family:"Raleway",sans-serif;	font-size:1.5em;	font-weight:600; line-height:1.7em; margin-top:3em;	margin-bottom:1.95em}a{font-family:"Raleway",sans-serif}input[type="text"],input[type="number"],input[type="email"],input[type="search"],input[type="password"],select,textarea{font-family:"Raleway",sans-serif; line-height:1.2857em}input[type="submit"],input[type="reset"],input[type="button"],button:not(.pswp__button),.sc_button{font-family:"Raleway",sans-serif; line-height:1.2857em}.top_panel_middle .logo{margin-top:2.15em;	margin-bottom:0.55em}.logo .logo_text{font-family:"Raleway",sans-serif;	font-size:2.8571em;	font-weight:700; line-height:0.9em}.top_panel_middle .menu_main_wrap{margin-top:1.6125em}.top_panel_style_5 .top_panel_middle .logo{margin-bottom:0.275em}.menu_main_nav>li>a{padding:1em 1.5em 0.95em;	font-family:"Raleway",sans-serif;	font-size:16px;	font-weight:500; line-height:1.2857em}.menu_main_nav>li ul{font-family:"Raleway",sans-serif; line-height:1.2857em}.menu_main_nav>li ul li a{padding:inherit 1.5em inherit}.top_panel_bottom .search_wrap,.top_panel_inner_style_4 .search_wrap{padding-top:0.65em;	padding-bottom:0.475em}.top_panel_icon{margin:0.7em 0 0.95em 1em}.top_panel_fixed .menu_main_wrap{padding-top:0.3em}.top_panel_fixed .top_panel_wrap .logo{margin-top:0.6em;	margin-bottom:0.57em}.top_panel_inner_style_8 .top_panel_buttons,.top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{padding-top:1em;	padding-bottom:0.95em}.post_info{font-family:"Raleway",sans-serif;	font-size:0.9285em; line-height:1.2857em; margin-bottom:1.95em}.post_item_404 .page_title,.post_item_404 .page_subtitle{font-family:"Raleway",sans-serif}.sidebar_outer_menu .menu_side_nav>li>a,.sidebar_outer_menu .menu_side_responsive>li>a{font-family:"Raleway",sans-serif;	font-size:16px;	font-weight:500; line-height:1.2857em}.sidebar_outer_menu .menu_side_nav>li ul,.sidebar_outer_menu .menu_side_responsive>li ul{font-family:"Raleway",sans-serif; line-height:1.2857em}.sidebar_outer_menu .menu_side_nav>li ul li a,.sidebar_outer_menu .menu_side_responsive>li ul li a{padding:inherit 1.5em inherit}.tp-caption.slider1_slide1_1,.tp-caption.slider1_slide1_2,.tp-caption.slider1_slide1_3{font-family:"Raleway",sans-serif}.booking_font_custom,.booking_day_container,.booking_calendar_container_all{font-family:"Raleway",sans-serif}.booking_weekdays_custom{font-family:"Raleway",sans-serif}body table.booked-calendar thead th .monthName{font-family:"Raleway",sans-serif}.mejs-container .mejs-controls .mejs-time{font-family:"Raleway",sans-serif}.sc_recent_news .post_item .post_title{font-family:"Raleway",sans-serif;	font-size:1.3571em;	font-weight:600; line-height:1.5em; margin-top:2.5em;	margin-bottom:1.45em}.sc_recent_news .post_item h6.post_title{font-family:"Raleway",sans-serif;	font-size:1.5em;	font-weight:600; line-height:1.7em; margin-top:3em;	margin-bottom:1.95em}.scheme_original h1,.scheme_original h2,.scheme_original h3,.scheme_original h4,.scheme_original h5,.scheme_original h6,.scheme_original h1 a,.scheme_original h2 a,.scheme_original h3 a,.scheme_original h4 a,.scheme_original h5 a,.scheme_original h6 a{color:#262262}.scheme_original a{color:#262262}.scheme_original a:hover{color:#00a9e1}.scheme_original blockquote:before{color:#ffffff}.scheme_original blockquote a{color:#ffffff}.scheme_original blockquote a:hover{color:#00a9e1}.scheme_original blockquote,.scheme_original blockquote p{color:#ffffff}.scheme_original blockquote{background:#262262; 	background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); 	background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); 	background:linear-gradient(to right,#262262 0%,#00a9e1 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); 	color:#ffffff}.scheme_original .accent1{color:#262262}.scheme_original .accent1_bgc{background-color:#262262}.scheme_original .accent1_bg{background:#262262}.scheme_original .accent1_border{border-color:#262262}.scheme_original a.accent1:hover{color:#00a9e1}.scheme_original .post_content.ih-item.circle.effect1.colored .info,.scheme_original .post_content.ih-item.circle.effect2.colored .info,.scheme_original .post_content.ih-item.circle.effect3.colored .info,.scheme_original .post_content.ih-item.circle.effect4.colored .info,.scheme_original .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect6.colored .info,.scheme_original .post_content.ih-item.circle.effect7.colored .info,.scheme_original .post_content.ih-item.circle.effect8.colored .info,.scheme_original .post_content.ih-item.circle.effect9.colored .info,.scheme_original .post_content.ih-item.circle.effect10.colored .info,.scheme_original .post_content.ih-item.circle.effect11.colored .info,.scheme_original .post_content.ih-item.circle.effect12.colored .info,.scheme_original .post_content.ih-item.circle.effect13.colored .info,.scheme_original .post_content.ih-item.circle.effect14.colored .info,.scheme_original .post_content.ih-item.circle.effect15.colored .info,.scheme_original .post_content.ih-item.circle.effect16.colored .info,.scheme_original .post_content.ih-item.circle.effect18.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect19.colored .info,.scheme_original .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect1.colored .info,.scheme_original .post_content.ih-item.square.effect2.colored .info,.scheme_original .post_content.ih-item.square.effect3.colored .info,.scheme_original .post_content.ih-item.square.effect4.colored .mask1,.scheme_original .post_content.ih-item.square.effect4.colored .mask2,.scheme_original .post_content.ih-item.square.effect5.colored .info,.scheme_original .post_content.ih-item.square.effect6.colored .info,.scheme_original .post_content.ih-item.square.effect7.colored .info,.scheme_original .post_content.ih-item.square.effect8.colored .info,.scheme_original .post_content.ih-item.square.effect9.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect10.colored .info,.scheme_original .post_content.ih-item.square.effect11.colored .info,.scheme_original .post_content.ih-item.square.effect12.colored .info,.scheme_original .post_content.ih-item.square.effect13.colored .info,.scheme_original .post_content.ih-item.square.effect14.colored .info,.scheme_original .post_content.ih-item.square.effect15.colored .info,.scheme_original .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_original .post_content.ih-item.square.effect_book.colored .info,.scheme_original .post_content.ih-item.square.effect_pull.colored .post_descr{background:#262262;	color:#ffffff}.scheme_original .post_content.ih-item.circle.effect1.colored .info,.scheme_original .post_content.ih-item.circle.effect2.colored .info,.scheme_original .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_original .post_content.ih-item.circle.effect19.colored .info,.scheme_original .post_content.ih-item.square.effect4.colored .mask1,.scheme_original .post_content.ih-item.square.effect4.colored .mask2,.scheme_original .post_content.ih-item.square.effect6.colored .info,.scheme_original .post_content.ih-item.square.effect7.colored .info,.scheme_original .post_content.ih-item.square.effect12.colored .info,.scheme_original .post_content.ih-item.square.effect13.colored .info,.scheme_original .post_content.ih-item.square.effect_more.colored .info,.scheme_original .post_content.ih-item.square.effect_dir.colored .info,.scheme_original .post_content.ih-item.square.effect_shift.colored .info{background:rgba(38,34,98,0.6);	color:#ffffff}.scheme_original .post_content.ih-item.square.effect_border.colored .img,.scheme_original .post_content.ih-item.square.effect_fade.colored .img,.scheme_original .post_content.ih-item.square.effect_slide.colored .img{background:#262262}.scheme_original .post_content.ih-item.square.effect_border.colored .info,.scheme_original .post_content.ih-item.square.effect_fade.colored .info,.scheme_original .post_content.ih-item.square.effect_slide.colored .info{color:#ffffff}.scheme_original .post_content.ih-item.square.effect_border.colored .info:before,.scheme_original .post_content.ih-item.square.effect_border.colored .info:after{border-color:#ffffff}.scheme_original .post_content.ih-item.circle.effect1 .spinner{border-right-color:#262262;	border-bottom-color:#262262}.scheme_original .post_content.ih-item .post_readmore .post_readmore_label,.scheme_original .post_content.ih-item .info a,.scheme_original .post_content.ih-item .info a>span{color:#ffffff}.scheme_original .post_content.ih-item .post_readmore:hover .post_readmore_label,.scheme_original .post_content.ih-item .info a:hover,.scheme_original .post_content.ih-item .info a:hover>span{color:#ffffff}.scheme_original td,.scheme_original th{border-color:rgba(255,255,255,0.8)}.scheme_original table{color:#262262}.scheme_original table tr:nth-child(2n+1){background-color:rgba(240,244,249,0.4)}.scheme_original table:not(.shop_attributes):not(.shop_table):not(.group_table):not(.variations):not(#debug_bar_http) tr:first-child{background-color:#262262;	color:#ffffff}.scheme_original table tr:first-child td{border-color:rgba(255,255,255,0.1)}.scheme_original table tr:nth-child(2n){background-color:#f0f4f9}.scheme_original table thead + tbody tr:first-child{background-color:rgba(240,244,249,0.4);	color:#262262}.scheme_original .sc_table th{color:#ffffff; background-color:#262262}.scheme_original pre.code,.scheme_original #toc .toc_item.current,.scheme_original #toc .toc_item:hover{border-color:#262262}.scheme_original::selection,.scheme_original::-moz-selection{background-color:#262262;	color:#ffffff}.scheme_original input[type="text"],.scheme_original input[type="number"],.scheme_original input[type="tel"],.scheme_original input[type="email"],.scheme_original input[type="search"],.scheme_original input[type="password"],.scheme_original select,.scheme_original textarea{color:#8a8a8a;	border-color:#00a9e1;	background-color:#f0f4f9}.scheme_original input[type="text"]:focus,.scheme_original input[type="number"]:focus,.scheme_original input[type="tel"]:focus,.scheme_original input[type="email"]:focus,.scheme_original input[type="search"]:focus,.scheme_original input[type="password"]:focus,.scheme_original select:focus,.scheme_original textarea:focus{color:#8a8a8a;	border-color:#bbbbbb;	background-color:#f0f4f9}.scheme_original input::-webkit-input-placeholder,.scheme_original textarea::-webkit-input-placeholder{color:#acb4b6}.scheme_original input:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_original textarea:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_original input:focus:-moz-placeholder{color:#00a9e1}.scheme_original textarea:focus:-moz-placeholder{color:#00a9e1}.scheme_original input:focus::-moz-placeholder{color:#00a9e1}.scheme_original textarea:focus::-moz-placeholder{color:#00a9e1}.scheme_original fieldset{border-color:#dfe5ea}.scheme_original fieldset legend{background-color:#ffffff;	color:#656c77}/* ======================== INPUT'S STYLES ================== */.scheme_original .sc_input_hover_accent input[type="text"]:focus,.scheme_original .sc_input_hover_accent input[type="number"]:focus,.scheme_original .sc_input_hover_accent input[type="email"]:focus,.scheme_original .sc_input_hover_accent input[type="password"]:focus,.scheme_original .sc_input_hover_accent input[type="search"]:focus,.scheme_original .sc_input_hover_accent select:focus,.scheme_original .sc_input_hover_accent textarea:focus{box-shadow:0px 0px 0px 2px #262262}.scheme_original .sc_input_hover_accent input[type="text"] + label:before,.scheme_original .sc_input_hover_accent input[type="number"] + label:before,.scheme_original .sc_input_hover_accent input[type="email"] + label:before,.scheme_original .sc_input_hover_accent input[type="password"] + label:before,.scheme_original .sc_input_hover_accent input[type="search"] + label:before,.scheme_original .sc_input_hover_accent select + label:before,.scheme_original .sc_input_hover_accent textarea + label:before{color:rgba(38,34,98,0.6)}.scheme_original .sc_input_hover_path input[type="text"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="number"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="email"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="password"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path input[type="search"] + label>.sc_form_graphic,.scheme_original .sc_input_hover_path textarea + label>.sc_form_graphic{stroke:#00a9e1}.scheme_original .sc_input_hover_jump .sc_form_label_content:before{color:#ffffff}.scheme_original .sc_input_hover_jump input[type="text"],.scheme_original .sc_input_hover_jump input[type="number"],.scheme_original .sc_input_hover_jump input[type="email"],.scheme_original .sc_input_hover_jump input[type="password"],.scheme_original .sc_input_hover_jump input[type="search"],.scheme_original .sc_input_hover_jump textarea{border-color:#00a9e1}.scheme_original .sc_input_hover_jump input[type="text"]:focus,.scheme_original .sc_input_hover_jump input[type="number"]:focus,.scheme_original .sc_input_hover_jump input[type="email"]:focus,.scheme_original .sc_input_hover_jump input[type="password"]:focus,.scheme_original .sc_input_hover_jump input[type="search"]:focus,.scheme_original .sc_input_hover_jump textarea:focus,.scheme_original .sc_input_hover_jump input[type="text"].filled,.scheme_original .sc_input_hover_jump input[type="number"].filled,.scheme_original .sc_input_hover_jump input[type="email"].filled,.scheme_original .sc_input_hover_jump input[type="password"].filled,.scheme_original .sc_input_hover_jump input[type="search"].filled,.scheme_original .sc_input_hover_jump textarea.filled{border-color:#262262}.scheme_original .sc_input_hover_underline input[type="text"] + label:before,.scheme_original .sc_input_hover_underline input[type="number"] + label:before,.scheme_original .sc_input_hover_underline input[type="email"] + label:before,.scheme_original .sc_input_hover_underline input[type="password"] + label:before,.scheme_original .sc_input_hover_underline input[type="search"] + label:before,.scheme_original .sc_input_hover_underline textarea + label:before{background-color:#00a9e1}.scheme_original .sc_input_hover_jump input[type="text"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="number"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="email"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="password"]:focus + label:before,.scheme_original .sc_input_hover_jump input[type="search"]:focus + label:before,.scheme_original .sc_input_hover_jump textarea:focus + label:before,.scheme_original .sc_input_hover_jump input[type="text"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="number"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="email"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="password"].filled + label:before,.scheme_original .sc_input_hover_jump input[type="search"].filled + label:before,.scheme_original .sc_input_hover_jump textarea.filled + label:before{background-color:#bbbbbb}.scheme_original .sc_input_hover_underline input[type="text"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"] + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea + label>.sc_form_label_content{color:#8a8a8a}.scheme_original .sc_input_hover_underline input[type="text"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"]:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea:focus + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="text"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="number"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="email"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="password"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline input[type="search"].filled + label>.sc_form_label_content,.scheme_original .sc_input_hover_underline textarea.filled + label>.sc_form_label_content{color:#020817}.scheme_original .sc_input_hover_iconed input[type="text"] + label,.scheme_original .sc_input_hover_iconed input[type="number"] + label,.scheme_original .sc_input_hover_iconed input[type="email"] + label,.scheme_original .sc_input_hover_iconed input[type="password"] + label,.scheme_original .sc_input_hover_iconed input[type="search"] + label,.scheme_original .sc_input_hover_iconed textarea + label{color:#8a8a8a}.scheme_original .sc_input_hover_iconed input[type="text"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="number"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="email"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="password"]:focus + label,.scheme_original .sc_input_hover_iconed input[type="search"]:focus + label,.scheme_original .sc_input_hover_iconed textarea:focus + label,.scheme_original .sc_input_hover_iconed input[type="text"].filled + label,.scheme_original .sc_input_hover_iconed input[type="number"].filled + label,.scheme_original .sc_input_hover_iconed input[type="email"].filled + label,.scheme_original .sc_input_hover_iconed input[type="password"].filled + label,.scheme_original .sc_input_hover_iconed input[type="search"].filled + label,.scheme_original .sc_input_hover_iconed textarea.filled + label{color:#8a8a8a}/* ======================== END INPUT'S STYLES ================== */.scheme_original .body_wrap{color:#656c77}.scheme_original .body_style_boxed .body_wrap{background-color:#ffffff}.scheme_original body:not(.video_bg_show),.scheme_original body:not(.video_bg_show) .page_wrap,.scheme_original .copy_wrap,.scheme_original .sidebar_cart,.scheme_original .widget_area_inner,.scheme_original #page_preloader{background-color:#ffffff}.scheme_original .widget_area_inner{background-color:#f0f4f9}.scheme_original .footer_wrap_inner.widget_area_inner{background-color:#ffffff}.scheme_original .widget_rss .widget_title a{color:#262262}.scheme_original .widget_rss .widget_title a:hover{color:#00a9e1}.scheme_original .footer_wrap_inner .widget_rss .widget_title a,.scheme_original .footer_wrap_inner .widget_rss .rsswidget,.scheme_original .footer_wrap_inner .widget_rss .rss-date,.scheme_original .footer_wrap_inner .widget_rss .rssSummary{color:#262262}.scheme_original .footer_wrap_inner .widget_rss .widget_title a:hover,.scheme_original .footer_wrap_inner .widget_rss a.rsswidget:hover{color:#00a9e1}.scheme_original .article_style_boxed .content>article>.post_content,.scheme_original .article_style_boxed[class*="single-"] .content>.comments_wrap,.scheme_original .article_style_boxed[class*="single-"] .content>article>.post_info_share,.scheme_original .article_style_boxed:not(.layout_excerpt):not(.single) .content .post_item{background-color:#f0f4f9}.scheme_original .top_panel_wrap_inner{background-color:#ffffff}.scheme_original .top_panel_fixed .top_panel_position_over.top_panel_wrap_inner{background-color:#f0f4f9 !important}.scheme_original .top_panel_inner_style_3 .top_panel_cart_button,.scheme_original .top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,169,225,0.2)}.scheme_original .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:#262262}.scheme_original .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after{color:#ffffff}.scheme_original .top_panel_middle .sidebar_cart:after,.scheme_original .top_panel_middle .sidebar_cart{border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .top_panel_inner_style_3 .top_panel_top,.scheme_original .top_panel_inner_style_4 .top_panel_top,.scheme_original .top_panel_inner_style_5 .top_panel_top,.scheme_original .top_panel_inner_style_3 .top_panel_top .sidebar_cart,.scheme_original .top_panel_inner_style_4 .top_panel_top .sidebar_cart{color:#ffffff;	background-color:#262262}.scheme_original .top_panel_top a{color:#656c77}.scheme_original .top_panel_top a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .top_panel_top strong,.scheme_original .top_panel_inner_style_3 .top_panel_top a,.scheme_original .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_4 .top_panel_top a,.scheme_original .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_5 .top_panel_top a,.scheme_original .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_original .top_panel_inner_style_3 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_4 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_5 .top_panel_top a:hover,.scheme_original .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a:hover{color:#ffffff}.scheme_original .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]{color:#ffffff}.scheme_original .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]:hover{color:#ffffff}.scheme_original .top_panel_wrap .contact_label{color:#00a9e1}.scheme_original .top_panel_bottom .search_wrap .search_form button:before{color:#00a9e1}.scheme_original .top_panel_bottom .search_wrap .search_form button:hover:before{color:#00a9e1}.scheme_original .menu_user_nav>li>a{color:#656c77}.scheme_original .menu_user_nav>li>a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>a{color:#ffffff}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>a:hover,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>a:hover,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>a:hover{color:#ffffff}.scheme_original .menu_user_nav>li ul:not(.cart_list){border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .top_panel_inner_style_1 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_2 .menu_user_nav>li>ul:after{border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li>ul:after,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul{color:#ffffff;	background-color:#262262;	border-color:#00a9e1}.scheme_original .menu_user_nav>li ul li a{color:#8a8a8a}.scheme_original .menu_user_nav>li ul li a:hover,.scheme_original .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .menu_user_nav>li ul li.current-menu-ancestor>a{color:#232a34;	background-color:#f0f0f0}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#00a9e1}.scheme_original .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#dfe5ea}.scheme_original .top_panel_inner_style_3 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_original .top_panel_inner_style_4 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_original .top_panel_inner_style_5 .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#ffffff}.scheme_original .menu_user_nav>li.menu_user_bookmarks .bookmarks_add{border-bottom-color:#dddddd}.scheme_original .logo .logo_text{color:#262262}.scheme_original .logo .logo_slogan{color:#656c77}/* Top panel (bottom area) */.scheme_original .top_panel_image_hover{background-color:rgba(0,169,225,0.8)}.scheme_original .top_panel_image_header,.scheme_original .top_panel_image_title,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_text,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_slogan{color:#ffffff}.scheme_original .top_panel_image_header a,.scheme_original .top_panel_image_title>a,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a{color:#ffffff}.scheme_original .post_featured .post_header a:hover,.scheme_original .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a:hover{color:#ffffff}.scheme_original .menu_main_nav>li>a{color:#262262}.scheme_original .menu_main_nav>li ul{color:#ffffff;	background-color:#00a9e1}.scheme_original .menu_main_nav>a:hover,.scheme_original .menu_main_nav>li>a:hover,.scheme_original .menu_main_nav>li.sfHover>a,.scheme_original .menu_main_nav>li.current-menu-item>a,.scheme_original .menu_main_nav>li.current-menu-parent>a,.scheme_original .menu_main_nav>li.current-menu-ancestor>a{border-color:#00a9e1;	color:#00a9e1}.scheme_original .menu_main_nav>li ul li a{color:#ffffff}.scheme_original .menu_main_nav>li ul li a:hover,.scheme_original .menu_main_nav>li ul li.current-menu-item>a,.scheme_original .menu_main_nav>li ul li.current-menu-ancestor>a{color:#262262}.scheme_original .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#f0f0f0}.scheme_original .top_panel_inner_style_1 .menu_hover_slide_box .menu_main_nav>li#blob,.scheme_original .top_panel_inner_style_2 .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#00a9e1}.scheme_original .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_slide_line .menu_main_nav>li#blob,.scheme_original .top_panel_inner_style_2 .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#ffffff}.scheme_original .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_zoom_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_original .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:after,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:before,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:after,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#ffffff}.scheme_original .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_roll_down .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:focus{color:#232a34}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#232a34}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:before,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:after,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#ffffff}.scheme_original .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .menu_hover_color_line .menu_main_nav>li>a:focus{color:#00a9e1}.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_original .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#ffffff}.scheme_original .top_panel_middle .contact_field,.scheme_original .top_panel_middle .contact_field>a{color:#262262}.scheme_original .top_panel_middle .contact_icon{color:rgba(157,170,176,0.6)}.scheme_original .top_panel_middle .content_wrap>.columns_wrap{border-color:#dddddd}.scheme_original .top_panel_inner_style_1 .search_field,.scheme_original .top_panel_inner_style_2 .search_field,.scheme_original .top_panel_inner_style_3 .search_field{border-color:rgba(255,255,255,0.1);	background-color:rgba(0,169,225,0.2)}.scheme_original .top_panel_inner_style_4 .search_field{background-color:rgba(38,34,98,0.05)}.scheme_original .content .search_field{background-color:#f0f4f9}.scheme_original .content .search_field,.scheme_original .content .search_submit{color:#8a8a8a}.scheme_original .content .search_submit:before{color:#ffffff}.scheme_original .content .search_field:focus,.scheme_original .content .search_submit:hover{color:#232a34}.scheme_original .top_panel_inner_style_1 .search_field,.scheme_original .top_panel_inner_style_1 .search_submit,.scheme_original .top_panel_inner_style_2 .search_field,.scheme_original .top_panel_inner_style_2 .search_submit,.scheme_original .top_panel_inner_style_4 .search_field,.scheme_original .top_panel_inner_style_4 .search_submit{color:#262262}.scheme_original .top_panel_inner_style_3 .search_field,.scheme_original .top_panel_inner_style_3 .search_submit{color:#ffffff}.scheme_original .top_panel_inner_style_3 .search_field:focus,.scheme_original .top_panel_inner_style_3 .search_submit:focus,.scheme_original .top_panel_inner_style_3 .search_submit:hover{color:#ffffff}.scheme_original .top_panel_inner_style_8 .search_field:hover,.scheme_original .top_panel_inner_style_8 .search_field:focus{color:#232a34 !important;	background-color:#f0f0f0 !important}.scheme_original .top_panel_icon.search_wrap{background-color:#ffffff;	color:#262262}.scheme_original .top_panel_icon .contact_icon,.scheme_original .top_panel_icon .search_submit{color:#262262}.scheme_original .top_panel_icon.menu_main_cart .contact_icon{background-color:#ffffff}.scheme_original .top_panel_middle a:hover .contact_icon,.scheme_original .top_panel_icon.search_wrap:hover,.scheme_original .top_panel_icon:hover .contact_icon,.scheme_original .top_panel_icon:hover .search_submit{background-color:#262262}.scheme_original .top_panel_middle a:hover .contact_icon,.scheme_original .top_panel_icon.search_wrap:hover input,.scheme_original .top_panel_icon.search_wrap:hover button,.scheme_original .top_panel_icon:hover .contact_icon,.scheme_original .top_panel_icon:hover .search_submit{color:#ffffff}.scheme_original .search_style_fullscreen.search_state_closed:not(.top_panel_icon) .search_submit,.scheme_original .search_style_slide.search_state_closed:not(.top_panel_icon) .search_submit{color:#ffffff}.scheme_original .search_style_expand.search_state_opened:not(.top_panel_icon) .search_submit:hover,.scheme_original .search_style_slide.search_state_opened:not(.top_panel_icon) .search_submit:hover{color:#020817}.scheme_original .top_panel_inner_style_3 .search_style_expand.search_state_opened .search_submit:hover,.scheme_original .top_panel_inner_style_3 .search_style_slide.search_state_opened .search_submit:hover{color:#ffffff}.scheme_original .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap{top:0.8em}.scheme_original .search_results .post_more,.scheme_original .search_results .search_results_close{color:#262262}.scheme_original .search_results .post_more:hover,.scheme_original .search_results .search_results_close:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_1 .search_results,.scheme_original .top_panel_inner_style_1 .search_results:after,.scheme_original .top_panel_inner_style_2 .search_results,.scheme_original .top_panel_inner_style_2 .search_results:after,.scheme_original .top_panel_inner_style_3 .search_results,.scheme_original .top_panel_inner_style_3 .search_results:after{color:#ffffff;	background-color:#262262; border-color:#00a9e1}.scheme_original .top_panel_inner_style_1 .search_results a,.scheme_original .top_panel_inner_style_1 .search_results .post_info a,.scheme_original .top_panel_inner_style_1 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_1 .search_results .post_more,.scheme_original .top_panel_inner_style_1 .search_results .search_results_close,.scheme_original .top_panel_inner_style_2 .search_results a,.scheme_original .top_panel_inner_style_2 .search_results .post_info a,.scheme_original .top_panel_inner_style_2 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_2 .search_results .post_more,.scheme_original .top_panel_inner_style_2 .search_results .search_results_close,.scheme_original .top_panel_inner_style_3 .search_results a,.scheme_original .top_panel_inner_style_3 .search_results .post_info a,.scheme_original .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_original .top_panel_inner_style_3 .search_results .post_more,.scheme_original .top_panel_inner_style_3 .search_results .search_results_close{color:#ffffff}.scheme_original .top_panel_inner_style_1 .search_results a:hover,.scheme_original .top_panel_inner_style_1 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_1 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_1 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_1 .search_results .search_results_close:hover,.scheme_original .top_panel_inner_style_2 .search_results a:hover,.scheme_original .top_panel_inner_style_2 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_2 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_2 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_2 .search_results .search_results_close:hover,.scheme_original .top_panel_inner_style_3 .search_results a:hover,.scheme_original .top_panel_inner_style_3 .search_results .post_info a:hover,.scheme_original .top_panel_inner_style_3 .search_results .post_info a:hover>span,.scheme_original .top_panel_inner_style_3 .search_results .post_more:hover,.scheme_original .top_panel_inner_style_3 .search_results .search_results_close:hover{color:#ffffff}.scheme_original .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{color:#8a8a8a}.scheme_original .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button:hover{color:#232a34}.scheme_original .top_panel_inner_style_8 .top_panel_buttons .contact_icon,.scheme_original .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon .search_submit{color:#8a8a8a}.scheme_original .top_panel_inner_style_8 .top_panel_buttons a:hover .contact_icon,.scheme_original .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit{color:#232a34}.scheme_original .pushy_inner{color:#656c77; background-color:#ffffff}.scheme_original .pushy_inner a{color:#262262}.scheme_original .pushy_inner a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .popup_wrap a,.scheme_original .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap a,.scheme_original .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap a,.scheme_original .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:#262262}.scheme_original .top_panel_inner_style_3 .popup_wrap a:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap a:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap a:hover{color:#00a9e1}.scheme_original .top_panel_inner_style_3 .popup_wrap,.scheme_original .top_panel_inner_style_4 .popup_wrap,.scheme_original .top_panel_inner_style_5 .popup_wrap,.scheme_original .top_panel_inner_style_3 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_4 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_original .top_panel_inner_style_5 .popup_wrap .popup_close,.scheme_original .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a{color:#656c77}.scheme_original .top_panel_inner_style_3 .popup_wrap .popup_close:hover,.scheme_original .top_panel_inner_style_4 .popup_wrap .popup_close:hover,.scheme_original .top_panel_inner_style_5 .popup_wrap .popup_close:hover{color:#262262}.scheme_original .header_mobile .menu_button,.scheme_original .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon{color:#262262}.scheme_original .header_mobile .side_wrap{color:#ffffff}.scheme_original .header_mobile .panel_top,.scheme_original .header_mobile .side_wrap{background-color:#262262}.scheme_original .header_mobile .panel_middle{background-color:#262262}.scheme_original .header_mobile .menu_button:hover,.scheme_original .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon:hover,.scheme_original .header_mobile .menu_main_cart.top_panel_icon:hover .top_panel_cart_button .contact_icon,.scheme_original .header_mobile .side_wrap .close:hover{color:#262262}.scheme_original .header_mobile .menu_main_nav>li a,.scheme_original .header_mobile .menu_main_nav>li>a:hover{color:#ffffff}.scheme_original .header_mobile .menu_main_nav>a:hover,.scheme_original .header_mobile .menu_main_nav>li.sfHover>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-item>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-parent>a,.scheme_original .header_mobile .menu_main_nav>li.current-menu-ancestor>a,.scheme_original .header_mobile .menu_main_nav>li>a:hover,.scheme_original .header_mobile .menu_main_nav>li ul li a:hover,.scheme_original .header_mobile .menu_main_nav>li ul li.current-menu-item>a,.scheme_original .header_mobile .menu_main_nav>li ul li.current-menu-ancestor>a,.scheme_original .header_mobile .login a:hover{color:#ffffff}.scheme_original .header_mobile .popup_wrap .popup_close:hover{color:#262262}.scheme_original .header_mobile .search_wrap,.scheme_original .header_mobile .login{border-color:#262262}.scheme_original .header_mobile .login .popup_link,.scheme_original .header_mobile .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_original .header_mobile .search_wrap .search_field,.scheme_original .header_mobile .search_wrap .search_field:focus{color:#ffffff}.scheme_original .header_mobile .popup_wrap .sc_socials.sc_socials_type_icons a{color:#9daab0}.scheme_original .tparrows.default{color:#ffffff}.scheme_original .tp-bullets.simplebullets.round .bullet{background-color:#ffffff}.scheme_original .tp-bullets.simplebullets.round .bullet.selected{border-color:#ffffff}.scheme_original .slider_over_content_inner{background-color:rgba(255,255,255,0.8)}.scheme_original .slider_over_button{color:#262262;	background-color:rgba(255,255,255,0.8)}.scheme_original .slider_over_close{color:#262262}.scheme_original .sc_button.slider_button{background:#ffffff!important; color:#262262!important}.scheme_original .sc_button.slider_button:hover{background:#262262!important; color:#ffffff!important}.scheme_original .persephone.tparrows{border-color:rgba(255,255,255,0.3)!important}.scheme_original .persephone.tparrows:before{color:rgba(255,255,255,0.7)!important}.scheme_original .persephone.tparrows:hover{border-color:#00a9e1!important}.scheme_original .persephone.tparrows:hover:before{color:#00a9e1!important}/* 7.3 Top panel:Page title and breadcrumbs-------------------------------------------------------------- */.scheme_original .top_panel_title_inner{background-color:#f0f4f9;	border-color:rgba(221,221,221,0.1)}.scheme_original .top_panel_title_inner .page_title{color:#262262}.scheme_original .top_panel_title_inner .post_navi .post_navi_item a,.scheme_original .top_panel_title_inner .breadcrumbs a.breadcrumbs_item{color:#232a34}.scheme_original .top_panel_title_inner .post_navi .post_navi_item a:hover,.scheme_original .top_panel_title_inner .breadcrumbs a.breadcrumbs_item:hover{color:#acb4b6}.scheme_original .top_panel_title_inner .post_navi span,.scheme_original .top_panel_title_inner .breadcrumbs span{color:#acb4b6}.scheme_original .post_navi .post_navi_item + .post_navi_item:before,.scheme_original .top_panel_title_inner .breadcrumbs .breadcrumbs_delimiter{color:#acb4b6}.scheme_original .post_title .post_icon{color:#262262}.scheme_original .pagination>a{border-color:#262262}.scheme_original .post_format_aside.post_item_single .post_content p,.scheme_original .post_format_aside .post_descr{border-color:#262262;	background-color:#ffffff}.scheme_original .hover_icon:before{color:#ffffff;	background-color:#00a9e1}.scheme_original .hover_icon:after{background-color:rgba(38,34,98,0.8)}.scheme_original .post_info a,.scheme_original .post_info a>span{color:#9daab0}.scheme_original .post_info a[class*="icon-"]{color:#262262}.scheme_original .post_info a:hover,.scheme_original .post_info a:hover>span{color:#00a9e1}.scheme_original .post_item .post_readmore_label{color:#262262}.scheme_original .post_item .post_readmore:hover .post_readmore_label{color:#00a9e1}.scheme_original .post_info .post_info_counters .post_counters_item:before,.scheme_original .post_info .post_info_posted:before{color:#00a9e1}.scheme_original .post_info .post_info_posted_by:before,.scheme_original .post_info .post_info_tags:before{color:#9daab0}.scheme_original .post_info .post_info_posted_by,.scheme_original .post_info .post_info_tags{color:#9daab0}.scheme_original .post_info.post_info_bottom .post_info_tags a{background-color:#dfe5ea;	color:#656c77}.scheme_original .post_info.post_info_bottom .post_info_tags a:hover{color:#ffffff;	background-color:#00a9e1}.scheme_original .post_info_bottom_cat_tag{border-color:#dfe5ea}.scheme_original .post_item_related .post_info a{color:#656c77}.scheme_original .post_item_related .post_info a:hover,.scheme_original .post_item_related .post_title a:hover{color:#00a9e1}.scheme_original .article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related{background-color:#f0f4f9}.scheme_original .post_item_related .post_content .post_content_wrap .post_title a{color:#262262}.scheme_original .post_item_related .post_content .post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_original .post_item_related .post_content .post_featured + .post_content_wrap .post_title a{color:#ffffff}.scheme_original .post_item_related .post_content .post_featured + .post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_original .post_item_related .post_content .post_featured .hover_icon:after{background:-moz-linear-gradient(bottom,rgba(38,34,98,0.8) 0%,rgba(125,185,232,0) 100%); background:-webkit-linear-gradient(bottom,rgba(38,34,98,0.8) 0%,rgba(125,185,232,0) 100%); background:linear-gradient(to top,rgba(38,34,98,0.8) 0%,rgba(125,185,232,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799',endColorstr='#007db9e8',GradientType=0 ); }.scheme_original .single-post .related_wrap{border-color:#dfe5ea}.scheme_original .isotope_item_colored .post_featured .post_mark_new,.scheme_original .isotope_item_colored .post_featured .post_title,.scheme_original .isotope_item_colored .post_content.ih-item.square.colored .info{color:#ffffff;	background-color:#262262}.scheme_original .isotope_item_colored .post_featured .post_title a{color:#ffffff}.scheme_original .isotope_item_colored .post_category a,.scheme_original .isotope_item_colored .post_rating .reviews_stars_bg,.scheme_original .isotope_item_colored .post_rating .reviews_stars_hover,.scheme_original .isotope_item_colored .post_rating .reviews_value{color:#262262}.scheme_original .isotope_item_colored .post_featured .post_descr{background-color:#f0f4f9}.scheme_original .article_style_boxed .isotope_item_colored .post_featured .post_descr{background-color:#f0f4f9}.scheme_original .isotope_item_colored .post_info_wrap .post_button .sc_button{color:#262262;	background-color:#ffffff}.scheme_original .isotope_item_colored_1 .post_item{background-color:#f0f4f9;	color:#8a8a8a}.scheme_original .isotope_item_colored_1 a,.scheme_original .isotope_item_colored_1 .post_title a{color:#00a9e1}.scheme_original .isotope_item_colored_1 a:hover,.scheme_original .isotope_item_colored_1 .post_title a:hover,.scheme_original .isotope_item_colored_1 .post_category a:hover{color:#00a9e1}.scheme_original .isotope_wrap .isotope_item_colored_1 .post_featured{border-color:#262262}.scheme_original .isotope_filters a{border-color:#262262;	background-color:#262262;	color:#ffffff}.scheme_original .isotope_filters a.active,.scheme_original .isotope_filters a:hover{border-color:#00a9e1;	background-color:#00a9e1}.scheme_original .pagination_single>.pager_numbers,.scheme_original .pagination_single a,.scheme_original .pagination_single .current,.scheme_original .pagination_slider .pager_cur,.scheme_original .pagination_pages>a,.scheme_original .pagination_pages>span{background-color:#ffffff;	color:#00a9e1;	border-color:#00a9e1}.scheme_original .pagination_single>.pager_numbers,.scheme_original .pagination_single a:hover,.scheme_original .pagination_single .current,.scheme_original .pagination_slider .pager_cur:hover,.scheme_original .pagination_slider .pager_cur:focus,.scheme_original .pagination_pages>.active,.scheme_original .pagination_pages>a:hover{border-color:#00a9e1;	background-color:#00a9e1;	color:#ffffff}.scheme_original .pagination_slider .pager_slider{border-color:#dfe5ea;	background-color:#ffffff}.scheme_original .pagination_wrap .pager_next,.scheme_original .pagination_wrap .pager_prev,.scheme_original .pagination_wrap .pager_last,.scheme_original .pagination_wrap .pager_first{color:#262262}.scheme_original .pagination_wrap .pager_next:hover,.scheme_original .pagination_wrap .pager_prev:hover,.scheme_original .pagination_wrap .pager_last:hover,.scheme_original .pagination_wrap .pager_first:hover{color:#00a9e1}.scheme_original .pagination_viewmore>a{color:#ffffff;	background-color:#262262}.scheme_original .pagination_viewmore>a:hover{color:#ffffff;	background-color:#00a9e1}.scheme_original .viewmore_loader,.scheme_original .mfp-preloader span,.scheme_original .sc_video_frame.sc_video_active:before{background-color:#00a9e1}.scheme_original .post_featured .post_nav_item{color:#ffffff}.scheme_original .post_featured .post_nav_item:before{background-color:#262262;	color:#ffffff}.scheme_original .post_featured .post_nav_item .post_nav_info{background-color:#262262}.scheme_original .reviews_block .reviews_summary .reviews_item{background-color:#262262}.scheme_original .reviews_block .reviews_summary,.scheme_original .reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:#f0f0f0}.scheme_original .reviews_block .reviews_max_level_100 .reviews_stars_hover,.scheme_original .reviews_block .reviews_item .reviews_slider{color:#ffffff;	background-color:#262262}.scheme_original .reviews_block .reviews_item .reviews_stars_hover{color:#262262}.scheme_original .reviews_block .reviews_value{color:#262262}.scheme_original .reviews_block .reviews_summary .reviews_criteria{color:#656c77}.scheme_original .reviews_block .reviews_summary .reviews_value{color:#ffffff}/* Summary stars in the post item (under the title) */.scheme_original .post_item .post_rating .reviews_stars_bg,.scheme_original .post_item .post_rating .reviews_stars_hover,.scheme_original .post_item .post_rating .reviews_value{color:#262262}.scheme_original .post_author{background-color:#f0f4f9;	color:#232a34}.scheme_original .post_author .post_author_title{color:#232a34}.scheme_original .post_author .post_author_title a{color:#262262}.scheme_original .post_author .post_author_title a:hover{color:#00a9e1}.scheme_original .post_author .post_author_info .sc_socials_shape_square a{color:#232a34}.scheme_original .post_author .post_author_info .sc_socials_shape_square a:hover{color:#00a9e1}.scheme_original .post_author_inner{border-color:#dfe5ea}.scheme_original .comments_list_wrap ul.children,.scheme_original .comments_list_wrap ul>li + li{border-top-color:#9daab0}.scheme_original .comments_list_wrap .comment-respond{border-bottom-color:#262262}.scheme_original .comments_list_wrap>ul{border-bottom-color:#dfe5ea}.scheme_original .comments_list_wrap .comment_info>.comment_date>.comment_date_value,.scheme_original .comments_list_wrap .comment_info .comment_date + span:before,.scheme_original .comments_list_wrap .comment_time{color:#9daab0}.scheme_original .comments_list_wrap .comment_author{color:#262262}.scheme_original .comments_list_wrap .comment_reply a{color:#00a9e1}.scheme_original .comments_list_wrap .comment_reply a:hover{color:#00a9e1}.scheme_original .post_item_404 .page_title,.scheme_original .post_item_404 .page_subtitle,.scheme_original .post_item_404 .page_search .search_wrap .search_submit:before{color:#262262}.scheme_original .post_item_404 .page_search .search_wrap .search_submit:hover:before{color:#00a9e1}.scheme_original .sidebar_outer_menu .menu_side_nav li>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li>a{color:#262262}.scheme_original .sidebar_outer_menu .menu_side_nav li>a:hover,.scheme_original .sidebar_outer_menu .menu_side_nav li.sfHover>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li>a:hover,.scheme_original .sidebar_outer_menu .menu_side_responsive li.sfHover>a{color:#232a34;	background-color:#f0f0f0}.scheme_original .sidebar_outer_menu .menu_side_nav>li ul,.scheme_original .sidebar_outer_menu .menu_side_responsive>li ul{color:#262262;	background-color:#ffffff;	border-color:#dfe5ea}.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-item>a,.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-parent>a,.scheme_original .sidebar_outer_menu .menu_side_nav li.current-menu-ancestor>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-item>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-parent>a,.scheme_original .sidebar_outer_menu .menu_side_responsive li.current-menu-ancestor>a{color:#9daab0}.scheme_original .sidebar_outer_menu .sidebar_outer_menu_buttons>a{color:#262262}.scheme_original .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:#262262}.scheme_original .sidebar_inner aside:nth-child(3n+4),.scheme_original .sidebar_inner aside:nth-child(3n+5),.scheme_original .sidebar_inner aside:nth-child(3n+6),.scheme_original .sidebar_outer_inner aside:nth-child(3n+4),.scheme_original .sidebar_outer_inner aside:nth-child(3n+5),.scheme_original .sidebar_outer_inner aside:nth-child(3n+6),.scheme_original .widget_area_inner aside:nth-child(2n+3),.scheme_original .widget_area_inner aside:nth-child(2n+4),.scheme_original .widget_area_inner aside+aside{border-color:#dfe5ea}.scheme_original .widget_area_inner{color:#656c77}.scheme_original .widget_area_inner a,.scheme_original .widget_area_inner ul li:before,.scheme_original .widget_area_inner ul li a:hover,.scheme_original .widget_area_inner button:before{color:#656c77}.scheme_original .widget_area_inner button:before,.scheme_original .widget_area_inner ul li:before{color:#00a9e1}.scheme_original .widget_area_inner a:hover,.scheme_original .widget_area_inner ul li a,.scheme_original .widget_area_inner button:hover:before{color:#262262}.scheme_original .widget_area_inner ul li a:hover{color:#00a9e1}.scheme_original .widget_area_inner .post_title a{color:#262262}.scheme_original .widget_area_inner .widget_text a:not(.sc_button),.scheme_original .widget_area_inner .post_info a{color:#262262}.scheme_original .widget_area_inner .widget_text a:not(.sc_button):hover,.scheme_original .widget_area_inner .post_info a:hover{color:#00a9e1}/* Widget:Search */.scheme_original .widget_area_inner .widget_product_search .search_form,.scheme_original .widget_area_inner .widget_search .search_form,.scheme_original .widget_area_inner .widget_categories select,.scheme_original .widget_area_inner .widget_text select,.scheme_original .widget_area_inner .widget_archive select{background-color:#ffffff}.scheme_original .footer_wrap_inner.widget_area_inner .widget_search .search_form,.scheme_original .footer_wrap_inner.widget_area_inner .widget_archive select,.scheme_original .footer_wrap_inner.widget_area_inner .widget_text select,.scheme_original .footer_wrap_inner.widget_area_inner .widget_categories select{background-color:#f0f4f9}.scheme_original .widget_area_inner .widget_product_search .search_field,.scheme_original .widget_area_inner .widget_search .search_field{color:#8a8a8a}.scheme_original .widget_area_inner .widget_product_search .search_button:before,.scheme_original .widget_area_inner .widget_search .search_button:before{color:#9daab0}.scheme_original .widget_area_inner .widget_product_search .search_button,.scheme_original .widget_area_inner .widget_search .search_button{color:#656c77}.scheme_original .widget_area_inner .widget_product_search .search_button:hover,.scheme_original .widget_area_inner .widget_search .search_button:hover{color:#232a34}/* Widget:Calendar */.scheme_original .widget_area_inner .widget_calendar .weekday,.scheme_original .wp-block-calendar .weekday{color:#262262}.scheme_original .widget_area_inner .widget_calendar td a:hover,.scheme_original .wp-block-calendar td a:hover{background-color:#00a9e1;	color:#ffffff}.scheme_original .wp-block-calendar .today .day_wrap,.scheme_original .widget_area_inner .widget_calendar .today .day_wrap{color:#ffffff}.scheme_original .wp-block-calendar .today .day_wrap:before,.scheme_original .widget_area_inner .widget_calendar .today .day_wrap:before{background-color:#00a9e1}.scheme_original .widget_area .widget_calendar td a:after{color:#00a9e1}.scheme_original .widget_area .widget_calendar th.month_prev a,.scheme_original .widget_area .widget_calendar th.month_next a{color:#00a9e1}.scheme_original .widget_area .widget_calendar th.month_prev a:hover,.scheme_original .widget_area .widget_calendar th.month_next a:hover{color:#00a9e1}.scheme_original .widget_area .widget_calendar .month_cur{color:#00a9e1}.scheme_original .widget_area .widget_calendar td,.scheme_original .wp-block-calendar td{color:#656c77}.scheme_original .widget_area .widget_calendar .weekday{color:#262262}/* Widget:Tag Cloud */.scheme_original .widget_area .widget_recent_comments ul li .comment-author-link{color:#262262}.scheme_original .footer_wrap.widget_area .widget_recent_comments ul li .comment-author-link{color:#ffffff}.scheme_original .footer_wrap.widget_area .widget_rss cite{color:#ffffff}/* Widget:Tag Cloud */.scheme_original .wp-block-tag-cloud a,.scheme_original .widget_area_inner .widget_product_tag_cloud a,.scheme_original .widget_area_inner .widget_tag_cloud a{background-color:#dfe5ea;	color:#656c77}.scheme_original .wp-block-tag-cloud a:not([class*="sc_button_hover_"]):hover,.scheme_original .widget_area_inner .widget_product_tag_cloud a:not([class*="sc_button_hover_"]):hover,.scheme_original .widget_area_inner .widget_tag_cloud a:not([class*="sc_button_hover_"]):hover{color:#ffffff;	background-color:#00a9e1}/* Widget:Text */.scheme_original .widget_text .mail_footer,.scheme_original .widget_text .address_footer,.scheme_original .widget_text .mail_footer:before,.scheme_original .widget_text .address_footer:before{color:#00a9e1}.scheme_original .widget_text .textwidget h5{color:#ffffff}.scheme_original .sidebar_outer_inner aside,.scheme_original .sidebar_inner aside{border-top-color:#dfe5ea}.scheme_original .pre_footer_wrap{background-color:#00a9e1}.scheme_original .pre_footer_wrap a{color:#ffffff}.scheme_original .pre_footer_wrap a:hover{color:#00a9e1}.scheme_original .footer_wrap_inner.widget_area_inner .content_wrap{border-color:rgba(255,255,255,0.1)}.scheme_original .contacts_wrap_inner{color:#656c77;	background-color:#ffffff}.scheme_original .testimonials_wrap_inner,.scheme_original .twitter_wrap_inner{color:#656c77;	background-color:#ffffff}.scheme_original .copyright_wrap_inner{background-color:#ffffff}.scheme_original .copyright_wrap_inner .copyright_text{color:#8a8a8a}.scheme_original .copyright_wrap_inner .menu_footer_nav li a{color:#656c77}.scheme_original .copyright_wrap_inner .menu_footer_nav li a:hover{color:#262262}.scheme_original .scroll_to_top{background:#262262; 	background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:linear-gradient(to right,#262262 9%,#00a9e1 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_original .scroll_to_top:hover{color:#ffffff}.scheme_original #page_preloader{background-color:#ffffff}.scheme_original .preloader_wrap>div{background-color:#262262}.scheme_original.gallery_preview:before{background-color:#ffffff}.scheme_original .popup_wrap{background-color:#ffffff}.scheme_original .woocommerce .woocommerce-message:before,.scheme_original .woocommerce-page .woocommerce-message:before,.scheme_original .woocommerce div.product span.price,.scheme_original .woocommerce div.product p.price,.scheme_original .woocommerce #content div.product span.price,.scheme_original .woocommerce #content div.product p.price,.scheme_original .woocommerce-page div.product span.price,.scheme_original .woocommerce-page div.product p.price,.scheme_original .woocommerce-page #content div.product span.price,.scheme_original .woocommerce-page #content div.product p.price,.scheme_original .woocommerce ul.products li.product .price,.scheme_original .woocommerce-page ul.products li.product .price,.scheme_original .woocommerce ul.cart_list li>.amount,.scheme_original .woocommerce ul.product_list_widget li>.amount,.scheme_original .woocommerce-page ul.cart_list li>.amount,.scheme_original .woocommerce-page ul.product_list_widget li>.amount,.scheme_original .woocommerce ul.cart_list li span .amount,.scheme_original .woocommerce ul.product_list_widget li span .amount,.scheme_original .woocommerce-page ul.cart_list li span .amount,.scheme_original .woocommerce-page ul.product_list_widget li span .amount,.scheme_original .woocommerce ul.cart_list li ins .amount,.scheme_original .woocommerce ul.product_list_widget li ins .amount,.scheme_original .woocommerce-page ul.cart_list li ins .amount,.scheme_original .woocommerce-page ul.product_list_widget li ins .amount,.scheme_original .woocommerce.widget_shopping_cart .total .amount,.scheme_original .woocommerce .widget_shopping_cart .total .amount,.scheme_original .woocommerce-page.widget_shopping_cart .total .amount,.scheme_original .woocommerce-page .widget_shopping_cart .total .amount,.scheme_original .woocommerce a:hover h3,.scheme_original .woocommerce-page a:hover h3,.scheme_original .woocommerce .cart-collaterals .order-total strong,.scheme_original .woocommerce-page .cart-collaterals .order-total strong,.scheme_original .woocommerce .checkout #order_review .order-total .amount,.scheme_original .woocommerce-page .checkout #order_review .order-total .amount,.scheme_original .woocommerce .star-rating,.scheme_original .woocommerce-page .star-rating,.scheme_original .woocommerce .star-rating:before,.scheme_original .woocommerce-page .star-rating:before,.scheme_original .widget_area_inner .widgetWrap ul>li .star-rating span,.scheme_original .woocommerce #review_form #respond .stars a,.scheme_original .woocommerce-page #review_form #respond .stars a{}.scheme_original .woocommerce div.quantity span,.scheme_original .woocommerce-page div.quantity span{color:#262262;	background-color:#f0f4f9}.scheme_original .woocommerce div.quantity span:hover,.scheme_original .woocommerce-page div.quantity span:hover{color:#00a9e1;	background-color:#f0f4f9}.scheme_original .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#acb4b6}.scheme_original .woocommerce .widget_price_filter .ui-slider .ui-slider-range,.scheme_original .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background-color:#262262}.scheme_original .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.scheme_original .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{background:#262262}.scheme_original .woocommerce .woocommerce-message,.scheme_original .woocommerce-page .woocommerce-message,.scheme_original .woocommerce a.button.alt:active,.scheme_original .woocommerce button.button.alt:active,.scheme_original .woocommerce input.button.alt:active,.scheme_original .woocommerce #respond input#submit.alt:active,.scheme_original .woocommerce #content input.button.alt:active,.scheme_original .woocommerce-page a.button.alt:active,.scheme_original .woocommerce-page button.button.alt:active,.scheme_original .woocommerce-page input.button.alt:active,.scheme_original .woocommerce-page #respond input#submit.alt:active,.scheme_original .woocommerce-page #content input.button.alt:active,.scheme_original .woocommerce a.button:active,.scheme_original .woocommerce button.button:active,.scheme_original .woocommerce input.button:active,.scheme_original .woocommerce #respond input#submit:active,.scheme_original .woocommerce #content input.button:active,.scheme_original .woocommerce-page a.button:active,.scheme_original .woocommerce-page button.button:active,.scheme_original .woocommerce-page input.button:active,.scheme_original .woocommerce-page #respond input#submit:active,.scheme_original .woocommerce-page #content input.button:active{border-top-color:#262262}.scheme_original .woocommerce a.button:not(.pswp__button),.scheme_original .woocommerce button.button,.scheme_original .woocommerce input.button,.scheme_original .woocommerce #respond input#submit,.scheme_original .woocommerce #content input.button,.scheme_original .woocommerce-page a.button,.scheme_original .woocommerce-page button.button,.scheme_original .woocommerce-page input.button,.scheme_original .woocommerce-page #respond input#submit,.scheme_original .woocommerce-page #content input.button,.scheme_original .woocommerce a.button.alt,.scheme_original .woocommerce button.button.alt,.scheme_original .woocommerce input.button.alt,.scheme_original .woocommerce #respond input#submit.alt,.scheme_original .woocommerce #content input.button.alt,.scheme_original .woocommerce-page a.button.alt,.scheme_original .woocommerce-page button.button.alt,.scheme_original .woocommerce-page input.button.alt,.scheme_original .woocommerce-page #respond input#submit.alt,.scheme_original .woocommerce-page #content input.button.alt,.scheme_original .woocommerce-account .addresses .title .edit,.scheme_original .woocommerce ul.products li.product .add_to_cart_button,.scheme_original .woocommerce-page ul.products li.product .add_to_cart_button{background-color:#262262;	color:#ffffff}.scheme_original .article_style_boxed.woocommerce .woocommerce-error,.scheme_original .article_style_boxed.woocommerce .woocommerce-info,.scheme_original .article_style_boxed.woocommerce .woocommerce-message,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-error,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-info,.scheme_original .article_style_boxed.woocommerce-page .woocommerce-message{background-color:#f0f4f9}.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-error,.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-info,.scheme_original .article_style_boxed.woocommerce.archive .woocommerce-message,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-error,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-info,.scheme_original .article_style_boxed.woocommerce-page.archive .woocommerce-message{background-color:#f0f4f9}.scheme_original .woocommerce span.new,.scheme_original .woocommerce-page span.new,.scheme_original .woocommerce span.onsale,.scheme_original .woocommerce-page span.onsale{background-color:#00a9e1;	color:#ffffff}.scheme_original .article_style_boxed.woocommerce ul.products li.product .post_item_wrap,.scheme_original .article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#f0f4f9}.scheme_original .woocommerce ul.products li.product .price,.scheme_original .woocommerce-page ul.products li.product .price,.scheme_original .woocommerce ul.products li.product .star-rating:before,.scheme_original .woocommerce ul.products li.product .star-rating span{}.scheme_original .woocommerce ul.products li.product .price del,.scheme_original .woocommerce-page ul.products li.product .price del{color:#9daab0}.scheme_original.article_style_boxed.woocommerce ul.products li.product .post_item_wrap{background-color:#f0f0f0}.scheme_original.article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#f0f0f0}.scheme_original.article_style_boxed.woocommerce ul.products li.product .post_content{background-color:#f0f4f9}.scheme_original.article_style_boxed.woocommerce-page ul.products li.product .post_content{background-color:#f0f4f9}.scheme_original .woocommerce nav.woocommerce-pagination ul li a,.scheme_original .woocommerce nav.woocommerce-pagination ul li span.current{background-color:#ffffff;	color:#00a9e1;	border-color:#00a9e1}.scheme_original .woocommerce nav.woocommerce-pagination ul li a:focus,.scheme_original .woocommerce nav.woocommerce-pagination ul li a:hover,.scheme_original .woocommerce nav.woocommerce-pagination ul li span.current{color:#ffffff;	background-color:#00a9e1}.scheme_original .woocommerce nav.woocommerce-pagination ul li .next,.scheme_original .woocommerce nav.woocommerce-pagination ul li .prev{color:#262262}.scheme_original .woocommerce nav.woocommerce-pagination ul li .next:hover,.scheme_original .woocommerce nav.woocommerce-pagination ul li .prev:hover{color:#00a9e1}.scheme_original .woocommerce div.product .woocommerce-tabs .panel,.scheme_original .woocommerce #content div.product .woocommerce-tabs .panel,.scheme_original .woocommerce-page div.product .woocommerce-tabs .panel,.scheme_original .woocommerce-page #content div.product .woocommerce-tabs .panel{border-color:#dfe5ea}.scheme_original.woocommerce-tabs.trx-stretch-width{background-color:#ffffff}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a{color:#656c77}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a:hover,.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a{color:#262262}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a:after{background-color:#262262}.scheme_original .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a::after{background-color:#00a9e1}.scheme_original .woocommerce table.cart thead th,.scheme_original .woocommerce #content table.cart thead th,.scheme_original .woocommerce-page table.cart thead th,.scheme_original .woocommerce-page #content table.cart thead th{background-color:#262262;	color:#ffffff}.scheme_original .woocommerce-account .woocommerce-MyAccount-navigation,.scheme_original .woocommerce-MyAccount-navigation li+li{border-color:#dfe5ea}.scheme_original .woocommerce-MyAccount-navigation li.is-active a{color:#262262}.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .empty,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .quantity,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .quantity .amount,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .total,.scheme_original .top_panel_inner_style_4 .widget_shopping_cart .total .amount{color:#ffffff}.scheme_original .top_panel_wrap .widget_shopping_cart ul.cart_list>li>a:hover{color:#00a9e1}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li+li{border-color:#dddddd}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a{color:#656c77}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover>a,.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a:hover{color:#262262}.scheme_original body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories ul{background-color:#f0f4f9}.scheme_original .widget_shopping_cart_content .woocommerce-Price-amount,.scheme_original .product_list_widget ins .woocommerce-Price-amount{color:#00a9e1}.scheme_original .woocommerce-page .product .entry-summary p.price del{color:#9daab0}.scheme_original .woocommerce-page .product .entry-summary p.price ins{color:#00a9e1}.scheme_original .woocommerce div.product form.cart .variations tr{color:#656c77}.scheme_original .tribe-events-calendar thead th{background-color:#262262}.scheme_original a.tribe-events-read-more,.scheme_original .tribe-events-button,.scheme_original .tribe-events-nav-previous a,.scheme_original .tribe-events-nav-next a,.scheme_original .tribe-events-widget-link a,.scheme_original .tribe-events-viewmore a{background-color:#262262;	color:#ffffff}.scheme_original a.tribe-events-read-more:hover,.scheme_original .tribe-events-button:hover,.scheme_original .tribe-events-nav-previous a:hover,.scheme_original .tribe-events-nav-next a:hover,.scheme_original .tribe-events-widget-link a:hover,.scheme_original .tribe-events-viewmore a:hover{background-color:#00a9e1;	color:#ffffff}.scheme_original #bbpress-forums div.bbp-topic-content a,.scheme_original #buddypress button,.scheme_original #buddypress a.button,.scheme_original #buddypress input[type="submit"],.scheme_original #buddypress input[type="button"],.scheme_original #buddypress input[type="reset"],.scheme_original #buddypress ul.button-nav li a,.scheme_original #buddypress div.generic-button a,.scheme_original #buddypress .comment-reply-link,.scheme_original a.bp-title-button,.scheme_original #buddypress div.item-list-tabs ul li.selected a,.scheme_original #buddypress .acomment-options a{background:#262262;	color:#ffffff}.scheme_original #bbpress-forums div.bbp-topic-content a:hover,.scheme_original #buddypress button:hover,.scheme_original #buddypress a.button:hover,.scheme_original #buddypress input[type="submit"]:hover,.scheme_original #buddypress input[type="button"]:hover,.scheme_original #buddypress input[type="reset"]:hover,.scheme_original #buddypress ul.button-nav li a:hover,.scheme_original #buddypress div.generic-button a:hover,.scheme_original #buddypress .comment-reply-link:hover,.scheme_original a.bp-title-button:hover,.scheme_original #buddypress div.item-list-tabs ul li.selected a:hover,.scheme_original #buddypress .acomment-options a:hover{background:#00a9e1;	color:#ffffff}.scheme_original #buddypress #item-nav,.scheme_original #buddypress div#subnav.item-list-tabs,.scheme_original #buddypress div.item-list-tabs{background-color:#f0f4f9}.scheme_original #buddypress #item-nav li:not(.selected) a,.scheme_original #buddypress div#subnav.item-list-tabs li:not(.selected) a,.scheme_original #buddypress div.item-list-tabs li:not(.selected) a{color:#8a8a8a}.scheme_original #buddypress #item-nav li:not(.selected) a:hover,.scheme_original #buddypress div#subnav.item-list-tabs li:not(.selected) a:hover,.scheme_original #buddypress div.item-list-tabs li:not(.selected) a:hover{color:#232a34;	background-color:#f0f0f0}.scheme_original #buddypress .dir-search input[type="search"],.scheme_original #buddypress .dir-search input[type="text"],.scheme_original #buddypress .groups-members-search input[type="search"],.scheme_original #buddypress .groups-members-search input[type="text"],.scheme_original #buddypress .standard-form input[type="color"],.scheme_original #buddypress .standard-form input[type="date"],.scheme_original #buddypress .standard-form input[type="datetime-local"],.scheme_original #buddypress .standard-form input[type="datetime"],.scheme_original #buddypress .standard-form input[type="email"],.scheme_original #buddypress .standard-form input[type="month"],.scheme_original #buddypress .standard-form input[type="number"],.scheme_original #buddypress .standard-form input[type="password"],.scheme_original #buddypress .standard-form input[type="range"],.scheme_original #buddypress .standard-form input[type="search"],.scheme_original #buddypress .standard-form input[type="tel"],.scheme_original #buddypress .standard-form input[type="text"],.scheme_original #buddypress .standard-form input[type="time"],.scheme_original #buddypress .standard-form input[type="url"],.scheme_original #buddypress .standard-form input[type="week"],.scheme_original #buddypress .standard-form select,.scheme_original #buddypress .standard-form textarea,.scheme_original #buddypress form#whats-new-form textarea{color:#8a8a8a;	background-color:#ffffff;	border-color:#00a9e1}.scheme_original #buddypress .dir-search input[type="search"]:focus,.scheme_original #buddypress .dir-search input[type="text"]:focus,.scheme_original #buddypress .groups-members-search input[type="search"]:focus,.scheme_original #buddypress .groups-members-search input[type="text"]:focus,.scheme_original #buddypress .standard-form input[type="color"]:focus,.scheme_original #buddypress .standard-form input[type="date"]:focus,.scheme_original #buddypress .standard-form input[type="datetime-local"]:focus,.scheme_original #buddypress .standard-form input[type="datetime"]:focus,.scheme_original #buddypress .standard-form input[type="email"]:focus,.scheme_original #buddypress .standard-form input[type="month"]:focus,.scheme_original #buddypress .standard-form input[type="number"]:focus,.scheme_original #buddypress .standard-form input[type="password"]:focus,.scheme_original #buddypress .standard-form input[type="range"]:focus,.scheme_original #buddypress .standard-form input[type="search"]:focus,.scheme_original #buddypress .standard-form input[type="tel"]:focus,.scheme_original #buddypress .standard-form input[type="text"]:focus,.scheme_original #buddypress .standard-form input[type="time"]:focus,.scheme_original #buddypress .standard-form input[type="url"]:focus,.scheme_original #buddypress .standard-form input[type="week"]:focus,.scheme_original #buddypress .standard-form select:focus,.scheme_original #buddypress .standard-form textarea:focus,.scheme_original #buddypress form#whats-new-form textarea:focus{color:#8a8a8a;	background-color:#f0f0f0;	border-color:#bbbbbb}.scheme_original #buddypress #reply-title small a span,.scheme_original #buddypress a.bp-primary-action span{color:#262262;	background-color:#ffffff}.scheme_original #buddypress .activity .activity-item:nth-child(2n+1){background-color:#f0f4f9}.scheme_original.vc_row{background-color:#ffffff}.scheme_original .booking_month_container_custom,.scheme_original .booking_month_navigation_button_custom{background-color:#f0f4f9 !important}.scheme_original .booking_month_name_custom,.scheme_original .booking_month_navigation_button_custom{color:#232a34 !important}.scheme_original .booking_month_navigation_button_custom:hover{color:#ffffff !important;	background-color:#00a9e1 !important}.scheme_original #learndash_next_prev_link>a{color:#ffffff;	background-color:#262262}.scheme_original #learndash_next_prev_link>a:hover{background-color:#00a9e1}.scheme_original .widget_area dd.course_progress div.course_progress_blue{background-color:#00a9e1}.scheme_original #myplayer .ttw-music-player .progress-wrapper{background-color:#f0f0f0}.scheme_original #myplayer .ttw-music-player .tracklist li.track{border-color:#dfe5ea}.scheme_original #myplayer .ttw-music-player .tracklist,.scheme_original #myplayer .ttw-music-player .buy,.scheme_original #myplayer .ttw-music-player .description,.scheme_original #myplayer .ttw-music-player .artist,.scheme_original #myplayer .ttw-music-player .artist-outer{color:#656c77}.scheme_original #myplayer .ttw-music-player .player .title,.scheme_original #myplayer .ttw-music-player .tracklist li:hover{color:#262262}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title{border-color:#dfe5ea}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon{color:#acb4b6;	background-color:#f0f4f9}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active{color:#262262;	border-color:#262262}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened{color:#ffffff;	background-color:#262262}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title:hover{color:#00a9e1;	border-color:#00a9e1}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_title:hover .sc_accordion_icon_opened{background-color:#00a9e1}.scheme_original .sc_accordion .sc_accordion_item .sc_accordion_content{border-color:#dfe5ea}.scheme_original .sc_audio.sc_audio_info,.scheme_original .sc_audio_player.sc_audio,.scheme_original .wp-audio-shortcode{background:#262262; background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); background:linear-gradient(to right,#262262 0%,#00a9e1 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); }.scheme_original .sc_audio .sc_audio_title{color:#ffffff}.scheme_original .sc_audio .sc_audio_author_name{color:#ffffff}.scheme_original .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.scheme_original .wp-audio-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider,.scheme_original .mejs-controls .mejs-time-rail .mejs-time-current{background:#f0f4f9 !important}.scheme_original .mejs-container .mejs-controls .mejs-time{color:#262262}.scheme_original .mejs-container.wp-video-shortcode .mejs-controls .mejs-time{color:#f0f4f9}.scheme_original .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,.scheme_original .mejs-controls .mejs-time-rail .mejs-time-total:before{background-color:rgba(255,255,255,0.1)}.scheme_original .mejs-controls .mejs-time-rail .mejs-time-loaded{background:rgba(138,138,138,0.1) !important}.scheme_original .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_original .mejs-container .mejs-controls .mejs-volume-button,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button{background:#ffffff !important}.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-volume-button,.scheme_original .footer_wrap .mejs-container .mejs-controls .mejs-playpause-button{background:#f0f4f9 !important}.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before,.scheme_original .mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before,.scheme_original .mejs-container .mejs-controls .mejs-fullscreen-button:before,.scheme_original .mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before,.scheme_original .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{color:#00a9e1}.scheme_original input[type="submit"],.scheme_original input[type="reset"],.scheme_original input[type="button"],.scheme_original button:not(.pswp__button),.scheme_original .sc_button.sc_button_style_filled,	.scheme_original .woocommerce a.button,.scheme_original .woocommerce button.button,.scheme_original .woocommerce input.button,.scheme_original .woocommerce #respond input#submit,.scheme_original .woocommerce #content input.button,.scheme_original .woocommerce-page a.button,.scheme_original .woocommerce-page button.button,.scheme_original .woocommerce-page input.button,.scheme_original .woocommerce-page #respond input#submit,.scheme_original .woocommerce-page #content input.button,.scheme_original .woocommerce a.button.alt,.scheme_original .woocommerce button.button.alt,.scheme_original .woocommerce input.button.alt,.scheme_original .woocommerce #respond input#submit.alt,.scheme_original .woocommerce #content input.button.alt,.scheme_original .woocommerce-page a.button.alt,.scheme_original .woocommerce-page button.button.alt,.scheme_original .woocommerce-page input.button.alt,.scheme_original .woocommerce-page #respond input#submit.alt,.scheme_original .woocommerce-page #content input.button.alt,.scheme_original .woocommerce-account .addresses .title .edit,.scheme_original #btn-buy,.scheme_original #btn-pay{background:#262262; 	background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:linear-gradient(to right,#262262 9%,#00a9e1 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_original input[type="submit"].sc_button_style_color_style2,.scheme_original input[type="reset"].sc_button_style_color_style2,.scheme_original input[type="button"].sc_button_style_color_style2,.scheme_original button.sc_button_style_color_style2,.scheme_original .cff-container-field input[type="button"],.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style2{color:#ffffff;	background:#262262; 	background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:linear-gradient(to right,#262262 9%,#00a9e1 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_original .sc_button.sc_button_style_border{border-color:#262262;	color:#262262}.scheme_original .sc_button.sc_button_style_border:hover{border-color:#00a9e1 !important;	color:#00a9e1 !important}.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button{background:#ffffff ;	color:#262262}.scheme_original .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button:hover{background:#00a9e1 ;	color:#ffffff}/* ================= BUTTON'S HOVERS ==================== */.scheme_original [class*="sc_button_hover_fade"]:hover{background-color:#00a9e1 !important;	color:#ffffff !important}.scheme_original [class*="sc_button_hover_slide"]{color:#ffffff !important;	background-color:#262262}.scheme_original [class*="sc_button_hover_slide"]:hover{background-color:#00a9e1 !important}.scheme_original .sc_button_hover_slide_left{background:linear-gradient(to right,#00a9e1 50%,#262262 50%) repeat scroll right bottom / 210% 100% rgba(0,0,0,0) !important}.scheme_original .sc_button_hover_slide_top{background:linear-gradient(to bottom,#00a9e1 50%,#262262 50%) repeat scroll right bottom / 100% 210% rgba(0,0,0,0) !important}/* ================= END BUTTON'S HOVERS ==================== */.scheme_original .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:#262262;	border-color:#262262;	color:#ffffff}.scheme_original .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before{border-color:#ffffff}.scheme_original .sc_blogger.layout_date .sc_blogger_item::before{background-color:#f0f4f9}.scheme_original .sc_blogger_item.sc_plain_item{background-color:#f0f4f9}.scheme_original .sc_blogger.layout_polaroid .photostack nav span.current{color:#ffffff;	background-color:#262262}.scheme_original .sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#00a9e1}.scheme_original .sc_call_to_action .sc_call_to_action_descr{color:#656c77}.scheme_original .sc_call_to_action_accented{color:#ffffff;	background-color:#262262}.scheme_original .sc_call_to_action_accented .sc_item_title,.scheme_original .sc_call_to_action_accented .sc_item_subtitle,.scheme_original .sc_call_to_action_accented .sc_item_descr{color:#ffffff}.scheme_original .sc_call_to_action_accented .sc_item_button>a{color:#262262;	background-color:#ffffff}.scheme_original .sc_call_to_action_accented .sc_item_button>a:before{background-color:#262262;	color:#ffffff}.scheme_original .sc_call_to_action .sc_item_subtitle{color:#00a9e1}.scheme_original .sc_call_to_action .sc_item_buttons>.sc_item_button + .sc_item_button a{color:#00a9e1}.scheme_original .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a:before{color:#00a9e1}.scheme_original .sc_chat:after{background-color:#f0f4f9;	border-color:#dddddd}.scheme_original .sc_chat_inner{color:#8a8a8a;	background-color:#f0f4f9;	border-color:#dddddd}.scheme_original .sc_chat_inner a{color:#00a9e1}.scheme_original .sc_chat_inner a:hover{color:#00a9e1}.scheme_original .sc_clients_style_clients-2 .sc_client_image .sc_client_hover{color:#ffffff;	background-color:rgba(38,34,98,0.8)}.scheme_original .sc_clients_style_clients-2 .sc_client_title,.scheme_original .sc_clients_style_clients-2 .sc_client_title a{color:#ffffff}.scheme_original .sc_clients_style_clients-2 .sc_client_title a:hover{color:#262262}.scheme_original .sc_clients_style_clients-2 .sc_client_description:before,.scheme_original .sc_clients_style_clients-2 .sc_client_position{color:#262262}.scheme_original .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{background:#ffffff;	color:#262262}.scheme_original .sc_form .sc_form_item.sc_form_button button{color:#ffffff; background:#262262; background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%); background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%); background:linear-gradient(to right,#262262 9%,#00a9e1 55%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 );  background-size:200%; background-position:0}.scheme_original .sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before,.scheme_original .sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label:before{border-color:#00a9e1;	background-color:#ffffff}.scheme_original .sc_form_select_container{background-color:#ffffff}.scheme_original .sc_form .sc_form_item input[type="text"],.scheme_original .sc_form .sc_form_item select,.scheme_original .sc_form .sc_form_item textarea{background-color:#f0f4f9}.scheme_original .sc_form .picker{color:#8a8a8a;	border-color:#00a9e1;	background-color:#ffffff}.scheme_original .picker__month,.scheme_original .picker__year{color:#020817}.scheme_original .sc_form .picker__nav--prev:before,.scheme_original .sc_form .picker__nav--next:before{color:#8a8a8a}.scheme_original .sc_form .picker__nav--prev:hover:before,.scheme_original .sc_form .picker__nav--next:hover:before{color:#020817}.scheme_original .sc_form .picker__nav--disabled,.scheme_original .sc_form .picker__nav--disabled:hover,.scheme_original .sc_form .picker__nav--disabled:before,.scheme_original .sc_form .picker__nav--disabled:before:hover{color:#acb4b6}.scheme_original .sc_form table.picker__table th{color:#ffffff;	background-color:#262262}.scheme_original .sc_form .picker__day--infocus{color:#020817}.scheme_original .sc_form .picker__day--today,.scheme_original .sc_form .picker__day--infocus:hover,.scheme_original .sc_form .picker__day--outfocus:hover,.scheme_original .sc_form .picker__day--highlighted:hover,.scheme_original .sc_form .picker--focused .picker__day--highlighted{color:#020817;	background-color:#f0f0f0}.scheme_original .sc_form .picker__day--disabled,.scheme_original .sc_form .picker__day--disabled:hover{color:#acb4b6}.scheme_original .sc_form .picker__day--highlighted.picker__day--disabled,.scheme_original .sc_form .picker__day--highlighted.picker__day--disabled:hover{color:#acb4b6;	background-color:#f0f0f0 !important}.scheme_original .sc_form .picker__day--today:before,.scheme_original .sc_form .picker__button--today:before,.scheme_original .sc_form .picker__button--clear:before,.scheme_original .sc_form button:focus{border-color:#262262}.scheme_original .sc_form .picker__button--close:before{color:#262262}.scheme_original .sc_form .picker--time .picker__button--clear:hover,.scheme_original .sc_form .picker--time .picker__button--clear:focus{background-color:#00a9e1}.scheme_original .sc_form .picker__footer{border-color:#00a9e1}.scheme_original .sc_form .picker__button--today,.scheme_original .sc_form .picker__button--clear,.scheme_original .sc_form .picker__button--close{color:#8a8a8a}.scheme_original .sc_form .picker__button--today:hover,.scheme_original .sc_form .picker__button--clear:hover,.scheme_original .sc_form .picker__button--close:hover{color:#020817;	background-color:#f0f0f0 !important}.scheme_original .sc_form .picker__button--today[disabled],.scheme_original .sc_form .picker__button--today[disabled]:hover{color:#acb4b6;	background-color:#f0f0f0;	border-color:#f0f0f0}.scheme_original .sc_form .picker__button--today[disabled]:before{border-top-color:#acb4b6}.scheme_original .sc_form .picker__list-item{color:#8a8a8a;	border-color:#00a9e1}.scheme_original .sc_form .picker__list-item:hover,.scheme_original .sc_form .picker__list-item--highlighted,.scheme_original .sc_form .picker__list-item--highlighted:hover,.scheme_original .sc_form .picker--focused .picker__list-item--highlighted,.scheme_original .sc_form .picker__list-item--selected,.scheme_original .sc_form .picker__list-item--selected:hover,.scheme_original .sc_form .picker--focused .picker__list-item--selected{color:#020817;	background-color:#f0f0f0;	border-color:#bbbbbb}.scheme_original .sc_form .picker__list-item--disabled,.scheme_original .sc_form .picker__list-item--disabled:hover,.scheme_original .sc_form .picker--focused .picker__list-item--disabled{color:#acb4b6;	background-color:#ffffff;	border-color:#00a9e1}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:#262262}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_digits{border-color:#dddddd;	background-color:#f0f4f9}.scheme_original .sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:#262262}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:#262262}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:#262262}.scheme_original .sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:#262262}.scheme_original .sc_dropcaps .sc_dropcaps_item{color:#ffffff}.scheme_original .sc_dropcaps.sc_dropcaps_style_1 .sc_dropcaps_item{background:#262262; background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); background:linear-gradient(to right,#262262 0%,#00a9e1 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); }.scheme_original .sc_dropcaps.sc_dropcaps_style_2 .sc_dropcaps_item{background:#262262; background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); background:linear-gradient(to right,#262262 0%,#00a9e1 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); }.scheme_original .mc4wp-form input[type="email"]{background-color:#020817}.scheme_original .sc_video_frame.hover_icon:before{background:#262262; background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); background:linear-gradient(to right,#262262 0%,#00a9e1 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); 	color:#ffffff}.scheme_original .sc_events_item .sc_events_item_readmore{color:#262262}.scheme_original .sc_events_item .sc_events_item_readmore span{color:#262262}.scheme_original .sc_events_item .sc_events_item_readmore:hover,.scheme_original .sc_events_item .sc_events_item_readmore:hover span{color:#00a9e1}.scheme_original .sc_events_style_events-1 .sc_events_item{background-color:#ffffff;	color:#656c77}.scheme_original .sc_events_style_events-2 .sc_events_item{border-color:#dfe5ea}.scheme_original .sc_events_style_events-2 .sc_events_item_date{background-color:#262262;	color:#ffffff}.scheme_original .sc_events_style_events-2 .sc_events_item_time:before,.scheme_original .sc_events_style_events-2 .sc_events_item_details:before{background-color:#dfe5ea}.scheme_original .sc_googlemap_content{background-color:#ffffff}.scheme_original .sc_highlight_style_1{background-color:#262262;	color:#ffffff}.scheme_original .sc_highlight_style_2{background-color:#00a9e1;	color:#ffffff}.scheme_original .sc_highlight_style_3{background-color:#f0f4f9;	color:#8a8a8a}.scheme_original .sc_icon_hover:hover,.scheme_original a:hover .sc_icon_hover{color:#ffffff !important;	background-color:#262262 !important}.scheme_original .sc_icon_shape_round.sc_icon,.scheme_original .sc_icon_shape_square.sc_icon{background-color:#262262;	border-color:#262262;	color:#ffffff}.scheme_original .sc_icon_shape_round.sc_icon:hover,.scheme_original .sc_icon_shape_square.sc_icon:hover,.scheme_original a:hover .sc_icon_shape_round.sc_icon,.scheme_original a:hover .sc_icon_shape_square.sc_icon{color:#262262;	background-color:#ffffff}.scheme_original figure figcaption,.scheme_original .sc_image figcaption,.scheme_original .wp-caption .wp-caption-text,{background-color:#f0f4f9;	color:#9daab0}.scheme_original figure figcaption a,.scheme_original .sc_image figcaption a,.scheme_original .wp-caption .wp-caption-text a{color:#00a9e1}.scheme_original figure figcaption a:hover,.scheme_original .sc_image figcaption a:hover,.scheme_original .wp-caption .wp-caption-text a:hover{color:#00a9e1}.scheme_original .sc_infobox.sc_infobox_style_regular{background-color:#262262}.scheme_original .sc_intro_inner .sc_intro_subtitle{color:#00a9e1}.scheme_original .sc_intro_inner .sc_intro_title{color:#ffffff}.scheme_original .sc_intro_inner .sc_intro_descr,.scheme_original .sc_intro_inner .sc_intro_icon{color:#ffffff}.scheme_original .sc_list_style_iconed li:before,.scheme_original .sc_list_style_iconed .sc_list_icon{color:#262262}.scheme_original .sc_list_style_iconed li .sc_list_title{color:#262262}.scheme_original .sc_list_style_iconed li a:hover .sc_list_title{color:#00a9e1}.scheme_original .sc_list .sc_list_item{color:#262262}.scheme_original .sc_line{border-color:#dfe5ea}.scheme_original .sc_line .sc_line_title{color:#262262;	background-color:#ffffff}.scheme_original .match_block .player_country{background-color:#262262;	color:#ffffff}.scheme_original .match_block .player_name a{color:#232a34;	background-color:#f0f4f9}.scheme_original .match_block .player_name a:hover{color:#ffffff;	background-color:#262262}.scheme_original .match_block .match_score{color:#232a34;	background-color:#f0f4f9}.scheme_original .match_block .match_category a{color:#656c77}.scheme_original .match_block .match_category a:hover,.scheme_original .match_block .match_date{color:#262262}.scheme_original .post_item_colored .match_date{color:#262262}.scheme_original .matches_hover>a:after{background-color:rgba(38,34,98,0.3)}.scheme_original .sc_matches.style_matches-1 .sc_matches_next{background-color:#262262;	color:#ffffff}.scheme_original .sc_matches_next h2,.scheme_original .sc_matches_next .sc_item_subtitle{color:#ffffff}.scheme_original .sc_matches_next .sc_item_title:after{background-color:#ffffff}.scheme_original .sc_match_date{background-color:#ffffff;	color:#00a9e1}.scheme_original .sc_matches.style_matches-2 .sc_match_info{background-color:rgba(240,240,240,0.5)}.scheme_original .sc_matches.style_matches-2 .sc_matches_next .sc_item_title{background-color:#262262}.scheme_original .sc_matches.style_matches-2 .sc_matches_next .sc_match_date{background-color:#f0f0f0}.scheme_original .post_item_single_players .post_title:after{background-color:#262262}.scheme_original .post_item_single_players .player_info span{color:#262262}.scheme_original .sc_player .sc_player_info .sc_player_title a{color:#262262}.scheme_original .sc_player .sc_player_info .sc_player_club,.scheme_original .sc_player .sc_player_info .sc_player_title a:hover{color:#262262}.scheme_original .sc_player .sc_player_info{border-color:#262262}.scheme_original .sc_player .sc_player_avatar .sc_player_hover{background-color:rgba(38,34,98,0.8)}.scheme_original .sc_player .sc_socials.sc_socials_type_icons a,.scheme_original .sc_player .sc_socials.sc_socials_type_icons a:hover{color:#ffffff;	border-color:#ffffff}.scheme_original .post_item_colored .player_info{color:#262262}.scheme_original .sc_players_table table tr .country{color:#9daab0}.scheme_original .sc_players_table.style_2 table tr:nth-child(n+2){background-color:rgba(240,240,240,0.5)}.scheme_original .sc_players_table.style_2 .sc_table td{border-color:#ffffff}.scheme_original .sc_menuitems_style_menuitems-1 .sc_menuitem_price{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_spicy{color:#262262;	background-color:#ffffff}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_box_title{color:#ffffff;	background-color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions{color:#656c77;	border-color:#dfe5ea}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li{color:#262262}.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before,.scheme_original .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span{color:#262262}.scheme_original .popup_menuitem>.sc_menuitems_wrap{background-color:#ffffff}.scheme_original .sc_popup:before{background-color:#262262}.scheme_original .sc_price .sc_price_currency,.scheme_original .sc_price .sc_price_money,.scheme_original .sc_price .sc_price_penny{color:#262262}.scheme_original .sc_price .sc_price_info{color:#9daab0}.scheme_original .sc_price_block,.scheme_original .sc_price_block .sc_price_block_money *{color:#ffffff}.scheme_original .sc_price_block.sc_price_block_style_1{background-color:#262262}.scheme_original .sc_price_block.sc_price_block_style_1 .sc_price_block_link .sc_button{background-color:#00a9e1}.scheme_original .sc_price_block.sc_price_block_style_2{background-color:#00a9e1}.scheme_original .sc_price_block.sc_price_block_style_3,.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_money *{color:#262262;	background-color:#f0f4f9}.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_title{background:#262262; 	background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); 	background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); 	background:linear-gradient(to right,#262262 0%,#00a9e1 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); 	color:#ffffff}.scheme_original .sc_price_block.sc_price_block_style_3 .sc_price_block_money{border-color:#dfe5ea}.scheme_original .sc_promo_image,.scheme_original .sc_promo_block{background-color:#f0f0f0}.scheme_original .sc_promo_title{color:#232a34}.scheme_original .sc_promo_descr{color:#8a8a8a}.scheme_original .sc_recent_news_header{border-color:#262262}.scheme_original .sc_recent_news_header_category_item_more{color:#262262}.scheme_original .sc_recent_news_header_more_categories{border-color:#dddddd;	background-color:#f0f4f9}.scheme_original .sc_recent_news_header_more_categories>a{color:#00a9e1}.scheme_original .sc_recent_news_header_more_categories>a:hover{color:#00a9e1;	background-color:#f0f0f0}.scheme_original .sc_recent_news .post_counters_item,.scheme_original .sc_recent_news .post_counters .post_edit a{background-color:#f0f4f9}.scheme_original .sidebar .sc_recent_news .post_counters_item,.scheme_original .sidebar .sc_recent_news .post_counters .post_edit a{background-color:#ffffff}.scheme_original .sc_recent_news .post_counters .post_edit a{color:#232a34}.scheme_original .sc_recent_news_style_news-magazine .post_accented_border{border-color:#dfe5ea}.scheme_original .sc_recent_news_style_news-excerpt .post_item{border-color:#dfe5ea}.scheme_original .sc_section_inner{color:#656c77}.scheme_original .sc_services_item .sc_services_item_readmore{color:#262262}.scheme_original .sc_services_item .sc_services_item_readmore span{color:#262262}.scheme_original .sc_services_item .sc_services_item_readmore:hover,.scheme_original .sc_services_item .sc_services_item_readmore:hover span{color:#00a9e1}.scheme_original .sc_services_style_services-1 .sc_services_item{color:#656c77}.scheme_original .sc_services_style_services-1 .sc_icon,.scheme_original .sc_services_style_services-2 .sc_icon{color:#00a9e1;	background-color:#ffffff}.scheme_original .sc_services_style_services-1 .sc_icon:hover,.scheme_original .sc_services_style_services-1 a:hover .sc_icon,.scheme_original .sc_services_style_services-2 .sc_icon:hover,.scheme_original .sc_services_style_services-2 a:hover .sc_icon{background:#262262; background:-moz-linear-gradient(left,#262262 0%,#00a9e1 100%); background:-webkit-linear-gradient(left,#262262 0%,#00a9e1 100%); background:linear-gradient(to right,#262262 0%,#00a9e1 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 );  color:#ffffff}.scheme_original .sc_services_style_services-3 a:hover .sc_icon,.scheme_original .sc_services_style_services-3 .sc_icon:hover{color:#262262;	background-color:#ffffff}.scheme_original .sc_services_style_services-3 a:hover .sc_services_item_title{color:#262262}.scheme_original .sc_services_style_services-4 .sc_icon{color:#ffffff;	background-color:#262262}.scheme_original .sc_services_style_services-4 .sc_services_item_title{color:#262262}.scheme_original .sc_services_style_services-4 a:hover .sc_icon,.scheme_original .sc_services_style_services-4 .sc_icon:hover{background-color:#00a9e1}.scheme_original .sc_services_style_services-4 a:hover .sc_services_item_title{color:#262262}.scheme_original .sc_services_style_services-5 .sc_icon{border-color:#00a9e1}.scheme_original .sc_services_style_services-5 .sc_icon{color:#00a9e1}.scheme_original .sc_services_style_services-5 .sc_icon:hover,.scheme_original .sc_services_style_services-5 a:hover .sc_icon{background-color:#00a9e1}.scheme_original .sc_services_style_services-5 .sc_icon:hover,.scheme_original .sc_services_style_services-5 a:hover .sc_icon{color:#ffffff}.scheme_original .sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{color:#00a9e1}.scheme_original .sc_scroll_controls_wrap a{background-color:#262262;	color:#ffffff}.scheme_original .sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(38,34,98,0.8)}.scheme_original .sc_scroll_controls_wrap a:hover{color:#ffffff;	background-color:#00a9e1}.scheme_original .sc_scroll_bar .swiper-scrollbar-drag:before{background-color:#262262}.scheme_original .sc_scroll .sc_scroll_bar{border-color:#f0f4f9}.scheme_original .sc_skills_bar .sc_skills_item{background-color:#f0f4f9}.scheme_original .sc_skills_counter .sc_skills_item .sc_skills_icon{color:#262262}.scheme_original .sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#00a9e1}.scheme_original .sc_skills_counter .sc_skills_item .sc_skills_info{color:#262262}.scheme_original .sc_skills_bar .sc_skills_item .sc_skills_count{border-color:#262262}.scheme_original .sc_skills_bar .sc_skills_info .sc_skills_label{color:#262262}.scheme_original .sc_skills_bar.sc_skills_horizontal .sc_skills_total{color:#9daab0}.scheme_original .sc_skills_legend_title,.scheme_original .sc_skills_legend_value{color:#262262}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1{color:#ffffff;	background:#262262; 	background:-moz-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:-webkit-linear-gradient(left,#262262 9%,#00a9e1 55%); 	background:linear-gradient(to right,#262262 9%,#00a9e1 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#262262',endColorstr='#00a9e1',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1:hover{}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count{color:#232a34}.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info{color:#ffffff}.scheme_original .sc_skills_bar .sc_skills_item .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.scheme_original .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{color:#ffffff;	background-color:#262262}.scheme_original .sc_skills_pie.sc_skills_compact_off .sc_skills_total,.scheme_original .sc_skills_pie.sc_skills_compact_off .sc_skills_label{color:#262262}.scheme_original .sc_skills .sc_skills_descr{color:#9daab0}.scheme_original .sc_slider_controls_wrap a{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_slider_controls_bottom .sc_slider_controls_wrap a:hover{color:#ffffff;	background-color:#262262}.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap span{border-color:#dfe5ea}.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,.scheme_original .sc_slider_swiper .sc_slider_pagination_wrap span:hover{border-color:#00a9e1;	background-color:#00a9e1}.scheme_original .sc_slider_swiper .sc_slider_info{background-color:rgba(38,34,98,0.8) !important}.scheme_original .sc_slider_pagination.widget_area .post_item + .post_item{border-color:#dfe5ea}.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap span{border-color:#dfe5ea}.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.scheme_original .sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:#262262;	background-color:#262262}.scheme_original .sc_slider_pagination_over .sc_slider_pagination .post_title{color:#232a34}.scheme_original .sc_slider_pagination_over .sc_slider_pagination .post_info{color:#8a8a8a}.scheme_original .sc_slider_pagination_area .sc_slider_pagination .post_item.active{background-color:#f0f4f9 !important}.scheme_original .sc_slider_controls_bottom .sc_slider_controls_wrap a{background-color:#00a9e1;	color:#ffffff}.scheme_original .sc_socials.sc_socials_type_icons a{color:#acb4b6;	border-color:#acb4b6}.scheme_original .sc_socials.sc_socials_type_icons a:hover{color:#262262;	border-color:#262262}.scheme_original .sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a{background-color:#f0f4f9}.scheme_original .sc_socials .social_icons{background-color:#00a9e1}.scheme_original .sc_socials .social_icons span{color:#ffffff}.scheme_original .sc_socials .social_icons:hover span{color:#00a9e1}.scheme_original .sc_socials .social_icons:hover{background-color:#ffffff!important}.scheme_original .post_author .post_author_info a{color:#00a9e1}.scheme_original .post_author .post_author_info a:hover{color:#00a9e1}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a{color:#262262;	border-color:#dfe5ea}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:#262262}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:#262262}.scheme_original .sc_tabs.sc_tabs_style_1 .sc_tabs_content,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_content{border-color:#dfe5ea}.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:#262262;	background-color:#262262;	color:#ffffff}.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.scheme_original .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:#262262}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_title a{color:#262262}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#00a9e1}.scheme_original .sc_team_item .sc_team_item_info .sc_team_item_position{color:#00a9e1}.scheme_original .sc_team_style_team-1 .sc_team_item_info,.scheme_original .sc_team_style_team-3 .sc_team_item_info{border-color:#262262;	color:#656c77;	background-color:#ffffff}.scheme_original .sc_team_style_team-1.team_grey .sc_team_item_info,.scheme_original .sc_team_style_team-3.team_grey .sc_team_item_info{background-color:#f0f4f9}.scheme_original .sc_team.sc_team_style_team-3 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_team.sc_team_style_team-3 .sc_socials_item a:hover{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(38,34,98,0.8)}.scheme_original .sc_team.sc_team_style_team-4 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_original .sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:#262262;	border-color:#262262}.scheme_original .sc_team.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover{color:#ffffff;	background-color:rgba(38,34,98,0.8)}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a{color:#ffffff}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:#262262}.scheme_original .sc_team_style_team-4 .sc_team_item_info .sc_team_item_position{color:#ffffff}.scheme_original .sc_team .sc_team_descr{color:#9daab0}.scheme_original .post_item_single_team .single_team_post_description .team_position{color:#00a9e1}.scheme_original .post_item_single_team .single_team_post_description .team_meta{color:#9daab0}.scheme_original .post_item_single_team .single_team_post_description .team_brief_info_text p:after{background-color:#dfe5ea}.scheme_original .sc_testimonials{color:#656c77}.scheme_original .sc_testimonial_author_name{color:#262262}.scheme_original .sc_testimonial_position_position{color:#9daab0}.scheme_original .sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before{color:#9daab0}.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content,.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content:after{background-color:#ffffff}.scheme_original .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before{color:#262262}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{color:#00a9e1}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#262262}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content{background-color:#ffffff}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{background-color:#ffffff;	border-color:#ffffff}.scheme_original .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#9daab0}.scheme_original .sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{background-color:#f0f4f9}.scheme_original .sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{background-color:#f0f4f9;	border-color:#f0f4f9}.scheme_original .sc_title_icon{color:#262262}.scheme_original .sc_title_underline::after{border-color:#262262}.scheme_original .sc_title_divider .sc_title_divider_before,.scheme_original .sc_title_divider .sc_title_divider_after{background-color:#262262}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title{border-color:#dfe5ea}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon{color:#acb4b6;	background-color:#f0f4f9}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:#262262;	border-color:#262262}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{color:#ffffff;	background-color:#262262}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#00a9e1;	border-color:#00a9e1}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#00a9e1}.scheme_original .sc_toggles .sc_toggles_item .sc_toggles_content{border-color:#dfe5ea}.scheme_original .sc_tooltip_parent .sc_tooltip,.scheme_original .sc_tooltip_parent .sc_tooltip:before{background-color:#262262}.scheme_original .sc_twitter{color:#656c77}.scheme_original .sc_twitter .sc_slider_controls_wrap a{color:#ffffff}/* Common styles (title,subtitle and description for some shortcodes) */.scheme_original .sc_item_subtitle{color:#00a9e1}.scheme_original .sc_item_title:after{background-color:#262262}.scheme_original .sc_item_button>a:before{color:#262262;	background-color:#ffffff}.scheme_original .sc_item_button>a:hover:before{color:#00a9e1}.scheme_original body table.booked-calendar thead th .monthName,.scheme_original body table.booked-calendar thead th .monthName a{color:#262262}.scheme_original body table.booked-calendar thead th .monthName a:hover{color:#00a9e1}.scheme_original body table.booked-calendar thead th .page-right,.scheme_original body table.booked-calendar thead th .page-left{color:#00a9e1 !important}.scheme_original body table.booked-calendar td .date{background-color:#f0f4f9}.scheme_original body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover{background-color:#262262 !important}.scheme_original .wpcf7-form-control-wrap .select_container:after{color:#acb4b6}.scheme_original .cff-container-field label,.scheme_original .cff-number-field label,.scheme_original .cff-dropdown-field label,.scheme_original .cff-date-field label,.scheme_original .calculated-result .field[type="text"],.scheme_original .cff-calculated-field label{color:#262262}.scheme_original .wp-block-button:not(.is-style-outline) .wp-block-button__link{color:#00a9e1}.scheme_original .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{color:#00a9e1}.scheme_original .is-style-outline>.wp-block-button__link:not(.has-text-color),.scheme_original .wp-block-button__link.is-style-outline:not(.has-text-color){color:#00a9e1}.scheme_original .is-style-outline>.wp-block-button__link:not(.has-text-color):hover,.scheme_original .wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#00a9e1}.scheme_original .wp-block-audio .mejs-container .mejs-controls .mejs-time{color:#00a9e1}.scheme_original body .booked-modal input[type=submit].button-primary:hover{color:#00a9e1}.scheme_original .widget_block .wp-block-search__button-outside input[type="search"]{background-color:#ffffff}.scheme_dark h1,.scheme_dark h2,.scheme_dark h3,.scheme_dark h4,.scheme_dark h5,.scheme_dark h6,.scheme_dark h1 a,.scheme_dark h2 a,.scheme_dark h3 a,.scheme_dark h4 a,.scheme_dark h5 a,.scheme_dark h6 a{color:#ffffff}.scheme_dark a{color:#ffffff}.scheme_dark a:hover{color:#00a9e1}.scheme_dark blockquote:before{color:#ffffff}.scheme_dark blockquote a{color:#ffffff}.scheme_dark blockquote a:hover{color:#00a9e1}.scheme_dark blockquote,.scheme_dark blockquote p{color:#ffffff}.scheme_dark blockquote{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); 	color:#ffffff}.scheme_dark .accent1{color:#ffffff}.scheme_dark .accent1_bgc{background-color:#ffffff}.scheme_dark .accent1_bg{background:#ffffff}.scheme_dark .accent1_border{border-color:#ffffff}.scheme_dark a.accent1:hover{color:#00a9e1}.scheme_dark .post_content.ih-item.circle.effect1.colored .info,.scheme_dark .post_content.ih-item.circle.effect2.colored .info,.scheme_dark .post_content.ih-item.circle.effect3.colored .info,.scheme_dark .post_content.ih-item.circle.effect4.colored .info,.scheme_dark .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect6.colored .info,.scheme_dark .post_content.ih-item.circle.effect7.colored .info,.scheme_dark .post_content.ih-item.circle.effect8.colored .info,.scheme_dark .post_content.ih-item.circle.effect9.colored .info,.scheme_dark .post_content.ih-item.circle.effect10.colored .info,.scheme_dark .post_content.ih-item.circle.effect11.colored .info,.scheme_dark .post_content.ih-item.circle.effect12.colored .info,.scheme_dark .post_content.ih-item.circle.effect13.colored .info,.scheme_dark .post_content.ih-item.circle.effect14.colored .info,.scheme_dark .post_content.ih-item.circle.effect15.colored .info,.scheme_dark .post_content.ih-item.circle.effect16.colored .info,.scheme_dark .post_content.ih-item.circle.effect18.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect19.colored .info,.scheme_dark .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect1.colored .info,.scheme_dark .post_content.ih-item.square.effect2.colored .info,.scheme_dark .post_content.ih-item.square.effect3.colored .info,.scheme_dark .post_content.ih-item.square.effect4.colored .mask1,.scheme_dark .post_content.ih-item.square.effect4.colored .mask2,.scheme_dark .post_content.ih-item.square.effect5.colored .info,.scheme_dark .post_content.ih-item.square.effect6.colored .info,.scheme_dark .post_content.ih-item.square.effect7.colored .info,.scheme_dark .post_content.ih-item.square.effect8.colored .info,.scheme_dark .post_content.ih-item.square.effect9.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect10.colored .info,.scheme_dark .post_content.ih-item.square.effect11.colored .info,.scheme_dark .post_content.ih-item.square.effect12.colored .info,.scheme_dark .post_content.ih-item.square.effect13.colored .info,.scheme_dark .post_content.ih-item.square.effect14.colored .info,.scheme_dark .post_content.ih-item.square.effect15.colored .info,.scheme_dark .post_content.ih-item.circle.effect20.colored .info .info-back,.scheme_dark .post_content.ih-item.square.effect_book.colored .info,.scheme_dark .post_content.ih-item.square.effect_pull.colored .post_descr{background:#ffffff;	color:#ffffff}.scheme_dark .post_content.ih-item.circle.effect1.colored .info,.scheme_dark .post_content.ih-item.circle.effect2.colored .info,.scheme_dark .post_content.ih-item.circle.effect5.colored .info .info-back,.scheme_dark .post_content.ih-item.circle.effect19.colored .info,.scheme_dark .post_content.ih-item.square.effect4.colored .mask1,.scheme_dark .post_content.ih-item.square.effect4.colored .mask2,.scheme_dark .post_content.ih-item.square.effect6.colored .info,.scheme_dark .post_content.ih-item.square.effect7.colored .info,.scheme_dark .post_content.ih-item.square.effect12.colored .info,.scheme_dark .post_content.ih-item.square.effect13.colored .info,.scheme_dark .post_content.ih-item.square.effect_more.colored .info,.scheme_dark .post_content.ih-item.square.effect_dir.colored .info,.scheme_dark .post_content.ih-item.square.effect_shift.colored .info{background:rgba(255,255,255,0.6);	color:#ffffff}.scheme_dark .post_content.ih-item.square.effect_border.colored .img,.scheme_dark .post_content.ih-item.square.effect_fade.colored .img,.scheme_dark .post_content.ih-item.square.effect_slide.colored .img{background:#ffffff}.scheme_dark .post_content.ih-item.square.effect_border.colored .info,.scheme_dark .post_content.ih-item.square.effect_fade.colored .info,.scheme_dark .post_content.ih-item.square.effect_slide.colored .info{color:#ffffff}.scheme_dark .post_content.ih-item.square.effect_border.colored .info:before,.scheme_dark .post_content.ih-item.square.effect_border.colored .info:after{border-color:#ffffff}.scheme_dark .post_content.ih-item.circle.effect1 .spinner{border-right-color:#ffffff;	border-bottom-color:#ffffff}.scheme_dark .post_content.ih-item .post_readmore .post_readmore_label,.scheme_dark .post_content.ih-item .info a,.scheme_dark .post_content.ih-item .info a>span{color:#ffffff}.scheme_dark .post_content.ih-item .post_readmore:hover .post_readmore_label,.scheme_dark .post_content.ih-item .info a:hover,.scheme_dark .post_content.ih-item .info a:hover>span{color:#e5e5e5}.scheme_dark td,.scheme_dark th{border-color:rgba(38,34,98,0.8)}.scheme_dark table{color:#0a1f54}.scheme_dark table tr:nth-child(2n+1){background-color:rgba(255,255,255,0.4)}.scheme_dark table:not(.shop_attributes):not(.shop_table):not(.group_table):not(.variations):not(#debug_bar_http) tr:first-child{background-color:#ffffff;	color:#ffffff}.scheme_dark table tr:first-child td{border-color:rgba(38,34,98,0.1)}.scheme_dark table tr:nth-child(2n){background-color:#ffffff}.scheme_dark table thead + tbody tr:first-child{background-color:rgba(255,255,255,0.4);	color:#0a1f54}.scheme_dark .sc_table th{color:#ffffff; background-color:#0a1f54}.scheme_dark pre.code,.scheme_dark #toc .toc_item.current,.scheme_dark #toc .toc_item:hover{border-color:#ffffff}.scheme_dark::selection,.scheme_dark::-moz-selection{background-color:#ffffff;	color:#ffffff}.scheme_dark input[type="text"],.scheme_dark input[type="number"],.scheme_dark input[type="tel"],.scheme_dark input[type="email"],.scheme_dark input[type="search"],.scheme_dark input[type="password"],.scheme_dark select,.scheme_dark textarea{color:#999999;	border-color:#909090;	background-color:#ffffff}.scheme_dark input[type="text"]:focus,.scheme_dark input[type="number"]:focus,.scheme_dark input[type="tel"]:focus,.scheme_dark input[type="email"]:focus,.scheme_dark input[type="search"]:focus,.scheme_dark input[type="password"]:focus,.scheme_dark select:focus,.scheme_dark textarea:focus{color:#999999;	border-color:#888888;	background-color:#ffffff}.scheme_dark input::-webkit-input-placeholder,.scheme_dark textarea::-webkit-input-placeholder{color:#aaaaaa}.scheme_dark input:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_dark textarea:focus::-webkit-input-placeholder{color:#00a9e1}.scheme_dark input:focus:-moz-placeholder{color:#00a9e1}.scheme_dark textarea:focus:-moz-placeholder{color:#00a9e1}.scheme_dark input:focus::-moz-placeholder{color:#00a9e1}.scheme_dark textarea:focus::-moz-placeholder{color:#00a9e1}.scheme_dark fieldset{border-color:#29395f}.scheme_dark fieldset legend{background-color:#262262;	color:#9daab0}/* ======================== INPUT'S STYLES ================== */.scheme_dark .sc_input_hover_accent input[type="text"]:focus,.scheme_dark .sc_input_hover_accent input[type="number"]:focus,.scheme_dark .sc_input_hover_accent input[type="email"]:focus,.scheme_dark .sc_input_hover_accent input[type="password"]:focus,.scheme_dark .sc_input_hover_accent input[type="search"]:focus,.scheme_dark .sc_input_hover_accent select:focus,.scheme_dark .sc_input_hover_accent textarea:focus{box-shadow:0px 0px 0px 2px #ffffff}.scheme_dark .sc_input_hover_accent input[type="text"] + label:before,.scheme_dark .sc_input_hover_accent input[type="number"] + label:before,.scheme_dark .sc_input_hover_accent input[type="email"] + label:before,.scheme_dark .sc_input_hover_accent input[type="password"] + label:before,.scheme_dark .sc_input_hover_accent input[type="search"] + label:before,.scheme_dark .sc_input_hover_accent select + label:before,.scheme_dark .sc_input_hover_accent textarea + label:before{color:rgba(255,255,255,0.6)}.scheme_dark .sc_input_hover_path input[type="text"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="number"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="email"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="password"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path input[type="search"] + label>.sc_form_graphic,.scheme_dark .sc_input_hover_path textarea + label>.sc_form_graphic{stroke:#909090}.scheme_dark .sc_input_hover_jump .sc_form_label_content:before{color:#ffffff}.scheme_dark .sc_input_hover_jump input[type="text"],.scheme_dark .sc_input_hover_jump input[type="number"],.scheme_dark .sc_input_hover_jump input[type="email"],.scheme_dark .sc_input_hover_jump input[type="password"],.scheme_dark .sc_input_hover_jump input[type="search"],.scheme_dark .sc_input_hover_jump textarea{border-color:#909090}.scheme_dark .sc_input_hover_jump input[type="text"]:focus,.scheme_dark .sc_input_hover_jump input[type="number"]:focus,.scheme_dark .sc_input_hover_jump input[type="email"]:focus,.scheme_dark .sc_input_hover_jump input[type="password"]:focus,.scheme_dark .sc_input_hover_jump input[type="search"]:focus,.scheme_dark .sc_input_hover_jump textarea:focus,.scheme_dark .sc_input_hover_jump input[type="text"].filled,.scheme_dark .sc_input_hover_jump input[type="number"].filled,.scheme_dark .sc_input_hover_jump input[type="email"].filled,.scheme_dark .sc_input_hover_jump input[type="password"].filled,.scheme_dark .sc_input_hover_jump input[type="search"].filled,.scheme_dark .sc_input_hover_jump textarea.filled{border-color:#ffffff}.scheme_dark .sc_input_hover_underline input[type="text"] + label:before,.scheme_dark .sc_input_hover_underline input[type="number"] + label:before,.scheme_dark .sc_input_hover_underline input[type="email"] + label:before,.scheme_dark .sc_input_hover_underline input[type="password"] + label:before,.scheme_dark .sc_input_hover_underline input[type="search"] + label:before,.scheme_dark .sc_input_hover_underline textarea + label:before{background-color:#909090}.scheme_dark .sc_input_hover_jump input[type="text"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="number"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="email"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="password"]:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="search"]:focus + label:before,.scheme_dark .sc_input_hover_jump textarea:focus + label:before,.scheme_dark .sc_input_hover_jump input[type="text"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="number"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="email"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="password"].filled + label:before,.scheme_dark .sc_input_hover_jump input[type="search"].filled + label:before,.scheme_dark .sc_input_hover_jump textarea.filled + label:before{background-color:#888888}.scheme_dark .sc_input_hover_underline input[type="text"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"] + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea + label>.sc_form_label_content{color:#999999}.scheme_dark .sc_input_hover_underline input[type="text"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"]:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea:focus + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="text"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="number"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="email"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="password"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline input[type="search"].filled + label>.sc_form_label_content,.scheme_dark .sc_input_hover_underline textarea.filled + label>.sc_form_label_content{color:#d0d0d0}.scheme_dark .sc_input_hover_iconed input[type="text"] + label,.scheme_dark .sc_input_hover_iconed input[type="number"] + label,.scheme_dark .sc_input_hover_iconed input[type="email"] + label,.scheme_dark .sc_input_hover_iconed input[type="password"] + label,.scheme_dark .sc_input_hover_iconed input[type="search"] + label,.scheme_dark .sc_input_hover_iconed textarea + label{color:#999999}.scheme_dark .sc_input_hover_iconed input[type="text"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="number"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="email"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="password"]:focus + label,.scheme_dark .sc_input_hover_iconed input[type="search"]:focus + label,.scheme_dark .sc_input_hover_iconed textarea:focus + label,.scheme_dark .sc_input_hover_iconed input[type="text"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="number"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="email"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="password"].filled + label,.scheme_dark .sc_input_hover_iconed input[type="search"].filled + label,.scheme_dark .sc_input_hover_iconed textarea.filled + label{color:#999999}/* ======================== END INPUT'S STYLES ================== */.scheme_dark .body_wrap{color:#9daab0}.scheme_dark .body_style_boxed .body_wrap{background-color:#262262}.scheme_dark body:not(.video_bg_show),.scheme_dark body:not(.video_bg_show) .page_wrap,.scheme_dark .copy_wrap,.scheme_dark .sidebar_cart,.scheme_dark .widget_area_inner,.scheme_dark #page_preloader{background-color:#262262}.scheme_dark .widget_area_inner{background-color:#ffffff}.scheme_dark .footer_wrap_inner.widget_area_inner{background-color:#262262}.scheme_dark .widget_rss .widget_title a{color:#0a1f54}.scheme_dark .widget_rss .widget_title a:hover{color:#00a9e1}.scheme_dark .footer_wrap_inner .widget_rss .widget_title a,.scheme_dark .footer_wrap_inner .widget_rss .rsswidget,.scheme_dark .footer_wrap_inner .widget_rss .rss-date,.scheme_dark .footer_wrap_inner .widget_rss .rssSummary{color:#ffffff}.scheme_dark .footer_wrap_inner .widget_rss .widget_title a:hover,.scheme_dark .footer_wrap_inner .widget_rss a.rsswidget:hover{color:#00a9e1}.scheme_dark .article_style_boxed .content>article>.post_content,.scheme_dark .article_style_boxed[class*="single-"] .content>.comments_wrap,.scheme_dark .article_style_boxed[class*="single-"] .content>article>.post_info_share,.scheme_dark .article_style_boxed:not(.layout_excerpt):not(.single) .content .post_item{background-color:#ffffff}.scheme_dark .top_panel_wrap_inner{background-color:#262262}.scheme_dark .top_panel_fixed .top_panel_position_over.top_panel_wrap_inner{background-color:#ffffff !important}.scheme_dark .top_panel_inner_style_3 .top_panel_cart_button,.scheme_dark .top_panel_inner_style_4 .top_panel_cart_button{background-color:rgba(0,169,225,0.2)}.scheme_dark .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:before{background-color:#ffffff}.scheme_dark .top_panel_style_8 .top_panel_buttons .top_panel_cart_button:after{color:#ffffff}.scheme_dark .top_panel_middle .sidebar_cart:after,.scheme_dark .top_panel_middle .sidebar_cart{border-color:#29395f;	background-color:#262262}.scheme_dark .top_panel_inner_style_3 .top_panel_top,.scheme_dark .top_panel_inner_style_4 .top_panel_top,.scheme_dark .top_panel_inner_style_5 .top_panel_top,.scheme_dark .top_panel_inner_style_3 .top_panel_top .sidebar_cart,.scheme_dark .top_panel_inner_style_4 .top_panel_top .sidebar_cart{color:#ffffff;	background-color:#ffffff}.scheme_dark .top_panel_top a{color:#9daab0}.scheme_dark .top_panel_top a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .top_panel_top strong,.scheme_dark .top_panel_inner_style_3 .top_panel_top a,.scheme_dark .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_4 .top_panel_top a,.scheme_dark .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_5 .top_panel_top a,.scheme_dark .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_3 .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_4 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_4 .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_5 .top_panel_top a:hover,.scheme_dark .top_panel_inner_style_5 .sc_socials.sc_socials_type_icons a:hover{color:#e5e5e5}.scheme_dark .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .search_results .post_info a[class*="icon-"]:hover{color:#e5e5e5}.scheme_dark .top_panel_wrap .contact_label{color:#00a9e1}.scheme_dark .top_panel_bottom .search_wrap .search_form button:before{color:#00a9e1}.scheme_dark .top_panel_bottom .search_wrap .search_form button:hover:before{color:#00a9e1}.scheme_dark .menu_user_nav>li>a{color:#9daab0}.scheme_dark .menu_user_nav>li>a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>a{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>a:hover,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>a:hover,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>a:hover{color:#e5e5e5}.scheme_dark .menu_user_nav>li ul:not(.cart_list){border-color:#29395f;	background-color:#262262}.scheme_dark .top_panel_inner_style_1 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_2 .menu_user_nav>li>ul:after{border-color:#29395f;	background-color:#262262}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li>ul:after,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul{color:#ffffff;	background-color:#ffffff;	border-color:#00a9e1}.scheme_dark .menu_user_nav>li ul li a{color:#5e657c}.scheme_dark .menu_user_nav>li ul li a:hover,.scheme_dark .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .menu_user_nav>li ul li.current-menu-ancestor>a{color:#d0d0d0;	background-color:#505050}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li ul li.current-menu-ancestor>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li a:hover,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-item>a,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li ul li.current-menu-ancestor>a{background-color:#00a9e1}.scheme_dark .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#29395f}.scheme_dark .top_panel_inner_style_3 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_dark .top_panel_inner_style_4 .menu_user_nav>li.menu_user_controls .user_avatar,.scheme_dark .top_panel_inner_style_5 .menu_user_nav>li.menu_user_controls .user_avatar{border-color:#ffffff}.scheme_dark .menu_user_nav>li.menu_user_bookmarks .bookmarks_add{border-bottom-color:#909090}.scheme_dark .logo .logo_text{color:#0a1f54}.scheme_dark .logo .logo_slogan{color:#9daab0}/* Top panel (bottom area) */.scheme_dark .top_panel_image_hover{background-color:rgba(0,169,225,0.8)}.scheme_dark .top_panel_image_header,.scheme_dark .top_panel_image_title,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_text,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .logo_slogan{color:#ffffff}.scheme_dark .top_panel_image_header a,.scheme_dark .top_panel_image_title>a,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a{color:#ffffff}.scheme_dark .post_featured .post_header a:hover,.scheme_dark .top_panel_over:not(.top_panel_fixed) .top_panel_style_7 .menu_main_nav>li>a:hover{color:#e5e5e5}.scheme_dark .menu_main_nav>li>a{color:#0a1f54}.scheme_dark .menu_main_nav>li ul{color:#ffffff;	background-color:#00a9e1}.scheme_dark .menu_main_nav>a:hover,.scheme_dark .menu_main_nav>li>a:hover,.scheme_dark .menu_main_nav>li.sfHover>a,.scheme_dark .menu_main_nav>li.current-menu-item>a,.scheme_dark .menu_main_nav>li.current-menu-parent>a,.scheme_dark .menu_main_nav>li.current-menu-ancestor>a{border-color:#00a9e1;	color:#00a9e1}.scheme_dark .menu_main_nav>li ul li a{color:#ffffff}.scheme_dark .menu_main_nav>li ul li a:hover,.scheme_dark .menu_main_nav>li ul li.current-menu-item>a,.scheme_dark .menu_main_nav>li ul li.current-menu-ancestor>a{color:#0a1f54}.scheme_dark .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#505050}.scheme_dark .top_panel_inner_style_1 .menu_hover_slide_box .menu_main_nav>li#blob,.scheme_dark .top_panel_inner_style_2 .menu_hover_slide_box .menu_main_nav>li#blob{background-color:#00a9e1}.scheme_dark .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_slide_line .menu_main_nav>li#blob,.scheme_dark .top_panel_inner_style_2 .menu_hover_slide_line .menu_main_nav>li#blob{background-color:#ffffff}.scheme_dark .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_zoom_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_zoom_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_dark .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_1 .menu_hover_path_line .menu_main_nav>li>a:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_path_line .menu_main_nav>li>a:after{background-color:#ffffff}.scheme_dark .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_roll_down .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_roll_down .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:focus{color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#ffffff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:before,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:before{background-color:#ffffff}.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:after,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:after{background-color:#e5e5e5}.scheme_dark .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .menu_hover_color_line .menu_main_nav>li>a:focus{color:#e5631b}.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_1 .menu_hover_color_line .menu_main_nav>li>a:focus,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li.sfHover>a,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:hover,.scheme_dark .top_panel_inner_style_2 .menu_hover_color_line .menu_main_nav>li>a:focus{color:#e5e5e5}.scheme_dark .top_panel_middle .contact_field,.scheme_dark .top_panel_middle .contact_field>a{color:#0a1f54}.scheme_dark .top_panel_middle .contact_icon{color:rgba(157,170,176,0.6)}.scheme_dark .top_panel_middle .content_wrap>.columns_wrap{border-color:#909090}.scheme_dark .top_panel_inner_style_1 .search_field,.scheme_dark .top_panel_inner_style_2 .search_field,.scheme_dark .top_panel_inner_style_3 .search_field{border-color:rgba(255,255,255,0.1);	background-color:rgba(0,169,225,0.2)}.scheme_dark .top_panel_inner_style_4 .search_field{background-color:rgba(10,31,84,0.05)}.scheme_dark .content .search_field{background-color:#ffffff}.scheme_dark .content .search_field,.scheme_dark .content .search_submit{color:#5e657c}.scheme_dark .content .search_submit:before{color:#ffffff}.scheme_dark .content .search_field:focus,.scheme_dark .content .search_submit:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_1 .search_field,.scheme_dark .top_panel_inner_style_1 .search_submit,.scheme_dark .top_panel_inner_style_2 .search_field,.scheme_dark .top_panel_inner_style_2 .search_submit,.scheme_dark .top_panel_inner_style_4 .search_field,.scheme_dark .top_panel_inner_style_4 .search_submit{color:#0a1f54}.scheme_dark .top_panel_inner_style_3 .search_field,.scheme_dark .top_panel_inner_style_3 .search_submit{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .search_field:focus,.scheme_dark .top_panel_inner_style_3 .search_submit:focus,.scheme_dark .top_panel_inner_style_3 .search_submit:hover{color:#ffffff}.scheme_dark .top_panel_inner_style_8 .search_field:hover,.scheme_dark .top_panel_inner_style_8 .search_field:focus{color:#d0d0d0 !important;	background-color:#505050 !important}.scheme_dark .top_panel_icon.search_wrap{background-color:#262262;	color:#ffffff}.scheme_dark .top_panel_icon .contact_icon,.scheme_dark .top_panel_icon .search_submit{color:#ffffff}.scheme_dark .top_panel_icon.menu_main_cart .contact_icon{background-color:#262262}.scheme_dark .top_panel_middle a:hover .contact_icon,.scheme_dark .top_panel_icon.search_wrap:hover,.scheme_dark .top_panel_icon:hover .contact_icon,.scheme_dark .top_panel_icon:hover .search_submit{background-color:#ffffff}.scheme_dark .top_panel_middle a:hover .contact_icon,.scheme_dark .top_panel_icon.search_wrap:hover input,.scheme_dark .top_panel_icon.search_wrap:hover button,.scheme_dark .top_panel_icon:hover .contact_icon,.scheme_dark .top_panel_icon:hover .search_submit{color:#ffffff}.scheme_dark .search_style_fullscreen.search_state_closed:not(.top_panel_icon) .search_submit,.scheme_dark .search_style_slide.search_state_closed:not(.top_panel_icon) .search_submit{color:#ffffff}.scheme_dark .search_style_expand.search_state_opened:not(.top_panel_icon) .search_submit:hover,.scheme_dark .search_style_slide.search_state_opened:not(.top_panel_icon) .search_submit:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_3 .search_style_expand.search_state_opened .search_submit:hover,.scheme_dark .top_panel_inner_style_3 .search_style_slide.search_state_opened .search_submit:hover{color:#ffffff}.scheme_dark .search_style_slide.search_state_opened:not(.top_panel_icon) .search_form_wrap{top:0.8em}.scheme_dark .search_results .post_more,.scheme_dark .search_results .search_results_close{color:#ffffff}.scheme_dark .search_results .post_more:hover,.scheme_dark .search_results .search_results_close:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_1 .search_results,.scheme_dark .top_panel_inner_style_1 .search_results:after,.scheme_dark .top_panel_inner_style_2 .search_results,.scheme_dark .top_panel_inner_style_2 .search_results:after,.scheme_dark .top_panel_inner_style_3 .search_results,.scheme_dark .top_panel_inner_style_3 .search_results:after{color:#ffffff;	background-color:#ffffff; border-color:#00a9e1}.scheme_dark .top_panel_inner_style_1 .search_results a,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_1 .search_results .post_more,.scheme_dark .top_panel_inner_style_1 .search_results .search_results_close,.scheme_dark .top_panel_inner_style_2 .search_results a,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_2 .search_results .post_more,.scheme_dark .top_panel_inner_style_2 .search_results .search_results_close,.scheme_dark .top_panel_inner_style_3 .search_results a,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_more,.scheme_dark .top_panel_inner_style_3 .search_results .search_results_close{color:#ffffff}.scheme_dark .top_panel_inner_style_1 .search_results a:hover,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_1 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_1 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_1 .search_results .search_results_close:hover,.scheme_dark .top_panel_inner_style_2 .search_results a:hover,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_2 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_2 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_2 .search_results .search_results_close:hover,.scheme_dark .top_panel_inner_style_3 .search_results a:hover,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a:hover,.scheme_dark .top_panel_inner_style_3 .search_results .post_info a:hover>span,.scheme_dark .top_panel_inner_style_3 .search_results .post_more:hover,.scheme_dark .top_panel_inner_style_3 .search_results .search_results_close:hover{color:#e5e5e5}.scheme_dark .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button{color:#5e657c}.scheme_dark .top_panel_inner_style_8 .menu_pushy_wrap .menu_pushy_button:hover{color:#d0d0d0}.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .contact_icon,.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon .search_submit{color:#5e657c}.scheme_dark .top_panel_inner_style_8 .top_panel_buttons a:hover .contact_icon,.scheme_dark .top_panel_inner_style_8 .top_panel_buttons .top_panel_icon:hover .search_submit{color:#d0d0d0}.scheme_dark .pushy_inner{color:#9daab0; background-color:#262262}.scheme_dark .pushy_inner a{color:#ffffff}.scheme_dark .pushy_inner a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .popup_wrap a,.scheme_dark .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap a,.scheme_dark .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap a,.scheme_dark .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a:hover{color:#ffffff}.scheme_dark .top_panel_inner_style_3 .popup_wrap a:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap a:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap a:hover{color:#00a9e1}.scheme_dark .top_panel_inner_style_3 .popup_wrap,.scheme_dark .top_panel_inner_style_4 .popup_wrap,.scheme_dark .top_panel_inner_style_5 .popup_wrap,.scheme_dark .top_panel_inner_style_3 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_3 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_4 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_4 .popup_wrap .sc_socials.sc_socials_type_icons a,.scheme_dark .top_panel_inner_style_5 .popup_wrap .popup_close,.scheme_dark .top_panel_inner_style_5 .popup_wrap .sc_socials.sc_socials_type_icons a{color:#9daab0}.scheme_dark .top_panel_inner_style_3 .popup_wrap .popup_close:hover,.scheme_dark .top_panel_inner_style_4 .popup_wrap .popup_close:hover,.scheme_dark .top_panel_inner_style_5 .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_dark .header_mobile .menu_button,.scheme_dark .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon{color:#0a1f54}.scheme_dark .header_mobile .side_wrap{color:#ffffff}.scheme_dark .header_mobile .panel_top,.scheme_dark .header_mobile .side_wrap{background-color:#ffffff}.scheme_dark .header_mobile .panel_middle{background-color:#ffffff}.scheme_dark .header_mobile .menu_button:hover,.scheme_dark .header_mobile .menu_main_cart .top_panel_cart_button .contact_icon:hover,.scheme_dark .header_mobile .menu_main_cart.top_panel_icon:hover .top_panel_cart_button .contact_icon,.scheme_dark .header_mobile .side_wrap .close:hover{color:#ffffff}.scheme_dark .header_mobile .menu_main_nav>li a,.scheme_dark .header_mobile .menu_main_nav>li>a:hover{color:#ffffff}.scheme_dark .header_mobile .menu_main_nav>a:hover,.scheme_dark .header_mobile .menu_main_nav>li.sfHover>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-item>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-parent>a,.scheme_dark .header_mobile .menu_main_nav>li.current-menu-ancestor>a,.scheme_dark .header_mobile .menu_main_nav>li>a:hover,.scheme_dark .header_mobile .menu_main_nav>li ul li a:hover,.scheme_dark .header_mobile .menu_main_nav>li ul li.current-menu-item>a,.scheme_dark .header_mobile .menu_main_nav>li ul li.current-menu-ancestor>a,.scheme_dark .header_mobile .login a:hover{color:#e5e5e5}.scheme_dark .header_mobile .popup_wrap .popup_close:hover{color:#0a1f54}.scheme_dark .header_mobile .search_wrap,.scheme_dark .header_mobile .login{border-color:#ffffff}.scheme_dark .header_mobile .login .popup_link,.scheme_dark .header_mobile .sc_socials.sc_socials_type_icons a{color:#ffffff}.scheme_dark .header_mobile .search_wrap .search_field,.scheme_dark .header_mobile .search_wrap .search_field:focus{color:#ffffff}.scheme_dark .header_mobile .popup_wrap .sc_socials.sc_socials_type_icons a{color:#656c77}.scheme_dark .tparrows.default{color:#262262}.scheme_dark .tp-bullets.simplebullets.round .bullet{background-color:#262262}.scheme_dark .tp-bullets.simplebullets.round .bullet.selected{border-color:#262262}.scheme_dark .slider_over_content_inner{background-color:rgba(38,34,98,0.8)}.scheme_dark .slider_over_button{color:#0a1f54;	background-color:rgba(38,34,98,0.8)}.scheme_dark .slider_over_close{color:#0a1f54}.scheme_dark .sc_button.slider_button{background:#ffffff!important; color:#0a1f54!important}.scheme_dark .sc_button.slider_button:hover{background:#0a1f54!important; color:#ffffff!important}.scheme_dark .persephone.tparrows{border-color:rgba(255,255,255,0.3)!important}.scheme_dark .persephone.tparrows:before{color:rgba(255,255,255,0.7)!important}.scheme_dark .persephone.tparrows:hover{border-color:#00a9e1!important}.scheme_dark .persephone.tparrows:hover:before{color:#00a9e1!important}/* 7.3 Top panel:Page title and breadcrumbs-------------------------------------------------------------- */.scheme_dark .top_panel_title_inner{background-color:#ffffff;	border-color:rgba(144,144,144,0.1)}.scheme_dark .top_panel_title_inner .page_title{color:#0a1f54}.scheme_dark .top_panel_title_inner .post_navi .post_navi_item a,.scheme_dark .top_panel_title_inner .breadcrumbs a.breadcrumbs_item{color:#d0d0d0}.scheme_dark .top_panel_title_inner .post_navi .post_navi_item a:hover,.scheme_dark .top_panel_title_inner .breadcrumbs a.breadcrumbs_item:hover{color:#aaaaaa}.scheme_dark .top_panel_title_inner .post_navi span,.scheme_dark .top_panel_title_inner .breadcrumbs span{color:#aaaaaa}.scheme_dark .post_navi .post_navi_item + .post_navi_item:before,.scheme_dark .top_panel_title_inner .breadcrumbs .breadcrumbs_delimiter{color:#aaaaaa}.scheme_dark .post_title .post_icon{color:#ffffff}.scheme_dark .pagination>a{border-color:#ffffff}.scheme_dark .post_format_aside.post_item_single .post_content p,.scheme_dark .post_format_aside .post_descr{border-color:#ffffff;	background-color:#262262}.scheme_dark .hover_icon:before{color:#ffffff;	background-color:#00a9e1}.scheme_dark .hover_icon:after{background-color:rgba(255,255,255,0.8)}.scheme_dark .post_info a,.scheme_dark .post_info a>span{color:#656c77}.scheme_dark .post_info a[class*="icon-"]{color:#ffffff}.scheme_dark .post_info a:hover,.scheme_dark .post_info a:hover>span{color:#00a9e1}.scheme_dark .post_item .post_readmore_label{color:#0a1f54}.scheme_dark .post_item .post_readmore:hover .post_readmore_label{color:#00a9e1}.scheme_dark .post_info .post_info_counters .post_counters_item:before,.scheme_dark .post_info .post_info_posted:before{color:#00a9e1}.scheme_dark .post_info .post_info_posted_by:before,.scheme_dark .post_info .post_info_tags:before{color:#656c77}.scheme_dark .post_info .post_info_posted_by,.scheme_dark .post_info .post_info_tags{color:#656c77}.scheme_dark .post_info.post_info_bottom .post_info_tags a{background-color:#29395f;	color:#9daab0}.scheme_dark .post_info.post_info_bottom .post_info_tags a:hover{color:#ffffff;	background-color:#00a9e1}.scheme_dark .post_info_bottom_cat_tag{border-color:#29395f}.scheme_dark .post_item_related .post_info a{color:#9daab0}.scheme_dark .post_item_related .post_info a:hover,.scheme_dark .post_item_related .post_title a:hover{color:#00a9e1}.scheme_dark .article_style_boxed.sidebar_show[class*="single-"] .related_wrap .post_item_related{background-color:#ffffff}.scheme_dark .post_item_related .post_content .post_content_wrap .post_title a{color:#0a1f54}.scheme_dark .post_item_related .post_content .post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_dark .post_item_related .post_content .post_featured + .post_content_wrap .post_title a{color:#ffffff}.scheme_dark .post_item_related .post_content .post_featured + .post_content_wrap .post_title a:hover{color:#00a9e1}.scheme_dark .post_item_related .post_content .post_featured .hover_icon:after{background:-moz-linear-gradient(bottom,rgba(255,255,255,0.8) 0%,rgba(125,185,232,0) 100%); background:-webkit-linear-gradient(bottom,rgba(255,255,255,0.8) 0%,rgba(125,185,232,0) 100%); background:linear-gradient(to top,rgba(255,255,255,0.8) 0%,rgba(125,185,232,0) 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799',endColorstr='#007db9e8',GradientType=0 ); }.scheme_dark .single-post .related_wrap{border-color:#29395f}.scheme_dark .isotope_item_colored .post_featured .post_mark_new,.scheme_dark .isotope_item_colored .post_featured .post_title,.scheme_dark .isotope_item_colored .post_content.ih-item.square.colored .info{color:#ffffff;	background-color:#ffffff}.scheme_dark .isotope_item_colored .post_featured .post_title a{color:#ffffff}.scheme_dark .isotope_item_colored .post_category a,.scheme_dark .isotope_item_colored .post_rating .reviews_stars_bg,.scheme_dark .isotope_item_colored .post_rating .reviews_stars_hover,.scheme_dark .isotope_item_colored .post_rating .reviews_value{color:#ffffff}.scheme_dark .isotope_item_colored .post_featured .post_descr{background-color:#ffffff}.scheme_dark .article_style_boxed .isotope_item_colored .post_featured .post_descr{background-color:#ffffff}.scheme_dark .isotope_item_colored .post_info_wrap .post_button .sc_button{color:#ffffff;	background-color:#262262}.scheme_dark .isotope_item_colored_1 .post_item{background-color:#ffffff;	color:#5e657c}.scheme_dark .isotope_item_colored_1 a,.scheme_dark .isotope_item_colored_1 .post_title a{color:#00a9e1}.scheme_dark .isotope_item_colored_1 a:hover,.scheme_dark .isotope_item_colored_1 .post_title a:hover,.scheme_dark .isotope_item_colored_1 .post_category a:hover{color:#e5631b}.scheme_dark .isotope_wrap .isotope_item_colored_1 .post_featured{border-color:#ffffff}.scheme_dark .isotope_filters a{border-color:#ffffff;	background-color:#ffffff;	color:#ffffff}.scheme_dark .isotope_filters a.active,.scheme_dark .isotope_filters a:hover{border-color:#00a9e1;	background-color:#00a9e1}.scheme_dark .pagination_single>.pager_numbers,.scheme_dark .pagination_single a,.scheme_dark .pagination_single .current,.scheme_dark .pagination_slider .pager_cur,.scheme_dark .pagination_pages>a,.scheme_dark .pagination_pages>span{background-color:#ffffff;	color:#00a9e1;	border-color:#00a9e1}.scheme_dark .pagination_single>.pager_numbers,.scheme_dark .pagination_single a:hover,.scheme_dark .pagination_single .current,.scheme_dark .pagination_slider .pager_cur:hover,.scheme_dark .pagination_slider .pager_cur:focus,.scheme_dark .pagination_pages>.active,.scheme_dark .pagination_pages>a:hover{border-color:#00a9e1;	background-color:#00a9e1;	color:#ffffff}.scheme_dark .pagination_slider .pager_slider{border-color:#29395f;	background-color:#262262}.scheme_dark .pagination_wrap .pager_next,.scheme_dark .pagination_wrap .pager_prev,.scheme_dark .pagination_wrap .pager_last,.scheme_dark .pagination_wrap .pager_first{color:#ffffff}.scheme_dark .pagination_wrap .pager_next:hover,.scheme_dark .pagination_wrap .pager_prev:hover,.scheme_dark .pagination_wrap .pager_last:hover,.scheme_dark .pagination_wrap .pager_first:hover{color:#00a9e1}.scheme_dark .pagination_viewmore>a{color:#ffffff;	background-color:#ffffff}.scheme_dark .pagination_viewmore>a:hover{color:#ffffff;	background-color:#00a9e1}.scheme_dark .viewmore_loader,.scheme_dark .mfp-preloader span,.scheme_dark .sc_video_frame.sc_video_active:before{background-color:#00a9e1}.scheme_dark .post_featured .post_nav_item{color:#ffffff}.scheme_dark .post_featured .post_nav_item:before{background-color:#ffffff;	color:#ffffff}.scheme_dark .post_featured .post_nav_item .post_nav_info{background-color:#ffffff}.scheme_dark .reviews_block .reviews_summary .reviews_item{background-color:#ffffff}.scheme_dark .reviews_block .reviews_summary,.scheme_dark .reviews_block .reviews_max_level_100 .reviews_stars_bg{background-color:#505050}.scheme_dark .reviews_block .reviews_max_level_100 .reviews_stars_hover,.scheme_dark .reviews_block .reviews_item .reviews_slider{color:#ffffff;	background-color:#ffffff}.scheme_dark .reviews_block .reviews_item .reviews_stars_hover{color:#ffffff}.scheme_dark .reviews_block .reviews_value{color:#0a1f54}.scheme_dark .reviews_block .reviews_summary .reviews_criteria{color:#9daab0}.scheme_dark .reviews_block .reviews_summary .reviews_value{color:#ffffff}/* Summary stars in the post item (under the title) */.scheme_dark .post_item .post_rating .reviews_stars_bg,.scheme_dark .post_item .post_rating .reviews_stars_hover,.scheme_dark .post_item .post_rating .reviews_value{color:#ffffff}.scheme_dark .post_author{background-color:#ffffff;	color:#d0d0d0}.scheme_dark .post_author .post_author_title{color:#d0d0d0}.scheme_dark .post_author .post_author_title a{color:#ffffff}.scheme_dark .post_author .post_author_title a:hover{color:#00a9e1}.scheme_dark .post_author .post_author_info .sc_socials_shape_square a{color:#d0d0d0}.scheme_dark .post_author .post_author_info .sc_socials_shape_square a:hover{color:#00a9e1}.scheme_dark .post_author_inner{border-color:#29395f}.scheme_dark .comments_list_wrap ul.children,.scheme_dark .comments_list_wrap ul>li + li{border-top-color:#656c77}.scheme_dark .comments_list_wrap .comment-respond{border-bottom-color:#ffffff}.scheme_dark .comments_list_wrap>ul{border-bottom-color:#29395f}.scheme_dark .comments_list_wrap .comment_info>.comment_date>.comment_date_value,.scheme_dark .comments_list_wrap .comment_info .comment_date + span:before,.scheme_dark .comments_list_wrap .comment_time{color:#656c77}.scheme_dark .comments_list_wrap .comment_author{color:#0a1f54}.scheme_dark .comments_list_wrap .comment_reply a{color:#00a9e1}.scheme_dark .comments_list_wrap .comment_reply a:hover{color:#e5631b}.scheme_dark .post_item_404 .page_title,.scheme_dark .post_item_404 .page_subtitle,.scheme_dark .post_item_404 .page_search .search_wrap .search_submit:before{color:#0a1f54}.scheme_dark .post_item_404 .page_search .search_wrap .search_submit:hover:before{color:#00a9e1}.scheme_dark .sidebar_outer_menu .menu_side_nav li>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li>a{color:#0a1f54}.scheme_dark .sidebar_outer_menu .menu_side_nav li>a:hover,.scheme_dark .sidebar_outer_menu .menu_side_nav li.sfHover>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li>a:hover,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.sfHover>a{color:#d0d0d0;	background-color:#505050}.scheme_dark .sidebar_outer_menu .menu_side_nav>li ul,.scheme_dark .sidebar_outer_menu .menu_side_responsive>li ul{color:#0a1f54;	background-color:#262262;	border-color:#29395f}.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-item>a,.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-parent>a,.scheme_dark .sidebar_outer_menu .menu_side_nav li.current-menu-ancestor>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-item>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-parent>a,.scheme_dark .sidebar_outer_menu .menu_side_responsive li.current-menu-ancestor>a{color:#656c77}.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a{color:#0a1f54}.scheme_dark .sidebar_outer_menu .sidebar_outer_menu_buttons>a:hover{color:#ffffff}.scheme_dark .sidebar_inner aside:nth-child(3n+4),.scheme_dark .sidebar_inner aside:nth-child(3n+5),.scheme_dark .sidebar_inner aside:nth-child(3n+6),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+4),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+5),.scheme_dark .sidebar_outer_inner aside:nth-child(3n+6),.scheme_dark .widget_area_inner aside:nth-child(2n+3),.scheme_dark .widget_area_inner aside:nth-child(2n+4),.scheme_dark .widget_area_inner aside+aside{border-color:#29395f}.scheme_dark .widget_area_inner{color:#9daab0}.scheme_dark .widget_area_inner a,.scheme_dark .widget_area_inner ul li:before,.scheme_dark .widget_area_inner ul li a:hover,.scheme_dark .widget_area_inner button:before{color:#9daab0}.scheme_dark .widget_area_inner button:before,.scheme_dark .widget_area_inner ul li:before{color:#00a9e1}.scheme_dark .widget_area_inner a:hover,.scheme_dark .widget_area_inner ul li a,.scheme_dark .widget_area_inner button:hover:before{color:#ffffff}.scheme_dark .widget_area_inner ul li a:hover{color:#00a9e1}.scheme_dark .widget_area_inner .post_title a{color:#0a1f54}.scheme_dark .widget_area_inner .widget_text a:not(.sc_button),.scheme_dark .widget_area_inner .post_info a{color:#ffffff}.scheme_dark .widget_area_inner .widget_text a:not(.sc_button):hover,.scheme_dark .widget_area_inner .post_info a:hover{color:#00a9e1}/* Widget:Search */.scheme_dark .widget_area_inner .widget_product_search .search_form,.scheme_dark .widget_area_inner .widget_search .search_form,.scheme_dark .widget_area_inner .widget_categories select,.scheme_dark .widget_area_inner .widget_text select,.scheme_dark .widget_area_inner .widget_archive select{background-color:#666666}.scheme_dark .footer_wrap_inner.widget_area_inner .widget_search .search_form,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_archive select,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_text select,.scheme_dark .footer_wrap_inner.widget_area_inner .widget_categories select{background-color:#ffffff}.scheme_dark .widget_area_inner .widget_product_search .search_field,.scheme_dark .widget_area_inner .widget_search .search_field{color:#5e657c}.scheme_dark .widget_area_inner .widget_product_search .search_button:before,.scheme_dark .widget_area_inner .widget_search .search_button:before{color:#656c77}.scheme_dark .widget_area_inner .widget_product_search .search_button,.scheme_dark .widget_area_inner .widget_search .search_button{color:#9daab0}.scheme_dark .widget_area_inner .widget_product_search .search_button:hover,.scheme_dark .widget_area_inner .widget_search .search_button:hover{color:#d0d0d0}/* Widget:Calendar */.scheme_dark .widget_area_inner .widget_calendar .weekday,.scheme_dark .wp-block-calendar .weekday{color:#0a1f54}.scheme_dark .widget_area_inner .widget_calendar td a:hover,.scheme_dark .wp-block-calendar td a:hover{background-color:#00a9e1;	color:#ffffff}.scheme_dark .wp-block-calendar .today .day_wrap,.scheme_dark .widget_area_inner .widget_calendar .today .day_wrap{color:#ffffff}.scheme_dark .wp-block-calendar .today .day_wrap:before,.scheme_dark .widget_area_inner .widget_calendar .today .day_wrap:before{background-color:#00a9e1}.scheme_dark .widget_area .widget_calendar td a:after{color:#00a9e1}.scheme_dark .widget_area .widget_calendar th.month_prev a,.scheme_dark .widget_area .widget_calendar th.month_next a{color:#00a9e1}.scheme_dark .widget_area .widget_calendar th.month_prev a:hover,.scheme_dark .widget_area .widget_calendar th.month_next a:hover{color:#e5631b}.scheme_dark .widget_area .widget_calendar .month_cur{color:#00a9e1}.scheme_dark .widget_area .widget_calendar td,.scheme_dark .wp-block-calendar td{color:#9daab0}.scheme_dark .widget_area .widget_calendar .weekday{color:#0a1f54}/* Widget:Tag Cloud */.scheme_dark .widget_area .widget_recent_comments ul li .comment-author-link{color:#ffffff}.scheme_dark .footer_wrap.widget_area .widget_recent_comments ul li .comment-author-link{color:#ffffff}.scheme_dark .footer_wrap.widget_area .widget_rss cite{color:#ffffff}/* Widget:Tag Cloud */.scheme_dark .wp-block-tag-cloud a,.scheme_dark .widget_area_inner .widget_product_tag_cloud a,.scheme_dark .widget_area_inner .widget_tag_cloud a{background-color:#29395f;	color:#9daab0}.scheme_dark .wp-block-tag-cloud a:not([class*="sc_button_hover_"]):hover,.scheme_dark .widget_area_inner .widget_product_tag_cloud a:not([class*="sc_button_hover_"]):hover,.scheme_dark .widget_area_inner .widget_tag_cloud a:not([class*="sc_button_hover_"]):hover{color:#ffffff;	background-color:#00a9e1}/* Widget:Text */.scheme_dark .widget_text .mail_footer,.scheme_dark .widget_text .address_footer,.scheme_dark .widget_text .mail_footer:before,.scheme_dark .widget_text .address_footer:before{color:#00a9e1}.scheme_dark .widget_text .textwidget h5{color:#ffffff}.scheme_dark .sidebar_outer_inner aside,.scheme_dark .sidebar_inner aside{border-top-color:#29395f}.scheme_dark .pre_footer_wrap{background-color:#909090}.scheme_dark .pre_footer_wrap a{color:#ffffff}.scheme_dark .pre_footer_wrap a:hover{color:#00a9e1}.scheme_dark .footer_wrap_inner.widget_area_inner .content_wrap{border-color:rgba(255,255,255,0.1)}.scheme_dark .contacts_wrap_inner{color:#9daab0;	background-color:#262262}.scheme_dark .testimonials_wrap_inner,.scheme_dark .twitter_wrap_inner{color:#9daab0;	background-color:#262262}.scheme_dark .copyright_wrap_inner{background-color:#262262}.scheme_dark .copyright_wrap_inner .copyright_text{color:#5e657c}.scheme_dark .copyright_wrap_inner .menu_footer_nav li a{color:#9daab0}.scheme_dark .copyright_wrap_inner .menu_footer_nav li a:hover{color:#ffffff}.scheme_dark .scroll_to_top{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_dark .scroll_to_top:hover{color:#ffffff}.scheme_dark #page_preloader{background-color:#262262}.scheme_dark .preloader_wrap>div{background-color:#ffffff}.scheme_dark.gallery_preview:before{background-color:#262262}.scheme_dark .popup_wrap{background-color:#262262}.scheme_dark .woocommerce .woocommerce-message:before,.scheme_dark .woocommerce-page .woocommerce-message:before,.scheme_dark .woocommerce div.product span.price,.scheme_dark .woocommerce div.product p.price,.scheme_dark .woocommerce #content div.product span.price,.scheme_dark .woocommerce #content div.product p.price,.scheme_dark .woocommerce-page div.product span.price,.scheme_dark .woocommerce-page div.product p.price,.scheme_dark .woocommerce-page #content div.product span.price,.scheme_dark .woocommerce-page #content div.product p.price,.scheme_dark .woocommerce ul.products li.product .price,.scheme_dark .woocommerce-page ul.products li.product .price,.scheme_dark .woocommerce ul.cart_list li>.amount,.scheme_dark .woocommerce ul.product_list_widget li>.amount,.scheme_dark .woocommerce-page ul.cart_list li>.amount,.scheme_dark .woocommerce-page ul.product_list_widget li>.amount,.scheme_dark .woocommerce ul.cart_list li span .amount,.scheme_dark .woocommerce ul.product_list_widget li span .amount,.scheme_dark .woocommerce-page ul.cart_list li span .amount,.scheme_dark .woocommerce-page ul.product_list_widget li span .amount,.scheme_dark .woocommerce ul.cart_list li ins .amount,.scheme_dark .woocommerce ul.product_list_widget li ins .amount,.scheme_dark .woocommerce-page ul.cart_list li ins .amount,.scheme_dark .woocommerce-page ul.product_list_widget li ins .amount,.scheme_dark .woocommerce.widget_shopping_cart .total .amount,.scheme_dark .woocommerce .widget_shopping_cart .total .amount,.scheme_dark .woocommerce-page.widget_shopping_cart .total .amount,.scheme_dark .woocommerce-page .widget_shopping_cart .total .amount,.scheme_dark .woocommerce a:hover h3,.scheme_dark .woocommerce-page a:hover h3,.scheme_dark .woocommerce .cart-collaterals .order-total strong,.scheme_dark .woocommerce-page .cart-collaterals .order-total strong,.scheme_dark .woocommerce .checkout #order_review .order-total .amount,.scheme_dark .woocommerce-page .checkout #order_review .order-total .amount,.scheme_dark .woocommerce .star-rating,.scheme_dark .woocommerce-page .star-rating,.scheme_dark .woocommerce .star-rating:before,.scheme_dark .woocommerce-page .star-rating:before,.scheme_dark .widget_area_inner .widgetWrap ul>li .star-rating span,.scheme_dark .woocommerce #review_form #respond .stars a,.scheme_dark .woocommerce-page #review_form #respond .stars a{}.scheme_dark .woocommerce div.quantity span,.scheme_dark .woocommerce-page div.quantity span{color:#0a1f54;	background-color:#ffffff}.scheme_dark .woocommerce div.quantity span:hover,.scheme_dark .woocommerce-page div.quantity span:hover{color:#e5631b;	background-color:#ffffff}.scheme_dark .woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{background-color:#aaaaaa}.scheme_dark .woocommerce .widget_price_filter .ui-slider .ui-slider-range,.scheme_dark .woocommerce-page .widget_price_filter .ui-slider .ui-slider-range{background-color:#0a1f54}.scheme_dark .woocommerce .widget_price_filter .ui-slider .ui-slider-handle,.scheme_dark .woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle{background:#ffffff}.scheme_dark .woocommerce .woocommerce-message,.scheme_dark .woocommerce-page .woocommerce-message,.scheme_dark .woocommerce a.button.alt:active,.scheme_dark .woocommerce button.button.alt:active,.scheme_dark .woocommerce input.button.alt:active,.scheme_dark .woocommerce #respond input#submit.alt:active,.scheme_dark .woocommerce #content input.button.alt:active,.scheme_dark .woocommerce-page a.button.alt:active,.scheme_dark .woocommerce-page button.button.alt:active,.scheme_dark .woocommerce-page input.button.alt:active,.scheme_dark .woocommerce-page #respond input#submit.alt:active,.scheme_dark .woocommerce-page #content input.button.alt:active,.scheme_dark .woocommerce a.button:active,.scheme_dark .woocommerce button.button:active,.scheme_dark .woocommerce input.button:active,.scheme_dark .woocommerce #respond input#submit:active,.scheme_dark .woocommerce #content input.button:active,.scheme_dark .woocommerce-page a.button:active,.scheme_dark .woocommerce-page button.button:active,.scheme_dark .woocommerce-page input.button:active,.scheme_dark .woocommerce-page #respond input#submit:active,.scheme_dark .woocommerce-page #content input.button:active{border-top-color:#ffffff}.scheme_dark .woocommerce a.button:not(.pswp__button),.scheme_dark .woocommerce button.button,.scheme_dark .woocommerce input.button,.scheme_dark .woocommerce #respond input#submit,.scheme_dark .woocommerce #content input.button,.scheme_dark .woocommerce-page a.button,.scheme_dark .woocommerce-page button.button,.scheme_dark .woocommerce-page input.button,.scheme_dark .woocommerce-page #respond input#submit,.scheme_dark .woocommerce-page #content input.button,.scheme_dark .woocommerce a.button.alt,.scheme_dark .woocommerce button.button.alt,.scheme_dark .woocommerce input.button.alt,.scheme_dark .woocommerce #respond input#submit.alt,.scheme_dark .woocommerce #content input.button.alt,.scheme_dark .woocommerce-page a.button.alt,.scheme_dark .woocommerce-page button.button.alt,.scheme_dark .woocommerce-page input.button.alt,.scheme_dark .woocommerce-page #respond input#submit.alt,.scheme_dark .woocommerce-page #content input.button.alt,.scheme_dark .woocommerce-account .addresses .title .edit,.scheme_dark .woocommerce ul.products li.product .add_to_cart_button,.scheme_dark .woocommerce-page ul.products li.product .add_to_cart_button{background-color:#ffffff;	color:#ffffff}.scheme_dark .article_style_boxed.woocommerce .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce .woocommerce-message,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce-page .woocommerce-message{background-color:#ffffff}.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce.archive .woocommerce-message,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-error,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-info,.scheme_dark .article_style_boxed.woocommerce-page.archive .woocommerce-message{background-color:#ffffff}.scheme_dark .woocommerce span.new,.scheme_dark .woocommerce-page span.new,.scheme_dark .woocommerce span.onsale,.scheme_dark .woocommerce-page span.onsale{background-color:#00a9e1;	color:#ffffff}.scheme_dark .article_style_boxed.woocommerce ul.products li.product .post_item_wrap,.scheme_dark .article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#ffffff}.scheme_dark .woocommerce ul.products li.product .price,.scheme_dark .woocommerce-page ul.products li.product .price,.scheme_dark .woocommerce ul.products li.product .star-rating:before,.scheme_dark .woocommerce ul.products li.product .star-rating span{}.scheme_dark .woocommerce ul.products li.product .price del,.scheme_dark .woocommerce-page ul.products li.product .price del{color:#656c77}.scheme_dark.article_style_boxed.woocommerce ul.products li.product .post_item_wrap{background-color:#505050}.scheme_dark.article_style_boxed.woocommerce-page ul.products li.product .post_item_wrap{background-color:#505050}.scheme_dark.article_style_boxed.woocommerce ul.products li.product .post_content{background-color:#ffffff}.scheme_dark.article_style_boxed.woocommerce-page ul.products li.product .post_content{background-color:#ffffff}.scheme_dark .woocommerce nav.woocommerce-pagination ul li a,.scheme_dark .woocommerce nav.woocommerce-pagination ul li span.current{background-color:#ffffff;	color:#00a9e1;	border-color:#00a9e1}.scheme_dark .woocommerce nav.woocommerce-pagination ul li a:focus,.scheme_dark .woocommerce nav.woocommerce-pagination ul li a:hover,.scheme_dark .woocommerce nav.woocommerce-pagination ul li span.current{color:#ffffff;	background-color:#00a9e1}.scheme_dark .woocommerce nav.woocommerce-pagination ul li .next,.scheme_dark .woocommerce nav.woocommerce-pagination ul li .prev{color:#ffffff}.scheme_dark .woocommerce nav.woocommerce-pagination ul li .next:hover,.scheme_dark .woocommerce nav.woocommerce-pagination ul li .prev:hover{color:#00a9e1}.scheme_dark .woocommerce div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce #content div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce-page div.product .woocommerce-tabs .panel,.scheme_dark .woocommerce-page #content div.product .woocommerce-tabs .panel{border-color:#29395f}.scheme_dark.woocommerce-tabs.trx-stretch-width{background-color:#262262}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a{color:#9daab0}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li a:hover,.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a{color:#0a1f54}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a:after{background-color:#ffffff}.scheme_dark .single-product div.product .woocommerce-tabs.trx-stretch-width .wc-tabs li.active a::after{background-color:#00a9e1}.scheme_dark .woocommerce table.cart thead th,.scheme_dark .woocommerce #content table.cart thead th,.scheme_dark .woocommerce-page table.cart thead th,.scheme_dark .woocommerce-page #content table.cart thead th{background-color:#ffffff;	color:#ffffff}.scheme_dark .woocommerce-account .woocommerce-MyAccount-navigation,.scheme_dark .woocommerce-MyAccount-navigation li+li{border-color:#29395f}.scheme_dark .woocommerce-MyAccount-navigation li.is-active a{color:#0a1f54}.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .empty,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .quantity,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .quantity .amount,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .total,.scheme_dark .top_panel_inner_style_4 .widget_shopping_cart .total .amount{color:#ffffff}.scheme_dark .top_panel_wrap .widget_shopping_cart ul.cart_list>li>a:hover{color:#00a9e1}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li+li{border-color:#909090}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a{color:#9daab0}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li:hover>a,.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories li>a:hover{color:#0a1f54}.scheme_dark body:not(.woocommerce) .widget_area:not(.footer_wrap) .widget_product_categories ul.product-categories ul{background-color:#ffffff}.scheme_dark .widget_shopping_cart_content .woocommerce-Price-amount,.scheme_dark .product_list_widget ins .woocommerce-Price-amount{color:#00a9e1}.scheme_dark .woocommerce-page .product .entry-summary p.price del{color:#656c77}.scheme_dark .woocommerce-page .product .entry-summary p.price ins{color:#00a9e1}.scheme_dark .woocommerce div.product form.cart .variations tr{color:#9daab0}.scheme_dark .tribe-events-calendar thead th{background-color:#ffffff}.scheme_dark a.tribe-events-read-more,.scheme_dark .tribe-events-button,.scheme_dark .tribe-events-nav-previous a,.scheme_dark .tribe-events-nav-next a,.scheme_dark .tribe-events-widget-link a,.scheme_dark .tribe-events-viewmore a{background-color:#ffffff;	color:#ffffff}.scheme_dark a.tribe-events-read-more:hover,.scheme_dark .tribe-events-button:hover,.scheme_dark .tribe-events-nav-previous a:hover,.scheme_dark .tribe-events-nav-next a:hover,.scheme_dark .tribe-events-widget-link a:hover,.scheme_dark .tribe-events-viewmore a:hover{background-color:#00a9e1;	color:#ffffff}.scheme_dark #bbpress-forums div.bbp-topic-content a,.scheme_dark #buddypress button,.scheme_dark #buddypress a.button,.scheme_dark #buddypress input[type="submit"],.scheme_dark #buddypress input[type="button"],.scheme_dark #buddypress input[type="reset"],.scheme_dark #buddypress ul.button-nav li a,.scheme_dark #buddypress div.generic-button a,.scheme_dark #buddypress .comment-reply-link,.scheme_dark a.bp-title-button,.scheme_dark #buddypress div.item-list-tabs ul li.selected a,.scheme_dark #buddypress .acomment-options a{background:#ffffff;	color:#ffffff}.scheme_dark #bbpress-forums div.bbp-topic-content a:hover,.scheme_dark #buddypress button:hover,.scheme_dark #buddypress a.button:hover,.scheme_dark #buddypress input[type="submit"]:hover,.scheme_dark #buddypress input[type="button"]:hover,.scheme_dark #buddypress input[type="reset"]:hover,.scheme_dark #buddypress ul.button-nav li a:hover,.scheme_dark #buddypress div.generic-button a:hover,.scheme_dark #buddypress .comment-reply-link:hover,.scheme_dark a.bp-title-button:hover,.scheme_dark #buddypress div.item-list-tabs ul li.selected a:hover,.scheme_dark #buddypress .acomment-options a:hover{background:#00a9e1;	color:#ffffff}.scheme_dark #buddypress #item-nav,.scheme_dark #buddypress div#subnav.item-list-tabs,.scheme_dark #buddypress div.item-list-tabs{background-color:#ffffff}.scheme_dark #buddypress #item-nav li:not(.selected) a,.scheme_dark #buddypress div#subnav.item-list-tabs li:not(.selected) a,.scheme_dark #buddypress div.item-list-tabs li:not(.selected) a{color:#5e657c}.scheme_dark #buddypress #item-nav li:not(.selected) a:hover,.scheme_dark #buddypress div#subnav.item-list-tabs li:not(.selected) a:hover,.scheme_dark #buddypress div.item-list-tabs li:not(.selected) a:hover{color:#d0d0d0;	background-color:#505050}.scheme_dark #buddypress .dir-search input[type="search"],.scheme_dark #buddypress .dir-search input[type="text"],.scheme_dark #buddypress .groups-members-search input[type="search"],.scheme_dark #buddypress .groups-members-search input[type="text"],.scheme_dark #buddypress .standard-form input[type="color"],.scheme_dark #buddypress .standard-form input[type="date"],.scheme_dark #buddypress .standard-form input[type="datetime-local"],.scheme_dark #buddypress .standard-form input[type="datetime"],.scheme_dark #buddypress .standard-form input[type="email"],.scheme_dark #buddypress .standard-form input[type="month"],.scheme_dark #buddypress .standard-form input[type="number"],.scheme_dark #buddypress .standard-form input[type="password"],.scheme_dark #buddypress .standard-form input[type="range"],.scheme_dark #buddypress .standard-form input[type="search"],.scheme_dark #buddypress .standard-form input[type="tel"],.scheme_dark #buddypress .standard-form input[type="text"],.scheme_dark #buddypress .standard-form input[type="time"],.scheme_dark #buddypress .standard-form input[type="url"],.scheme_dark #buddypress .standard-form input[type="week"],.scheme_dark #buddypress .standard-form select,.scheme_dark #buddypress .standard-form textarea,.scheme_dark #buddypress form#whats-new-form textarea{color:#999999;	background-color:#666666;	border-color:#909090}.scheme_dark #buddypress .dir-search input[type="search"]:focus,.scheme_dark #buddypress .dir-search input[type="text"]:focus,.scheme_dark #buddypress .groups-members-search input[type="search"]:focus,.scheme_dark #buddypress .groups-members-search input[type="text"]:focus,.scheme_dark #buddypress .standard-form input[type="color"]:focus,.scheme_dark #buddypress .standard-form input[type="date"]:focus,.scheme_dark #buddypress .standard-form input[type="datetime-local"]:focus,.scheme_dark #buddypress .standard-form input[type="datetime"]:focus,.scheme_dark #buddypress .standard-form input[type="email"]:focus,.scheme_dark #buddypress .standard-form input[type="month"]:focus,.scheme_dark #buddypress .standard-form input[type="number"]:focus,.scheme_dark #buddypress .standard-form input[type="password"]:focus,.scheme_dark #buddypress .standard-form input[type="range"]:focus,.scheme_dark #buddypress .standard-form input[type="search"]:focus,.scheme_dark #buddypress .standard-form input[type="tel"]:focus,.scheme_dark #buddypress .standard-form input[type="text"]:focus,.scheme_dark #buddypress .standard-form input[type="time"]:focus,.scheme_dark #buddypress .standard-form input[type="url"]:focus,.scheme_dark #buddypress .standard-form input[type="week"]:focus,.scheme_dark #buddypress .standard-form select:focus,.scheme_dark #buddypress .standard-form textarea:focus,.scheme_dark #buddypress form#whats-new-form textarea:focus{color:#999999;	background-color:#505050;	border-color:#888888}.scheme_dark #buddypress #reply-title small a span,.scheme_dark #buddypress a.bp-primary-action span{color:#ffffff;	background-color:#ffffff}.scheme_dark #buddypress .activity .activity-item:nth-child(2n+1){background-color:#ffffff}.scheme_dark.vc_row{background-color:#262262}.scheme_dark .booking_month_container_custom,.scheme_dark .booking_month_navigation_button_custom{background-color:#ffffff !important}.scheme_dark .booking_month_name_custom,.scheme_dark .booking_month_navigation_button_custom{color:#d0d0d0 !important}.scheme_dark .booking_month_navigation_button_custom:hover{color:#ffffff !important;	background-color:#00a9e1 !important}.scheme_dark #learndash_next_prev_link>a{color:#ffffff;	background-color:#ffffff}.scheme_dark #learndash_next_prev_link>a:hover{background-color:#00a9e1}.scheme_dark .widget_area dd.course_progress div.course_progress_blue{background-color:#00a9e1}.scheme_dark #myplayer .ttw-music-player .progress-wrapper{background-color:#505050}.scheme_dark #myplayer .ttw-music-player .tracklist li.track{border-color:#29395f}.scheme_dark #myplayer .ttw-music-player .tracklist,.scheme_dark #myplayer .ttw-music-player .buy,.scheme_dark #myplayer .ttw-music-player .description,.scheme_dark #myplayer .ttw-music-player .artist,.scheme_dark #myplayer .ttw-music-player .artist-outer{color:#9daab0}.scheme_dark #myplayer .ttw-music-player .player .title,.scheme_dark #myplayer .ttw-music-player .tracklist li:hover{color:#0a1f54}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title{border-color:#29395f}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title .sc_accordion_icon{color:#aaaaaa;	background-color:#ffffff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title.ui-state-active .sc_accordion_icon_opened{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title:hover{color:#00a9e1;	border-color:#00a9e1}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_title:hover .sc_accordion_icon_opened{background-color:#00a9e1}.scheme_dark .sc_accordion .sc_accordion_item .sc_accordion_content{border-color:#29395f}.scheme_dark .sc_audio.sc_audio_info,.scheme_dark .sc_audio_player.sc_audio,.scheme_dark .wp-audio-shortcode{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); }.scheme_dark .sc_audio .sc_audio_title{color:#ffffff}.scheme_dark .sc_audio .sc_audio_author_name{color:#ffffff}.scheme_dark .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.scheme_dark .wp-audio-shortcode .mejs-controls .mejs-volume-button .mejs-volume-slider,.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-current{background:#ffffff !important}.scheme_dark .mejs-container .mejs-controls .mejs-time{color:#ffffff}.scheme_dark .mejs-container.wp-video-shortcode .mejs-controls .mejs-time{color:#ffffff}.scheme_dark .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total:before,.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-total:before{background-color:rgba(38,34,98,0.1)}.scheme_dark .mejs-controls .mejs-time-rail .mejs-time-loaded{background:rgba(94,101,124,0.1) !important}.scheme_dark .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button{background:#262262 !important}.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-fullscreen-button,.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-volume-button,.scheme_dark .footer_wrap .mejs-container .mejs-controls .mejs-playpause-button{background:#ffffff !important}.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-play:before,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-pause:before,.scheme_dark .mejs-container .mejs-controls .mejs-playpause-button.mejs-replay:before,.scheme_dark .mejs-container .mejs-controls .mejs-fullscreen-button:before,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button.mejs-mute:before,.scheme_dark .mejs-container .mejs-controls .mejs-volume-button.mejs-unmute:before{color:#e5631b}.scheme_dark input[type="submit"],.scheme_dark input[type="reset"],.scheme_dark input[type="button"],.scheme_dark button:not(.pswp__button),.scheme_dark .sc_button.sc_button_style_filled,	.scheme_dark .woocommerce a.button,.scheme_dark .woocommerce button.button,.scheme_dark .woocommerce input.button,.scheme_dark .woocommerce #respond input#submit,.scheme_dark .woocommerce #content input.button,.scheme_dark .woocommerce-page a.button,.scheme_dark .woocommerce-page button.button,.scheme_dark .woocommerce-page input.button,.scheme_dark .woocommerce-page #respond input#submit,.scheme_dark .woocommerce-page #content input.button,.scheme_dark .woocommerce a.button.alt,.scheme_dark .woocommerce button.button.alt,.scheme_dark .woocommerce input.button.alt,.scheme_dark .woocommerce #respond input#submit.alt,.scheme_dark .woocommerce #content input.button.alt,.scheme_dark .woocommerce-page a.button.alt,.scheme_dark .woocommerce-page button.button.alt,.scheme_dark .woocommerce-page input.button.alt,.scheme_dark .woocommerce-page #respond input#submit.alt,.scheme_dark .woocommerce-page #content input.button.alt,.scheme_dark .woocommerce-account .addresses .title .edit,.scheme_dark #btn-buy,.scheme_dark #btn-pay{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%); 	background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  background-size:200%; background-position:0; color:#ffffff}.scheme_dark input[type="submit"].sc_button_style_color_style2,.scheme_dark input[type="reset"].sc_button_style_color_style2,.scheme_dark input[type="button"].sc_button_style_color_style2,.scheme_dark button.sc_button_style_color_style2,.scheme_dark .cff-container-field input[type="button"],.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style2{color:#ffffff;	background:#d64a1a; 	background:-moz-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:-webkit-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:linear-gradient(to right,#d64a1a 9%,#f88120 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_dark .sc_button.sc_button_style_border{border-color:#ffffff;	color:#ffffff}.scheme_dark .sc_button.sc_button_style_border:hover{border-color:#00a9e1 !important;	color:#00a9e1 !important}.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button{background:#ffffff ;	color:#0a1f54}.scheme_dark .sc_button.sc_button_style_filled.sc_button_style_color_style1.dark_button:hover{background:#00a9e1 ;	color:#ffffff}/* ================= BUTTON'S HOVERS ==================== */.scheme_dark [class*="sc_button_hover_fade"]:hover{background-color:#00a9e1 !important;	color:#ffffff !important}.scheme_dark [class*="sc_button_hover_slide"]{color:#ffffff !important;	background-color:#ffffff}.scheme_dark [class*="sc_button_hover_slide"]:hover{background-color:#00a9e1 !important}.scheme_dark .sc_button_hover_slide_left{background:linear-gradient(to right,#00a9e1 50%,#ffffff 50%) repeat scroll right bottom / 210% 100% rgba(0,0,0,0) !important}.scheme_dark .sc_button_hover_slide_top{background:linear-gradient(to bottom,#00a9e1 50%,#ffffff 50%) repeat scroll right bottom / 100% 210% rgba(0,0,0,0) !important}/* ================= END BUTTON'S HOVERS ==================== */.scheme_dark .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date{background-color:#ffffff;	border-color:#ffffff;	color:#ffffff}.scheme_dark .sc_blogger.layout_date .sc_blogger_item .sc_blogger_date .year:before{border-color:#ffffff}.scheme_dark .sc_blogger.layout_date .sc_blogger_item::before{background-color:#ffffff}.scheme_dark .sc_blogger_item.sc_plain_item{background-color:#ffffff}.scheme_dark .sc_blogger.layout_polaroid .photostack nav span.current{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_blogger.layout_polaroid .photostack nav span.current.flip{background-color:#00a9e1}.scheme_dark .sc_call_to_action .sc_call_to_action_descr{color:#9daab0}.scheme_dark .sc_call_to_action_accented{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_call_to_action_accented .sc_item_title,.scheme_dark .sc_call_to_action_accented .sc_item_subtitle,.scheme_dark .sc_call_to_action_accented .sc_item_descr{color:#ffffff}.scheme_dark .sc_call_to_action_accented .sc_item_button>a{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_call_to_action_accented .sc_item_button>a:before{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_call_to_action .sc_item_subtitle{color:#e5631b}.scheme_dark .sc_call_to_action .sc_item_buttons>.sc_item_button + .sc_item_button a{color:#e5631b}.scheme_dark .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons>.sc_item_button + .sc_item_button a:before{color:#e5631b}.scheme_dark .sc_chat:after{background-color:#ffffff;	border-color:#909090}.scheme_dark .sc_chat_inner{color:#5e657c;	background-color:#ffffff;	border-color:#909090}.scheme_dark .sc_chat_inner a{color:#00a9e1}.scheme_dark .sc_chat_inner a:hover{color:#e5631b}.scheme_dark .sc_clients_style_clients-2 .sc_client_image .sc_client_hover{color:#ffffff;	background-color:rgba(10,31,84,0.8)}.scheme_dark .sc_clients_style_clients-2 .sc_client_title,.scheme_dark .sc_clients_style_clients-2 .sc_client_title a{color:#ffffff}.scheme_dark .sc_clients_style_clients-2 .sc_client_title a:hover{color:#ffffff}.scheme_dark .sc_clients_style_clients-2 .sc_client_description:before,.scheme_dark .sc_clients_style_clients-2 .sc_client_position{color:#ffffff}.scheme_dark .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{background:#ffffff;	color:#0a1f54}.scheme_dark .sc_form .sc_form_item.sc_form_button button{color:#ffffff; background:#0071c3; background:-moz-linear-gradient(left,#0071c3 9%,#00a8eb 55%); background:-webkit-linear-gradient(left,#0071c3 9%,#00a8eb 55%); background:linear-gradient(to right,#0071c3 9%,#00a8eb 55%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  background-size:200%; background-position:0}.scheme_dark .sc_form .sc_form_item .sc_form_element input[type="radio"] + label:before,.scheme_dark .sc_form .sc_form_item .sc_form_element input[type="checkbox"] + label:before{border-color:#909090;	background-color:#666666}.scheme_dark .sc_form_select_container{background-color:#666666}.scheme_dark .sc_form .sc_form_item input[type="text"],.scheme_dark .sc_form .sc_form_item select,.scheme_dark .sc_form .sc_form_item textarea{background-color:#ffffff}.scheme_dark .sc_form .picker{color:#999999;	border-color:#909090;	background-color:#666666}.scheme_dark .picker__month,.scheme_dark .picker__year{color:#d0d0d0}.scheme_dark .sc_form .picker__nav--prev:before,.scheme_dark .sc_form .picker__nav--next:before{color:#999999}.scheme_dark .sc_form .picker__nav--prev:hover:before,.scheme_dark .sc_form .picker__nav--next:hover:before{color:#d0d0d0}.scheme_dark .sc_form .picker__nav--disabled,.scheme_dark .sc_form .picker__nav--disabled:hover,.scheme_dark .sc_form .picker__nav--disabled:before,.scheme_dark .sc_form .picker__nav--disabled:before:hover{color:#aaaaaa}.scheme_dark .sc_form table.picker__table th{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_form .picker__day--infocus{color:#d0d0d0}.scheme_dark .sc_form .picker__day--today,.scheme_dark .sc_form .picker__day--infocus:hover,.scheme_dark .sc_form .picker__day--outfocus:hover,.scheme_dark .sc_form .picker__day--highlighted:hover,.scheme_dark .sc_form .picker--focused .picker__day--highlighted{color:#d0d0d0;	background-color:#505050}.scheme_dark .sc_form .picker__day--disabled,.scheme_dark .sc_form .picker__day--disabled:hover{color:#aaaaaa}.scheme_dark .sc_form .picker__day--highlighted.picker__day--disabled,.scheme_dark .sc_form .picker__day--highlighted.picker__day--disabled:hover{color:#aaaaaa;	background-color:#505050 !important}.scheme_dark .sc_form .picker__day--today:before,.scheme_dark .sc_form .picker__button--today:before,.scheme_dark .sc_form .picker__button--clear:before,.scheme_dark .sc_form button:focus{border-color:#ffffff}.scheme_dark .sc_form .picker__button--close:before{color:#ffffff}.scheme_dark .sc_form .picker--time .picker__button--clear:hover,.scheme_dark .sc_form .picker--time .picker__button--clear:focus{background-color:#00a9e1}.scheme_dark .sc_form .picker__footer{border-color:#909090}.scheme_dark .sc_form .picker__button--today,.scheme_dark .sc_form .picker__button--clear,.scheme_dark .sc_form .picker__button--close{color:#999999}.scheme_dark .sc_form .picker__button--today:hover,.scheme_dark .sc_form .picker__button--clear:hover,.scheme_dark .sc_form .picker__button--close:hover{color:#d0d0d0;	background-color:#505050 !important}.scheme_dark .sc_form .picker__button--today[disabled],.scheme_dark .sc_form .picker__button--today[disabled]:hover{color:#aaaaaa;	background-color:#505050;	border-color:#505050}.scheme_dark .sc_form .picker__button--today[disabled]:before{border-top-color:#aaaaaa}.scheme_dark .sc_form .picker__list-item{color:#999999;	border-color:#909090}.scheme_dark .sc_form .picker__list-item:hover,.scheme_dark .sc_form .picker__list-item--highlighted,.scheme_dark .sc_form .picker__list-item--highlighted:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--highlighted,.scheme_dark .sc_form .picker__list-item--selected,.scheme_dark .sc_form .picker__list-item--selected:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--selected{color:#d0d0d0;	background-color:#505050;	border-color:#888888}.scheme_dark .sc_form .picker__list-item--disabled,.scheme_dark .sc_form .picker__list-item--disabled:hover,.scheme_dark .sc_form .picker--focused .picker__list-item--disabled{color:#aaaaaa;	background-color:#666666;	border-color:#909090}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_digits,.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_separator{color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_digits{border-color:#909090;	background-color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_1 .sc_countdown_label{color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_separator{color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_digits span{background-color:#ffffff}.scheme_dark .sc_countdown.sc_countdown_style_2 .sc_countdown_label{color:#ffffff}.scheme_dark .sc_dropcaps .sc_dropcaps_item{color:#ffffff}.scheme_dark .sc_dropcaps.sc_dropcaps_style_1 .sc_dropcaps_item{background:#d64a1a; background:-moz-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:-webkit-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:linear-gradient(to right,#d64a1a 0%,#f88120 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); }.scheme_dark .sc_dropcaps.sc_dropcaps_style_2 .sc_dropcaps_item{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); }.scheme_dark .mc4wp-form input[type="email"]{background-color:#d0d0d0}.scheme_dark .sc_video_frame.hover_icon:before{background:#d64a1a; background:-moz-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:-webkit-linear-gradient(left,#d64a1a 0%,#f88120 100%); background:linear-gradient(to right,#d64a1a 0%,#f88120 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); 	color:#ffffff}.scheme_dark .sc_events_item .sc_events_item_readmore{color:#0a1f54}.scheme_dark .sc_events_item .sc_events_item_readmore span{color:#ffffff}.scheme_dark .sc_events_item .sc_events_item_readmore:hover,.scheme_dark .sc_events_item .sc_events_item_readmore:hover span{color:#00a9e1}.scheme_dark .sc_events_style_events-1 .sc_events_item{background-color:#262262;	color:#9daab0}.scheme_dark .sc_events_style_events-2 .sc_events_item{border-color:#29395f}.scheme_dark .sc_events_style_events-2 .sc_events_item_date{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_events_style_events-2 .sc_events_item_time:before,.scheme_dark .sc_events_style_events-2 .sc_events_item_details:before{background-color:#29395f}.scheme_dark .sc_googlemap_content{background-color:#262262}.scheme_dark .sc_highlight_style_1{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_highlight_style_2{background-color:#00a9e1;	color:#ffffff}.scheme_dark .sc_highlight_style_3{background-color:#ffffff;	color:#5e657c}.scheme_dark .sc_icon_hover:hover,.scheme_dark a:hover .sc_icon_hover{color:#ffffff !important;	background-color:#ffffff !important}.scheme_dark .sc_icon_shape_round.sc_icon,.scheme_dark .sc_icon_shape_square.sc_icon{background-color:#ffffff;	border-color:#ffffff;	color:#ffffff}.scheme_dark .sc_icon_shape_round.sc_icon:hover,.scheme_dark .sc_icon_shape_square.sc_icon:hover,.scheme_dark a:hover .sc_icon_shape_round.sc_icon,.scheme_dark a:hover .sc_icon_shape_square.sc_icon{color:#ffffff;	background-color:#262262}.scheme_dark figure figcaption,.scheme_dark .sc_image figcaption,.scheme_dark .wp-caption .wp-caption-text,{background-color:#ffffff;	color:#656c77}.scheme_dark figure figcaption a,.scheme_dark .sc_image figcaption a,.scheme_dark .wp-caption .wp-caption-text a{color:#00a9e1}.scheme_dark figure figcaption a:hover,.scheme_dark .sc_image figcaption a:hover,.scheme_dark .wp-caption .wp-caption-text a:hover{color:#00a9e1}.scheme_dark .sc_infobox.sc_infobox_style_regular{background-color:#ffffff}.scheme_dark .sc_intro_inner .sc_intro_subtitle{color:#00a9e1}.scheme_dark .sc_intro_inner .sc_intro_title{color:#ffffff}.scheme_dark .sc_intro_inner .sc_intro_descr,.scheme_dark .sc_intro_inner .sc_intro_icon{color:#ffffff}.scheme_dark .sc_list_style_iconed li:before,.scheme_dark .sc_list_style_iconed .sc_list_icon{color:#ffffff}.scheme_dark .sc_list_style_iconed li .sc_list_title{color:#0a1f54}.scheme_dark .sc_list_style_iconed li a:hover .sc_list_title{color:#00a9e1}.scheme_dark .sc_list .sc_list_item{color:#0a1f54}.scheme_dark .sc_line{border-color:#29395f}.scheme_dark .sc_line .sc_line_title{color:#0a1f54;	background-color:#262262}.scheme_dark .match_block .player_country{background-color:#ffffff;	color:#ffffff}.scheme_dark .match_block .player_name a{color:#d0d0d0;	background-color:#ffffff}.scheme_dark .match_block .player_name a:hover{color:#ffffff;	background-color:#ffffff}.scheme_dark .match_block .match_score{color:#d0d0d0;	background-color:#ffffff}.scheme_dark .match_block .match_category a{color:#9daab0}.scheme_dark .match_block .match_category a:hover,.scheme_dark .match_block .match_date{color:#ffffff}.scheme_dark .post_item_colored .match_date{color:#ffffff}.scheme_dark .matches_hover>a:after{background-color:rgba(255,255,255,0.3)}.scheme_dark .sc_matches.style_matches-1 .sc_matches_next{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_matches_next h2,.scheme_dark .sc_matches_next .sc_item_subtitle{color:#ffffff}.scheme_dark .sc_matches_next .sc_item_title:after{background-color:#ffffff}.scheme_dark .sc_match_date{background-color:#ffffff;	color:#00a9e1}.scheme_dark .sc_matches.style_matches-2 .sc_match_info{background-color:rgba(80,80,80,0.5)}.scheme_dark .sc_matches.style_matches-2 .sc_matches_next .sc_item_title{background-color:#ffffff}.scheme_dark .sc_matches.style_matches-2 .sc_matches_next .sc_match_date{background-color:#505050}.scheme_dark .post_item_single_players .post_title:after{background-color:#ffffff}.scheme_dark .post_item_single_players .player_info span{color:#0a1f54}.scheme_dark .sc_player .sc_player_info .sc_player_title a{color:#0a1f54}.scheme_dark .sc_player .sc_player_info .sc_player_club,.scheme_dark .sc_player .sc_player_info .sc_player_title a:hover{color:#ffffff}.scheme_dark .sc_player .sc_player_info{border-color:#ffffff}.scheme_dark .sc_player .sc_player_avatar .sc_player_hover{background-color:rgba(255,255,255,0.8)}.scheme_dark .sc_player .sc_socials.sc_socials_type_icons a,.scheme_dark .sc_player .sc_socials.sc_socials_type_icons a:hover{color:#ffffff;	border-color:#ffffff}.scheme_dark .post_item_colored .player_info{color:#ffffff}.scheme_dark .sc_players_table table tr .country{color:#656c77}.scheme_dark .sc_players_table.style_2 table tr:nth-child(n+2){background-color:rgba(80,80,80,0.5)}.scheme_dark .sc_players_table.style_2 .sc_table td{border-color:#262262}.scheme_dark .sc_menuitems_style_menuitems-1 .sc_menuitem_price{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_spicy{color:#0a1f54;	background-color:#262262}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_box_title{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions{color:#9daab0;	border-color:#29395f}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_content_title span,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_ingredients_title span,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_title span{color:#ffffff}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li{color:#0a1f54}.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li:before,.scheme_dark .sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li span{color:#ffffff}.scheme_dark .popup_menuitem>.sc_menuitems_wrap{background-color:#262262}.scheme_dark .sc_popup:before{background-color:#ffffff}.scheme_dark .sc_price .sc_price_currency,.scheme_dark .sc_price .sc_price_money,.scheme_dark .sc_price .sc_price_penny{color:#0a1f54}.scheme_dark .sc_price .sc_price_info{color:#656c77}.scheme_dark .sc_price_block,.scheme_dark .sc_price_block .sc_price_block_money *{color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_1{background-color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_1 .sc_price_block_link .sc_button{background-color:#00a9e1}.scheme_dark .sc_price_block.sc_price_block_style_2{background-color:#00a9e1}.scheme_dark .sc_price_block.sc_price_block_style_3,.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_money *{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_title{background:#0071c3; 	background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); 	background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 ); 	color:#ffffff}.scheme_dark .sc_price_block.sc_price_block_style_3 .sc_price_block_money{border-color:#29395f}.scheme_dark .sc_promo_image,.scheme_dark .sc_promo_block{background-color:#505050}.scheme_dark .sc_promo_title{color:#d0d0d0}.scheme_dark .sc_promo_descr{color:#5e657c}.scheme_dark .sc_recent_news_header{border-color:#0a1f54}.scheme_dark .sc_recent_news_header_category_item_more{color:#ffffff}.scheme_dark .sc_recent_news_header_more_categories{border-color:#909090;	background-color:#ffffff}.scheme_dark .sc_recent_news_header_more_categories>a{color:#00a9e1}.scheme_dark .sc_recent_news_header_more_categories>a:hover{color:#e5631b;	background-color:#505050}.scheme_dark .sc_recent_news .post_counters_item,.scheme_dark .sc_recent_news .post_counters .post_edit a{background-color:#ffffff}.scheme_dark .sidebar .sc_recent_news .post_counters_item,.scheme_dark .sidebar .sc_recent_news .post_counters .post_edit a{background-color:#262262}.scheme_dark .sc_recent_news .post_counters .post_edit a{color:#d0d0d0}.scheme_dark .sc_recent_news_style_news-magazine .post_accented_border{border-color:#29395f}.scheme_dark .sc_recent_news_style_news-excerpt .post_item{border-color:#29395f}.scheme_dark .sc_section_inner{color:#9daab0}.scheme_dark .sc_services_item .sc_services_item_readmore{color:#0a1f54}.scheme_dark .sc_services_item .sc_services_item_readmore span{color:#ffffff}.scheme_dark .sc_services_item .sc_services_item_readmore:hover,.scheme_dark .sc_services_item .sc_services_item_readmore:hover span{color:#00a9e1}.scheme_dark .sc_services_style_services-1 .sc_services_item{color:#9daab0}.scheme_dark .sc_services_style_services-1 .sc_icon,.scheme_dark .sc_services_style_services-2 .sc_icon{color:#00a9e1;	background-color:#ffffff}.scheme_dark .sc_services_style_services-1 .sc_icon:hover,.scheme_dark .sc_services_style_services-1 a:hover .sc_icon,.scheme_dark .sc_services_style_services-2 .sc_icon:hover,.scheme_dark .sc_services_style_services-2 a:hover .sc_icon{background:#0071c3; background:-moz-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:-webkit-linear-gradient(left,#0071c3 0%,#00a8eb 100%); background:linear-gradient(to right,#0071c3 0%,#00a8eb 100%); filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0071c3',endColorstr='#00a8eb',GradientType=1 );  color:#ffffff}.scheme_dark .sc_services_style_services-3 a:hover .sc_icon,.scheme_dark .sc_services_style_services-3 .sc_icon:hover{color:#ffffff;	background-color:#262262}.scheme_dark .sc_services_style_services-3 a:hover .sc_services_item_title{color:#ffffff}.scheme_dark .sc_services_style_services-4 .sc_icon{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_services_style_services-4 .sc_services_item_title{color:#0a1f54}.scheme_dark .sc_services_style_services-4 a:hover .sc_icon,.scheme_dark .sc_services_style_services-4 .sc_icon:hover{background-color:#00a9e1}.scheme_dark .sc_services_style_services-4 a:hover .sc_services_item_title{color:#ffffff}.scheme_dark .sc_services_style_services-5 .sc_icon{border-color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon{color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon:hover,.scheme_dark .sc_services_style_services-5 a:hover .sc_icon{background-color:#e5631b}.scheme_dark .sc_services_style_services-5 .sc_icon:hover,.scheme_dark .sc_services_style_services-5 a:hover .sc_icon{color:#ffffff}.scheme_dark .sc_services_style_services-1 .sc_services_item .sc_services_item_description p:after{color:#00a9e1}.scheme_dark .sc_scroll_controls_wrap a{background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_scroll_controls_type_side .sc_scroll_controls_wrap a{background-color:rgba(255,255,255,0.8)}.scheme_dark .sc_scroll_controls_wrap a:hover{color:#ffffff;	background-color:#00a9e1}.scheme_dark .sc_scroll_bar .swiper-scrollbar-drag:before{background-color:#ffffff}.scheme_dark .sc_scroll .sc_scroll_bar{border-color:#ffffff}.scheme_dark .sc_skills_bar .sc_skills_item{background-color:#ffffff}.scheme_dark .sc_skills_counter .sc_skills_item .sc_skills_icon{color:#ffffff}.scheme_dark .sc_skills_counter .sc_skills_item:hover .sc_skills_icon{color:#00a9e1}.scheme_dark .sc_skills_counter .sc_skills_item .sc_skills_info{color:#0a1f54}.scheme_dark .sc_skills_bar .sc_skills_item .sc_skills_count{border-color:#ffffff}.scheme_dark .sc_skills_bar .sc_skills_info .sc_skills_label{color:#ffffff}.scheme_dark .sc_skills_bar.sc_skills_horizontal .sc_skills_total{color:#656c77}.scheme_dark .sc_skills_legend_title,.scheme_dark .sc_skills_legend_value{color:#0a1f54}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1{color:#ffffff;	background:#d64a1a; 	background:-moz-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:-webkit-linear-gradient(left,#d64a1a 9%,#f88120 55%); 	background:linear-gradient(to right,#d64a1a 9%,#f88120 55%); 	filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#d64a1a',endColorstr='#f88120',GradientType=1 ); 	background-size:200%; background-position:0}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1:hover{}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_count{color:#d0d0d0}.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_info{color:#ffffff}.scheme_dark .sc_skills_bar .sc_skills_item .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_3 .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_count,.scheme_dark .sc_skills_counter .sc_skills_item.sc_skills_style_4 .sc_skills_info{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_skills_pie.sc_skills_compact_off .sc_skills_total,.scheme_dark .sc_skills_pie.sc_skills_compact_off .sc_skills_label{color:#ffffff}.scheme_dark .sc_skills .sc_skills_descr{color:#9daab0}.scheme_dark .sc_slider_controls_wrap a{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_slider_controls_bottom .sc_slider_controls_wrap a:hover{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap span{border-color:#29395f}.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap .swiper-pagination-bullet-active,.scheme_dark .sc_slider_swiper .sc_slider_pagination_wrap span:hover{border-color:#00a9e1;	background-color:#00a9e1}.scheme_dark .sc_slider_swiper .sc_slider_info{background-color:rgba(255,255,255,0.8) !important}.scheme_dark .sc_slider_pagination.widget_area .post_item + .post_item{border-color:#29395f}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap span{border-color:#29395f}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap span:hover,.scheme_dark .sc_slider_pagination_over .sc_slider_pagination_wrap .swiper-pagination-bullet-active{border-color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination .post_title{color:#d0d0d0}.scheme_dark .sc_slider_pagination_over .sc_slider_pagination .post_info{color:#5e657c}.scheme_dark .sc_slider_pagination_area .sc_slider_pagination .post_item.active{background-color:#ffffff !important}.scheme_dark .sc_slider_controls_bottom .sc_slider_controls_wrap a{background-color:#00a9e1;	color:#ffffff}.scheme_dark .sc_socials.sc_socials_type_icons a{color:#aaaaaa;	border-color:#aaaaaa}.scheme_dark .sc_socials.sc_socials_type_icons a:hover{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_socials.sc_socials_share.sc_socials_dir_vertical .sc_socials_item a{background-color:#ffffff}.scheme_dark .sc_socials .social_icons{background-color:#00a9e1}.scheme_dark .sc_socials .social_icons span{color:#ffffff}.scheme_dark .sc_socials .social_icons:hover span{color:#00a9e1}.scheme_dark .sc_socials .social_icons:hover{background-color:#ffffff!important}.scheme_dark .post_author .post_author_info a{color:#00a9e1}.scheme_dark .post_author .post_author_info a:hover{color:#00a9e1}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a{color:#0a1f54;	border-color:#29395f}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li a:hover{color:#ffffff}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after{background-color:#ffffff}.scheme_dark .sc_tabs.sc_tabs_style_1 .sc_tabs_content,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_content{border-color:#29395f}.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a{border-color:#ffffff;	background-color:#ffffff;	color:#ffffff}.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a:hover,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.ui-state-active a,.scheme_dark .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li.sc_tabs_active a{color:#ffffff}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_title a{color:#0a1f54}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_title a:hover{color:#00a9e1}.scheme_dark .sc_team_item .sc_team_item_info .sc_team_item_position{color:#00a9e1}.scheme_dark .sc_team_style_team-1 .sc_team_item_info,.scheme_dark .sc_team_style_team-3 .sc_team_item_info{border-color:#ffffff;	color:#9daab0;	background-color:#ffffff}.scheme_dark .sc_team_style_team-1.team_grey .sc_team_item_info,.scheme_dark .sc_team_style_team-3.team_grey .sc_team_item_info{background-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-3 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-3 .sc_socials_item a:hover{color:#e5e5e5;	border-color:#e5e5e5}.scheme_dark .sc_team.sc_team_style_team-3 .sc_team_item_avatar .sc_team_item_hover{background-color:rgba(255,255,255,0.8)}.scheme_dark .sc_team.sc_team_style_team-4 .sc_socials_item a{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-4 .sc_socials_item a:hover{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_team.sc_team_style_team-4 .sc_team_item_avatar .sc_team_item_hover{color:#ffffff;	background-color:rgba(10,31,84,0.8)}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a{color:#ffffff}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_title a:hover{color:#ffffff}.scheme_dark .sc_team_style_team-4 .sc_team_item_info .sc_team_item_position{color:#ffffff}.scheme_dark .sc_team .sc_team_descr{color:#9daab0}.scheme_dark .post_item_single_team .single_team_post_description .team_position{color:#00a9e1}.scheme_dark .post_item_single_team .single_team_post_description .team_meta{color:#656c77}.scheme_dark .post_item_single_team .single_team_post_description .team_brief_info_text p:after{background-color:#29395f}.scheme_dark .sc_testimonials{color:#9daab0}.scheme_dark .sc_testimonial_author_name{color:#0a1f54}.scheme_dark .sc_testimonial_position_position{color:#656c77}.scheme_dark .sc_testimonials_style_testimonials-2 .sc_testimonial_author_name:before{color:#656c77}.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content,.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content:after{background-color:#262262}.scheme_dark .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before{color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{color:#00a9e1}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content{background-color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_content:after{background-color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4 .sc_testimonial_author_position{color:#656c77}.scheme_dark .sc_testimonials.sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content{background-color:#ffffff}.scheme_dark .sc_testimonials_style_testimonials-4.sc_testimonials_style_test_yes .sc_testimonial_content:after{background-color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_title_icon{color:#ffffff}.scheme_dark .sc_title_underline::after{border-color:#ffffff}.scheme_dark .sc_title_divider .sc_title_divider_before,.scheme_dark .sc_title_divider .sc_title_divider_after{background-color:#0a1f54}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title{border-color:#29395f}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title .sc_toggles_icon{color:#aaaaaa;	background-color:#ffffff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active{color:#ffffff;	border-color:#ffffff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title.ui-state-active .sc_toggles_icon_opened{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title:hover{color:#00a9e1;	border-color:#00a9e1}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_title:hover .sc_toggles_icon_opened{background-color:#00a9e1}.scheme_dark .sc_toggles .sc_toggles_item .sc_toggles_content{border-color:#29395f}.scheme_dark .sc_tooltip_parent .sc_tooltip,.scheme_dark .sc_tooltip_parent .sc_tooltip:before{background-color:#ffffff}.scheme_dark .sc_twitter{color:#9daab0}.scheme_dark .sc_twitter .sc_slider_controls_wrap a{color:#ffffff}/* Common styles (title,subtitle and description for some shortcodes) */.scheme_dark .sc_item_subtitle{color:#e5631b}.scheme_dark .sc_item_title:after{background-color:#ffffff}.scheme_dark .sc_item_button>a:before{color:#ffffff;	background-color:#ffffff}.scheme_dark .sc_item_button>a:hover:before{color:#00a9e1}.scheme_dark body table.booked-calendar thead th .monthName,.scheme_dark body table.booked-calendar thead th .monthName a{color:#0a1f54}.scheme_dark body table.booked-calendar thead th .monthName a:hover{color:#00a9e1}.scheme_dark body table.booked-calendar thead th .page-right,.scheme_dark body table.booked-calendar thead th .page-left{color:#00a9e1 !important}.scheme_dark body table.booked-calendar td .date{background-color:#ffffff}.scheme_dark body table.booked-calendar .booked-appt-list .timeslot .timeslot-people button:hover{background-color:#0a1f54 !important}.scheme_dark .wpcf7-form-control-wrap .select_container:after{color:#aaaaaa}.scheme_dark .cff-container-field label,.scheme_dark .cff-number-field label,.scheme_dark .cff-dropdown-field label,.scheme_dark .cff-date-field label,.scheme_dark .calculated-result .field[type="text"],.scheme_dark .cff-calculated-field label{color:#0a1f54}.scheme_dark .wp-block-button:not(.is-style-outline) .wp-block-button__link{color:#00a9e1}.scheme_dark .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover{color:#00a9e1}.scheme_dark .is-style-outline>.wp-block-button__link:not(.has-text-color),.scheme_dark .wp-block-button__link.is-style-outline:not(.has-text-color){color:#00a9e1}.scheme_dark .is-style-outline>.wp-block-button__link:not(.has-text-color):hover,.scheme_dark .wp-block-button__link.is-style-outline:not(.has-text-color):hover{color:#00a9e1}.scheme_dark .wp-block-audio .mejs-container .mejs-controls .mejs-time{color:#00a9e1}.scheme_dark body .booked-modal input[type=submit].button-primary:hover{color:#00a9e1}.scheme_dark .widget_block .wp-block-search__button-outside input[type="search"]{background-color:#ffffff}.sidebar_outer_logo .logo_main,.top_panel_wrap .logo_main,.top_panel_wrap .logo_fixed{height:52px}.contacts_wrap .logo img{height:30px}@media (max-width:1023px){header.top_panel_wrap{display:none}.header_mobile{display:block}}/* Responsive styles (without sidemenu)
-------------------------------------------------------------- */

@media (min-width: 1440px) and (max-width: 1509px) {
	.post_item_colored .post_featured .post_title {
		font-size: 1.2em;
		line-height: 1.3em;
	}
	.post_item_colored .match_date, .post_item_colored .post_category {
		font-size: 1em;
		line-height: 1.3em;
	}
    .sc_slider_controls_bottom .sc_slider_controls_wrap{
        bottom: 2px;
    }
}

/*
Apple iPhone 5, 5S & 5C 
Apple iPod Touch (5th generation)
*/
/* Without side menu */
@media (min-width: 1263px) and (max-width: 1439px) {

	/* Body sizes */
	.body_style_boxed .page_wrap {		width:1260px; }
	.slider_boxed, .content_wrap, .content_container {	width:1000px; }

	/* Content and Sidebar */
	.sidebar_show .content { width: 670px; }
	.sidebar { 				 width: 300px; }
	
	/* Fullwide or Fullscreen with sidebar */
	.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 330px; }
	.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: -300px; }
	.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  330px; }
	.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:-300px; }

	/* WooCommerce: Content and Sidebar */
	.woocommerce.sidebar_show .content { width: 690px; }
	.woocommerce .sidebar { 			 width: 280px; }

	/* WooCommerce: Fullwide or Fullscreen with sidebar */
	.woocommerce.body_style_fullwide.sidebar_right .content, .woocommerce.body_style_fullscreen.sidebar_right .content { padding-right: 310px; }
	.woocommerce.body_style_fullwide.sidebar_right .sidebar, .woocommerce.body_style_fullscreen.sidebar_right .sidebar { margin-left: -280px; }
	.woocommerce.body_style_fullwide.sidebar_left  .content, .woocommerce.body_style_fullscreen.sidebar_left  .content { padding-left:  310px; }
	.woocommerce.body_style_fullwide.sidebar_left  .sidebar, .woocommerce.body_style_fullscreen.sidebar_left  .sidebar { margin-right:-280px; }

	.article_style_boxed .sidebar_inner,
	.body_filled .sidebar[class*="scheme_"] .sidebar_inner {
		padding: 2.1429em;
	}
	
	/* Top Panel */
	.top_panel_style_1 .contact_field {
		margin-top:2.5em;
	}
	.top_panel_style_1 .contact_field .contact_icon {
		float: none;
		margin-right:auto;
		margin-left:auto;
		margin-bottom:0.3em;
	}
	
	/* Posts layouts */
	.post_item_colored .post_category {
		max-height:1.2em;
		overflow:hidden;
	}
	.post_item_colored .post_descr .post_price {
		margin-top: 1.2em;
	}
	.sc_scroll_horizontal .sc_blogger .isotope_item,
	.sc_scroll_horizontal .sc_blogger [class*=column-],
	.sc_blogger .sc_scroll_horizontal .isotope_item,
	.sc_blogger .sc_scroll_horizontal [class*=column-] {
		width: 343px;
	}
	.sc_scroll_horizontal .sc_blogger .isotope_column_2,
	.sc_scroll_horizontal .sc_blogger .column-1_2,
	.sc_blogger .sc_scroll_horizontal .isotope_column_2,
	.sc_blogger .sc_scroll_horizontal .column-1_2 {
		width: 515px;
	}
	.sc_scroll_horizontal .sc_blogger .isotope_column_4,
	.sc_scroll_horizontal .sc_blogger .column-1_4,
	.sc_blogger .sc_scroll_horizontal .isotope_column_4,
	.sc_blogger .sc_scroll_horizontal .column-1_4 {
		width: 257px;
	}
	
	/* Shortcodes */
	.sc_matches_next {
		width: 35%;
	}
	.sc_matches_current {
		width: 65%;
	}
	.sc_matches_next, .sc_matches_current {
		padding: 2.5em 2.5em 1em;
	}
	.sc_matches.style_matches-1 .sc_matches_title {
		font-size: 2.5714em;
	}
	.sc_matches.style_matches-1 .sc_matches_descr {
		font-size:1.2857em;
	}
	.type_player.post_item_colored .player_info {
		font-size:0.9em;
	}
	.sc_matches.style_matches-2 .sc_match_info .name {
		width:8em;
	}
	
	/* Widgets */
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li + li {
		margin-left:0.4em;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
		padding: 2px 0.5em;
	}
	
	/* Widget Recent News */
	.sc_recent_news_style_news-announce .post_size_full {	height: 372px; }
	.sc_recent_news_style_news-announce .post_size_big {	height: 186px; }
	.sc_recent_news_style_news-announce .post_size_medium {	height: 93px;  }
	.sc_recent_news_style_news-announce .post_size_small {	height: 93px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	height: 560px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	height: 280px;  }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	height: 140px;  }
	.sc_recent_news_style_news-announce .post_size_medium .post_title,
	.sc_recent_news_style_news-announce .post_size_small .post_title {	font-size: 1.2em; }

    /* New style*/
        /* Top panel */
            .top_panel_wrap .contact_field.contact_phone {
                width: 26%;
            }
            .top_panel_wrap .contact_field.open_hours {
                width: 40%;
                padding-left: 47px !important;
            }
            .top_panel_wrap .contact_field.contact_address {
                width: 34%;
                padding-left: 6px !important;
            }
            .top_panel_middle .open_hours .contact_icon{
                left: 0.5em;
            }
            .top_panel_middle .contact_address .contact_icon{
                left: -2em;
            }
        /* Service */
             .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
                 font-size: 1.1em;
             }
            .sc_section.margin_right_huge{
                margin-right: 0!important;
            }
        /* Shortcodes*/
            .sc_slider_controls_bottom .sc_slider_controls_wrap{
                bottom: 2px;
            }

            .sc_columns.margin_top_medium {
                margin-top: 0 !important;
            }
            .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
                margin-left: 35%;
                -moz-transform: translateX(-21%);
                -webkit-transform: translateX(-21%);
                -o-transform: translateX(-21%);
                -ms-transform: translateX(-21%);
                transform: translateX(-21%);
            }
            
            .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
                font-size: 2em;
                top: 37%;
            }
        /* Widgets */
            .widget_area .widget_calendar td .day_wrap{
                margin-right: 0;
                margin-left: 0;
            }
        /* team */
            .single-team .socials_single_team{
                width: 50%;
                float: right;
                clear: both;
                margin-bottom: 5em;
            }
         /* Post */
            .single.single-post .post_info_bottom_info_share {
                top: -17px;
            }

        /* Portfolio */
            .ih-item.square .info p{
                font-style: normal;
                font-size: 0.9em;
            }
}


/*
Apple iPhone 4 & 4S
Apple iPod Touch (4th generation)
*/
/* With side menu
@media (min-width: 960px) and (max-width: 1509px) {
*/
/* Without side menu */
@media (min-width: 960px) and (max-width: 1262px) {

	html, body {	font-size: 13px; }
	h1 { font-size:3em; }		/* 39px */
	h2 { font-size:2.3077em; }	/* 30px */
	h3 { font-size:2.3077em; }	/* 30px */
	h4 { font-size:1.3846em; }	/* 18px */
	h5 { font-size:1.2308em; }	/* 16px */
	h6 { font-size:1em; }		/* 13px */

	.sidebar { 				 width: 270px; }
	
	/* Fullwide or Fullscreen with sidebar */
	.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 300px; }
	.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: -270px; }
	.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  300px; }
	.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:-270px; }

	/* WooCommerce: Content and Sidebar */
	.woocommerce .sidebar { 			 width: 250px; }

	/* WooCommerce: Fullwide or Fullscreen with sidebar */
	.woocommerce.body_style_fullwide.sidebar_right .content, .woocommerce.body_style_fullscreen.sidebar_right .content { padding-right: 280px; }
	.woocommerce.body_style_fullwide.sidebar_right .sidebar, .woocommerce.body_style_fullscreen.sidebar_right .sidebar { margin-left: -250px; }
	.woocommerce.body_style_fullwide.sidebar_left  .content, .woocommerce.body_style_fullscreen.sidebar_left  .content { padding-left:  280px; }
	.woocommerce.body_style_fullwide.sidebar_left  .sidebar, .woocommerce.body_style_fullscreen.sidebar_left  .sidebar { margin-right:-250px; }

	.article_style_boxed .sidebar_inner,
	.body_filled .sidebar[class*="scheme_"] .sidebar_inner {
		padding: 2.1429em;
	}

	/* Top Panel */
	.top_panel_style_1 .contact_field {
		margin-top:2.5em;
	}
	.top_panel_style_1 .contact_field .contact_icon {
		float: none;
		margin-right:auto;
		margin-left:auto;
		margin-bottom:0.3em;
	}
	
	/* Posts layouts */
	.isotope_filters a {
		font-size:0.8461em;
	}

	.post_item_colored .post_category {
		max-height:1.2em;
		overflow:hidden;
	}
	.post_item_colored .post_descr .post_price {
		margin-top: 1.2em;
	}
	.post_item_colored .post_featured .post_title {
		font-size:1.2857em;
	}
	
	/* Post parts */
	.post_info {
		font-size:0.8461em;
	}
	.post_info {
		font-size:0.8461em;
	}
	.post_rating .reviews_star {
		font-size:1em;
	}
	.post_item_colored .post_category {
		font-size:1em;
		margin:0 0 0.4em;
	}
	.post_item_colored .post_descr .post_price_period {
		font-size:1em;
	}
	.post_item_colored .post_descr .post_price_value {
		font-size:1.3846em;
	}

	/* Widgets */
	.widget_area .post_item .post_info {
		font-size:0.7692em;
	}
	.widget_area .widget_tag_cloud a {
		font-size:0.8461em !important;
	}
	.widget_area .widget_calendar .weekday {
		font-size:0.8461em;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li + li {
		margin-left:0.4em;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
		padding: 2px 0.25em;
	}
	.widget_area .widget_calendar td .day_wrap {
		padding:0 6px;
        font-size: 0.9em;
	}

	/* Footer */
	.contacts_wrap .contacts_address {
		font-size: 1em;
	}
	
	/* Woocommerce */
	.woocommerce .widget_price_filter .price_label {
		font-size: 1em;
	}
	.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
		font-size: 1em;
	}
	.top_panel_wrap .widget_shopping_cart ul.cart_list > li > a:not(.remove) {
		margin-top:-0.15em;
	}

	/* Shortcodes */
	.sc_googlemap {
		max-height:350px;
	}
	.sc_googlemap_content {
		position:static;
		width: auto;
	}
	
	/* Matches and Players*/
	.sc_matches_next {
		width: 35%;
	}
	.sc_matches_current {
		width: 65%;
	}
	.sc_matches_next, .sc_matches_current {
		padding: 2.5em 2.5em 1em;
	}
	.match_block .match_score {
		font-size: 3em;
	}
	.sc_matches.style_matches-1 .sc_matches_title {
		font-size: 2.5714em;
	}
	.sc_matches.style_matches-1 .sc_matches_descr {
		font-size:1.2857em;
	}
	.sc_matches.style_matches-2 .sc_match_info .name {
		width:6em;
	}
	.post_item_colored .match_date, .post_item_colored .post_category {
		font-size: 1.0769em;
		line-height:1.2em;
		margin-bottom:0.4em;
	}
	.type_player.post_item_colored .player_info {
		line-height:1.25em;
	}
	.post_item_single_players .player_content {
		padding-top:2.5em;
	}

	.sc_testimonial_content {
		font-size:1.25em;
	}
	.sc_testimonial_author {
		font-size: 1em;
	}
}

@media (min-width: 1136px) and (max-width: 1366px) {
	/* Menu */
	.menu_main_nav > li > a {
		line-height: 1.2857em;
		padding: 0.9em 1.3em;
	}
}

/* With side menu
@media (min-width: 1366px) and (max-width: 1509px) {
*/
/* Without side menu */
@media (min-width: 1136px) and (max-width: 1262px) {


    /* Body sizes */
    .body_style_boxed .page_wrap {		width:1000px; }
    .slider_boxed, .content_wrap, .content_container {	width:910px; }

    /* Content and Sidebar */
    .sidebar_show .content { width: 610px; }

    /* WooCommerce: Content and Sidebar */
    .woocommerce.sidebar_show .content { width: 630px; }

    /* Posts layouts */
    .sc_scroll_horizontal .sc_blogger .isotope_item,
    .sc_scroll_horizontal .sc_blogger [class*=column-],
    .sc_blogger .sc_scroll_horizontal .isotope_item,
    .sc_blogger .sc_scroll_horizontal [class*=column-] {
        width: 313px;
    }
    .sc_scroll_horizontal .sc_blogger .isotope_column_2,
    .sc_scroll_horizontal .sc_blogger .column-1_2,
    .sc_blogger .sc_scroll_horizontal .isotope_column_2,
    .sc_blogger .sc_scroll_horizontal .column-1_2 {
        width: 470px;
    }
    .sc_scroll_horizontal .sc_blogger .isotope_column_4,
    .sc_scroll_horizontal .sc_blogger .column-1_4,
    .sc_blogger .sc_scroll_horizontal .isotope_column_4,
    .sc_blogger .sc_scroll_horizontal .column-1_4 {
        width: 235px;
    }
    .sc_recent_news_style_news-announce .post_size_full {	height: 344px; }
    .sc_recent_news_style_news-announce .post_size_big {	height: 172px; }
    .sc_recent_news_style_news-announce .post_size_medium {	height: 86px;  }
    .sc_recent_news_style_news-announce .post_size_small {	height: 86px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	height: 512px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	height: 256px;  }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	height: 128px;  }
    .sc_recent_news_style_news-announce .post_size_medium .post_title,
    .sc_recent_news_style_news-announce .post_size_small .post_title {	font-size: 1.2em; }

    /* New style*/
    /* Top panel */
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
        padding-left: 44px !important;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
        padding-left: 6px !important;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 2em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    /* Shortcodes*/
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
        margin-left: 30%;
        -moz-transform: translateX(-17%);
        -webkit-transform: translateX(-17%);
        -o-transform: translateX(-17%);
        -ms-transform: translateX(-17%);
        transform: translateX(-17%);
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 37%;
    }
    .sc_item_descr{
        left: 52%;
        width: 51%;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-right: 0;
        margin-left: 0;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
    }
    .ih-item.square .info .post_title{
        font-size: 1.1em!important;
    }
    /* Menu */
    .menu_main_nav > li > a {
        line-height: 1.2857em;
	    padding: 0.9em 1.3em;
    }
    .scroll_to_top::before {
        top: -1px;
    }
}

@media (max-width: 1262px) {
	.booked_section .booked-calendar-wrap {
		height: 480px !important;
	}
	.hide_notebook {
		display: none;
	}
}


/* Without side menu */
@media (min-width: 1024px) and (max-width: 1135px) {

    /* Body sizes */
    .body_style_boxed .page_wrap {		width:100%; }
    .slider_boxed, .content_wrap, .content_container {	width:964px; }

    /* Content and Sidebar */
    .sidebar_show .content { width: 664px; }

    /* WooCommerce: Content and Sidebar */
    .woocommerce.sidebar_show .content { width: 684px; }

    /* Posts layouts */
    .sc_scroll_horizontal .sc_blogger .isotope_item,
    .sc_scroll_horizontal .sc_blogger [class*=column-],
    .sc_blogger .sc_scroll_horizontal .isotope_item,
    .sc_blogger .sc_scroll_horizontal [class*=column-] {
        width: 331px;
    }
    .sc_scroll_horizontal .sc_blogger .isotope_column_2,
    .sc_scroll_horizontal .sc_blogger .column-1_2,
    .sc_blogger .sc_scroll_horizontal .isotope_column_2,
    .sc_blogger .sc_scroll_horizontal .column-1_2 {
        width: 497px;
    }
    .sc_scroll_horizontal .sc_blogger .isotope_column_4,
    .sc_scroll_horizontal .sc_blogger .column-1_4,
    .sc_blogger .sc_scroll_horizontal .isotope_column_4,
    .sc_blogger .sc_scroll_horizontal .column-1_4 {
        width: 248px;
    }
    .sc_recent_news_style_news-announce .post_size_full {	height: 372px; }
    .sc_recent_news_style_news-announce .post_size_big {	height: 186px; }
    .sc_recent_news_style_news-announce .post_size_medium {	height: 93px;  }
    .sc_recent_news_style_news-announce .post_size_small {	height: 93px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	height: 540px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	height: 270px;  }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	height: 135px;  }
    .sc_recent_news_style_news-announce .post_size_medium .post_title,
    .sc_recent_news_style_news-announce .post_size_small .post_title {	font-size: 1.2em; }

    /* New style*/
    /* Top panel */
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
        padding-left: 44px !important;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
        padding-left: 6px !important;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 2em;
    }
    .top_panel_title.title_present:not(.navi_present) .breadcrumbs{
        padding-top: 4.3em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    /* Shortcodes*/
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
        margin-left: 30%;
        -moz-transform: translateX(-17%);
        -webkit-transform: translateX(-17%);
        -o-transform: translateX(-17%);
        -ms-transform: translateX(-17%);
        transform: translateX(-17%);
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 40%;
    }
    .sc_item_descr{
        left: 52%;
        width: 51%;
    }
    .sc_skills_pie.sc_skills_compact_off .sc_skills_item{
        padding-left: 20px;
        padding-right: 20px;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-right: 0;
        margin-left: 0;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
    }
    .ih-item.square .info .post_title{
        font-size: 1.1em!important;
    }
    /* Menu */
    .top_panel_style_3 .menu_main_nav > li > ul{
	    left: -15px;
    }
	.menu_main_nav > li > a {
        line-height: 1.2857em;
		padding: .9em 1.3em;
    }
    .scroll_to_top::before {
        top: -1px;
    }

    .slider_wrap .booked-calendar .date,
    .slider_wrap .booked-calendar .date .number{
        line-height: 26px !important;
    }

    body table.booked-calendar th .page-right,
    body table.booked-calendar th .page-left{
        top: 48%;
    }

    body .slider_wrap table.booked-calendar thead tr:first-child th{
        height: 80px;
    }

    .calculated-result label{
        font-size: 13px;
    }

    .calculated-result{
        margin-left: 30px;
    }

    #fbuilder .calculated-result.cff-container-field .comment_area span{
        font-size: 11px;
    }

    body .booked-calendar-wrap .booked-appt-list .timeslot .timeslot-time{
        width: 40%;
    }
}



/* Without side menu */
@media (min-width: 960px) and (max-width: 1023px) {

    /* Body sizes */
    .body_style_boxed .page_wrap {		width:100%; }
    .slider_boxed, .content_wrap, .content_container {	width:900px; }

    /* Content and Sidebar */
    .sidebar_show .content { width: 600px; }

    /* WooCommerce: Content and Sidebar */
    .woocommerce.sidebar_show .content { width: 620px; }

    /* Main Slider */
    .slider_over_content .sc_form_message textarea {
        min-height: 8em;
    }

    /* Posts layouts */
    .sc_scroll_horizontal .sc_blogger .isotope_item,
    .sc_scroll_horizontal .sc_blogger [class*=column-],
    .sc_blogger .sc_scroll_horizontal .isotope_item,
    .sc_blogger .sc_scroll_horizontal [class*=column-] {
        width: 310px;
    }
    .sc_scroll_horizontal .sc_blogger .isotope_column_2,
    .sc_scroll_horizontal .sc_blogger .column-1_2,
    .sc_blogger .sc_scroll_horizontal .isotope_column_2,
    .sc_blogger .sc_scroll_horizontal .column-1_2 {
        width: 465px;
    }
    .sc_scroll_horizontal .sc_blogger .isotope_column_4,
    .sc_scroll_horizontal .sc_blogger .column-1_4,
    .sc_blogger .sc_scroll_horizontal .isotope_column_4,
    .sc_blogger .sc_scroll_horizontal .column-1_4 {
        width: 232px;
    }
    .sc_recent_news_style_news-announce .post_size_full {	height: 336px; }
    .sc_recent_news_style_news-announce .post_size_big {	height: 168px; }
    .sc_recent_news_style_news-announce .post_size_medium {	height: 84px;  }
    .sc_recent_news_style_news-announce .post_size_small {	height: 84px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	height: 504px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	height: 252px;  }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	height: 126px;  }
    .sc_recent_news_style_news-announce .post_size_medium .post_title,
    .sc_recent_news_style_news-announce .post_size_small .post_title {	font-size: 1.2em; }

    /* New style*/
    /* Top panel */
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 2em;
    }
    .top_panel_title.title_present:not(.navi_present) .breadcrumbs{
        padding-top: 4.3em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    /* Shortcodes*/
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
        margin-left: 30%;
        -moz-transform: translateX(-17%);
        -webkit-transform: translateX(-17%);
        -o-transform: translateX(-17%);
        -ms-transform: translateX(-17%);
        transform: translateX(-17%);
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 40%;
    }
    .sc_item_descr{
        left: 52%;
        width: 51%;
    }
    .sc_skills_pie.sc_skills_compact_off .sc_skills_item{
        padding-left: 20px;
        padding-right: 20px;
    }
    .sc_slider_controls_bottom .sc_slider_controls_wrap a{
        line-height: 2.4em;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-right: 0;
        margin-left: 0;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
    }
    .ih-item.square .info .post_title{
        font-size: 1.1em!important;
    }
    /* Menu */
    .menu_main_nav > li > a {
        line-height: 1.2857em;
        padding-bottom: 0.9em;
        padding-left: 1.3em;
        padding-right: 1.3em;
        padding-top: 0.9em;
    }
    .scroll_to_top::before {
        top: -1px;
    }
}


@media (max-width: 1023px){
    .menu_main_nav > a:hover,
    .menu_main_nav > li > a:hover,
    .menu_main_nav > li.sfHover > a,
    .menu_main_nav > li.current-menu-item > a,
    .menu_main_nav > li.current-menu-parent > a,
    .menu_main_nav > li.current-menu-ancestor > a,
    .menu_main_nav > a,
    .menu_main_nav > li > a,
    .menu_main_nav > li ul{
        border: none;
        border-radius: 0;
    }
    .popup_wrap .popup_form_field .forgot_password {
        line-height: 2.1em;
    }

}

/*
Sony Xperia
LG Optimus
Blackberry Storm 3, Torch 9850 & Torch 9860
Nokia Lumia 610, 710 & 800
HTC Desire, Desire Z, Desire S & One V
Samsung Galaxy
*/
@media (min-width: 768px) and (max-width: 959px) {

	html, body {	font-size: 13px; }
	h1 { font-size:3em; }		/* 39px */
	h2 { font-size:2.3077em; }	/* 30px */
	h3 { font-size:2.3077em; }	/* 30px */
	h4 { font-size:1.3846em; }	/* 18px */
	h5 { font-size:1.2308em; }	/* 16px */
	h6 { font-size:1em; }		/* 13px */

	/* Body sizes */
	.body_style_boxed .page_wrap {		width:100%; }
	.slider_boxed, .content_wrap, .content_container {	width:708px; }

	/* Content and Sidebar */
	.sidebar_show .content { width: 100%; float: none; }
	.sidebar_show .sidebar { width: 100%; float: none; margin-top: 2em; }
	
	/* Fullwide or Fullscreen with sidebar */
	.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 0 !important; }
	.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: 0 !important; }
	.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  0 !important; }
	.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right:0 !important; }

	/* WooCommerce: Content and Sidebar */
	.woocommerce.sidebar_show .content { width: 100%; float: none; }
	.woocommerce .sidebar { 			 width: 100%; float: none; margin-top: 2em; }

	/* Main Slider */
	.slider_over_content .sc_form_message textarea {
		min-height: 7em;
	}
	.slider_over_content .sc_form .sc_form_item input[type="text"],
	.slider_over_content .sc_form .sc_form_item select,
	.slider_over_content .sc_form .sc_form_item textarea {
		padding: 0.6em 1em;
	}
	
	.sidebar aside {
		display: inline-block;
		vertical-align:top;
		width:31%;
		margin-left:3.5%;
	}
	.sidebar aside+aside {
		padding-top:0;
		border-top:none;
		margin-top:0;
	}
	.sidebar aside:nth-child(3n+1) {
		margin-left:0;
	}
	.sidebar aside:nth-child(3n+4),
	.sidebar aside:nth-child(3n+5),
	.sidebar aside:nth-child(3n+6) {
		padding-top:2em;
		border-top:1px solid #f4f7f9;
		margin-top:2em;
	}

	.gallery.gallery-columns-9 .gallery-item {	width: 20% !important; }
	.gallery.gallery-columns-8 .gallery-item {	width: 20% !important; }
	.gallery.gallery-columns-7 .gallery-item {	width: 20% !important; }
	.gallery.gallery-columns-6 .gallery-item {	width: 20% !important; }
	
	/* Top Panel */
	.top_panel_top_user_area {
		float:none;
		clear:both;
		width:100%;
	}
	.top_panel_top_socials {
		float:left;
		margin-left:0;
		margin-right:4.5em;
	}
	.top_panel_style_1 .contact_field {
		text-align:center;
		margin-top:1.5em;
		margin-bottom:1.5em;
	}
	.top_panel_style_1 .contact_field .contact_icon {
		float: none;
		margin-right:auto;
		margin-left:auto;
		margin-bottom:0.3em;
	}
	
	/* Login and Register */
	.popup_wrap {
		top: 50%;
		left: 50%;
		-webkit-transform:translate(-50%, -50%);
		   -moz-transform:translate(-50%, -50%);
			-ms-transform:translate(-50%, -50%);
				transform:translate(-50%, -50%);
	}
	
	/* Posts layouts */
	.isotope_filters a {
		font-size:0.8461em;
	}

	.post_item_colored .post_category {
		max-height:1.2em;
		overflow:hidden;
	}
	.post_item_colored .post_descr .post_price {
		margin-top: 1.2em;
	}
	.post_item_colored .post_info_wrap .post_button + .post_button {
		margin-left:0.4em;
	}

	.sc_scroll_horizontal .sc_blogger .isotope_item,
	.sc_scroll_horizontal .sc_blogger [class*=column-],
	.sc_blogger .sc_scroll_horizontal .isotope_item,
	.sc_blogger .sc_scroll_horizontal [class*=column-] {
		width: 246px;
	}
	.sc_scroll_horizontal .sc_blogger .isotope_column_2,
	.sc_scroll_horizontal .sc_blogger .column-1_2,
	.sc_blogger .sc_scroll_horizontal .isotope_column_2,
	.sc_blogger .sc_scroll_horizontal .column-1_2 {
		width: 369px;
	}

	/* Post parts */
	.post_info {
		font-size:0.8461em;
	}
	.post_info {
		font-size:0.8461em;
	}
	.post_rating .reviews_star {
		font-size:1em;
	}
	.post_item_colored .post_category {
		font-size:1em;
		margin:0 0 0.4em;
	}
	.post_item_colored .post_descr .post_price_period {
		font-size:1em;
	}
	.post_item_colored .post_descr .post_price_value {
		font-size:1.3846em;
	}
	
	/* Widgets */
	.widget_area .post_item .post_info {
		font-size:0.7692em;
	}
	.widget_area .widget_tag_cloud a {
		font-size:0.8461em !important;
	}
	.widget_area .widget_calendar .weekday {
		font-size:0.8461em;
	}
	.widget_area .reviews_block .reviews_summary .reviews_criteria {
		font-size:0.7692em;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li + li {
		margin-left:0.4em;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
		padding: 2px 0.5em;
	}
	.sc_recent_news_style_news-announce .post_item {		float:none; }
	.sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 198px; }
	.sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 198px; }
	.sc_recent_news_style_news-announce .post_size_medium {	width: 100%; height: 198px;  }
	.sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 198px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 198px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 198px;  }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 198px;  }
	.sc_recent_news_style_news-announce .post_size_full .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_big .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_medium .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_small .post_featured { max-height: 100%; }

	/* Footer */
	.contacts_wrap .contacts_address {
		font-size: 1em;
	}

	/* Shortcodes */	
	.sc_promo_block {
		min-width: 50%;
	}
	.sc_promo_block_inner {
		padding: 3.5em;
	}
	.sc_googlemap {
		max-height:350px;
	}
	.sc_googlemap_content {
		position:static;
		width: auto;
	}
	.popup_menuitem > .sc_menuitems_wrap {
		width: 600px;
	}
	
	/* Matches and Players */
	.sc_matches_next, .sc_matches_current {
		float:none;
		width: 100%;
		padding: 2.5em 2.5em 1em;
	}
	.match_block .match_score {
		font-size: 3em;
	}
	.sc_matches.style_matches-1 .sc_matches_title {
		font-size: 2.5714em;
	}
	.sc_matches.style_matches-1 .sc_matches_descr {
		font-size:1.2857em;
	}
	.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list {
		float:none;
		width: 100%;
	}
	.sc_matches.style_matches-2 .sc_match_info {
		text-align:center;
	}
	.sc_matches.style_matches-2 .sc_match_info .name {
		width:10em;
	}
	.post_item_colored .match_date, .post_item_colored .post_category {
		font-size: 1.0769em;
		line-height:1.2em;
		margin-bottom:0.4em;
	}
	.type_player.post_item_colored .player_info {
		line-height:1.4em;
	}
	.post_item_single_players .player_content {
		padding-top:2.5em;
	}

	input[type="submit"], input[type="button"], button, .sc_button {
		padding: 0.75em;
	}
	.sc_testimonial_content {
		font-size:1.25em;
	}
	.sc_testimonial_author {
		font-size: 1em;
	}


	/* Woocommerce */
	.woocommerce .widget_price_filter .price_label {
		font-size: 1em;
	}
	.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
		font-size: 1em;
	}
	.top_panel_wrap .widget_shopping_cart ul.cart_list > li > a:not(.remove) {
		margin-top:-0.15em;
	}
	.woocommerce table.cart img, .woocommerce #content table.cart img, .woocommerce-page table.cart img, .woocommerce-page #content table.cart img {
		width: 60px;
	}
	.woocommerce table.cart td, .woocommerce #content table.cart td, .woocommerce-page table.cart td, .woocommerce-page #content table.cart td {
		padding: 8px;
	}
	.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
		float:left;
	}
	.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
		width: auto;
	}
	.woocommerce #content table.cart td.actions > .button, .woocommerce table.cart td.actions > .button, .woocommerce-page #content table.cart td.actions > .button, .woocommerce-page table.cart td.actions > .button {
		float: right;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*="columns-"] ul.products li.product, .woocommerce[class*="columns-"] ul.products li.product {
		clear:none !important;
	}
	.woocommerce ul.products li.product:nth-child(2n), .woocommerce-page ul.products li.product:nth-child(2n), .woocommerce-page[class*="columns-"] ul.products li.product:nth-child(2n), .woocommerce[class*="columns-"] ul.products li.product:nth-child(2n) {
		float:left;
	}
	.woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_5, .woocommerce-page .related.products ul.products li.product.column-1_5,
	.woocommerce .upcells.products ul.products li.product.column-1_5, .woocommerce-page .upcells.products ul.products li.product.column-1_5,
	.woocommerce ul.products li.product.column-1_5, .woocommerce-page ul.products li.product.column-1_5 {
		width: 33.3333%;
	}
	.woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_6, .woocommerce-page .related.products ul.products li.product.column-1_6,
	.woocommerce .upcells.products ul.products li.product.column-1_6, .woocommerce-page .upcells.products ul.products li.product.column-1_6,
	.woocommerce ul.products li.product.column-1_6, .woocommerce-page ul.products li.product.column-1_6 {
		width: 33.3333%;
	}

	/* BuddyPress */
	#buddypress #item-nav {
		float:none;
		margin-bottom:2em;
		width:auto;
		display:inline-block;
	}
	#buddypress #item-nav ul {
		overflow:hidden;
	}
	#buddypress #item-nav ul li {
		float:left;
	}

    /* HTML5 Player */
    #myplayer .ttw-music-player .album-cover {
        width: 100%;
        float: none;
		overflow:hidden;
    }
    #myplayer .ttw-music-player .album-cover .img {
		position: static;
		max-height:none;
		margin-top:0;
	}
    #myplayer .ttw-music-player .album-cover img {
		max-width:none;
	}
    #myplayer .ttw-music-player .tracklist {
        position: relative;
        margin-left: 0;
        padding: 0;
        top: 0;
    }
	
	/* Scroll to Top */
	.scroll_to_top {
		right: 1em;
	}
	.scroll_to_top.show {
		bottom: 1em;
	}
    /* New style*/
    /* Top panel */
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 1.5em;
    }

    .top_panel_title.title_present:not(.navi_present) .breadcrumbs{
        padding-top: 3.3em;
        padding-left: 1.5em;
    }
    /* Clients */
    .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{
        height: 3em;
        line-height: 3em;
        width: 3em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_services_style_services-1 .sc_services_item{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    .sc_services_style_services-5 .sc_service_container .sc_services_image{
        top: 50%;
    }
    /* Shortcodes*/
    .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_total{ font-size: 1.857em;}
    .sc_button.sc_button_style_border {
        padding-bottom: 0.6em;
        padding-left: 0.75em;
        padding-right: 0.75em;
        padding-top: 0.55em;
    }
    .sc_skills_counter .sc_skills_item.sc_skills_style_1{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
        margin-left: 13%;
        -moz-transform: translateX(-6%);
        -webkit-transform: translateX(-6%);
        -o-transform: translateX(-6%);
        -ms-transform: translateX(-6%);
        transform: translateX(-6%);
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 40%;
    }
    .sc_item_descr{
        left: 52%;
        width: 51%;
    }
    .sc_skills_pie.sc_skills_compact_off .sc_skills_item{
        padding-left: 0;
        padding-right: 0;
    }
    .sc_slider_controls_bottom .sc_slider_controls_wrap a{
        line-height: 2.4em;
    }
    .sc_price_block .sc_price_block_money .sc_price_money{
        font-size: 2.3em;
    }
    .sc_price_block .sc_price_block_money .sc_price_currency{
        font-size: 2.25em;
    }
    .sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item,
    .wpcf7 form .form_info .wpcf7-form-control-wrap{
        width: 100%;
    }
    .sc_services_style_services-5 .sc_service_container .sc_services_image{
        width: 34%;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item{
        margin-right: 33%;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item{
        margin-left: 33%;
    }


    /* Bloger */
    .sc_blogger.template_masonry .post_item_classic .post_title{
        font-size: 1em;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-left: 1px;
        margin-right: 1px;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    .widget_text h5{
        font-size: 1.1em;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    .post_item_single_team .single_team_post_description .team_brief_info_text p:after{
        width: 100%;
    }
    .single-team .socials_single_team{
        width: 100%;
        float: left;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
        padding-top: 0!important;
        padding-left: 0.5em!important;
        padding-right: 0.5em!important;
    }
    .ih-item.square .info .post_title{
        font-size: 0.9em!important;
    }
    .ih-item.square.effect_shift .info .post_title{
        margin-top: 0!important;
    }
    /* Menu */
    .menu_main_nav > li > a {
        line-height: 1.2857em;
        padding-bottom: 0.9em;
        padding-left: 1.3em;
        padding-right: 1.3em;
        padding-top: 0.9em;
    }
    .scroll_to_top::before {
        top: -1px;
    }
    /* Mail chimp */
    .mc4wp-form input[type="email"]{
        width: 20.5em;
    }

    .slider_wrap .booked-calendar .date,
    .slider_wrap .booked-calendar .date .number{
        line-height: 28px !important;
    }

    body table.booked-calendar th .page-right,
    body table.booked-calendar th .page-left{
        top: 46%;
    }

    .cff-container-field.button-position-left > div{
        display: block;
    }

    .calculated-result{
        margin-left: 0;
        margin-top: 10px;
    }

    .button-position-left{
        margin-top: 0;
    }
}
@media (min-width: 768px) and (max-width: 800px){
    .margin_right_huge {
        margin-right: 3rem !important;
    }
    .margin_left_huge {
        margin-left: 3rem !important;
    }
    .mc4wp-form input[type="email"] {
        width: 17.5em;

    }
    .mc4wp-form input[type="submit"] {
        padding-bottom: 1.15em!important;
        padding-left: 1.5em!important;
        padding-right: 1.5em!important;
        padding-top: 1.15em!important;
    }
    
    .help_table .sc_price_block .sc_price_block_money{
        height: 5.4em;
    }
    .widget_area .widget_calendar td .day_wrap {
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    .ih-item.square.effect_dir .info .post_title{
        padding-bottom: 0;
        padding-top: 0;
        margin-top: 0;
    }

	.top_panel_wrap.top_panel_style_1 {
		 display: none;
	}

    .woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
        width: 48%;
    }

}

@media (max-width: 768px) {
	.booked_section .booked-calendar-wrap {
		height: 360px !important;
	}
}

/*
Portrait orientation
Sony Xperia
LG Optimus
Blackberry Storm 3, Torch 9850 & Torch 9860
Nokia Lumia 610, 710 & 800
HTC Desire, Desire Z, Desire S & One V
Samsung Galaxy
*/
@media (min-width: 480px) and (max-width: 767px) {

    html, body {	font-size: 12px; }
    h1 { font-size:2.5em; }		/* 30px */
    h2 { font-size:2em; }		/* 24px */
    h3 { font-size:2em; }		/* 24px */
    h4 { font-size:1.3333em; }	/* 16px */
    h5 { font-size:1.1667em; }	/* 14px */
    h6 { font-size:1em; }		/* 12px */

    /* Body sizes */
    .body_style_boxed .page_wrap {		width:100%; }

    /* Content and Sidebar */
    .sidebar_show .content { width: 100%; float: none; }
    .sidebar_show .sidebar { width: 100%; float: none; margin-top: 2em; }

    /* Fullwide or Fullscreen with sidebar */
    .body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 0 !important; }
    .body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: 0 !important; }
    .body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  0 !important; }
    .body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right: 0 !important; }

    /* WooCommerce: Content and Sidebar */
    .woocommerce.sidebar_show .content { width: 100%; float: none; }
    .woocommerce .sidebar { 			 width: 100%; float: none; margin-top: 2em; }

    .article_style_boxed .sidebar,
    .body_filled .sidebar[class*="scheme_"] {
        margin-top:20px;
    }

    /* Main Slider */
    .slider_over_content_inner {
        padding:1.5em;
    }
    .slider_over_content .sc_form_message textarea {
        min-height: 7em;
    }
    .slider_over_content .sc_form .sc_form_item input[type="text"],
    .slider_over_content .sc_form .sc_form_item select,
    .slider_over_content .sc_form .sc_form_item textarea {
        padding: 0.5em 1em;
    }

    .widget_area aside {
        display: inline-block;
        float:none;
        vertical-align:top;
        width:48%;
        margin-left:4%;
    }
    .widget_area aside[class*="column-"] {
        margin-left:0;
    }
    .widget_area aside+aside {
        padding-top:0;
        border-top:none;
        margin-top:0;
    }
    .widget_area aside:nth-child(2n+1) {
        margin-left:0;
    }
    .widget_area aside:nth-child(2n+3),
    .widget_area aside:nth-child(2n+4) {
        padding-top:1em;
        border-top:1px solid #f4f7f9;
        margin-top:1em;
    }
    .footer_wrap.widget_area aside:nth-child(n+1),
    .footer_wrap.widget_area aside:nth-child(n+2){
        padding-top:3em!important;
    }
    .widget_area aside:first-child{
        border: none;
        padding-top: 0;
        margin-top: 0;
    }
    .footer_wrap aside {
        margin-bottom: 2em;
    }

    /* Grid */
    .container, .container-fluid {
        padding-left:  10px;
        padding-right: 10px;
    }
    .row, .columns_wrap {
        margin-right: -20px;
    }
    .row > [class*="column-"], .columns_wrap > [class*="column-"] {
        padding-right: 20px;
    }
    .row.column_padding_left, .columns_wrap.column_padding_left {
        margin-left: -20px;
    }
    .row.column_padding_left > [class*="column-"], .columns_wrap.column_padding_left > [class*="column-"],
    .row > [class*="column-"].column_padding_left, .columns_wrap > [class*="column-"].column_padding_left {
        padding-left: 20px;
    }
    .row.column_padding_right, .columns_wrap.column_padding_right {
        margin-right: -20px;
    }
    .row.column_padding_right > [class*="column-"], .columns_wrap.column_padding_right > [class*="column-"],
    .row > [class*="column-"].column_padding_right, .columns_wrap > [class*="column-"].column_padding_right {
        padding-right:20px;
    }
    .row.column_padding_center, .columns_wrap.column_padding_center {
        margin-left: -10px;
        margin-right: -10px;
    }
    .row.column_padding_center > [class*="column-"], .columns_wrap.column_padding_center > [class*="column-"],
    .row > [class*="column-"].column_padding_center, .columns_wrap > [class*="column-"].column_padding_center {
        padding-left:20px;
    }
    .row > [class*="column-"].column_padding_bottom, .columns_wrap > [class*="column-"].column_padding_bottom {
        padding-bottom: 20px;
    }

    /* Columns relayout (max 2 columns in the row) */
    .row:not(.columns_fluid) > [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"] {
        width:100%;
    }
    .row:not(.columns_fluid) > .column-1_1, .row:not(.columns_fluid) > .column-2_2, .row:not(.columns_fluid) > .column-3_3, .row:not(.columns_fluid) > .column-4_4,
    .row:not(.columns_fluid) > .column-5_5,	.row:not(.columns_fluid) > .column-6_6, .row:not(.columns_fluid) > .column-7_7, .row:not(.columns_fluid) > .column-8_8,
    .row:not(.columns_fluid) > .column-9_9, .row:not(.columns_fluid) > .column-10_10,
    .row:not(.columns_fluid) > .column-11_11, .row:not(.columns_fluid) > .column-12_12,
    .columns_wrap:not(.columns_fluid) > .column-1_1, .columns_wrap:not(.columns_fluid) > .column-2_2, .columns_wrap:not(.columns_fluid) > .column-3_3,
    .columns_wrap:not(.columns_fluid) > .column-4_4, .columns_wrap:not(.columns_fluid) > .column-5_5, .columns_wrap:not(.columns_fluid) > .column-6_6,
    .columns_wrap:not(.columns_fluid) > .column-7_7, .columns_wrap:not(.columns_fluid) > .column-8_8, .columns_wrap:not(.columns_fluid) > .column-9_9,
    .columns_wrap:not(.columns_fluid) > .column-10_10, .columns_wrap:not(.columns_fluid) > .column-11_11, .columns_wrap:not(.columns_fluid) > .column-12_12,
    .row:not(.columns_fluid) > .column-2_3, .columns_wrap:not(.columns_fluid) > .column-2_3,
    .row:not(.columns_fluid) > .column-2_4, .columns_wrap:not(.columns_fluid) > .column-3_4,
    .row:not(.columns_fluid) > .column-2_5, .columns_wrap:not(.columns_fluid) > .column-2_5,
    .row:not(.columns_fluid) > .column-3_5, .columns_wrap:not(.columns_fluid) > .column-3_5,
    .row:not(.columns_fluid) > .column-4_5, .columns_wrap:not(.columns_fluid) > .column-4_5,
    .row:not(.columns_fluid) > .column-2_6, .columns_wrap:not(.columns_fluid) > .column-2_6,
    .row:not(.columns_fluid) > .column-3_6, .columns_wrap:not(.columns_fluid) > .column-3_6,
    .row:not(.columns_fluid) > .column-4_6, .columns_wrap:not(.columns_fluid) > .column-4_6,
    .row:not(.columns_fluid) > .column-5_6, .columns_wrap:not(.columns_fluid) > .column-5_6	{
        width:100%;
    }
    .row:not(.columns_fluid) > [class*="column-"]:nth-child(2n+3), .columns_wrap:not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
    .row:not(.columns_fluid) > [class*="column-"]:nth-child(2n+4), .columns_wrap:not(.columns_fluid) > [class*="column-"]:nth-child(2n+4) {
        padding-top: 20px;
    }

    .gallery.gallery-columns-9 .gallery-item {	width: 33.3333% !important; }
    .gallery.gallery-columns-8 .gallery-item {	width: 33.3333% !important; }
    .gallery.gallery-columns-7 .gallery-item {	width: 33.3333% !important; }
    .gallery.gallery-columns-6 .gallery-item {	width: 33.3333% !important; }
    .gallery.gallery-columns-5 .gallery-item {	width: 33.3333% !important; }
    .gallery.gallery-columns-4 .gallery-item {	width: 33.3333% !important; }

    /* Top Panel */
    .top_panel_top_user_area {
        float:none;
        clear:both;
        width:100%;
    }
    .top_panel_top_socials {
        float:left;
        margin-left:0;
        margin-right:4.5em;
    }
    .top_panel_top_contact_area,
    .top_panel_top_search,
    .top_panel_top_user_area .menu_user_nav {
        margin-top:0.5em;
    }
    .top_panel_top_search {
        padding-top: 0.1em;
        margin-right:1em;
    }
    .top_panel_top_search .search_field {
        max-width:4em;
    }
    .top_panel_style_3 .top_panel_top_socials {
        margin-right:2em;
    }

    .top_panel_style_1 .top_panel_top_socials,
    .top_panel_style_1 .top_panel_top_open_hours,
    .top_panel_style_2 .top_panel_top_socials,
    .top_panel_style_2 .top_panel_top_open_hours,
    .top_panel_style_3 .top_panel_top_socials {
        margin-top: 0.5em;
    }
    .top_panel_style_1 .menu_user_nav > li > a,
    .top_panel_style_2 .menu_user_nav > li > a,
    .top_panel_style_3 .menu_user_nav > li > a {
        padding-top: 0;
        padding-bottom:0;
    }

    .top_panel_style_3 .search_results {
        top: 3em;
    }

    .top_panel_middle .logo {
        font-size:0.875em;
    }
    .top_panel_middle .logo img {
        max-height:40px;
    }

    .top_panel_style_1 .contact_logo {
        width:100%;
    }
    .top_panel_style_1 .logo {
        text-align:center;
    }
    .top_panel_style_1 .contact_field {
        text-align:center;
        margin-top:1em;
        margin-bottom:2em;
        padding-top:0 !important;
        width:33.3333% !important;
    }
    .top_panel_style_2 .contact_field {
        margin:1em 0;
    }
    .top_panel_style_2 .contact_field,
    .top_panel_style_2 .contact_phone > span+span {
        text-align:center;
    }
    .top_panel_style_1 .contact_field .contact_icon,
    .top_panel_style_2 .contact_field .contact_icon {
        float: none;
        margin-right:auto;
        margin-left:auto;
        margin-bottom:0.3em;
    }

    .top_panel_title .page_title,
    .top_panel_title .post_navi,
    .top_panel_title .breadcrumbs {
        max-width: 100% !important;
        float:none;
        text-align:center;
    }
    .top_panel_title.title_present .breadcrumbs {
        padding: 0 0 2.5em 0 !important;
    }

    /* Posts layouts */
    .post_featured_left > .post_featured,
    .post_featured_right > .post_featured {
        float: none;
        margin-left: 0;
        margin-bottom: 2em;
        width: 100%;
    }

    .isotope_filters a {
        font-size:0.8333em;
    }
    .isotope_wrap .isotope_item_colored .post_item .hover_icon,
    .isotope_wrap .isotope_item_grid .post_item .hover_icon,
    .isotope_wrap .isotope_item_square .post_item .hover_icon,
    .isotope_wrap .isotope_item_portfolio .post_item .hover_icon {
        display:none;
    }
    .ih-item.square.effect1.bottom_to_top .info .post_title {
        margin-top:35% !important;
    }

    .post_item_colored .post_category {
        max-height:1.2em;
        overflow:hidden;
    }
    .post_item_colored .post_descr .post_price {
        margin-top: 1.2em;
    }
    .post_item_colored .post_info_wrap .post_button + .post_button {
        margin-left:0.4em;
    }
    .post_item_colored .post_featured .post_title, .post_item_colored .post_featured .post_descr {
        padding:4px 8px;
    }

    .ih-item.square.effect_dir .info .post_title {
        margin-top:4% !important;
    }

    .isotope_wrap .isotope_item_colored_1 .post_featured {
        float:none;
        width:100%;
    }
    .isotope_wrap .isotope_item_colored_1 .post_description {
        padding-left: 2em;
        padding-bottom: 2em;
    }

    /* Post parts */
    .post_info {
        font-size:0.8333em;
    }
    .post_info {
        font-size:0.8333em;
    }
    .post_rating .reviews_star {
        font-size:1em;
    }
    .post_item_colored .post_category {
        font-size:1em;
        margin:0 0 0.4em;
    }
    .post_item_colored .post_descr .post_price_period {
        font-size:1em;
    }
    .post_item_colored .post_descr .post_price_value {
        font-size:1.3333em;
    }

    .comments_list_wrap ul ul ul {
        margin-left:0;
    }

    /* Reviews block */
    .reviews_block {
        width:100%;
    }
    .content .reviews_block {
        float:none;
        margin-left:0;
    }

    /* Widgets */
    .widget_area .post_item .post_info {
        font-size:0.75em;
    }
    .widget_area .widget_tag_cloud a {
        font-size:0.8333em !important;
    }
    .widget_area .widget_calendar .weekday {
        font-size:0.8333em;
    }
    .widget_area .reviews_block .reviews_summary .reviews_criteria {
        font-size:0.75em;
    }
    td, th {
        padding:2px;
    }
    .widget_area .post_item .post_title {
        margin-top:0;
    }
    .widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li + li {
        margin-left:0.4em;
    }
    .widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
        padding: 2px 0.5em;
    }

    .sc_recent_news_header_split .sc_recent_news_header_captions,
    .sc_recent_news_header_split .sc_recent_news_header_categories {
        width:100%;
        padding-right:0;
        text-align:left;
    }
    .sc_recent_news_header_split .sc_recent_news_header_categories {
        margin-top:1em;
    }
    .sc_recent_news_header_split .sc_recent_news_header_categories > * {
        margin: 0 1em 0 0;
    }
    .sc_recent_news_style_news-announce .post_item {		float:none; }
    .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 112px; }
    .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 112px; }
    .sc_recent_news_style_news-announce .post_size_medium {	width: 100%; height: 112px;  }
    .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 112px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 112px; }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 112px;  }
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
    body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 112px;  }
    .sc_recent_news_style_news-announce .post_size_full .post_featured { max-height: 100%; }
    .sc_recent_news_style_news-announce .post_size_big .post_featured { max-height: 100%; }
    .sc_recent_news_style_news-announce .post_size_medium .post_featured { max-height: 100%; }
    .sc_recent_news_style_news-announce .post_size_small .post_featured { max-height: 100%; }
    .sc_recent_news_style_news-excerpt .post_featured {
        float:none;
        padding-right:0;
        margin-bottom:1.5em;
        width: 100%;
    }
    .sc_recent_news_style_news-excerpt .post_body {
        float:none;
        width:100%;
    }

    /* Footer */
    .contacts_wrap .contacts_address {
        font-size: 1em;
    }


    /* Woocommerce */
    .woocommerce-shipping-fields {
        margin-top: 2em;
    }
    .woocommerce ul.products, .woocommerce-page ul.products {
        margin-right:-20px;
    }
    .woocommerce.columns-1 ul.products li.product, .woocommerce-page.columns-1 ul.products li.product,
    .woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
        padding: 0 20px 20px 0;
    }
    .woocommerce .widget_price_filter .price_label {
        font-size: 1em;
    }
    .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
        font-size: 1em;
    }
    .top_panel_wrap .widget_shopping_cart ul.cart_list > li > a:not(.remove) {
        margin-top:-0.15em;
    }
    .woocommerce table.cart img, .woocommerce #content table.cart img, .woocommerce-page table.cart img, .woocommerce-page #content table.cart img {
        width: 50px;
    }
    .woocommerce table.cart td, .woocommerce #content table.cart td, .woocommerce-page table.cart td, .woocommerce-page #content table.cart td {
        padding: 6px;
    }
    .woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
        float:left;
    }
    .woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
        width: auto;
    }
    .woocommerce #content table.cart td.actions > .button, .woocommerce table.cart td.actions > .button, .woocommerce-page #content table.cart td.actions > .button, .woocommerce-page table.cart td.actions > .button {
        float: right;
    }

    .woocommerce.columns-2 ul.products li.product, .woocommerce-page.columns-2 ul.products li.product,
    .woocommerce .related.products ul.products li.product.column-1_2, .woocommerce-page .related.products ul.products li.product.column-1_2,
    .woocommerce .upcells.products ul.products li.product.column-1_2, .woocommerce-page .upcells.products ul.products li.product.column-1_2,
    .woocommerce ul.products li.product.column-1_2, .woocommerce-page ul.products li.product.column-1_2,
    .woocommerce.columns-3 ul.products li.product, .woocommerce-page.columns-3 ul.products li.product,
    .woocommerce .related.products ul.products li.product.column-1_3, .woocommerce-page .related.products ul.products li.product.column-1_3,
    .woocommerce .upcells.products ul.products li.product.column-1_3, .woocommerce-page .upcells.products ul.products li.product.column-1_3,
    .woocommerce ul.products li.product.column-1_3, .woocommerce-page ul.products li.product.column-1_3,
    .woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product,
    .woocommerce .related.products ul.products li.product.column-1_4, .woocommerce-page .related.products ul.products li.product.column-1_4,
    .woocommerce .upcells.products ul.products li.product.column-1_4, .woocommerce-page .upcells.products ul.products li.product.column-1_4,
    .woocommerce ul.products li.product.column-1_4, .woocommerce-page ul.products li.product.column-1_4,
    .woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
    .woocommerce .related.products ul.products li.product.column-1_5, .woocommerce-page .related.products ul.products li.product.column-1_5,
    .woocommerce .upcells.products ul.products li.product.column-1_5, .woocommerce-page .upcells.products ul.products li.product.column-1_5,
    .woocommerce ul.products li.product.column-1_5, .woocommerce-page ul.products li.product.column-1_5,
    .woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
    .woocommerce .related.products ul.products li.product.column-1_6, .woocommerce-page .related.products ul.products li.product.column-1_6,
    .woocommerce .upcells.products ul.products li.product.column-1_6, .woocommerce-page .upcells.products ul.products li.product.column-1_6,
    .woocommerce ul.products li.product.column-1_6, .woocommerce-page ul.products li.product.column-1_6 {
        width: 50%;
    }

    .woocommerce .list_products.shop_mode_list ul.products li.product,
    .woocommerce-page .list_products.shop_mode_list ul.products li.product {
        width:100%;
    }
    .woocommerce ul.products li.first, .woocommerce-page ul.products li.first {
        clear: none;
    }
    .woocommerce ul.products li:nth-child(2n+3), .woocommerce-page ul.products li:nth-child(2n+3) {
        clear: both;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        border-top: 1px dotted #ddd;
        border-bottom: 1px dotted #ddd;
        margin-bottom: 2em;
    }
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content .woocommerce-Address-title a {
        font-size: 10px;
        letter-spacing:0;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        width: 100%;
        text-align:center;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
        display:inline-block;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation ul li+li {
        border-top-width: 0;
        border-left: 1px dotted #ddd;
    }
    .woocommerce-MyAccount-navigation ul li a {
        padding: 0.6em 0.8em;
    }
    .woocommerce table.my_account_orders {
        font-size: 1em;
    }
    .woocommerce table.my_account_orders tr td, .woocommerce table.my_account_orders tr th,
    .woocommerce-page table.my_account_orders tr td, .woocommerce-page table.my_account_orders tr th {
        text-align: left !important;
    }
    .woocommerce table.my_account_orders tr th, .woocommerce-page table.my_account_orders tr th {
        font-size: 10px;
    }


    /* BuddyPress */
    #buddypress #item-nav {
        float:none;
        margin-bottom:2em;
        width:auto;
        display:inline-block;
    }
    #buddypress #item-nav ul {
        overflow:hidden;
    }
    #buddypress #item-nav ul li {
        float:left;
    }


    /* HTML5 Player */
    #myplayer .ttw-music-player .album-cover {
        width: 100%;
        float: none;
        overflow:hidden;
    }
    #myplayer .ttw-music-player .album-cover .img {
        position: static;
        max-height:none;
        margin-top:0;
    }
    #myplayer .ttw-music-player .album-cover img {
        max-width:none;
    }
    #myplayer .ttw-music-player .tracklist {
        position: relative;
        margin-left: 0;
        padding: 0;
        top: 0;
    }

    /* Shortcodes */
    .top_panel_title .page_title{
        padding-bottom: 0.757em;
    }

    .sc_item_title {
        font-size: 2.429em;
    }
    input[type="submit"], input[type="button"], button, .sc_button {
        padding: 0.7em 1em;
    }
    input.sc_button_size_large[type="submit"], input.sc_button_size_large[type="button"], button.sc_button_size_large, .sc_button.sc_button_size_large {
        padding: 1em 1.25em;
    }
    input.sc_button_size_medium[type="submit"], input.sc_button_size_medium[type="button"], button.sc_button_size_medium, .sc_button.sc_button_size_medium {
        padding: 0.8em 1em;
    }
    input[type="submit"]:before, input[type="button"]:before, button:before, .sc_button:before {
        margin-right:4px;
    }

    .sc_accordion.sc_accordion_style_2 .sc_accordion_item .sc_accordion_title .sc_accordion_icon {
        border-width: 1px;
    }

    .sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item {
        min-width: 33.3333%;
        margin-bottom: 1em;
    }

    .sc_googlemap {
        max-height:250px;
    }
    .sc_googlemap_content {
        position:static;
        width: auto;
    }

    .sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a,
    .sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a .sc_socials_hover {
        width:2.5em;
        height:2.5em;
        line-height:2.5em;
    }
    .sc_socials.sc_socials_size_small .social_icons span {
        font-size:1.2em;
    }

    .sc_tabs .sc_tabs_titles li a {
        padding: 0.5em;
    }
    .sc_tabs .sc_tabs_titles li {
        font-size:1.25em;
    }
    .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
        border-width: 1px;
    }
    .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,
    .sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after {
        height:2px;
    }

    .sc_testimonial_content {
        font-size:1.25em;
    }
    .sc_testimonial_author {
        font-size: 1em;
    }

    .sc_twitter_item {
        padding:0 3em;
    }
    .sc_twitter .sc_slider_controls_wrap a {
        font-size: 1.5em;
    }

    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 {
        width: 50%;
        max-width: 50%;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item {
        margin-right: 0;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
        margin-left: 0;
        margin-right: 0;
    }
    .sc_services_style_services-5 .sc_service_container .sc_services_image,
    .sc_services_style_services-5 .sc_service_container.sc_align_left .sc_services_image,
    .sc_services_style_services-5 .sc_service_container.sc_align_right .sc_services_image	{
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        transform: translateY(0%) translateX(0%);
        margin-bottom: 2.2857em;
    }
    .sc_services_style_services-5 .sc_service_container .sc_icon,
    .sc_services_style_services-5.sc_services_type_images .sc_service_container .sc_services_item_featured,
    .sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_icon,
    .sc_services_style_services-5.sc_services_type_images .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_featured	{
        float: left;
        margin-right: 2.2857em;
        margin-left: 0;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item_content,
    .sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2 .sc_services_item_content	{
        text-align: left;
    }

    .sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap,
    .sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap 	{
        margin-left: 0;
        margin-right: 0;
    }
    .sc_services_style_services-5 .sc_services_button {
        margin-top: 2.2857em;
    }

    .sc_promo_block {
        min-width: 50%;
    }
    .sc_promo_block_inner {
        padding: 3em;
    }

    /* Matches and Players */
    .sc_matches_next, .sc_matches_current {
        float:none;
        width: 100%;
        padding: 2.5em 2.5em 1em;
    }
    .match_block .match_score {
        font-size: 3em;
    }
    .sc_matches.style_matches-1 .sc_matches_title {
        font-size: 2.5714em;
    }
    .sc_matches.style_matches-1 .sc_matches_descr {
        font-size:1.2857em;
    }
    .sc_matches.style_matches-1 .sc_matches_list {
        margin-top:1em;
    }
    .sc_matches.style_matches-2 .sc_matches_next .sc_matches_list {
        float:none;
        width: 100%;
    }
    .sc_matches.style_matches-2 .sc_match_info {
        text-align:center;
    }
    .sc_matches.style_matches-2 .sc_match_info .name {
        width:8em;
    }
    .post_item_colored .match_date, .post_item_colored .post_category {
        font-size: 1em;
        line-height:1.2em;
        margin-bottom:0.2em;
    }
    .type_player.post_item_colored .player_info {
        line-height:1.4em;
    }
    .post_item_single_players .player_content {
        padding-top:2.5em;
    }

    /* Scroll to Top */
    .scroll_to_top {
        right: 1em;
    }
    .scroll_to_top.show {
        bottom: 1em;
    }

    .sc_call_to_action.sc_call_to_action_style_1 .sc_item_buttons > .sc_item_button + .sc_item_button a {
        font-size: 1.2em;
        padding-top: 0.5em;
    }

    .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: 48%;
    }
		.top_panel_wrap.top_panel_style_1 {
		 display: none;
	}

    body .slider_wrap table.booked-calendar thead tr:first-child th{
        height: 80px;
    }

    .cff-container-field.button-position-left > div{
        display: block;
    }

    .calculated-result{
        margin-left: 0;
        margin-top: 10px;
    }

    .button-position-left{
        margin-top: 0;
    }

    .cff-container-field.calculated-result > div{
        display: flex;
        justify-content: space-between;
    }

    .woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
        width: 48%;
    }
}

@media (min-width: 640px) and (max-width: 767px) {

	/* Body sizes */
	.slider_boxed, .content_wrap, .content_container {	width:600px; }
	
	/* Login and Register */
	.popup_wrap {
		top: 50%;
		left: 50%;
		-webkit-transform:translate(-50%, -50%);
		   -moz-transform:translate(-50%, -50%);
			-ms-transform:translate(-50%, -50%);
				transform:translate(-50%, -50%);
	}

	/* Posts layouts */
	.isotope_wrap {
		margin-right:-20px;
	}
	.isotope_wrap .isotope_item {
		padding-right:20px;
		padding-bottom:20px;
		min-width:50%;
	}

	.sc_scroll_horizontal .sc_blogger .isotope_item,
	.sc_scroll_horizontal .sc_blogger [class*=column-],
	.sc_blogger .sc_scroll_horizontal .isotope_item,
	.sc_blogger .sc_scroll_horizontal [class*=column-] {
		width: 206px;
		min-width:0;
	}
	.sc_scroll_horizontal .sc_blogger .isotope_column_2,
	.sc_scroll_horizontal .sc_blogger .column-1_2,
	.sc_blogger .sc_scroll_horizontal .isotope_column_2,
	.sc_blogger .sc_scroll_horizontal .column-1_2 {
		width: 310px;
	}
	.sc_recent_news_style_news-announce .post_item {		float:none; }
	.sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 168px; }
	.sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 168px; }
	.sc_recent_news_style_news-announce .post_size_medium {	width: 100%; height: 168px;  }
	.sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 168px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 168px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 168px;  }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 168px;  }
	.sc_recent_news_style_news-announce .post_size_full .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_big .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_medium .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_small .post_featured { max-height: 100%; }

	.popup_menuitem > .sc_menuitems_wrap {
		width: 500px;
	}
    /* New style*/
    /* Top panel */
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 1.5em;
    }

    .top_panel_title.title_present:not(.navi_present) .breadcrumbs{
        padding-top: 3.3em;
        padding-left: 1.5em;
    }
    /* Clients */
    .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{
        height: 3em;
        line-height: 3em;
        width: 3em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_services_style_services-1 .sc_services_item{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    .sc_services_style_services-5 .sc_service_container .sc_services_image{
        top: 50%;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item{
        top: 0;
    }
    /* Shortcodes*/
    .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_total{ font-size: 1.857em;}
    .sc_button.sc_button_style_border {
        padding-bottom: 0.6em;
        padding-left: 0.75em;
        padding-right: 0.75em;
        padding-top: 0.55em;
    }
    .sc_skills_counter .sc_skills_item.sc_skills_style_1{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
	    margin-left: 54%;
	    -webkit-transform: translateX(-40%);
	    -moz-transform: translateX(-40%);
	    transform: translateX(-40%);
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 40%;
    }
    .sc_item_descr{
        left: 52%;
        width: 51%;
    }
    .sc_skills_pie.sc_skills_compact_off .sc_skills_item{
        padding-left: 0;
        padding-right: 0;
    }
    .sc_slider_controls_bottom .sc_slider_controls_wrap a{
        line-height: 2.4em;
    }
    .sc_price_block .sc_price_block_money .sc_price_money{
        font-size: 2.3em;
    }
    .sc_price_block .sc_price_block_money .sc_price_currency{
        font-size: 2.25em;
    }
    .sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item,
    .wpcf7 form .form_info .wpcf7-form-control-wrap{
        width: 100%;
    }
    /* Bloger */
    .sc_blogger.template_masonry .post_item_classic .post_title{
        font-size: 1em;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-left: 4px;
        margin-right: 4px;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    .widget_text h5{
        font-size: 1.1em;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    .post_item_single_team .single_team_post_description .team_brief_info_text p:after{
        width: 100%;
    }
    .single-team .socials_single_team{
        width: 100%;
        float: left;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
        padding-top: 0!important;
        padding-left: 0.5em!important;
        padding-right: 0.5em!important;
    }
    .ih-item.square .info .post_title{
        font-size: 0.9em!important;
    }
    .ih-item.square.effect_shift .info .post_title{
        margin-top: 0!important;
    }
    /* Menu */
    .menu_main_nav > li > a {
        line-height: 1.2857em;
        padding-bottom: 0.9em;
        padding-left: 1.3em;
        padding-right: 1.3em;
        padding-top: 0.9em;
    }
    .scroll_to_top::before {
        top: -1px;
    }
    /* Mail chimp */
    .mc4wp-form input[type="email"] {
        width: 16.5em;

    }
    .mc4wp-form input[type="submit"] {
        padding-bottom: 1.15em!important;
        padding-left: 1.5em!important;
        padding-right: 1.5em!important;
        padding-top: 1.15em!important;
    }
    /* Other style */
    .margin_right_huge {
        margin-right: 3rem !important;
    }
    .margin_left_huge {
        margin-left: 3rem !important;
    }
    .margin_top_huge{
        margin-top: 3rem !important;
    }
     .margin_top_huge{
            margin-top: 3rem !important;
        }
    .margin_bottom_huge {
        margin-bottom: 3rem !important;
    }
    .margin_bottom_large{
        margin-bottom: 2rem !important;
    }

    .margin_top_large{
        margin-top: 2rem !important;
    }

    body table.booked-calendar th .page-right, body table.booked-calendar th .page-left{
        top: 44%;
    }
}
@media (max-width: 767px){
    .row:not(.columns_fluid) > [class*="column-"] + [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"] + [class*="column-"], .row.columns_fluid > [class*="column-"]:nth-child(2n+3), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+3), .row.columns_fluid > [class*="column-"]:nth-child(2n+4), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+4){
        padding-top: 20px;
    }

    .sc_skills_pie .sc_skills_column.column-1_4{
        width: 25%;
        padding-top: 0 !important;
    }
	.wpcf7-form-control-wrap {
		width: 100% !important;
	}

	.booked_section .booked-calendar-wrap {
		height: 600px !important;
	}
	.hide_mobile {
		display: none;
	}
}

@media (max-width: 480px){
	.booked_section .booked-calendar-wrap {
		height: 450px !important;
	}
}


@media (min-width: 960px) and (max-width: 1024px) {
	body .booked-calendar-wrap table.booked-calendar td{
		height: 55px!important;
	}
	.slider_wrap .booked-calendar .date,
	.slider_wrap .booked-calendar .date .number{
		line-height: 30px!important;
	}
}

@media (min-width: 721px) and (max-width: 767px) {
	body .slider_wrap .booked-calendar-wrap table.booked-calendar td{
		height: 55px!important;
	}
	.slider_wrap .booked-calendar .date,
	.slider_wrap .booked-calendar .date .number{
		line-height: 30px!important;
	}
}

@media (min-width: 480px) and (max-width: 568px) {
    .ih-item.square.effect_dir .info .post_title{
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}
@media (min-width: 480px) and (max-width: 639px) {

	/* Body sizes */
	.slider_boxed, .content_wrap, .content_container {	width:440px; }
	
	/* Login and Register */
	.popup_wrap {
		top: 50%;
		left: 50%;
		-webkit-transform:translate(-50%, -50%);
		   -moz-transform:translate(-50%, -50%);
			-ms-transform:translate(-50%, -50%);
				transform:translate(-50%, -50%);
	}
	.popup_registration {
		-webkit-transform:translate(-55%, -50%);
		   -moz-transform:translate(-55%, -50%);
			-ms-transform:translate(-55%, -50%);
				transform:translate(-55%, -50%);
	}

	/* Posts layouts */
	.isotope_wrap {
		margin-right:-20px;
	}
	.isotope_wrap .isotope_item {
		padding-right:20px;
		padding-bottom:20px;
		min-width:50%;
	}

	.sc_scroll_horizontal .sc_blogger .isotope_item,
	.sc_scroll_horizontal .sc_blogger [class*=column-],
	.sc_blogger .sc_scroll_horizontal .isotope_item,
	.sc_blogger .sc_scroll_horizontal [class*=column-] {
		width: 230px;
		min-width:0;
	}
	.isotope_wrap .isotope_item_colored_1 .post_featured {
		float:none;
		width:100%;
	}
	.isotope_wrap .isotope_item_colored_1 .post_description {
		padding-left: 2em;
		padding-bottom: 2em;
	}
	.sc_recent_news_style_news-announce .post_item {		float:none; }
	.sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 124px; }
	.sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 124px; }
	.sc_recent_news_style_news-announce .post_size_medium {	width: 100%; height: 124px;  }
	.sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 124px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_full {	width: 100%; height: 124px; }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_big {	width: 100%; height: 124px;  }
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_medium,
	body.sidebar_hide .sc_recent_news_style_news-announce .post_size_small {	width: 100%; height: 124px;  }
	.sc_recent_news_style_news-announce .post_size_full .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_big .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_medium .post_featured { max-height: 100%; }
	.sc_recent_news_style_news-announce .post_size_small .post_featured { max-height: 100%; }

	.popup_menuitem > .sc_menuitems_wrap {
		width: 320px;
	}
	.sc_menuitems_style_menuitems-2 .sc_menuitem_box_title {
		font-size: 1.5em;
	}
	.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li {
		width: 100%;
	}

    /* New style*/
    /* Top panel */
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 1.5em;
    }

    .top_panel_title.title_present:not(.navi_present) .breadcrumbs{
        padding-top: 3.3em;
        padding-left: 1.5em;
    }
    /* Clients */
    .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{
        height: 3em;
        line-height: 3em;
        width: 3em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item {
        padding-bottom: 0.5em;
        padding-top: 0.5em;
    }
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_services_style_services-1 .sc_services_item{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    .sc_services_style_services-5 .sc_service_container .sc_services_image{
        top: 50%;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item{
        top: 0;
    }
    /* Shortcodes*/
    .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_total{ font-size: 1.857em;}
    .sc_button.sc_button_style_border {
        padding-bottom: 0.6em;
        padding-left: 0.75em;
        padding-right: 0.75em;
        padding-top: 0.55em;
    }
    .sc_skills_counter .sc_skills_item.sc_skills_style_1{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
        margin-left: 13%;
        -moz-transform: translateX(23%);
        -webkit-transform: translateX(23%);
        -o-transform: translateX(23%);
        -ms-transform: translateX(23%);
        transform: translateX(23%);
    }
    
    .sc_intro_style_3 .sc_intro_title{
        font-size: 2.3em;
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 40%;
    }
    .sc_item_descr{
        left: 52%;
        width: 51%;
    }
    .sc_skills_pie.sc_skills_compact_off .sc_skills_item{
        padding-left: 0;
        padding-right: 0;
    }
    .sc_slider_controls_bottom .sc_slider_controls_wrap a{
        line-height: 2.4em;
    }
    .sc_price_block .sc_price_block_money .sc_price_money{
        font-size: 2.3em;
    }
    .sc_price_block .sc_price_block_money .sc_price_currency{
        font-size: 2.25em;
    }
    .sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item,
    .wpcf7 form .form_info .wpcf7-form-control-wrap{
        width: 100%;
    }
    /* Bloger */
    .sc_blogger.template_masonry .post_item_classic .post_title{
        font-size: 1em;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-left: 1px;
        margin-right: 1px;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    .widget_text h5{
        font-size: 1.1em;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    .post_item_single_team .single_team_post_description .team_brief_info_text p:after{
        width: 100%;
    }
    .single-team .socials_single_team{
        width: 100%;
        float: left;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
        padding-top: 0!important;
        padding-left: 0.5em!important;
        padding-right: 0.5em!important;
    }
    .ih-item.square .info .post_title{
        font-size: 0.9em!important;
    }
    .ih-item.square.effect_shift .info .post_title{
        margin-top: 0!important;
    }
    /* Menu */
    .menu_main_nav > li > a {
        line-height: 1.2857em;
        padding-bottom: 0.9em;
        padding-left: 1.3em;
        padding-right: 1.3em;
        padding-top: 0.9em;
    }
    .scroll_to_top::before {
        top: -1px;
    }
    /* Mail chimp */
    .mc4wp-form input[type="email"] {
        width: 16.5em;

    }
    .mc4wp-form input[type="submit"] {
        padding-bottom: 1.15em!important;
        padding-left: 1.5em!important;
        padding-right: 1.5em!important;
        padding-top: 1.15em!important;
    }
    /* Other style */
    .margin_right_huge {
        margin-right: 3rem !important;
    }
    .margin_left_huge {
        margin-left: 3rem !important;
    }
    .margin_top_huge{
        margin-top: 3rem !important;
    }
    .margin_top_huge{
        margin-top: 3rem !important;
    }
    .margin_bottom_huge {
        margin-bottom: 3rem !important;
    }
    .margin_bottom_large{
        margin-bottom: 2rem !important;
    }

    .woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon,
    .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon{
        width: 67%;
    }
}



/*
Very common low res
*/
@media (max-width: 479px) {

	html, body {	font-size: 12px; }
	h1 { font-size:2.5em; }		/* 30px */
	h2 { font-size:2em; }		/* 24px */
	h3 { font-size:1.5em; }
	h4 { font-size:1.3333em; }	/* 16px */
	h5 { font-size:1.1667em; }	/* 14px */
	h6 { font-size:1em; }		/* 12px */

	/* Body sizes */
	.body_style_boxed .page_wrap {		width:100%; }
	.slider_boxed, .content_wrap, .content_container {	width:280px; }

	/* Content and Sidebar */
	.sidebar_show .content { width: 100%; float: none; }
	.sidebar_show .sidebar { width: 100%; float: none; margin-top: 2em; }
	
	/* Fullwide or Fullscreen with sidebar */
	.body_style_fullwide.sidebar_right .content, .body_style_fullscreen.sidebar_right .content { padding-right: 0 !important; }
	.body_style_fullwide.sidebar_right .sidebar, .body_style_fullscreen.sidebar_right .sidebar { margin-left: 0 !important; }
	.body_style_fullwide.sidebar_left  .content, .body_style_fullscreen.sidebar_left  .content { padding-left:  0 !important; }
	.body_style_fullwide.sidebar_left  .sidebar, .body_style_fullscreen.sidebar_left  .sidebar { margin-right: 0 !important; }

	/* WooCommerce: Content and Sidebar */
	.woocommerce.sidebar_show .content { width: 100%; float: none; }
	.woocommerce .sidebar { 			 width: 100%; float: none; }
	
	.article_style_boxed .sidebar,
	.body_filled .sidebar[class*="scheme_"] {
		margin-top:10px;
	}
	
	.header_mobile .sidebar_cart{
		right: -49px;
	}

	/* Main Slider */
	.slider_over_content {
		right: -100%;
		width:100%;
	}
	.slider_over_content.opened {
		right: 0;
	}
	.slider_over_content_inner {
		padding:3em 1.5em 1.5em;
	}
	.slider_over_close,
	.slider_over_button {
		display:block;
	}
	.slider_over_content .sc_form_message textarea {
		min-height: 7em;
	}
	.slider_over_content .sc_form .sc_form_item input[type="text"],
	.slider_over_content .sc_form .sc_form_item select,
	.slider_over_content .sc_form .sc_form_item textarea {
		padding: 0.5em 1em;
	}
	
	.widget_area aside {
		display: block;
		float:none;
		width:100%;
		margin-left:0 !important;
	}
	.widget_area aside+aside {
		padding-top:1em;
		border-top:1px solid #f4f7f9;
		margin-top:1em;
	}

	/* Grid */
	.container, .container-fluid {
		padding-left:  5px;
		padding-right: 5px;
	}
	.row, .columns_wrap {
		margin-right: -10px;
	}
	.row > [class*="column-"], .columns_wrap > [class*="column-"] {
		padding-right: 10px;
	}
	.row.column_padding_left, .columns_wrap.column_padding_left {
		margin-left: -10px;
	}
	.row.column_padding_left > [class*="column-"], .columns_wrap.column_padding_left > [class*="column-"],
	.row > [class*="column-"].column_padding_left, .columns_wrap > [class*="column-"].column_padding_left {
		padding-left: 10px;
	}
	.row.column_padding_right, .columns_wrap.column_padding_right {
		margin-right: -10px;
	}
	.row.column_padding_right > [class*="column-"], .columns_wrap.column_padding_right > [class*="column-"],
	.row > [class*="column-"].column_padding_right, .columns_wrap > [class*="column-"].column_padding_right {
		padding-right:10px;
	}
	.row.column_padding_center, .columns_wrap.column_padding_center {
		margin-left: -5px;
		margin-right: -5px;
	}
	.row.column_padding_center > [class*="column-"], .columns_wrap.column_padding_center > [class*="column-"],
	.row > [class*="column-"].column_padding_center, .columns_wrap > [class*="column-"].column_padding_center {
		padding-left:10px;
	}
	.row > [class*="column-"].column_padding_bottom, .columns_wrap > [class*="column-"].column_padding_bottom {
		padding-bottom: 10px;
	}

	/* Columns relayout (no columns) */
	.row:not(.columns_fluid) > [class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"] {
		width:100%;
	}
	.row.columns_fluid > [class*="column-"], .columns_wrap.columns_fluid > [class*="column-"] {
		width:50%;
	}
	.row.columns_fluid > .column-1_1, .row.columns_fluid > .column-2_2, .row.columns_fluid > .column-3_3, .row.columns_fluid > .column-4_4, .row.columns_fluid > .column-5_5,
	.row.columns_fluid > .column-6_6, .row.columns_fluid > .column-7_7, .row.columns_fluid > .column-8_8, .row.columns_fluid > .column-9_9, .row.columns_fluid > .column-10_10,
	.row.columns_fluid > .column-11_11, .row.columns_fluid > .column-12_12,
	.columns_wrap.columns_fluid > .column-1_1, .columns_wrap.columns_fluid > .column-2_2, .columns_wrap.columns_fluid > .column-3_3,
	.columns_wrap.columns_fluid > .column-4_4, .columns_wrap.columns_fluid > .column-5_5, .columns_wrap.columns_fluid > .column-6_6,
	.columns_wrap.columns_fluid > .column-7_7, .columns_wrap.columns_fluid > .column-8_8, .columns_wrap.columns_fluid > .column-9_9,
	.columns_wrap.columns_fluid > .column-10_10, .columns_wrap.columns_fluid > .column-11_11, .columns_wrap.columns_fluid > .column-12_12,
	.row.columns_fluid > .column-1_3:nth-child(3n), .columns_wrap.columns_fluid > .column-1_3:nth-child(3n),
	.row.columns_fluid > .column-2_3, .columns_wrap.columns_fluid > .column-2_3,
	.row.columns_fluid > .column-1_3.after_span_2, .columns_wrap.columns_fluid > .column-1_3.after_span_2,
	.row.columns_fluid > .column-2_4, .columns_wrap.columns_fluid > .column-3_4,
	.row.columns_fluid > .column-1_4.after_span_2, .columns_wrap.columns_fluid > .column-1_4.after_span_3,
	.row.columns_fluid > .column-1_5:nth-child(5n), .columns_wrap.columns_fluid > .column-1_5:nth-child(5n),
	.row.columns_fluid > .column-2_5, .columns_wrap.columns_fluid > .column-2_5,
	.row.columns_fluid > .column-3_5, .columns_wrap.columns_fluid > .column-3_5,
	.row.columns_fluid > .column-4_5, .columns_wrap.columns_fluid > .column-4_5,
	.row.columns_fluid > .column-2_6, .columns_wrap.columns_fluid > .column-2_6,
	.row.columns_fluid > .column-3_6, .columns_wrap.columns_fluid > .column-3_6,
	.row.columns_fluid > .column-4_6, .columns_wrap.columns_fluid > .column-4_6,
	.row.columns_fluid > .column-5_6, .columns_wrap.columns_fluid > .column-5_6	{
		width:100%;
	}
	.row:not(.columns_fluid) > [class*="column-"]+[class*="column-"], .columns_wrap:not(.columns_fluid) > [class*="column-"]+[class*="column-"],
	.row.columns_fluid > [class*="column-"]:nth-child(2n+3), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+3),
	.row.columns_fluid > [class*="column-"]:nth-child(2n+4), .columns_wrap.columns_fluid > [class*="column-"]:nth-child(2n+4) {
		padding-top: 10px;
	}

	.gallery.gallery-columns-9 .gallery-item {	width: 50% !important; }
	.gallery.gallery-columns-8 .gallery-item {	width: 50% !important; }
	.gallery.gallery-columns-7 .gallery-item {	width: 50% !important; }
	.gallery.gallery-columns-6 .gallery-item {	width: 50% !important; }
	.gallery.gallery-columns-5 .gallery-item {	width: 50% !important; }
	.gallery.gallery-columns-4 .gallery-item {	width: 50% !important; }
	.gallery.gallery-columns-3 .gallery-item {	width: 50% !important; }

	/* Top Panel */
	.top_panel_top_contact_area,
	.top_panel_top_open_hours,
	.top_panel_top_user_area,
	.top_panel_top_socials {
		float:none;
		clear:both;
		width:100%;
		text-align:center;
		margin:0.5em 0 0 0;
	}
	.top_panel_top_user_area .menu_user_nav {
		display:inline-block;
		float: none;
		margin-top:-0.5em;
	}
	.top_panel_top .search_field {
		max-width:3em;
	}
	.top_panel_top_socials {
		line-height:1em;
	}
	.top_panel_top_socials .sc_socials_item {
		margin-right:1.4em !important;
	}
	.top_panel_top_user_area .menu_user_nav li {
		text-align:left;
	}
	.top_panel_top_user_area .menu_user_nav > li > a {
		padding:0.5em 0;
	}
	
	.top_panel_middle .logo {
		font-size:0.875em;
	}
	.top_panel_middle .logo img {
		max-height:40px;
	}
	
	.top_panel_style_1 .contact_logo {
		width:100%;
	}
	.top_panel_style_1 .logo {
		text-align:center;
	}
	.top_panel_style_1 .contact_field {
		text-align:center;
		margin-top:1em;
		margin-bottom:2em;
		padding-top:0 !important;
		width:33.3333% !important;
	}
	.top_panel_style_1 .contact_field .contact_icon {
		float: none;
		margin-right:auto;
		margin-left:auto;
		margin-bottom:0.3em;
	}
	.top_panel_style_2 .contact_logo,
	.top_panel_style_2 .contact_field {
		width:100% !important;
	}
	.top_panel_style_2 .contact_logo {
		margin:0;
		padding:0 !important;
	}
	.top_panel_style_2 .contact_logo .logo {
		margin:0;
	}
	.top_panel_style_2 .logo {
		text-align:center;
	}
	.top_panel_style_2 .contact_field {
		text-align:center;
		margin:1.5em 0;
		padding:0 !important;
	}
	.top_panel_style_2 .contact_phone > span+span {
		text-align:center;
	}
	.top_panel_style_2 .contact_field .contact_icon {
		float: none;
		margin-right:auto;
		margin-left:auto;
	}

	.top_panel_title .page_title,
	.top_panel_title .post_navi,
 	.top_panel_title .breadcrumbs {
		max-width: 100% !important;
		float:none;
		text-align:center;
	}
	.top_panel_title.title_present .breadcrumbs {
		padding: 0 0 1.5em 0 !important;
	}

	.menu_user_nav > li {
		float: none;
		display:inline-block;
	}

	.top_panel_style_3 .top_panel_top_search,
	.top_panel_style_3 .menu_user_nav {
		margin-top: 0;
		line-height:1.2857em;
	}
	.top_panel_style_3 .top_panel_top_search {
		padding-top: 0;
	}
	.top_panel_style_3 .search_submit,
	.top_panel_style_3 .search_field {
		padding-top: 0.5em;
		padding-bottom: 0.5em;
	}
	.top_panel_style_3 .search_results {
		right: auto;
		left:0;
		top: 3em;
	}
	.top_panel_style_3 .search_results:after {
		right: auto;
		left:4em;
	}
	.top_panel_style_5 .top_panel_middle .sidebar_cart,
	.top_panel_style_6 .top_panel_middle .sidebar_cart {
		right:-100px;
	}
	.top_panel_style_5 .top_panel_middle .sidebar_cart:after,
	.top_panel_style_6 .top_panel_middle .sidebar_cart:after {
		right:46%;
		left:auto;
	}

	.top_panel_style_8 .contact_logo {
		display:block;
		position:static;
		left: auto;
		top:auto;
		-webkit-transform:none;
		   -moz-transform:none;
				transform:none;
		padding: 2em 0 0 0;
		text-align:center;
	}

	/* Login and Register */
	.popup_wrap {
		top: 50%;
		left: 50%;
		-webkit-transform:translate(-50%, -50%);
		   -moz-transform:translate(-50%, -50%);
			-ms-transform:translate(-50%, -50%);
				transform:translate(-50%, -50%);
	}
	.popup_wrap .popup_form_field .forgot_password {
		float: none;
		display:block;
		margin-bottom:0.5em;
	}
	.popup_wrap .login_socials_title {
		font-size:1.25em;
	}
	.popup_wrap input[type="text"], .popup_wrap input[type="email"], .popup_wrap input[type="password"] {
		font-size:1em;
	}

	/* Posts layouts */
	.post_featured_left > .post_featured,
	.post_featured_right > .post_featured {
		float: none;
		margin-left: 0;
		margin-bottom: 2em;
		width: 100%;
	}

	.isotope_filters a {
		font-size:0.8333em;
	}
	.isotope_wrap {
		margin-right:-10px;
	}
	.isotope_wrap .isotope_item {
		padding-right:10px;
		padding-bottom:10px;
		width:100% !important;
	}
	.sc_scroll_horizontal .sc_blogger .isotope_item,
	.sc_scroll_horizontal .sc_blogger [class*=column-],
	.sc_blogger .sc_scroll_horizontal .isotope_item,
	.sc_blogger .sc_scroll_horizontal [class*=column-] {
		width: 290px !important;
	}

	.isotope_wrap .isotope_item_colored_1 .post_featured {
		float:none;
		width:100%;
	}
	.isotope_wrap .isotope_item_colored_1 .post_description {
		padding-left: 2em;
		padding-bottom: 2em;
	}

	/* Post parts */
	.post_info {
		font-size:0.8333em;
	}
	.post_info {
		font-size:0.8333em;
	}
	.post_rating .reviews_star {
		font-size:1em;
	}
	
	.post_item_colored .post_category {
		font-size:1em;
		margin:0 0 0.4em;
	}
	.post_item_colored .post_descr .post_price_period {
		font-size:1em;
	}
	.post_item_colored .post_descr .post_price_value {
		font-size:1.3333em;
	}
	
	
	/* Reviews block */
	.reviews_block {
		width:100%; 
	}
	.content .reviews_block {
		float:none;
		margin-left:0;
	}
	
	/* Comments */
	.comments_list_wrap ul ul {
		margin-left:0;
	}
	.comments_list_wrap ul.children {
		padding-left: 0;
	}
	
	/* Widgets */
	.widget_area .post_item .post_info {
		font-size:0.75em;
	}
	.widget_area .widget_tag_cloud a {
		font-size:0.8333em !important;
	}
	.widget_area .widget_calendar .weekday {
		font-size:0.8333em;
	}
	.widget_area .reviews_block .reviews_summary .reviews_criteria {
		font-size:0.75em;
	}
	td, th {
		padding: 5px;
	}
	.widget_area .post_item .post_title {
		margin-top:0;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li + li {
		margin-left:0.4em;
	}
	.widget_area .sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
		padding: 2px 0.5em;
	}

	/* Footer */
	.contacts_wrap .contacts_address {
		font-size: 1em;
	}
	

	/* Woocommerce */
	.woocommerce-shipping-fields {
		margin-top: 2em;
	}
	.woocommerce ul.products, .woocommerce-page ul.products {
		margin-right:-20px;
	}
	.woocommerce.columns-1 ul.products li.product, .woocommerce-page.columns-1 ul.products li.product,
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		padding: 0 20px 20px 0;
	}
	.woocommerce .widget_price_filter .price_label {
		font-size: 1em;
	}
	.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
		font-size: 1em;
	}
	.top_panel_wrap .widget_shopping_cart ul.cart_list > li > a:not(.remove) {
		margin-top:-0.15em;
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li {
		padding:0;
	}
	.woocommerce table.cart img, .woocommerce #content table.cart img, .woocommerce-page table.cart img, .woocommerce-page #content table.cart img {
		width: 40px;
	}
	.woocommerce table.cart td, .woocommerce #content table.cart td, .woocommerce-page table.cart td, .woocommerce-page #content table.cart td {
		padding: 4px;
	}
	.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
		float:left;
	}
	.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
		float:left;
	}
	.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
		width: auto;
		padding: 0.75em;
	}
	.woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text {
		width: 7.5em;
		margin-right:0.3em;
	}
	.woocommerce #content table.cart td.actions .button.alt, .woocommerce #content table.cart td.actions .input-text + .button, .woocommerce table.cart td.actions .button.alt, .woocommerce table.cart td.actions .input-text + .button, .woocommerce-page #content table.cart td.actions .button.alt, .woocommerce-page #content table.cart td.actions .input-text + .button, .woocommerce-page table.cart td.actions .button.alt, .woocommerce-page table.cart td.actions .input-text + .button {
		float:left;
}
	.woocommerce #content table.cart td.actions > .button, .woocommerce table.cart td.actions > .button, .woocommerce-page #content table.cart td.actions > .button, .woocommerce-page table.cart td.actions > .button {
		float: right;
	}
	.woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images {
		width: 100%;
		float:none;
	}
	
	.woocommerce[class*="column-"] ul.products li.product, .woocommerce-page[class*="column-"] ul.products li.product,
	.woocommerce ul.products li.product[class*="column-"], .woocommerce-page ul.products li.product[class*="column-"],
	.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: 100%;
		float:none;
	}
	
	.woocommerce.columns-2 ul.products li.product, .woocommerce-page.columns-2 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_2, .woocommerce-page .related.products ul.products li.product.column-1_2,
	.woocommerce .upcells.products ul.products li.product.column-1_2, .woocommerce-page .upcells.products ul.products li.product.column-1_2,
	.woocommerce ul.products li.product.column-1_2, .woocommerce-page ul.products li.product.column-1_2,
	.woocommerce.columns-3 ul.products li.product, .woocommerce-page.columns-3 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_3, .woocommerce-page .related.products ul.products li.product.column-1_3,
	.woocommerce .upcells.products ul.products li.product.column-1_3, .woocommerce-page .upcells.products ul.products li.product.column-1_3,
	.woocommerce ul.products li.product.column-1_3, .woocommerce-page ul.products li.product.column-1_3,
	.woocommerce.columns-4 ul.products li.product, .woocommerce-page.columns-4 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_4, .woocommerce-page .related.products ul.products li.product.column-1_4,
	.woocommerce .upcells.products ul.products li.product.column-1_4, .woocommerce-page .upcells.products ul.products li.product.column-1_4,
	.woocommerce ul.products li.product.column-1_4, .woocommerce-page ul.products li.product.column-1_4,
	.woocommerce.columns-5 ul.products li.product, .woocommerce-page.columns-5 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_5, .woocommerce-page .related.products ul.products li.product.column-1_5,
	.woocommerce .upcells.products ul.products li.product.column-1_5, .woocommerce-page .upcells.products ul.products li.product.column-1_5,
	.woocommerce ul.products li.product.column-1_5, .woocommerce-page ul.products li.product.column-1_5,
	.woocommerce.columns-6 ul.products li.product, .woocommerce-page.columns-6 ul.products li.product,
	.woocommerce .related.products ul.products li.product.column-1_6, .woocommerce-page .related.products ul.products li.product.column-1_6,
	.woocommerce .upcells.products ul.products li.product.column-1_6, .woocommerce-page .upcells.products ul.products li.product.column-1_6,
	.woocommerce ul.products li.product.column-1_6, .woocommerce-page ul.products li.product.column-1_6 {
		width: 100%;
		float:none;
	}
	.woocommerce .checkout #order_review .payment_methods li label, .woocommerce-page .checkout #order_review .payment_methods li label {
		max-width:88%;
	}

	#add_payment_method #payment .payment_method_paypal label:before,
	.woocommerce-cart #payment .payment_method_paypal label:before,
	.woocommerce-checkout #payment .payment_method_paypal label:before {
		margin-top: -0.55em;
	}
	#add_payment_method #payment .payment_method_paypal .about_paypal,
	.woocommerce-cart #payment .payment_method_paypal .about_paypal, .woocommerce-checkout #payment .payment_method_paypal .about_paypal {
		float: none;
		display:block;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
		float: none;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		border-top: 1px dotted #ddd;
		border-bottom: 1px dotted #ddd;
		margin-bottom: 2em;
	}
	.woocommerce-MyAccount-navigation,
	.woocommerce-MyAccount-content .woocommerce-Address-title a {
		font-size: 10px;
		letter-spacing:0;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		width: 100%;
		text-align:center;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul li {
		display:inline-block;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul li+li {
		border-left: 1px dotted #ddd;
	}
	.woocommerce-MyAccount-navigation ul li a {
		padding: 0.6em 0.8em;
	}
	.woocommerce table.my_account_orders {
		font-size: 1em;
	}
	.woocommerce table.my_account_orders tr td, .woocommerce table.my_account_orders tr th,
	.woocommerce-page table.my_account_orders tr td, .woocommerce-page table.my_account_orders tr th {
		text-align: left !important;
	}
	.woocommerce table.my_account_orders tr th, .woocommerce-page table.my_account_orders tr th {
		font-size: 10px;
	}

    .post_item .woocommerce-message{
        padding-right: 1em;
        padding-left: 3em;
    }

    .woocommerce-message .button.wc-forward{
        margin-left: 10px;
    }

    .woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before{
        left: 1em;
    }
	.woocommerce-page .product .entry-summary p.price {
		font-size: 2em;
	}

	/* BuddyPress */
	#buddypress #item-nav {
		float:none;
		margin-bottom:2em;
		width:auto;
		display:inline-block;
	}
	#buddypress #item-nav ul {
		overflow:hidden;
	}
	#buddypress #item-nav ul li {
		float:left;
	}

    /* HTML5 Player */
    #myplayer .ttw-music-player .album-cover {
        width: 100%;
        float: none;
		overflow:hidden;
    }
	#myplayer .ttw-music-player .album-cover,
	#myplayer .ttw-music-player .album-cover .highlight {
		height: 100px;
	}
    #myplayer .ttw-music-player .album-cover .img {
		position: static;
		max-height:none;
		margin-top:0;
	}
    #myplayer .ttw-music-player .album-cover img {
		max-width:none;
	}
    #myplayer .ttw-music-player .tracklist {
        position: relative;
        margin-left: 0;
        padding: 0;
        top: 0;
    }
	
	
	/* Shortcodes */
	.sc_accordion.sc_accordion_style_2 .sc_accordion_item .sc_accordion_title .sc_accordion_icon {
		border-width: 1px;
	}
	input.sc_button_size_large[type="submit"], input.sc_button_size_large[type="button"], button.sc_button_size_large, .sc_button.sc_button_size_large {
		padding: 1em 1.25em;
	}
	input.sc_button_size_medium[type="submit"], input.sc_button_size_medium[type="button"], button.sc_button_size_medium, .sc_button.sc_button_size_medium {
		padding: 0.8em 1em;
	}
	input[type="submit"]:before, input[type="button"]:before, button:before, .sc_button:before {
		margin-right:4px;
	}

	input[type="submit"], input[type="button"], button, .sc_button {
		padding: 0.7em 1em;
	}
	blockquote {
		font-size: 1.5em;
	}

	.sc_blogger.layout_date.sc_blogger_horizontal .sc_blogger_item {
		min-width: 50%;
		margin-bottom: 1em;
	}

	.sc_countdown.sc_countdown_style_1 .sc_countdown_digits,
	.sc_countdown.sc_countdown_style_1 .sc_countdown_separator {
		font-size:2em;
		height: 1.9em;
		line-height:1.9em;
	}
	.sc_countdown.sc_countdown_style_1 .sc_countdown_digits {
		width: 1.9em;
	}
	.sc_countdown.sc_countdown_style_2 .sc_countdown_digits,
	.sc_countdown.sc_countdown_style_2 .sc_countdown_separator {
		font-size:2em;
	}

	.sc_form .sc_form_field {
		float: none;
		width: 100%;
		padding-left:0 !important;
	}

	.sc_googlemap {
		max-height:200px;
	}
	.sc_googlemap_content {
		position:static;
		width: auto;
	}

	.popup_menuitem > .sc_menuitems_wrap {
		width: 250px;
	}
	.sc_menuitems_style_menuitems-2 .sc_menuitem_box_title {
		font-size: 1.25em;
	}
	.sc_menuitems_style_menuitems-2 .sc_menuitem_nutritions_list li {
		width: 100%;
	}

	.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a,
	.sc_socials_type_icons.sc_socials_shape_round.sc_socials_size_small a .sc_socials_hover {
		width:2.5em;
		height:2.5em;
		line-height:2.5em;
	}
	.sc_socials.sc_socials_size_small .social_icons span {
		font-size:1.2em;
	}

	.sc_tabs .sc_tabs_titles li a {
		padding: 0.5em;
	}
	.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.ui-state-active a:after,
	.sc_tabs.sc_tabs_style_1 .sc_tabs_titles li.sc_tabs_active a:after {
		height:2px;
	}
	.sc_tabs .sc_tabs_titles li {
		font-size:1.25em;
	}
	.sc_tabs.sc_tabs_style_2 .sc_tabs_titles li a {
		border-width: 1px;
	}	

	.sc_testimonial_content {
		font-size:1.25em;
	}
	.sc_testimonial_author {
		font-size: 1em;
	}

	.sc_twitter_item {
		padding:0 3em;
	}
	.sc_twitter .sc_slider_controls_wrap a {
		font-size: 1.5em;
	}
	.sc_video_player.sc_video_bordered .sc_video_frame {
		max-width:198px;
	}
	
	.sc_services_style_services-5 .columns_wrap > .column-1_3 {
		width: 100%;
		max-width: 100%;
	}
	.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item {
		margin-right: 0;
	}
	.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item {
		margin-left: 0;
		margin-right: 0;
	}
	.sc_services_style_services-5 .sc_service_container .sc_services_image,
	.sc_services_style_services-5 .sc_service_container.sc_align_left .sc_services_image,
	.sc_services_style_services-5 .sc_service_container.sc_align_right .sc_services_image	{
		position: relative;
		width: 100%;
		left: 0;
		top: 0;
		transform: translateY(0%) translateX(0%);
		margin-bottom:2.2857em;
	}
	.sc_services_style_services-5 .sc_service_container .sc_icon, 
	.sc_services_style_services-5.sc_services_type_images .sc_service_container .sc_services_item_featured,
	.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_icon,
	.sc_services_style_services-5.sc_services_type_images .sc_service_container.sc_align_right .columns_wrap > .column-1_2:nth-child(2n) .sc_services_item_featured	{
		float: left;
		margin-right: 2.2857em;
		margin-left: 0;
	}
	.sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item_content,
	.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap > .column-1_2 .sc_services_item_content	{
		text-align: left;
	}
	
	.sc_services_style_services-5 .sc_service_container.sc_align_left .columns_wrap,
	.sc_services_style_services-5 .sc_service_container.sc_align_right .columns_wrap 	{
		margin-left: 0;
		margin-right: 0;
	}
	.sc_services_style_services-5 .sc_services_button {
		margin-top: 2.2857em;
	}
	
	.sc_promo:not(.sc_promo_size_small) .sc_promo_block {
		min-width: 100%;
		margin: 0 !important;
		float:none;
	}
	.sc_promo_block_inner {
		padding: 2em;
	}
	.sc_promo:not(.sc_promo_size_small) .sc_promo_image {
		position: relative;
		height: 200px;
		min-width: 100%;
	}
	.sc_promo_block.sc_align_left *,
	.sc_promo_block.sc_align_left *:after {
		text-align: center !important;
		margin-left: auto;
	}
	.sc_promo_block.sc_align_right *,
	.sc_promo_block.sc_align_right *:after {
		text-align: center !important;
		margin-right: auto;
	}

	/* Matches and Players */
	.sc_matches_next, .sc_matches_current {
		float:none;
		width: 100%;
		padding: 2.5em 2.5em 1em;
	}
	.match_block .match_score {
		font-size: 2.5em;
	}
	.match_block .player, .match_block .match_info {
		display:block;
		width:100%;
	}
	.match_block .match_info {
		margin: 2em 0;
	}
	.sc_matches.style_matches-1 .sc_matches_title {
		font-size: 2.5em;
	}
	.sc_matches.style_matches-1 .sc_matches_descr {
		font-size:1.1em;
	}
	.sc_matches.style_matches-1 .sc_matches_list {
		margin-top:1em;
	}
	.sc_matches.style_matches-2 .sc_matches_next .sc_matches_list {
		float:none;
		width: 100%;
	}
	.sc_matches.style_matches-2 .sc_match_info {
		text-align:center;
	}
	.sc_matches.style_matches-2 .sc_match_info .vs {
		display:block;
	}
	.sc_matches.style_matches-2 .sc_match_info .name {
		width:8em;
	}
	.sc_players_table table tr:first-child th, 
	.sc_players_table table tr:first-child td {
		font-size: 1.2em;
	}
	.sc_players_table .player img {
		max-width:20px;
	}
	.post_item_colored .match_date, .post_item_colored .post_category {
		font-size: 1em;
		line-height:1.2em;
		margin-bottom:0.2em;
	}
	.type_player.post_item_colored .player_info {
		line-height:1.4em;
	}
	.post_item_single_players .player_content {
		padding-top:2.5em;
	}

	/* Scroll to Top */
	.scroll_to_top {
		right: 1em;
	}
	.scroll_to_top.show {
		bottom: 1em;
	}

    /* New style*/
    /* Top panel */
    .top_panel_title .page_title {
        padding-bottom: 0.757em;
    }
    .top_panel_title.title_present .breadcrumbs {
        padding-bottom: 2.5em !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
    }
    .top_panel_wrap .contact_field.contact_phone {
        width: 27%;
    }
    .top_panel_wrap .contact_field.open_hours {
        width: 39%;
    }
    .top_panel_wrap .contact_field.contact_address {
        width: 34%;
    }
    .top_panel_middle .open_hours .contact_icon{
        left: 0.5em;
    }
    .top_panel_middle .contact_address .contact_icon{
        left: -2em;
    }
    .top_panel_title .page_title{
        font-size: 1.5em;
    }

    .top_panel_title.title_present:not(.navi_present) .breadcrumbs{
        padding-top: 3.3em;
        padding-left: 1.5em;
    }
    /* Clients */
    .sc_clients .sc_slider_controls_side .sc_slider_controls_wrap a{
        height: 3em;
        line-height: 3em;
        width: 3em;
    }
    /* Service */
    .sc_services_style_services-1 .sc_services_item {
        padding-bottom: 0.5em;
        padding-top: 0.5em;
    }
    .sc_services_style_services-1 .sc_services_item_title, .sc_services_style_services-5 .sc_services_item .sc_services_item_title{
        font-size: 1.1em;
    }
    .sc_services_style_services-1 .sc_services_item{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_section.margin_right_huge{
        margin-right: 0!important;
    }
    .margin_left_huge {
        margin-left: 0 !important;
    }
    .sc_services_style_services-5 .sc_service_container .sc_services_image{
        top: 50%;
    }
    .sc_services_style_services-5 .sc_service_container .columns_wrap > .column-1_2 .sc_services_item{
        top: 0;
    }
    /* Shortcodes*/
    .sc_testimonials_style_testimonials-4 .sc_testimonial_content{
        padding-left: 1.6em;
        padding-right: 0.5em;
        padding-bottom: 0.5em;
        padding-top: 0.7em;
    }
    .sc_testimonials_style_testimonials-3 .sc_testimonial_content p:first-child:before, .sc_testimonials_style_testimonials-4 .sc_testimonial_content p:first-child:before{
        left: 0.3em;
        top: 0.5em;
    }
    .sc_intro_style_3{
        padding-top: 2.8em;
    }
    .sc_table{
        overflow-x: scroll;
    }
    .sc_item_buttons > .sc_item_button{
        float: none;
        margin-right: 0;
    }
    .sc_item_title {
        font-size: 1.8em;
    }
    .sc_skills_counter .sc_skills_item.sc_skills_style_1 .sc_skills_total{ font-size: 1.857em;}
    .sc_button.sc_button_style_border {
        padding-bottom: 0.6em;
        padding-left: 0.75em;
        padding-right: 0.75em;
        padding-top: 0.55em;
    }
    .sc_skills_counter .sc_skills_item.sc_skills_style_1{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .sc_columns.margin_top_medium {
        margin-top: 0 !important;
    }
    .sc_price_block:not(.sc_price_block_style_1) .sc_price_block_description{
        margin-left: 13%;
        -moz-transform: translateX(11%);
        -webkit-transform: translateX(11%);
        -o-transform: translateX(11%);
        -ms-transform: translateX(11%);
        transform: translateX(11%);
    }
    
    .sc_intro_style_3 .sc_intro_title{
        font-size: 2.3em;
    }
    
    .sc_skills_pie.sc_skills_compact_off .sc_skills_total{
        font-size: 2em;
        top: 44%;
    }
    .sc_item_descr{
        left: 50%;
        width: 100%;
    }
    .sc_skills_pie.sc_skills_compact_off .sc_skills_item{
        padding-left: 0;
        padding-right: 0;
    }
    .sc_slider_controls_bottom .sc_slider_controls_wrap a{
        line-height: 2.4em;
    }
    .sc_price_block .sc_price_block_money .sc_price_money{
        font-size: 2.3em;
    }
    .sc_price_block .sc_price_block_money .sc_price_currency{
        font-size: 2.25em;
    }
    .sc_form.sc_form_style_form_1 .sc_form_info .sc_form_item,
    .wpcf7 form .form_info .wpcf7-form-control-wrap{
        width: 100%;
    }
    /* Bloger */
    .sc_blogger.template_masonry .post_item_classic .post_title{
        font-size: 1em;
    }
    /* Widgets */
    .widget_area .widget_calendar td .day_wrap{
        margin-left: 1px;
        margin-right: 1px;
    }
    .widget_area .widget_product_tag_cloud a, .widget_area .widget_tag_cloud a{
        letter-spacing: 1px;
    }
    .widget_text h5{
        font-size: 1.1em;
    }
    /* team */
    .single-team .socials_single_team{
        width: 50%;
        float: right;
        clear: both;
        margin-bottom: 5em;
    }
    .post_item_single_team .single_team_post_description .team_brief_info_text p:after{
        width: 100%;
    }
    .single-team .socials_single_team{
        width: 100%;
        float: left;
    }
    .single-team .page_content_wrap {
        padding-top: 4em;
    }
    /* Post */
    .single.single-post .post_info_bottom_info_share {
        top: -17px;
    }
    .post_author .post_author_info{
        overflow: visible;
    }
    .single.single-post .post_info_bottom_info_share {
        position: absolute;
        text-align: left;
        top: -50px;
        left: 0;
        right: auto;
    }
    .post_info.post_info_bottom .post_info_tags a{
        line-height: 4.4em;
    }

    /* Excerpt */
    .post_item_excerpt.post_featured_left .post_title, .post_item_excerpt.post_featured_right .post_title{
        font-size: 1.5em;
    }
    .post_item_excerpt:not([class*="column"]) + .post_item_excerpt:not([class*="column"]){
        margin-top: 2.7em;
        padding-top: 2.7em;
    }

    /* Portfolio */
    .ih-item.square .info p{
        font-style: normal;
        font-size: 0.9em;
        padding-top: 0!important;
        padding-left: 0.5em!important;
        padding-right: 0.5em!important;
    }
    .ih-item.square .info .post_title{
        font-size: 0.9em!important;
    }
    .ih-item.square.effect_shift .info .post_title{
        margin-top: 0!important;
    }
    /* Menu */
    .menu_main_nav > li > a {
        line-height: 1.2857em;
        padding-bottom: 0.9em;
        padding-left: 1.3em;
        padding-right: 1.3em;
        padding-top: 0.9em;
    }
    .scroll_to_top::before {
        top: -1px;
    }
    /* Mail chimp */
    .mc4wp-form input[type="email"] {
        width: 15.5em;

    }
    .mc4wp-form input[type="submit"] {
        padding-bottom: 1.15em!important;
        padding-left: 1.5em!important;
        padding-right: 1.5em!important;
        padding-top: 1.15em!important;
    }
    /* Other style */
    .margin_right_huge {
        margin-right: 0 !important;
    }
    .margin_left_huge {
        margin-left: 0 !important;
    }
    .margin_top_huge{
        margin-top: 3rem !important;
    }
    .margin_top_huge{
        margin-top: 3rem !important;
    }
    .margin_bottom_huge {
        margin-bottom: 3rem !important;
    }
    .margin_bottom_large{
        margin-bottom: 2rem !important;
    }
    .margin_top_large{
        margin-top: 2rem !important;
    }
    .margin_right_tiny {
        margin-right: 0 !important;
    }
    .margin_left_tiny {
        margin-left: 0 !important;
    }

    /* footer */
    .pre_footer_wrap_inner .column-1_2, .pre_footer_wrap_inner .column-1_2 + .column-1_2 {
        text-align: center!important;
    }
    .footer_wrap.widget_area aside:nth-child(n+1),
    .footer_wrap.widget_area aside:nth-child(n+2){
        padding-top:3em!important;
    }
    .footer_wrap.widget_area aside:nth-child(n+1),
    .footer_wrap.widget_area aside:nth-child(n+2){
        padding-top:3em!important;
    }
    .footer_wrap aside {
        margin-bottom: 2.5em;
    }
    .column-2_3, .column-4_6, .column-8_12{
        width: 100%;
    }
    .page_content_wrap {
        padding-bottom: 2em;
        padding-top: 2em;
    }
    .sc_testimonials_style_testimonials-4 .sc_testimonial_item{
        padding-left: 0.2em!important;
        padding-right: 0.2em!important;
    }
    .sc_testimonial_content p{
        font-size: 0.8em;
    }
    .pagination_wrap{
        margin-bottom: 2em;
    }
    .header_mobile .menu_main_nav > li > a > .open_child_menu{
        top: 0.1em;
    }
    .open_child_menu{
        height: 4em;
        line-height: 4em;
        width: 4em;
    }

    .sc_skills_pie .sc_skills_column.column-1_4{
        width: 52%;
    }

    .woocommerce-page table.cart td.actions .coupon .button,
    .woocommerce-page table.cart td.actions .coupon input{
        width: 53%;
    }

    .margin_bottom_medium{
        margin-bottom: 2rem !important;
        margin-top: 1rem !important;
    }

    .sc_line{
        margin-bottom: 2.95em;
    }

	.top_panel_wrap.top_panel_style_1 {
		 display: none;
	}

    body .slider_wrap table.booked-calendar thead tr:first-child th{
        height: 70px;
    }

    body table.booked-calendar thead th .page-right,
    body table.booked-calendar thead th .page-left{
        top: 42%;
    }

    body .slider_wrap table.booked-calendar thead th .monthName{
        font-size: 18px;
    }

    .cff-container-field.button-position-left > div{
        display: block;
    }

    .calculated-result{
        margin-left: 0;
        margin-top: 15px;
    }

    .button-position-left{
        margin-top: 0;
        padding-top: 0;
    }

    .cff-container-field.calculated-result > div{
        display: flex;
	    flex-wrap: wrap;
	    justify-content: space-between;
    }

    .cff-container-field.calculated-result .comment_area{
        flex-shrink: 0;
    }

    .cff-container-field .dfield{
        margin-right: 0;
    }
	
	.cff-container-field.calculated-result .cff-calculated-field input{
		text-align: right;
	}

    #fbuilder .fields.calculated-result{
        padding-right: 2em;
    }

    .margin_bottom_huge + .vc_empty_space{
        height: 0 !important;
    }

    .woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon,
    .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon{
        width: 67%;
    }

    .woocommerce table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon .input-text,
    .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text{
        padding: .65em;
    }

    .woocommerce-cart-form{
        overflow-x: scroll;
    }

    .woocommerce .woocommerce-ordering{
        width: 100%;
    }

    .comments_list_wrap .comment_author_avatar{
        width: 40px;
        height: 40px;
		position: static;
		margin-bottom: 1em;
    }

    .comments_list_wrap .comment_content{
        padding-left: 0;
    }

    blockquote{
        padding: 2.1em 2em 1.8em 2.55em;
    }

    blockquote:before{
        left: 1.5em;
    }

    .woocommerce .list_products.shop_mode_thumbs ul.products li.product .post_content{
        min-height: auto;
    }
}

@media (max-width: 812px) {
	.header_mobile .menu_button {
		left: auto;
		right: 30px;
	}
	.header_mobile .menu_main_cart{
		right: 75px;
	}
}

@media (max-width: 782px) {
	.admin-bar.top_panel_over .top_panel_wrap {	top:46px; }
	.admin-bar.top_panel_fixed .top_panel_wrap { top:46px; }
	.admin-bar #debug_log { top:46px; }
	.admin-bar .pushy .close-pushy::before { top: 3em;	}
	.admin-bar .pushy .pushy_inner {		padding-top: 4em; }
	.admin-bar .pushy .logo {				margin-bottom: 1em;	}

	.admin-bar .header_mobile .side_wrap {	top: 46px;	}
	.admin-bar.menu_mobile_open {					height: calc(100% - 46px); }
}

@media (max-width: 767px) {
	.pre_footer_wrap_inner .column-1_2,
	.pre_footer_wrap_inner .column-1_2 + .column-1_2{
		text-align: center!important;
	}
}

@media (max-width: 667px){
	.columns_wrap:not(.columns_fluid) > [class*="column-"]{
		padding-top: 20px;
	}
}

@media (max-width: 639px){
	.header_mobile .logo_main {
		height: 40px;
	}
	.popup_wrap{
		width: auto;
		min-width: 260px;
		max-width: 260px;
	}
	.popup_wrap .form_left, 
	.popup_wrap .form_right, 
	.popup_wrap.popup_registration .form_left, 
	.popup_wrap.popup_registration .form_right{
		float: none;
		padding: 0;
		border: none;
		width: 100%
	}
	.popup_wrap .form_right{
		margin-top: 20px;
	}
	.popup_wrap.popup_registration .form_right {
		margin-top: 0;
	}
}

@media (max-width: 599px) {
	.admin-bar.top_panel_over .top_panel_wrap {	top: 46px; }
	.admin-bar.top_panel_fixed .top_panel_wrap { top: 0; }
	.admin-bar #debug_log { top: 46px; }
}

@media (max-width: 480px) {
	
	.article_style_boxed .content > article > .post_content,
	.article_style_boxed[class*="single-"] .content > .comments_wrap,
	.article_style_boxed[class*="single-"] .content > article > .post_info_share,
	.body_filled .widget_area[class*="scheme_"]:not(.footer_wrap) .widget_area_inner {
		padding: 2em;
	}
	
	.header_mobile .mask {
		display: none !important;
	}
	.header_mobile .content_wrap {
		text-align: left;
	}
	.header_mobile .logo {
		padding-top: 24px;
		padding-bottom: 5px;
	}	
	.header_mobile .menu_main_cart {
		right: 65px;
	}
    .header_mobile .menu_button,
    .header_mobile .menu_main_cart{
        top: 43px;
    }
	.header_mobile .menu_button {
		left: auto;
		right: 30px;
	}
	.header_mobile .side_wrap {
		width: 100%;
		top: 83px;
		left: -100%;
	}
	.admin-bar .header_mobile .side_wrap {
		top: 129px;
	}
	.header_mobile .panel_middle {
		font-size: 1em;
	}
    .popup_wrap .popup_form_field.iconed_field:before{
        top: 3px;
    }
    .sc_button.sc_button_style_filled + .sc_button.sc_button_style_border{
        margin-left:5px!important;
    }
    .sc_slider_controls_bottom .sc_slider_controls_wrap{
        bottom: 2px;
    }
    .isotope_wrap .isotope_item + .isotope_item{
        margin-top: 25px;
    }
    .pre_footer_wrap {
        padding-top: 1.8em;
    }
    .mc4wp-form input[type="email"] {
        width: 14.5em;
    }
    .mc4wp-form input[type="email"] {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .margin_left_tiny {
        margin-left: 3px !important;
    }
    .widget_area .widget_calendar td .day_wrap{
        padding-bottom: 0;
        padding-top: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .help_table .sc_price_block .sc_price_block_title span{
        font-size: 0.7em;
    }
    .sc_table table th, .sc_table table td {
        font-size: 0.9em;
    }
    .woocommerce-page .product .entry-summary p.price {
        line-height:1em;
    }

    body .slider_wrap table.booked-calendar thead tr:first-child th{
        height: 70px;
    }

    body .slider_wrap table.booked-calendar thead th .monthName{
        font-size: 18px;
    }

    body table.booked-calendar thead th .page-right,
    body table.booked-calendar thead th .page-left{
        top: 44%;
    }
    
    .header_mobile .logo{
        padding-right: 35px;
    }

    body .slider_wrap table.booked-calendar thead th .monthName .backToMonth{
        display: none;
    }

    .woocommerce .widget_shopping_cart .cart_list li, .woocommerce-page .widget_shopping_cart .cart_list li{
        padding-right: 14px;
    }
}

@media (max-width: 375px){
	.booked_section .booked-calendar-wrap {
		height: 350px !important;
	}
}

@media (max-width: 374px) {
	.slider_wrap table.booked-calendar tr.days,
	body .slider_wrap table.booked-calendar thead tr:first-child th{
		height: auto;
	}
	
	.slider_wrap .booked-calendar .date, .slider_wrap .booked-calendar .date .number{
		line-height: 42px!important;
	}
}

@media (max-width: 320px) {
    .header_mobile .logo{
        padding-right: 65px;
    }
}.mejs-offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs-container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs-container,.mejs-container *{box-sizing:border-box}.mejs-container video::-webkit-media-controls,.mejs-container video::-webkit-media-controls-panel,.mejs-container video::-webkit-media-controls-panel-container,.mejs-container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs-fill-container,.mejs-fill-container .mejs-container{height:100%;width:100%}.mejs-fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs-container:focus{outline:none}.mejs-iframe-overlay{height:100%;position:absolute;width:100%}.mejs-embed,.mejs-embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs-fullscreen{overflow:hidden!important}.mejs-container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{height:100%!important;width:100%!important}.mejs-background,.mejs-mediaelement{left:0;position:absolute;top:0}.mejs-mediaelement{height:100%;width:100%;z-index:0}.mejs-poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs-poster-img{display:none}.mejs-poster-img{border:0;padding:0}.mejs-overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs-layer{z-index:1}.mejs-overlay-play{cursor:pointer}.mejs-overlay-button{background:url(https://www.coolfog.sk/wp-includes/js/mediaelement/mejs-controls.svg) no-repeat;background-position:0 -39px;height:80px;width:80px}.mejs-overlay:hover>.mejs-overlay-button{background-position:-80px -39px}.mejs-overlay-loading{height:80px;width:80px}.mejs-overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;background:transparent url(https://www.coolfog.sk/wp-includes/js/mediaelement/mejs-controls.svg) -160px -40px no-repeat;display:block;height:80px;width:80px;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs-controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:40px;left:0;list-style-type:none;margin:0;padding:0 10px;position:absolute;width:100%;z-index:3}.mejs-controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs-button,.mejs-time,.mejs-time-rail{font-size:10px;height:40px;line-height:10px;margin:0;width:32px}.mejs-button>button{background:transparent url(https://www.coolfog.sk/wp-includes/js/mediaelement/mejs-controls.svg);border:0;cursor:pointer;display:block;font-size:0;height:20px;line-height:0;margin:10px 6px;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:20px}.mejs-button>button:focus{outline:1px dotted #999}.mejs-container-keyboard-inactive [role=slider],.mejs-container-keyboard-inactive [role=slider]:focus,.mejs-container-keyboard-inactive a,.mejs-container-keyboard-inactive a:focus,.mejs-container-keyboard-inactive button,.mejs-container-keyboard-inactive button:focus{outline:0}.mejs-time{box-sizing:content-box;color:#fff;font-size:11px;font-weight:700;height:24px;overflow:hidden;padding:16px 6px 0;text-align:center;width:auto}.mejs-play>button{background-position:0 0}.mejs-pause>button{background-position:-20px 0}.mejs-replay>button{background-position:-160px 0}.mejs-time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:40px;margin:0 10px;padding-top:10px;position:relative}.mejs-time-buffering,.mejs-time-current,.mejs-time-float,.mejs-time-float-corner,.mejs-time-float-current,.mejs-time-hovered,.mejs-time-loaded,.mejs-time-marker,.mejs-time-total{border-radius:2px;cursor:pointer;display:block;height:10px;position:absolute}.mejs-time-total{background:hsla(0,0%,100%,.3);margin:5px 0 0;width:100%}.mejs-time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:15px 15px;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:30px 0}}@keyframes b{0%{background-position:0 0}to{background-position:30px 0}}.mejs-time-loaded{background:hsla(0,0%,100%,.3)}.mejs-time-current,.mejs-time-handle-content{background:hsla(0,0%,100%,.9)}.mejs-time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs-time-hovered.negative{background:rgba(0,0,0,.2)}.mejs-time-buffering,.mejs-time-current,.mejs-time-hovered,.mejs-time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs-time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs-time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs-time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs-time-handle,.mejs-time-handle-content{border:4px solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs-time-handle-content{border:4px solid hsla(0,0%,100%,.9);border-radius:50%;height:10px;left:-7px;top:-4px;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:10px}.mejs-time-rail .mejs-time-handle-content:active,.mejs-time-rail .mejs-time-handle-content:focus,.mejs-time-rail:hover .mejs-time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs-time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:17px;margin-bottom:9px;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:36px}.mejs-time-float-current{display:block;left:0;margin:2px;text-align:center;width:30px}.mejs-time-float-corner{border:5px solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs-long-video .mejs-time-float{margin-left:-23px;width:64px}.mejs-long-video .mejs-time-float-current{width:60px}.mejs-broadcast{color:#fff;height:10px;position:absolute;top:15px;width:100%}.mejs-fullscreen-button>button{background-position:-80px 0}.mejs-unfullscreen>button{background-position:-100px 0}.mejs-mute>button{background-position:-60px 0}.mejs-unmute>button{background-position:-40px 0}.mejs-volume-button{position:relative}.mejs-volume-button>.mejs-volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:115px;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:25px;z-index:1}.mejs-volume-button:hover{border-radius:0 0 4px 4px}.mejs-volume-total{background:hsla(0,0%,100%,.5);height:100px;left:50%;margin:0;position:absolute;top:8px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2px}.mejs-volume-current{left:0;margin:0;width:100%}.mejs-volume-current,.mejs-volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs-volume-handle{border-radius:1px;cursor:ns-resize;height:6px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:16px}.mejs-horizontal-volume-slider{display:block;height:36px;position:relative;vertical-align:middle;width:56px}.mejs-horizontal-volume-total{background:rgba(50,50,50,.8);height:8px;top:16px;width:50px}.mejs-horizontal-volume-current,.mejs-horizontal-volume-total{border-radius:2px;font-size:1px;left:0;margin:0;padding:0;position:absolute}.mejs-horizontal-volume-current{background:hsla(0,0%,100%,.8);height:100%;top:0;width:100%}.mejs-horizontal-volume-handle{display:none}.mejs-captions-button,.mejs-chapters-button{position:relative}.mejs-captions-button>button{background-position:-140px 0}.mejs-chapters-button>button{background-position:-180px 0}.mejs-captions-button>.mejs-captions-selector,.mejs-chapters-button>.mejs-chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-43px;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:86px}.mejs-chapters-button>.mejs-chapters-selector{margin-right:-55px;width:110px}.mejs-captions-selector-list,.mejs-chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs-captions-selector-list-item,.mejs-chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 6px;overflow:hidden;padding:0}.mejs-captions-selector-list-item:hover,.mejs-chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs-captions-selector-input,.mejs-chapters-selector-input{clear:both;float:left;left:-1000px;margin:3px 3px 0 5px;position:absolute}.mejs-captions-selector-label,.mejs-chapters-selector-label{cursor:pointer;float:left;font-size:10px;line-height:15px;padding:4px 10px 0;width:100%}.mejs-captions-selected,.mejs-chapters-selected{color:#21f8f8}.mejs-captions-translations{font-size:10px;margin:0 0 5px}.mejs-captions-layer{bottom:0;color:#fff;font-size:16px;left:0;line-height:20px;position:absolute;text-align:center}.mejs-captions-layer a{color:#fff;text-decoration:underline}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:400}.mejs-captions-position{bottom:15px;left:0;position:absolute;width:100%}.mejs-captions-position-hover{bottom:35px}.mejs-captions-text,.mejs-captions-text *{background:hsla(0,0%,8%,.5);box-shadow:5px 0 0 hsla(0,0%,8%,.5),-5px 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs-container.mejs-hide-cues video::-webkit-media-text-track-container{display:none}.mejs-overlay-error{position:relative}.mejs-overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs-cannotplay,.mejs-cannotplay a{color:#fff;font-size:.8em}.mejs-cannotplay{position:relative}.mejs-cannotplay a,.mejs-cannotplay p{display:inline-block;padding:0 15px;width:100%}.mejs-container{clear:both;max-width:100%}.mejs-container *{font-family:Helvetica,Arial}.mejs-container,.mejs-container .mejs-controls,.mejs-embed,.mejs-embed body{background:#222}.mejs-time{font-weight:400;word-wrap:normal}.mejs-controls a.mejs-horizontal-volume-slider{display:table}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#fff}.mejs-controls .mejs-time-rail .mejs-time-current{background:#0073aa}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail .mejs-time-total{background:rgba(255,255,255,.33)}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,.mejs-controls .mejs-time-rail span{border-radius:0}.mejs-overlay-loading{background:0 0}.mejs-controls button:hover{border:none;-webkit-box-shadow:none;box-shadow:none}.me-cannotplay{width:auto!important}.media-embed-details .wp-audio-shortcode{display:inline-block;max-width:400px}.audio-details .embed-media-settings{overflow:visible}.media-embed-details .embed-media-settings .setting span:not(.button-group){max-width:400px;width:auto}.media-embed-details .embed-media-settings .checkbox-setting span{display:inline-block}.media-embed-details .embed-media-settings{padding-top:0;top:28px}.media-embed-details .instructions{padding:16px 0;max-width:600px}.media-embed-details .setting .remove-setting,.media-embed-details .setting p{color:#a00;font-size:10px;text-transform:uppercase}.media-embed-details .setting .remove-setting{padding:5px 0}.media-embed-details .setting a:hover{color:#dc3232}.media-embed-details .embed-media-settings .checkbox-setting{float:none;margin:0 0 10px}.wp-video{max-width:100%;height:auto}.wp_attachment_holder .wp-audio-shortcode,.wp_attachment_holder .wp-video{margin-top:18px}.wp-video-shortcode video,video.wp-video-shortcode{max-width:100%;display:inline-block}.video-details .wp-video-holder{width:100%;max-width:640px}.wp-playlist{border:1px solid #ccc;padding:10px;margin:12px 0 18px;font-size:14px;line-height:1.5}.wp-admin .wp-playlist{margin:0 0 18px}.wp-playlist video{display:inline-block;max-width:100%}.wp-playlist audio{display:none;max-width:100%;width:400px}.wp-playlist .mejs-container{margin:0;max-width:100%}.wp-playlist .mejs-controls .mejs-button button{outline:0}.wp-playlist-light{background:#fff;color:#000}.wp-playlist-dark{color:#fff;background:#000}.wp-playlist-caption{display:block;max-width:88%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:1.5}.wp-playlist-item .wp-playlist-caption{text-decoration:none;color:#000;max-width:-webkit-calc(100% - 40px);max-width:calc(100% - 40px)}.wp-playlist-item-meta{display:block;font-size:14px;line-height:1.5}.wp-playlist-item-title{font-size:14px;line-height:1.5}.wp-playlist-item-album{font-style:italic;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-playlist-item-artist{font-size:12px;text-transform:uppercase}.wp-playlist-item-length{position:absolute;right:3px;top:0;font-size:14px;line-height:1.5}.rtl .wp-playlist-item-length{left:3px;right:auto}.wp-playlist-tracks{margin-top:10px}.wp-playlist-item{position:relative;cursor:pointer;padding:0 3px;border-bottom:1px solid #ccc}.wp-playlist-item:last-child{border-bottom:0}.wp-playlist-light .wp-playlist-caption{color:#333}.wp-playlist-dark .wp-playlist-caption{color:#ddd}.wp-playlist-playing{font-weight:700;background:#f7f7f7}.wp-playlist-light .wp-playlist-playing{background:#fff;color:#000}.wp-playlist-dark .wp-playlist-playing{background:#000;color:#fff}.wp-playlist-current-item{overflow:hidden;margin-bottom:10px;height:60px}.wp-playlist .wp-playlist-current-item img{float:left;max-width:60px;height:auto;margin-right:10px;padding:0;border:0}.rtl .wp-playlist .wp-playlist-current-item img{float:right;margin-left:10px;margin-right:0}.wp-playlist-current-item .wp-playlist-item-artist,.wp-playlist-current-item .wp-playlist-item-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.wp-audio-playlist .me-cannotplay span{padding:5px 15px}