/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}
/* ANIMATIONS */
/* Open/close animations */
/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
	opacity: 1;
}
/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}
/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}

.tooltipster-fall.tooltipster-show {}

.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}
/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}

.tooltipster-slide.tooltipster-show {}

.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}
/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}
/* rotate */
@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}

	75% {
		transform: rotate(2deg);
	}

	100% {
		transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}
/* scale */
@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}
/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}
/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 12px;
	font-size: 12px;
	white-space: nowrap;
	padding: 5px 10px;
}
/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
	bottom: 0;
	top: calc(100% - 8px);
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}
/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}
/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #565656;
	left: 0;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0;
	top: -3px;
}
/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}
/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-box {
	border: none;
	background: #1b1b1b;
	background: rgba(10,10,10,.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow {
	height: 8px;
	margin-left: -8px;
	width: 16px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow {
	height: 16px;
	margin-left: 0;
	margin-top: -8px;
	width: 8px;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow-background {
	display: none;
}

.tooltipster-sidetip.tooltipster-borderless .tooltipster-arrow-border {
	border: 8px solid transparent;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: #1b1b1b;
	border-bottom-color: rgba(10,10,10,.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-left .tooltipster-arrow-border {
	border-left-color: #1b1b1b;
	border-left-color: rgba(10,10,10,.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow-border {
	border-right-color: #1b1b1b;
	border-right-color: rgba(10,10,10,.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-top .tooltipster-arrow-border {
	border-top-color: #1b1b1b;
	border-top-color: rgba(10,10,10,.9);
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -8px;
}

.tooltipster-sidetip.tooltipster-borderless.tooltipster-right .tooltipster-arrow-uncropped {
	left: -8px;
}

.logoanimated,
.logomini,
.logostatic {
	display: none;
}

#c-button--push-left,
.banner-mobile,
.c-menu__close,
.msearch svg,
.s-links .title,
.s-main-buttons a,
.zzform .pop_up_one_click_single {
	cursor: pointer;
}

.logoanimated.active,
.logomini.active,
.logostatic.active {
	display: block;
}

.form_pad_single,
.submit_btn_single {
	width: 100% !important;
}

#phonenum_single {
	margin-bottom: 10px !important;
}

.add_to_car_sec .single_add_to_cart_button,
.submit_btn_single .pop_up_one_click {
	width: 100% !important;
	padding: 0 10px !important;
	height: 45px !important;
	font-size: 22px !important;
	line-height: 40px !important;
	margin: 0 0 10px !important;
	text-align: center !important;
}

.zzform .submit_btn_single .ajax-loader {
	display: none !important;
}

.zzform .form_pad_single {
	display: none;
	padding: 0 !important;
}

.zzform .pop_up_one_click {
	background-image: none!important;
}

.zzform .submit_btn_single .pop_up_one_click:hover {
	background-image: none!important;
}

.zzform .form_pad_single.active {
	display: block;
}

.zzform .gozz {
	font-size: 20px;
	padding: 0;
	line-height: 37px;
	background: #ff8228;
	text-transform: lowercase;
	height: 45px;
	color: #fff;
	border-radius: 4px;
	transition: all 0.3s ease;
	border: 1px solid #ff8228;
}

.zzform .gozz:hover {
	color: #ff8228;
	background: #fff;
	border: 1px solid #ff8228;
}

.zzform .gozz:hover {
	color: #ff8228;
}

.zzform #phonenum_single {
	text-align: center;
	border-radius: 4px;
	padding: 0;
	height: 45px;
}

.zzform span.wpcf7-not-valid-tip {
	color: #f00;
	font-size: 10px;
	font-weight: normal;
	text-transform: uppercase;
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	text-align: center;
}

div.wpcf7-response-output {
	margin: 0;
	padding: 0.2em 0.5em;
	font-size: 12px;
	text-transform: uppercase;
}

div.wpcf7-validation-errors {
	border: 2px solid red;
}

.slick_car_cont {
	padding-left: 30px !important;
}

.wpcf7-form-control-wrap {
	position: relative;
	width: 100%;
	display: block;
}

.slick_car_cont .im_sl {
	display: block;
	min-width: 130px;
	float: left;
}

.slick_car_cont .sprt {
	margin-top: 30px !important;
}

.slick_car_cont .slick-prev {
	left: -50px!important;
	width: 40px;
	height: 40px;
}

.slick_car_cont .slick-prev:before {
	width: 40px;
	height: 40px;
	left: 0;
	top: 0;
}

.slick_car_cont .slick-next {
	left: auto !important;
	right: -50px !important;
	width: 40px;
	height: 40px;
}

.slick_car_cont .slick-next:before {
	width: 40px;
	height: 40px;
	left: 0;
	top: 0;
}

.slick_car_cont .sl_desc {
	padding: 0 30px;
	text-align: justify;
	cursor: pointer;
}

.show-mobile {
	display: none;
}

.msearch svg {
	width: 28px;
	height: auto;
	position: absolute;
	left: 50%;
	top: 10px;
	transform: translate(-20px);
	z-index: 2;
}

.msearch svg path {
	fill: #fff;
}

.newslickarrows {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	z-index: 9;
	background: rgba(255, 255, 255, 0.5);
	font-size: 5rem;
	display: block;
	transition: all 0.3s ease;
}

.newslickarrows.right {
	left: auto;
	right: 0;
}

.newslickarrows:hover {
	background: rgba(255, 255, 255, 0.9);
}

.iconic-woothumbs-fullscreen {
	display: none !important;
}

.pswp__bg {
	background: rgb(0, 0, 0, 0.8);
}

.iconic-woothumbs-images-wrap .slick-slider {
	cursor: pointer;
	position: relative;
	cursor: zoom-in;
}
/* .iconic-woothumbs-images-wrap .slick-slider:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	opacity: 0;
	height: 100%;
	background: rgba(0,0,0,0.5);
	transition: all 0.3s linear;
	cursor: zoom-in;
	pointer-events: none!important;
}

.iconic-woothumbs-images-wrap .slick-slider:before {
	font-size: 5rem;
	position: absolute;
	opacity: 0;
	color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: "\66";
	font-family: woothumbs!important;
	font-style: normal!important;
	font-weight: 400!important;
	font-variant: normal!important;
	text-transform: none!important;
	speak: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 2;
	transition: all 0.3s linear;
}

.iconic-woothumbs-images-wrap .slick-slider:hover:after,
.iconic-woothumbs-images-wrap .slick-slider:hover:before {
	pointer-events: none!important;
	opacity: 1;
} */

.newslickarrows i {
	opacity: 1!important;
}

.newslickarrows i:before {
	line-height: 2;
}

.catlinknew {
	margin-top: 15px;
	margin-right: 0;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn_sl {
	text-align: center;
	margin: 0 !important;
	padding: 0 10px;
	border-radius: 4px;
	cursor: pointer;
	color: #ffffff;
	background: #ff8228;
	border: 1px solid #ff8228;
	transition: all 0.3s ease;
}

.btn_sl:hover {
	color: #ff8228;
	background: #fff;
	border: 1px solid #ff8228;
}

.gohimemore {
	position: relative;
}

.gohimemore:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 50%;
	pointer-events: none;
	background: linear-gradient(0deg, #fff, transparent);
}

.gohimemore.opened:after {
	height: 0;
}

.out-of-stock {
	display: none;
}

.out-of-stock:before {
	display: none !important;
}

#formOrderOneClick .button,
.clickBuyButton,
.nbtn {
	font-family: RobotoBold, serif !important;
	font-size: 15px !important;
	background: #ff8228 !important;
	text-align: center !important;
	padding: 0 10px !important;
	height: 36px !important;
	line-height: 35px !important;
	color: #ffffff !important;
	width: auto !important;
	border: 1px solid #ff8228 !important;
	border-radius: 5px !important;
	transition: All 0.3s ease-out !important;
	margin: 0 !important;
	box-shadow: none!important;
	text-transform: lowercase !important;
}

.clickBuyButton {
	background: #969696 !important;
	border: 1px solid #969696 !important;
}

#formOrderOneClick .button:hover,
.clickBuyButton:hover,
.nbtn:hover {
	background: #ffffff !important;
	color: #ff8228 !important;
	border: 1px solid #ff8228 !important;
}

#formOrderOneClick input[type="text"],
#formOrderOneClick input[type="tel"] {
	margin: 0 0 15px !important;
}

#formOrderOneClick .popup .close_order {
	line-height: 1.2em;
}

#formOrderOneClick .popup .close_order:hover {
	background-color: #ff8228 !important;
	border: 1px solid #ff8228;
}

#formOrderOneClick span {
	padding: 10px 0 0;
	display: block;
}

#formOrderOneClick table {
	width: 100%;
	margin-bottom: 15px;
}

#formOrderOneClick h2 {
	font-size: 2rem;
	text-transform: uppercase;
}

#formOrderOneClick td,
#formOrderOneClick th {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: normal;
	padding: 5px 10px !important;
	vertical-align: top!important;
}

#formOrderOneClick td span,
#formOrderOneClick th span {
	padding: 0 !important;
}

.err404 {
	margin: 50px 0;
}

.err404 img {
	max-width: 100%;
	display: inline-block;
}

.err404 h2 {
	font-family: 'RobotoCondensedBold', serif, serif;
	color: #231f20;
	text-align: left;
}

.woocs {
	display: none;
}

.cyr {
	cursor: pointer;
}

.cyr.active {
	color: #ffffff!important;
	background: #ff8228!important;
	border: 1px solid #ff8228!important;
	cursor: default;
}

.amount {
	font-size: 25px;
	font-weight: 600;
	white-space: nowrap;
}

.cbf {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.cbf > a:first-child {
	height: 35px !important;
	line-height: 30px !important;
        width: 50%;
	margin-left: 15px!important;
	margin-right: 5px!important;
	white-space: nowrap;
	font-size: 15px !important;
	border-radius: 4px;
}

.cbf > a:last-child {
	height: 35px !important;
	width: 50% !important;
	margin-right: 15px!important;
	white-space: nowrap;
	margin-top: 0!important;
	margin-left: 0!important;
	font-size: 12px !important;
}

.product_title_list-item span {
	color: #666;
	font-family: 'Roboto',sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
}

.pop_up_one_click span:before {
	top: 1px!important;
}

.tesis {
	margin-top: -30px;
	overflow: hidden;
	border-bottom: 1px solid #222;
	font-weight: bold;
	line-height: 1;
}

.page .sub_cont_temp {
	padding-bottom: 0 !important;
}

.page .sub_cont_temp .submit_btn {
	margin-top: 0!important;
}

.page .sub_cont_temp .submit_btn + p {
	margin: 0 !important;
	padding: 0 !important;
}

div.wpcf7-response-output {
	margin-bottom: 50px !important;
}

.tesis .lg {
	color: #222;
	font-size: 10rem;
	letter-spacing: -10px;
	margin-right: 5px;
	display: inline-block;
	transform: translate(0, 12px);
}

.tesis .sm {
	color: #222;
	font-size: 5rem;
	display: inline-block;
	transform: translate(0, 12px);
}

.basket-wrap-top {
	display: block !important;
}

.shop_attributes td,
.shop_attributes th {
	border-bottom: 1px solid #c8c8c8;
	padding: 8px 0;
}

.shop_attributes th {
	font-family: Arial, sans-serif;
	font-size: 16px;
	color: #ff8228;
	font-weight: 400;
}

.shop_attributes td {
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 16px;
	padding-left: 10px;
}

.pop_up_one_click span {
	font-size: 14px;
}

.fbform {
	display: none;
	max-width: 375px;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
textarea {
	border-radius: 5px;
	padding: 5px 10px;
	color: #444;
	background: #fff!important;
}

.fbform textarea {
	resize: vertical;
	height: 120px;
}
.stock:before {
    display: none !important;
}
/*Чат*/
.sh_btn{
    background: #ff8228 !important;	
    border-radius: 6px 0px 0px 6px !important;
}

@media only screen and (max-width:767px) and (min-width:120px) {
	.product_title_list-item a:after {
		display: none !important;
	}

	.product_title_list-item span {
		text-align: left;
		display: block;
		padding: 10px 0 8px;
		position: relative;
	}

	.product_title_list-item span:after {
		content: "";
		background: url("../img/down_grey.png");
		width: 21px;
		height: 9px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: rotate(0deg) translate(0, -50%);
		-webkit-transform: rotate(0deg) translate(0, -50%);
		-moz-transform: rotate(0deg) translate(0, -50%);
		-o-transform: rotate(0deg) translate(0, -50%);
		-ms-transform: rotate(0deg) translate(0, -50%);
		transition: All 0.25s ease-in-out;
		-webkit-transition: All 0.25s ease-in-out;
		-moz-transition: All 0.25s ease-in-out;
		-o-transition: All 0.25s ease-in-out;
	}
}
@media only screen and (max-width: 480px) and (min-width: 120px) {
	.shop_attributes th {
		border-bottom: 0 solid #c8c8c8;
		padding: 0;
	}

	.shop_attributes td,
	.shop_attributes th {
		display: block;
	}

	.shop_attributes td {
		padding-left: 0;
		padding-top: 0;
	}

	.pop_up_one_click span {
		font-size: 14px!important;
	}
}
@media only screen and (max-width: 991px) {
	.c-menu__close {
		/*display: block;
		padding: 12px 24px;
		width: 100%;*/
	display: block;
	margin: 0 !important;
    width: 100%;
    position: fixed;
    top: 50%;
    transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
    right: -51px;
    width: 125px;
	line-height: 8px;
    z-index: 999;
	letter-spacing: 1.1px;
    border-radius: 6px 6px 0px 0 !important;
	}
	.c-menu__close:after {
    content: '';
    background: url(/wp-content/themes/teksis/img/btn9.png);
    width: 9px;
    height: 21px;
    position: absolute;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 3px;
    right: 18px;
}
	
	.prdctfltr_filter_inner {
		background: #fff;
		height: calc(100vh - 48px)!important;
		overflow: auto;
		padding: 24px 0;
	}

	#sidebar {
		display: block!important;
		width: 280px !important;
		transform: translateX(-300px);
		position: fixed;
		overflow: hidden;
                overflow-y: scroll;
		left: -13px;
		top: 0;
		transition: all 0.3s ease;
		padding: 0 24px;
		background: #e6e6e6;
		z-index: 9999;
		height: 100vh;
                z-index:10000;
	}

	#sidebar.active {
		transform: translateX(0);
	}
}
@media only screen and (max-width: 860px) {
	.slick_car_cont .slick-next,
	.slick_car_cont .slick-prev {
		top: -45px!important;
	}

	.slick_car_cont .slick-prev {
		left: 0px!important;
	}

	.slick_car_cont .slick-next {
		right: 0px!important;
	}

	.slick_car_cont .sl_desc {
		padding: 0 0 0 30px !important;
	}

	.slick_car_cont {
		padding-left: 0 !important;
	}
}
@media only screen and (max-width: 544px) {
	.slick_car_cont .slick-next,
	.slick_car_cont .slick-prev {
		top: 94px!important;
	}

	.slick_car_cont .im_sl {
		display: block;
		width: 100px !important;
		float: none;
	}

	.slick_car_cont .sl_desc {
		padding: 0 !important;
	}

	.slick_block {
		margin-bottom: 0 !important;
	}

	.slick_car_cont .sprt {
		margin-top: 0 !important;
	}

	.hide-mobile {
		display: none !important;
	}

	.show-mobile {
		display: block !important;
	}

	.order_block {
		width: 100%;
	}

	.add_to_car_sec button {
		width: 100%;
	}

	.submit_btn_single .pop_up_one_click {
		display: block!important;
		width: 100%!important;
		margin: 0 !important;
		text-align: center;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	div.wpcf7-response-output {
		margin: 0;
		padding: 0.2em 1em;
	}

	span.wpcf7-not-valid-tip {
		text-align: center;
		font-size: 1.25rem;
	}

	div.wpcf7-validation-errors {
		border: 2px solid red;
	}

	.top-header {
		height: 60px;
	}
}
@media only screen and (max-width: 480px) {
	.dn-480-search {
		top: 60px!important;
		height: 40px!important;
		position: fixed;
		left: 0px!important;
		width: 100vw!important;
		display: none!important;
	}

	.dn-480-search.active {
		display: block!important;
	}

	.top-header .search-top-wrap .wrap-input {
		display: block!important;
		width: 100%!important;
		background: none!important;
		position: static!important;
		padding-top: 0 !important;
		height: auto !important;
	}
}
