/*
ATTENTION! Please do not modify this file, it's auto-generated and all your changes will be lost.
The complete list of files it's generated from:
design/themes/responsive/css/styles4.less
design/themes/responsive/css/tygh/responsive4.less
design/themes/responsive/css/lib/malihu_scroll/jquery.mCustomScrollbar.css
design/themes/responsive/css/addons/tags/styles.less
design/themes/responsive/css/addons/newsletters/styles.less
design/themes/responsive/css/addons/gift_certificates/styles.less
design/themes/responsive/css/addons/gift_certificates/responsive.less
design/themes/responsive/css/addons/reward_points/styles.less
design/themes/responsive/css/addons/bestsellers/styles.css
design/themes/responsive/css/addons/form_builder/styles.less
design/themes/responsive/css/addons/form_builder/responsive.less
design/themes/responsive/css/addons/blog/styles.less
design/themes/responsive/css/addons/blog/responsive.less
design/themes/responsive/css/addons/polls/styles.less
design/themes/responsive/css/addons/banners/styles.less
design/themes/responsive/css/addons/discussion/styles.less
design/themes/responsive/css/addons/discussion/responsive.less
design/themes/responsive/css/addons/wishlist/styles.less
design/themes/responsive/css/addons/wishlist/responsive.less
design/themes/responsive/css/addons/csc_live_search/styles.less
design/themes/responsive/css/addons/image_zoom/styles.less
/js/lib/fancybox/jquery.fancybox-1.3.4.css
*/


/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/



/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/



/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCustomScrollbar{ -ms-touch-action: pinch-zoom; touch-action: pinch-zoom; /* direct pointer events to js */ }
	.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ -ms-touch-action: auto; touch-action: auto; }
	
	.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}

	.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		height: auto;
	}



/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_inside > .mCSB_container{ margin-right: 30px; }

	.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

	.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
	
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

	.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0; 
		height: auto;
	}

	.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }

	.mCSB_scrollTools .mCSB_draggerRail{
		width: 2px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
	}

	.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		position: relative;
		width: 4px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
		text-align: center;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}

	.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_horizontal.mCSB_inside > .mCSB_container{
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; }

	.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* non-visible scrollbar */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 20px; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 2px;
		margin: 7px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
		width: 30px; /* minimum dragger width */
		height: 100%;
		left: 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 12px; /* auto-expanded scrollbar */
		margin: 2px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 8px; /* auto-expanded scrollbar */
		margin: 4px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{
		display: block;
		position: absolute;
		width: 20px;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
	
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_container_wrapper{
		position: absolute;
		height: auto;
		width: auto;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-right: 30px;
		margin-bottom: 30px;
	}
	
	.mCSB_container_wrapper > .mCSB_container{
		padding-right: 30px;
		padding-bottom: 30px;
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
	
	/* non-visible horizontal scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
	
	/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
	
	/* non-visible scrollbar/RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; }
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; }
	
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; }
	
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
	
	/* non-visible horizontal scrollbar */
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
		-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}



/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

	/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
	
	/* default theme ("light") */

	.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
	
	.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
	
	.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }

	.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.4);
		filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; 
	}

	.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.85);
		filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; 
	}
	.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.9);
		filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url('../../../../../../../../design/themes/responsive/media/mCSB_buttons.png?1753621501'); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }

	.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
	

	/* theme: "dark" */

	.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-2", "dark-2" */

	.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{	background-position: -32px -20px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -40px -40px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; }
	
	
	/* theme: "dark-2" */

	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thick", "dark-thick" */

	.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 6px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 6px;
		margin: 5px auto;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{	background-position: -16px -20px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -20px -40px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; }


	/* theme: "dark-thick" */
	
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -100px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thin", "dark-thin" */
	
	.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); }

	.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}


	/* theme "dark-thin" */
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{	background-position: -80px 0; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ }
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 4px; /* auto-expanded scrollbar */
		margin: 6px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; }
	
	
	/* theme "rounded-dark", "rounded-dots-dark" */
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; }
	
	
	/* theme "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		height: 4px;
		margin: 6px 0;
		background-repeat: repeat-x;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; }
	
	
	/* theme "rounded-dots-dark" */
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
	}
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-y;
		background-image: -moz-linear-gradient(left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-x;
		background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	
	/* theme "3d", "3d-dark" */
	
	.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
	
	.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 8px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }

	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 8px;
		margin: 4px 0;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);
	}

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 8px;
		margin: 4px auto;
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "3d-dark" */
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "3d-thick", "3d-thick-dark" */
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
	
	.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
	
	.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{
		bottom: 1px;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
		width: 12px;
		margin: 2px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -40px -128px; }
	
	
	/* theme: "3d-thick-dark" */
	
	.mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); }
	 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #fff; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "minimal", "minimal-dark" */
	
	.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
	
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
	
	.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; }
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	
	/* theme: "minimal-dark" */
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	/* ---------------------------------------- */
	
	
	
	/* theme "light-3", "dark-3" */
	
	.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }

	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		width: 12px;
	}
	
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "dark-3" */
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
	
	.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ 
		width: 6px;
		margin: 3px 5px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 6px;
		margin: 5px 3px;
		position: absolute;
		width: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	
	/* theme "inset-2", "inset-2-dark" */
	
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: transparent;
		border-width: 1px;
		border-style: solid;
		border-color: #fff;
		border-color: rgba(255,255,255,0.2);
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); }
	
	
	/* theme "inset-3", "inset-3-dark" */
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
	
	/* ---------------------------------------- */

.sort-by-bestsellers-asc {
    display: none;
}
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('../../../../../../../../design/themes/responsive/media/blank.gif?1753621501');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox-x.png?1753621501');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox-y.png?1753621501');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox-x.png?1753621501');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox-y.png?1753621501');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('../../../../../../../../design/themes/responsive/media/fancy_title_over.png?1753621501');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('../../../../../../../../design/themes/responsive/media/fancybox-x.png?1753621501') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('../../../../../../../../design/themes/responsive/media/fancybox.png?1753621501') -55px -90px no-repeat;
}

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='js/lib/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 100;
  src: local('Open Sans Thin'), local('OpenSans'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/css/fonts/OpenSans-Light.ttf?1753621501') format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(//themes.googleusercontent.com/static/fonts/opensans/v8/4fu8RBPDDCYpod03lr_bYQ.eot);
  src: local('Open Sans'), local('OpenSans'), url(//themes.googleusercontent.com/static/fonts/opensans/v8/4fu8RBPDDCYpod03lr_bYQ.eot) format('embedded-opentype'), url(//themes.googleusercontent.com/static/fonts/opensans/v8/uYKcPVoh6c5R0NpdEY5A-Q.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url(//themes.googleusercontent.com/static/fonts/opensans/v8/MTP_ySUJH_bn48VBG8sNSlQlYEbsez9cZjKsNMjLOwM.eot);
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(//themes.googleusercontent.com/static/fonts/opensans/v8/MTP_ySUJH_bn48VBG8sNSlQlYEbsez9cZjKsNMjLOwM.eot) format('embedded-opentype'), url(//themes.googleusercontent.com/static/fonts/opensans/v8/MTP_ySUJH_bn48VBG8sNShsxEYwM7FgeyaSgU71cLG0.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url(//themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzFQlYEbsez9cZjKsNMjLOwM.eot);
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(//themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzFQlYEbsez9cZjKsNMjLOwM.eot) format('embedded-opentype'), url(//themes.googleusercontent.com/static/fonts/opensans/v8/k3k702ZOKiLJc3WVjuplzBsxEYwM7FgeyaSgU71cLG0.woff) format('woff');
}
@font-face {
  font-family: 'RobotoCondensed';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Condensed'), local('Roboto-Regular'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/styles/RobotoCondensed-Regular.ttf?1753621501') format('truetype');
}
@font-face {
  font-family: 'RobotoCondensed';
  font-style: italic;
  font-weight: 400;
  src: local('Roboto Condensed Italic'), local('Roboto-Regular'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/styles/RobotoCondensed-Italic.ttf?1753621501') format('truetype');
}
@font-face {
  font-family: 'RobotoCondensed';
  font-style: normal;
  font-weight: 800;
  src: local('Roboto Condensed Bold'), local('Roboto-Regular'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/styles/RobotoCondensed-Bold.ttf?1753621501') format('truetype');
}
@font-face {
  font-family: 'RobotoCondensed';
  font-style: italic;
  font-weight: 800;
  src: local('Roboto Condensed Bold Italic'), local('Roboto-Regular'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/styles/RobotoCondensed-BoldItalic.ttf?1753621501') format('truetype');
}
@font-face {
  font-family: 'RobotoCondensed';
  font-style: normal;
  font-weight: 200;
  src: local('Roboto Condensed Light'), local('Roboto-Regular'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/styles/RobotoCondensed-Light.ttf?1753621501') format('truetype');
}
@font-face {
  font-family: 'RobotoCondensed';
  font-style: italic;
  font-weight: 200;
  src: local('Roboto Condensed Light Italic'), local('Roboto-Regular'), url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/styles/RobotoCondensed-LightItalic.ttf?1753621501') format('truetype');
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.input-block-level {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
i,
em,
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0;
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}
.ui-front {
  z-index: 100;
}
.ui-state-disabled {
  cursor: default !important;
}
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}
.ui-button-icon-only {
  width: 2.2em;
}
button.ui-button-icon-only {
  width: 2.4em;
}
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}
.ui-button-text-only .ui-button-text {
  padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
input.ui-button {
  padding: .4em 1em;
}
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: .5em;
}
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 21px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px .4em;
  line-height: 1.5;
  min-height: 0;
  font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}
.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: .4em 0 .2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}
.ui-menu .ui-icon {
  position: absolute;
  top: .2em;
  left: .2em;
}
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}
.ui-slider-horizontal {
  height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: .8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 22px;
}
.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}
.ui-tabs {
  position: relative;
  padding: .2em;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom: 0;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}
.ui-tabs .ui-tabs-nav li a,
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
  border-width: 2px;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_flat_75_ffffff_40x100.png?1753621501') 50% 50% repeat-x;
  color: #222222;
}
.ui-widget-content > a {
  color: #222222;
}
.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #cccccc url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_highlight-soft_75_cccccc_1x100.png?1753621501') 50% 50% repeat-x;
  color: #222222;
  font-weight: bold;
}
.ui-widget-header a {
  color: #222222;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6 url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_glass_75_e6e6e6_1x400.png?1753621501') 50% 50% repeat-x;
  font-weight: normal;
  color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_glass_75_dadada_1x400.png?1753621501') 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #212121;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  background: #ffffff url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_glass_65_ffffff_1x400.png?1753621501') 50% 50% repeat-x;
  font-weight: normal;
  color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_glass_55_fbf9ee_1x400.png?1753621501') 50% 50% repeat-x;
  color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_glass_95_fef1ec_1x400.png?1753621501') 50% 50% repeat-x;
  color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}
.ui-icon {
  width: 16px;
  height: 16px;
  background-position: 16px 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_222222_256x240.png?1753621501');
}
.ui-widget-header .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_222222_256x240.png?1753621501');
}
.ui-state-default .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_888888_256x240.png?1753621501');
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_454545_256x240.png?1753621501');
}
.ui-state-active .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_454545_256x240.png?1753621501');
}
.ui-state-highlight .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_2e83ff_256x240.png?1753621501');
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-icons_cd0a0a_256x240.png?1753621501');
}
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}
.ui-widget-overlay {
  background: #aaaaaa url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_flat_0_aaaaaa_40x100.png?1753621501') 50% 50% repeat-x;
  opacity: .3;
  filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url('../../../../../../../../design/themes/responsive/media/images/lib/ui/ui-bg_flat_0_aaaaaa_40x100.png?1753621501') 50% 50% repeat-x;
  opacity: .3;
  filter: Alpha(Opacity=30);
  border-radius: 8px;
}
@font-face {
  font-family: 'glyphs';
  src: url('../../../../../../../../design/themes/responsive/media/fonts/glyphs.eot?1753621501');
  src: url('../../../../../../../../design/themes/responsive/media/fonts/glyphs.eot?1753621501#iefix') format('embedded-opentype'), url('../../../../../../../../design/themes/responsive/media/fonts/glyphs.woff?1753621501') format('woff'), url('../../../../../../../../design/themes/responsive/media/fonts/glyphs.ttf?1753621501') format('truetype'), url('../../../../../../../../design/themes/responsive/media/fonts/glyphs.svg?1753621501#glyphs') format('svg');
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: 'glyphs';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class*="ty-icon-"]:before {
  font-family: inherit;
}
.ty-icon-up-dir,
.ty-icon-right-dir,
.ty-icon-down-dir,
.ty-icon-left-dir,
.ty-icon-star-empty,
.ty-icon-th-list,
.ty-icon-heart,
.ty-icon-flight,
.ty-icon-ok,
.ty-icon-cancel,
.ty-icon-cancel-circle,
.ty-icon-minus-circle,
.ty-icon-right-thin,
.ty-icon-cw,
.ty-icon-left-circle,
.ty-icon-right-circle,
.ty-icon-help-circle,
.ty-icon-back,
.ty-icon-products-multicolumns,
.ty-icon-print,
.ty-icon-chat,
.ty-icon-article-alt,
.ty-icon-docs,
.ty-icon-zoom-in,
.ty-icon-zoom-out,
.ty-icon-down-open,
.ty-icon-left-open,
.ty-icon-right-open,
.ty-icon-up-open,
.ty-icon-down-micro,
.ty-icon-up-micro,
.ty-icon-right-open-thin,
.ty-icon-left-open-thin,
.ty-icon-products-without-options,
.ty-icon-short-list,
.ty-icon-plus-circle,
.ty-icon-user,
.ty-icon-doc-text,
.ty-icon-calendar,
.ty-icon-chart-bar,
.ty-icon-download,
.ty-icon-search,
.ty-icon-lock,
.ty-icon-popup,
.ty-icon-plus,
.ty-icon-folder,
.ty-icon-folder-open,
.ty-icon-mail,
.ty-icon-twitter,
.ty-icon-facebook,
.ty-icon-file,
.ty-icon-trashcan,
.ty-icon-d-arrow,
.ty-icon-bubble,
.ty-icon-upload,
.ty-icon-cog,
.ty-icon-square,
.ty-icon-arrow-up-right,
.ty-icon-arrow-up-left,
.ty-icon-arrow-down-left,
.ty-icon-arrow-down-right,
.ty-icon-arrow-down,
.ty-icon-arrow-up,
.ty-icon-arrow-left,
.ty-icon-arrow-right,
.ty-icon-star,
.ty-icon-star-half,
.ty-icon-refresh,
.ty-icon-basket,
.ty-icon-image,
.icon-image,
.ty-icon-edit,
.ty-icon-live-edit,
.ty-icon-gift,
.ty-icon-ban-circle,
.ty-icon-wrench,
.ty-icon-feed {
  font-family: 'glyphs';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.ty-icon-up-dir:before {
  content: "\e000";
}
.ty-icon-right-dir:before {
  content: "\e001";
}
.ty-icon-down-dir:before {
  content: "\e002";
}
.ty-icon-left-dir:before {
  content: "\e003";
}
.ty-icon-star-empty:before {
  content: "\e004";
}
.ty-icon-th-list:before {
  content: "\e005";
}
.ty-icon-heart:before {
  content: "\e006";
}
.ty-icon-flight:before {
  content: "\e007";
}
.ty-icon-ok:before {
  content: "\e008";
}
.ty-icon-cancel:before {
  content: "\e009";
}
.ty-icon-cancel-circle:before {
  content: "\e00a";
}
.ty-icon-minus-circle:before {
  content: "\e00b";
}
.ty-icon-right-thin:before {
  content: "\e00c";
}
.ty-icon-cw:before {
  content: "\e00d";
}
.ty-icon-left-circle:before {
  content: "\e00e";
}
.ty-icon-right-circle:before {
  content: "\e00f";
}
.ty-icon-help-circle:before {
  content: "\e010";
}
.ty-icon-back:before {
  content: "\e011";
}
.ty-icon-products-multicolumns:before {
  content: "\e012";
}
.ty-icon-print:before {
  content: "\e013";
}
.ty-icon-chat:before {
  content: "\e014";
}
.ty-icon-article-alt:before {
  content: "\e015";
}
.ty-icon-docs:before {
  content: "\e016";
}
.ty-icon-zoom-in:before {
  content: "\e017";
}
.ty-icon-zoom-out:before {
  content: "\e018";
}
.ty-icon-down-open:before {
  content: "\e019";
}
.ty-menu__item-toggle .ty-icon-down-open:before,
.ty-footer-menu__icon-open.ty-icon-down-open:before {
  content: "\e02c";
}
.ty-icon-left-open:before {
  content: "\e01a";
}
.ty-icon-right-open:before {
  content: "\e01b";
}
.ty-menu__item-toggle .ty-icon-up-open:before,
.ty-footer-menu__icon-hide.ty-icon-up-open:before {
  content: "\e00b";
}
.ty-icon-up-open:before {
  content: "\e01c";
}
.ty-icon-down-micro:before {
  content: "\e01d";
}
.ty-icon-up-micro:before {
  content: "\e01e";
}
.ty-icon-right-open-thin:before {
  content: "\e01f";
}
.ty-icon-left-open-thin:before {
  content: "\e020";
}
.ty-icon-products-without-options:before {
  content: "\e021";
}
.ty-icon-short-list:before {
  content: "\e022";
}
.ty-icon-plus-circle:before {
  content: "\e023";
}
.ty-icon-user:before {
  content: "\e024";
}
.ty-icon-doc-text:before {
  content: "\e025";
}
.ty-icon-calendar:before {
  content: "\e026";
}
.ty-icon-chart-bar:before {
  content: "\e027";
}
.ty-icon-download:before {
  content: "\e028";
}
.ty-icon-search:before {
  content: "\e029";
}
.ty-icon-lock:before {
  content: "\e02a";
}
.ty-icon-popup:before {
  content: "\e02b";
}
.ty-icon-plus:before {
  content: "\e02c";
}
.ty-icon-folder:before {
  content: "\e02d";
}
.ty-icon-folder-open:before {
  content: "\e02e";
}
.ty-icon-mail:before {
  content: "\e02f";
}
.ty-icon-twitter:before {
  content: "\e600";
}
.ty-icon-facebook:before {
  content: "\e601";
}
.ty-icon-file:before {
  content: "\e032";
}
.ty-icon-trashcan:before {
  content: "\e033";
}
.ty-icon-d-arrow:before {
  content: "\e602";
}
.ty-icon-bubble:before {
  content: "\e035";
}
.ty-icon-upload:before {
  content: "\e036";
}
.ty-icon-cog:before {
  content: "\e037";
}
.ty-icon-square:before {
  content: "\e038";
}
.ty-icon-arrow-up-right:before {
  content: "\e039";
}
.ty-icon-arrow-up-left:before {
  content: "\e03a";
}
.ty-icon-arrow-down-left:before {
  content: "\e03b";
}
.ty-icon-arrow-down-right:before {
  content: "\e03c";
}
.ty-icon-arrow-down:before {
  content: "\e03d";
}
.ty-icon-arrow-up:before {
  content: "\e03e";
}
.ty-icon-arrow-left:before {
  content: "\e03f";
}
.ty-icon-arrow-right:before {
  content: "\e040";
}
.ty-icon-star:before {
  content: "\e041";
}
.ty-icon-star-half:before {
  content: "\e042";
}
.ty-icon-refresh:before {
  content: "\e043";
}
.ty-icon-basket:before {
  content: "\e044";
}
.ty-icon-image:before {
  content: "\e045";
}
.icon-image:before {
  content: "\e045";
}
.ty-icon-edit:before {
  content: "\e046";
}
.ty-icon-live-edit:before {
  content: "\e046";
}
.ty-icon-gift:before {
  content: "\e048";
}
.ty-icon-ban-circle:before {
  content: "\e049";
}
.ty-icon-wrench:before {
  content: "\e04a";
}
.ty-icon-feed:before {
  content: "\e603";
}
.ty-flag {
  display: inline-block;
  vertical-align: top;
  width: 16px;
  height: 16px;
  margin: 0 5px 0 0;
  background: url('../../../../../../../../design/themes/responsive/media/images/icons/flags.png?1753621501') no-repeat -25px -25px;
}
.ty-flag.ty-flag-ad {
  background-position: 0px 0px;
}
.ty-flag.ty-flag-ae {
  background-position: -50px 0px;
}
.ty-flag.ty-flag-af {
  background-position: 0px -50px;
}
.ty-flag.ty-flag-ag {
  background-position: -50px -50px;
}
.ty-flag.ty-flag-ai {
  background-position: -100px 0px;
}
.ty-flag.ty-flag-al {
  background-position: -100px -50px;
}
.ty-flag.ty-flag-am {
  background-position: 0px -100px;
}
.ty-flag.ty-flag-an {
  background-position: -50px -100px;
}
.ty-flag.ty-flag-ao {
  background-position: -100px -100px;
}
.ty-flag.ty-flag-aq {
  background-position: -150px 0px;
}
.ty-flag.ty-flag-ar {
  background-position: -150px -50px;
}
.ty-flag.ty-flag-as {
  background-position: -150px -100px;
}
.ty-flag.ty-flag-at {
  background-position: 0px -150px;
}
.ty-flag.ty-flag-au {
  background-position: -50px -150px;
}
.ty-flag.ty-flag-aw {
  background-position: -100px -150px;
}
.ty-flag.ty-flag-ax {
  background-position: -150px -150px;
}
.ty-flag.ty-flag-az {
  background-position: -200px 0px;
}
.ty-flag.ty-flag-ba {
  background-position: -200px -50px;
}
.ty-flag.ty-flag-bb {
  background-position: -200px -100px;
}
.ty-flag.ty-flag-bd {
  background-position: -200px -150px;
}
.ty-flag.ty-flag-be {
  background-position: 0px -200px;
}
.ty-flag.ty-flag-bf {
  background-position: -50px -200px;
}
.ty-flag.ty-flag-bg {
  background-position: -100px -200px;
}
.ty-flag.ty-flag-bh {
  background-position: -150px -200px;
}
.ty-flag.ty-flag-bi {
  background-position: -200px -200px;
}
.ty-flag.ty-flag-bj {
  background-position: -250px 0px;
}
.ty-flag.ty-flag-bl {
  background-position: -250px -50px;
}
.ty-flag.ty-flag-bm {
  background-position: -250px -100px;
}
.ty-flag.ty-flag-bn {
  background-position: -250px -150px;
}
.ty-flag.ty-flag-bo {
  background-position: -250px -200px;
}
.ty-flag.ty-flag-br {
  background-position: 0px -250px;
}
.ty-flag.ty-flag-bs {
  background-position: -50px -250px;
}
.ty-flag.ty-flag-bt {
  background-position: -100px -250px;
}
.ty-flag.ty-flag-bw {
  background-position: -150px -250px;
}
.ty-flag.ty-flag-by {
  background-position: -200px -250px;
}
.ty-flag.ty-flag-bz {
  background-position: -250px -250px;
}
.ty-flag.ty-flag-ca {
  background-position: -300px 0px;
}
.ty-flag.ty-flag-cc {
  background-position: -300px -50px;
}
.ty-flag.ty-flag-cd {
  background-position: -300px -100px;
}
.ty-flag.ty-flag-cf {
  background-position: -300px -150px;
}
.ty-flag.ty-flag-cg {
  background-position: -300px -200px;
}
.ty-flag.ty-flag-ch {
  background-position: -300px -250px;
}
.ty-flag.ty-flag-ci {
  background-position: 0px -300px;
}
.ty-flag.ty-flag-ck {
  background-position: -50px -300px;
}
.ty-flag.ty-flag-cl {
  background-position: -100px -300px;
}
.ty-flag.ty-flag-cm {
  background-position: -150px -300px;
}
.ty-flag.ty-flag-cn {
  background-position: -200px -300px;
}
.ty-flag.ty-flag-co {
  background-position: -250px -300px;
}
.ty-flag.ty-flag-cr {
  background-position: -300px -300px;
}
.ty-flag.ty-flag-cu {
  background-position: -350px 0px;
}
.ty-flag.ty-flag-cv {
  background-position: -350px -50px;
}
.ty-flag.ty-flag-cx {
  background-position: -350px -100px;
}
.ty-flag.ty-flag-cy {
  background-position: -350px -150px;
}
.ty-flag.ty-flag-cz {
  background-position: -350px -200px;
}
.ty-flag.ty-flag-de {
  background-position: -350px -250px;
}
.ty-flag.ty-flag-dj {
  background-position: -350px -300px;
}
.ty-flag.ty-flag-dk,
.ty-flag.ty-flag-da {
  background-position: 0px -350px;
}
.ty-flag.ty-flag-dm {
  background-position: -50px -350px;
}
.ty-flag.ty-flag-do {
  background-position: -100px -350px;
}
.ty-flag.ty-flag-dz {
  background-position: -150px -350px;
}
.ty-flag.ty-flag-ec {
  background-position: -200px -350px;
}
.ty-flag.ty-flag-ee {
  background-position: -250px -350px;
}
.ty-flag.ty-flag-eg {
  background-position: -300px -350px;
}
.ty-flag.ty-flag-eh {
  background-position: -350px -350px;
}
.ty-flag.ty-flag-er {
  background-position: -400px 0px;
}
.ty-flag.ty-flag-es {
  background-position: -400px -50px;
}
.ty-flag.ty-flag-et {
  background-position: -400px -100px;
}
.ty-flag.ty-flag-eu {
  background-position: -400px -150px;
}
.ty-flag.ty-flag-fi {
  background-position: -400px -200px;
}
.ty-flag.ty-flag-fj {
  background-position: -400px -250px;
}
.ty-flag.ty-flag-fk {
  background-position: -400px -300px;
}
.ty-flag.ty-flag-fm {
  background-position: -400px -350px;
}
.ty-flag.ty-flag-fo {
  background-position: 0px -400px;
}
.ty-flag.ty-flag-fr {
  background-position: -50px -400px;
}
.ty-flag.ty-flag-ga {
  background-position: -100px -400px;
}
.ty-flag.ty-flag-gb,
.ty-flag.ty-flag-en {
  background-position: -150px -400px;
}
.ty-flag.ty-flag-gd {
  background-position: -200px -400px;
}
.ty-flag.ty-flag-ge {
  background-position: -250px -400px;
}
.ty-flag.ty-flag-gg {
  background-position: -300px -400px;
}
.ty-flag.ty-flag-gh {
  background-position: -350px -400px;
}
.ty-flag.ty-flag-gi {
  background-position: -400px -400px;
}
.ty-flag.ty-flag-gl {
  background-position: -450px 0px;
}
.ty-flag.ty-flag-gm {
  background-position: -450px -50px;
}
.ty-flag.ty-flag-gn {
  background-position: -450px -100px;
}
.ty-flag.ty-flag-gq {
  background-position: -450px -150px;
}
.ty-flag.ty-flag-gr,
.ty-flag.ty-flag-el {
  background-position: -450px -200px;
}
.ty-flag.ty-flag-gs {
  background-position: -450px -250px;
}
.ty-flag.ty-flag-gt {
  background-position: -450px -300px;
}
.ty-flag.ty-flag-gu {
  background-position: -450px -350px;
}
.ty-flag.ty-flag-gw {
  background-position: -450px -400px;
}
.ty-flag.ty-flag-gy {
  background-position: 0px -450px;
}
.ty-flag.ty-flag-hk {
  background-position: -50px -450px;
}
.ty-flag.ty-flag-hn {
  background-position: -100px -450px;
}
.ty-flag.ty-flag-hr {
  background-position: -150px -450px;
}
.ty-flag.ty-flag-ht {
  background-position: -200px -450px;
}
.ty-flag.ty-flag-hu {
  background-position: -250px -450px;
}
.ty-flag.ty-flag-id {
  background-position: -300px -450px;
}
.ty-flag.ty-flag-ie {
  background-position: -350px -450px;
}
.ty-flag.ty-flag-il {
  background-position: -400px -450px;
}
.ty-flag.ty-flag-im {
  background-position: -450px -450px;
}
.ty-flag.ty-flag-in {
  background-position: -500px 0px;
}
.ty-flag.ty-flag-iq {
  background-position: -500px -50px;
}
.ty-flag.ty-flag-ir {
  background-position: -500px -100px;
}
.ty-flag.ty-flag-is {
  background-position: -500px -150px;
}
.ty-flag.ty-flag-it {
  background-position: -500px -200px;
}
.ty-flag.ty-flag-je {
  background-position: -500px -250px;
}
.ty-flag.ty-flag-jm {
  background-position: -500px -300px;
}
.ty-flag.ty-flag-jo {
  background-position: -500px -350px;
}
.ty-flag.ty-flag-jp {
  background-position: -500px -400px;
}
.ty-flag.ty-flag-ke {
  background-position: -500px -450px;
}
.ty-flag.ty-flag-kg {
  background-position: 0px -500px;
}
.ty-flag.ty-flag-kh {
  background-position: -50px -500px;
}
.ty-flag.ty-flag-ki {
  background-position: -100px -500px;
}
.ty-flag.ty-flag-km {
  background-position: -150px -500px;
}
.ty-flag.ty-flag-kn {
  background-position: -200px -500px;
}
.ty-flag.ty-flag-kp {
  background-position: -250px -500px;
}
.ty-flag.ty-flag-kr {
  background-position: -300px -500px;
}
.ty-flag.ty-flag-kv {
  background-position: -350px -500px;
}
.ty-flag.ty-flag-kw {
  background-position: -400px -500px;
}
.ty-flag.ty-flag-ky {
  background-position: -450px -500px;
}
.ty-flag.ty-flag-kz {
  background-position: -500px -500px;
}
.ty-flag.ty-flag-la {
  background-position: -550px 0px;
}
.ty-flag.ty-flag-lb {
  background-position: -550px -50px;
}
.ty-flag.ty-flag-lc {
  background-position: -550px -100px;
}
.ty-flag.ty-flag-li {
  background-position: -550px -150px;
}
.ty-flag.ty-flag-lk {
  background-position: -550px -200px;
}
.ty-flag.ty-flag-lr {
  background-position: -550px -250px;
}
.ty-flag.ty-flag-ls {
  background-position: -550px -300px;
}
.ty-flag.ty-flag-lt {
  background-position: -550px -350px;
}
.ty-flag.ty-flag-lu {
  background-position: -550px -400px;
}
.ty-flag.ty-flag-lv {
  background-position: -550px -450px;
}
.ty-flag.ty-flag-ly {
  background-position: -550px -500px;
}
.ty-flag.ty-flag-ma {
  background-position: 0px -550px;
}
.ty-flag.ty-flag-mc {
  background-position: -50px -550px;
}
.ty-flag.ty-flag-md {
  background-position: -100px -550px;
}
.ty-flag.ty-flag-me {
  background-position: -150px -550px;
}
.ty-flag.ty-flag-mg {
  background-position: -200px -550px;
}
.ty-flag.ty-flag-mh {
  background-position: -250px -550px;
}
.ty-flag.ty-flag-mk {
  background-position: -300px -550px;
}
.ty-flag.ty-flag-ml {
  background-position: -350px -550px;
}
.ty-flag.ty-flag-mm {
  background-position: -400px -550px;
}
.ty-flag.ty-flag-mn {
  background-position: -450px -550px;
}
.ty-flag.ty-flag-mo {
  background-position: -500px -550px;
}
.ty-flag.ty-flag-mp {
  background-position: -550px -550px;
}
.ty-flag.ty-flag-mr {
  background-position: -600px 0px;
}
.ty-flag.ty-flag-ms {
  background-position: -600px -50px;
}
.ty-flag.ty-flag-mt {
  background-position: -600px -100px;
}
.ty-flag.ty-flag-mu {
  background-position: -600px -150px;
}
.ty-flag.ty-flag-mv {
  background-position: -600px -200px;
}
.ty-flag.ty-flag-mw {
  background-position: -600px -250px;
}
.ty-flag.ty-flag-mx {
  background-position: -600px -300px;
}
.ty-flag.ty-flag-my {
  background-position: -600px -350px;
}
.ty-flag.ty-flag-mz {
  background-position: -600px -400px;
}
.ty-flag.ty-flag-na {
  background-position: -600px -450px;
}
.ty-flag.ty-flag-nc {
  background-position: -600px -500px;
}
.ty-flag.ty-flag-ne {
  background-position: -600px -550px;
}
.ty-flag.ty-flag-nf {
  background-position: 0px -600px;
}
.ty-flag.ty-flag-ng {
  background-position: -50px -600px;
}
.ty-flag.ty-flag-ni {
  background-position: -100px -600px;
}
.ty-flag.ty-flag-nl {
  background-position: -150px -600px;
}
.ty-flag.ty-flag-no {
  background-position: -200px -600px;
}
.ty-flag.ty-flag-np {
  background-position: -250px -600px;
}
.ty-flag.ty-flag-nr {
  background-position: -300px -600px;
}
.ty-flag.ty-flag-nu {
  background-position: -350px -600px;
}
.ty-flag.ty-flag-nz {
  background-position: -400px -600px;
}
.ty-flag.ty-flag-om {
  background-position: -450px -600px;
}
.ty-flag.ty-flag-pa {
  background-position: -500px -600px;
}
.ty-flag.ty-flag-pe {
  background-position: -550px -600px;
}
.ty-flag.ty-flag-pg {
  background-position: -600px -600px;
}
.ty-flag.ty-flag-ph {
  background-position: -650px 0px;
}
.ty-flag.ty-flag-pk {
  background-position: -650px -50px;
}
.ty-flag.ty-flag-pl {
  background-position: -650px -100px;
}
.ty-flag.ty-flag-pn {
  background-position: -650px -150px;
}
.ty-flag.ty-flag-pr {
  background-position: -650px -200px;
}
.ty-flag.ty-flag-ps {
  background-position: -650px -250px;
}
.ty-flag.ty-flag-pt {
  background-position: -650px -300px;
}
.ty-flag.ty-flag-pw {
  background-position: -650px -350px;
}
.ty-flag.ty-flag-py {
  background-position: -650px -400px;
}
.ty-flag.ty-flag-qa {
  background-position: -650px -450px;
}
.ty-flag.ty-flag-ro {
  background-position: -650px -500px;
}
.ty-flag.ty-flag-rs {
  background-position: -650px -550px;
}
.ty-flag.ty-flag-ru {
  background-position: -650px -600px;
}
.ty-flag.ty-flag-rw {
  background-position: 0px -650px;
}
.ty-flag.ty-flag-sa {
  background-position: -50px -650px;
}
.ty-flag.ty-flag-sb {
  background-position: -100px -650px;
}
.ty-flag.ty-flag-sc {
  background-position: -150px -650px;
}
.ty-flag.ty-flag-sd {
  background-position: -200px -650px;
}
.ty-flag.ty-flag-se {
  background-position: -250px -650px;
}
.ty-flag.ty-flag-sg {
  background-position: -300px -650px;
}
.ty-flag.ty-flag-sh {
  background-position: -350px -650px;
}
.ty-flag.ty-flag-si {
  background-position: -400px -650px;
}
.ty-flag.ty-flag-sk {
  background-position: -450px -650px;
}
.ty-flag.ty-flag-sl {
  background-position: -500px -650px;
}
.ty-flag.ty-flag-sm {
  background-position: -550px -650px;
}
.ty-flag.ty-flag-sn {
  background-position: -600px -650px;
}
.ty-flag.ty-flag-so {
  background-position: -650px -650px;
}
.ty-flag.ty-flag-sr {
  background-position: -700px 0px;
}
.ty-flag.ty-flag-ss {
  background-position: -700px -50px;
}
.ty-flag.ty-flag-st {
  background-position: -700px -100px;
}
.ty-flag.ty-flag-sv {
  background-position: -700px -150px;
}
.ty-flag.ty-flag-sy {
  background-position: -700px -200px;
}
.ty-flag.ty-flag-sz {
  background-position: -700px -250px;
}
.ty-flag.ty-flag-tc {
  background-position: -700px -300px;
}
.ty-flag.ty-flag-td {
  background-position: -700px -350px;
}
.ty-flag.ty-flag-tg {
  background-position: -700px -400px;
}
.ty-flag.ty-flag-th {
  background-position: -700px -450px;
}
.ty-flag.ty-flag-tj {
  background-position: -700px -500px;
}
.ty-flag.ty-flag-tm {
  background-position: -700px -550px;
}
.ty-flag.ty-flag-tn {
  background-position: -700px -600px;
}
.ty-flag.ty-flag-to {
  background-position: -700px -650px;
}
.ty-flag.ty-flag-tp {
  background-position: 0px -700px;
}
.ty-flag.ty-flag-tr {
  background-position: -50px -700px;
}
.ty-flag.ty-flag-tt {
  background-position: -100px -700px;
}
.ty-flag.ty-flag-tv {
  background-position: -150px -700px;
}
.ty-flag.ty-flag-tw {
  background-position: -200px -700px;
}
.ty-flag.ty-flag-tz {
  background-position: -250px -700px;
}
.ty-flag.ty-flag-ua {
  background-position: -300px -700px;
}
.ty-flag.ty-flag-ug {
  background-position: -350px -700px;
}
.ty-flag.ty-flag-us {
  background-position: -400px -700px;
}
.ty-flag.ty-flag-uy {
  background-position: -450px -700px;
}
.ty-flag.ty-flag-uz {
  background-position: -500px -700px;
}
.ty-flag.ty-flag-va {
  background-position: -550px -700px;
}
.ty-flag.ty-flag-vc {
  background-position: -600px -700px;
}
.ty-flag.ty-flag-ve {
  background-position: -650px -700px;
}
.ty-flag.ty-flag-vg {
  background-position: -700px -700px;
}
.ty-flag.ty-flag-vi {
  background-position: -750px 0px;
}
.ty-flag.ty-flag-vn {
  background-position: -750px -50px;
}
.ty-flag.ty-flag-vu {
  background-position: -750px -100px;
}
.ty-flag.ty-flag-ws {
  background-position: -750px -150px;
}
.ty-flag.ty-flag-ye {
  background-position: -750px -200px;
}
.ty-flag.ty-flag-yt {
  background-position: -750px -250px;
}
.ty-flag.ty-flag-za {
  background-position: -750px -300px;
}
.ty-flag.ty-flag-zh {
  background-position: -200px -300px;
}
.ty-flag.ty-flag-zm {
  background-position: -750px -350px;
}
.ty-flag.ty-flag-zw {
  background-position: -750px -400px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2) {
  .ty-flag {
    background-image: url('../../../../../../../../design/themes/responsive/media/images/icons/flags@2x.png?1753621501');
    background-size: 800px 800px;
  }
}
@media print {
  body {
    background: #FFFFFF;
    min-width: 0;
  }
  #ci_header,
  #ci_footer {
    display: none;
  }
  .product-main-info h1.ty-mainbox-title,
  .in-stock,
  .ty-mainbox-title span {
    color: #333;
  }
  .ty-footer-menu div,
  .ty-payment-icons,
  .qty,
  .sidebox-wrapper,
  .ty-sort-container {
    display: none;
  }
  .central-column,
  .container-left .central-column {
    margin: 0;
    overflow: visible;
  }
  .ty-helper-container {
    width: 700px;
  }
  .container {
    width: auto;
    border: 0;
  }
}
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
}
body {
  background: #fff;
}
body,
p,
div,
li {
  color: #4d4d4f;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
}
p {
  margin: 0;
  padding: 6px 0;
}
a {
  font-family: Open Sans;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  outline: none;
  color: #ff9900;
  cursor: pointer;
  border-bottom: 0;
  -webkit-transition: all 150ms;
  -moz-transition: all 150ms;
  -o-transition: all 150ms;
  transition: all 150ms;
}
a:hover {
  color: #cc7a00;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ol {
  padding: 0 0 0 15px;
}
li {
  margin: 0;
  padding: 2px 0;
  text-indent: 0;
  list-style: none;
}
hr {
  border: 0;
  border-bottom: 1px solid #fff;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-size: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  color: #4d4d4f;
}
h1,
h2 {
  text-decoration: none;
  font-weight: bold;
  font-style: normal;
  font-size: 26px;
  font-family: Open Sans;
}
.ty-btn {
  display: inline-block;
  margin-bottom: 0;
  padding: 6px 14px;
  outline: 0px;
  border: 1px solid rgba(0,0,0,0);
  background: #BDC3C7;
  background-image: none;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 1.428571429;
  cursor: pointer;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: background 200ms;
  -moz-transition: background 200ms;
  -o-transition: background 200ms;
  transition: background 200ms;
}
.ty-btn + .ty-btn {
  margin-left: 10px;
}
.ty-btn i {
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.ty-btn:hover {
  color: #fff;
  text-decoration: none;
}
.ty-btn__big {
  padding: 6px 17px;
  text-transform: uppercase;
}
.ty-btn__text,
.ty-btn__text:hover {
  padding: 0;
  background: none;
  color: #ff9900;
}
.ty-btn__primary {
  color: #fff;
}
.ty-btn__primary:hover {
  background: #ff781f;
  color: #fff;
}
.ty-btn__primary.ty-btn__text {
  color: #ff6600;
}
.ty-btn__secondary {
  background: #00b5a9;
  color: #fff;
}
.ty-btn__secondary:hover {
  background: #00e8d9;
  color: #fff;
}
.ty-btn__tertiary {
  background: #00c5a9;
  color: #fff;
}
.ty-btn__tertiary:hover {
  background: #00f8d5;
  color: #fff;
}
.buttons-container .buttons-container {
  margin-top: 0;
}
.ty-btn-go {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0;
  width: 32px;
  height: 30px;
  border: 0px;
  border-left: 1px solid #cdcdcd;
  background: #fff;
  cursor: pointer;
}
.ty-btn-go__icon {
  position: absolute;
  top: 5px;
  left: 12px;
  font-size: 20px;
  line-height: 20px;
  color: #808080;
}
.ty-float-left {
  float: left;
}
.ty-float-right {
  float: right;
}
.ty-clear-both {
  clear: both;
}
.ty-valign {
  vertical-align: middle;
}
.ty-valign-top {
  vertical-align: top;
}
.ty-valign-bottom {
  vertical-align: bottom;
}
.hidden {
  display: none;
  visibility: visible;
}
.ty-strong {
  font-weight: bold;
}
.ty-italic {
  font-style: italic;
}
.ty-lowercase {
  text-transform: lowercase;
}
.ty-uppercase {
  text-transform: uppercase;
}
.ty-left {
  text-align: left;
}
.ty-right {
  text-align: right;
}
.ty-center {
  text-align: center;
}
.ty-justify {
  text-align: justify;
}
.ty-strike {
  text-decoration: line-through;
}
.ty-center-block {
  margin: 0 auto;
}
.ty-inline {
  display: inline;
}
.ty-block {
  display: block;
}
.ty-inline-block {
  display: inline-block;
}
.ty-scroll-x {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 3px;
  width: 100%;
  height: 100%;
}
.ty-hand {
  cursor: pointer;
}
.ty-nowrap {
  white-space: nowrap;
}
.ty-overflow-hidden {
  overflow: hidden;
}
.ty-width-full {
  width: 100%;
}
.ty-p-none {
  padding: 0;
}
.ty-m-none {
  margin: 0;
}
.ty-mb-l {
  margin-bottom: 30px;
}
.ty-mt-l {
  margin-top: 30px;
}
.ty-mb-m {
  margin-bottom: 20px;
}
.ty-mt-m {
  margin-top: 20px;
}
.ty-mtb-s {
  margin: 10px 0;
}
.ty-mtb-xs {
  margin: 5px 0;
}
.ty-ml-s {
  margin-left: 10px;
}
.ty-mt-s {
  margin-top: 10px;
}
.ty-mt-m {
  margin-top: 20px;
}
.ty-mb-s {
  margin-bottom: 10px;
}
.ty-position-relative {
  position: relative;
}
.cm-opacity {
  opacity: 0.3;
}
.cm-hint {
  color: #8c8c8f;
}
input[type="text"],
input[type="password"],
textarea,
select {
  padding: 4px 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
  font-family: Open Sans;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="text"],
input[type="password"] {
  height: 32px;
  -webkit-appearance: none;
  border-radius: 0;
}
select[multiple="multiple"] {
  min-height: 80px;
}
.radio,
.checkbox,
input[type="radio"],
input[type="checkbox"] {
  margin: -4px 6px 0 0;
  padding: 0;
  vertical-align: middle;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: 0;
  border-color: #ff9900;
  -webkit-transition: border 0.2s linear 0s;
  -moz-transition: border 0.2s linear 0s;
  -o-transition: border 0.2s linear 0s;
  transition: border 0.2s linear 0s;
}
select {
  padding: 4px 3px 3px;
  min-width: 4em;
  max-width: 100%;
  height: 2.2em;
  line-height: 2.2em;
}
.ty-control-group {
  margin: 0 0 12px 0;
  vertical-align: middle;
}
.ty-control-group:before,
.ty-control-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-control-group:after {
  clear: both;
}
.ty-control-group__label {
  float: left;
  padding: 6px 0;
  margin-right: 10px;
  width: 110px;
  color: #343435;
}
.ty-control-group__title {
  display: block;
  padding: 6px 0;
}
.ty-control-group__item {
  display: inline-block;
  padding: 6px 0;
}
.ty-control-group label.hidden {
  display: none;
}
.ty-input-append {
  position: relative;
  margin: 10px 0 0 0;
}
.ty-input-append .ty-input-text {
  width: 100%;
  padding-right: 35px;
}
.ty-select-field {
  padding: 3px 0;
}
.ty-select-field__label {
  display: block;
  padding: 3px 0;
  margin-right: 10px;
  font-size: 90%;
}
.ty-select-field__checkbox {
  vertical-align: middle;
}
label.cm-failed-label {
  color: #bf4d4d;
}
label.cm-required:after {
  padding-left: 3px;
  color: #ea7162;
  content: "*";
  font-size: 13px;
  line-height: 1px;
}
input[type="text"].cm-failed-field,
input[type="password"].cm-failed-field,
textarea.cm-failed-field,
.cm-field-container.cm-failed-field input[type="text"] {
  border: 1px solid #bf4d4d;
  background: #fff;
}
.ty-error-text {
  color: #b94a48;
}
.disabled,
select.disabled {
  background: #e3e3e3;
}
.ty-input-text {
  width: auto;
}
.ty-input-text-medium {
  width: 300px;
}
.ty-input-text-large {
  width: 550px;
}
.ty-input-text-short {
  width: 50px;
}
.ty-input-text-full {
  width: 100%;
}
.ty-input-textarea {
  resize: vertical;
}
.ty-table {
  width: 100%;
  margin-top: 30px;
  border: 1px solid #fff;
  border-width: 1px 0px 1px 1px;
  border-bottom: none;
}
.ty-table th {
  padding: 12px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #ffffff;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  font-weight: bold;
  line-height: normal;
}
.ty-table th i {
  margin-left: 5px;
  position: relative;
  top: 3px;
  font-size: 16px;
  color: #BDC3C7;
}
.ty-table tr,
.table .table tr {
  background-color: #fff;
}
.ty-table table tr {
  background-color: transparent;
}
.ty-table td,
.ty-table .table td {
  padding: 13px;
  border-right: 1px solid #ECF0F1;
  border-bottom: 1px solid #ECF0F1;
}
.ty-table tbody tr:nth-child(2n) {
  background: #ffffff;
}
.ty-table th,
.ty-table th a {
  color: #404040;
  font-weight: bold;
}
.ty-table__responsive-header {
  display: none;
}
.help-inline {
  display: block;
}
.help-inline p {
  padding: 4px 0px 0px 0px;
  color: #b94a48;
}
.ty-dir-list {
  display: inline-block;
  width: 7px;
  font-size: 15px;
  margin-right: 5px;
  cursor: pointer;
}
.ty-extra-link {
  border-bottom: 1px dotted #4d4d4d;
  padding: 0;
  text-decoration: none;
  color: #343435;
  cursor: pointer;
}
.ty-dashed-link {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  text-decoration: none;
}
.ty-remove {
  position: relative;
  display: inline-block;
  width: auto;
  white-space: nowrap;
  text-decoration: none;
}
.ty-remove:hover {
  text-decoration: none;
}
.ty-remove__icon {
  vertical-align: middle;
}
.ty-remove__txt {
  padding-left: 5px;
  font-size: 12px;
  color: #cccccc;
  vertical-align: middle;
}
.ty-remove:hover .ty-remove__txt,
.ty-remove:hover .ty-remove__icon {
  color: #cccccc;
}
.ty-delete-big,
.ty-delete-icon {
  vertical-align: middle;
}
.ty-delete-big:hover,
.ty-delete-icon:hover {
  text-decoration: none;
}
.ty-delete-big__icon {
  font-size: 19px;
  color: #cccccc;
}
.ty-caret {
  position: absolute;
  top: -16px;
  left: 14px;
  float: left;
  overflow: hidden;
  width: 16px;
  height: 16px;
}
.ty-caret .ty-caret-outer,
.ty-caret .ty-caret-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  margin-left: -1px;
}
.ty-caret .ty-caret-outer {
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-right: 16px solid #fff;
}
.ty-caret .ty-caret-inner {
  top: 2px;
  left: 1px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 14px solid #fff;
}
.ty-caret-bottom {
  position: absolute;
  bottom: -16px;
  left: 14px;
  float: left;
  overflow: hidden;
  width: 16px;
  height: 16px;
}
.ty-caret-bottom .ty-caret-outer,
.ty-caret-bottom .ty-caret-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  margin-left: -1px;
}
.ty-caret-bottom .ty-caret-outer {
  width: 0;
  height: 0;
  border-bottom: 16px solid transparent;
  border-left: 16px solid #fff;
}
.ty-caret-bottom .ty-caret-inner {
  top: -1px;
  left: 2px;
  width: 0;
  height: 0;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #fff;
}
.ty-caret-info {
  position: absolute;
  top: -7px;
  left: 12px;
  float: left;
  overflow: hidden;
  width: 12px;
  height: 7px;
}
.ty-caret-info .ty-caret-outer,
.ty-caret-info .ty-caret-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  margin-left: -1px;
}
.ty-caret-info .ty-caret-outer {
  border-right: 7px solid transparent;
  border-bottom: 7px solid #bdc3c7;
  border-left: 7px solid transparent;
}
.ty-caret-info .ty-caret-inner {
  top: 1px;
  left: 1px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}
.ty-no-items {
  padding: 60px 20px;
  background: #F8F9F9;
  color: #BDC3C7;
  text-align: center;
  font-size: 115%;
  margin-bottom: 20px;
}
.ty-icon-cancel-circle {
  font-size: 16px;
  line-height: 16px;
  color: #b3b3b3;
}
.ty-menu {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ty-menu:before,
.ty-menu:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-menu:after {
  clear: both;
}
.ty-menu__items {
  background: #fff;
  position: relative;
}
.ty-menu__items:before,
.ty-menu__items:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-menu__items:after {
  clear: both;
}
.ty-menu__item {
  padding: 0px;
  display: block;
  float: left;
}
.ty-menu__item-active .ty-menu__item-link {
  background: #f2f2f2;
}
.no-touch .ty-menu__item:hover .ty-menu__submenu-items,
.is-hover-menu .ty-menu__submenu-items {
  display: block;
}
.no-touch .ty-menu__item:hover .ty-menu__item-link,
.is-hover-menu .ty-menu__item-link,
.is-hover-menu.ty-menu__item-active .ty-menu__item-link {
  background: #f7f7f7;
  color: white;
  text-shadow: none;
}
.ty-menu__item .ty-menu__item-link {
  color: #444;
  position: relative;
  padding: 13px 20px;
  display: block;
  min-height: 46px;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ty-menu__item .ty-menu__item-link .ty-icon-down-micro {
  position: absolute;
  font-size: 20px;
  right: 12px;
  top: 13px;
}
.ty-menu__submenu-items {
  min-width: 200px;
  display: none;
  position: absolute;
  background: white;
  z-index: 100;
  border: 1px solid #f5f5f5;
  border-top: 0;
  padding: 15px 16px;
}
.ty-menu__submenu-items .ty-menu__submenu-item {
  margin-bottom: 10px;
}
.ty-menu__submenu-items .ty-menu__submenu-link {
  color: #ff9900;
}
.ty-menu__submenu-items .ty-top-mine__submenu-col {
  margin: 0px 10px 0px 0px;
  display: inline-block;
  vertical-align: top;
  min-width: 139px;
}
.ty-menu__submenu-items .ty-top-mine__submenu-col:last-child {
  margin-right: 1px;
}
.ty-menu__submenu-item-header {
  min-height: 25px;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #e5e5e5;
}
.ty-menu__submenu-item-header .ty-menu__submenu-link {
  font-weight: bold;
  color: #ff9900;
}
.ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item-active a {
  color: #FFF;
  background: #ff9900;
  padding: 2px 6px;
}
.ty-menu__submenu-dropdown-bottom {
  display: block;
  background: #ECF0F1;
  margin: 0px -16px -15px;
  padding: 10px;
  text-align: right;
}
.ty-menu-vertical .ty-menu__items {
  border-bottom: 1px solid #34495E;
}
.ty-menu-vertical .ty-menu__item {
  float: none;
  position: relative;
}
.ty-menu-vertical .ty-menu__item .ty-menu__submenu {
  display: none;
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
}
.ty-menu-vertical .ty-menu__submenu-items {
  padding: 0;
  border: 1px solid #f5f5f5;
}
.no-touch .ty-menu-vertical .ty-menu__submenu .ty-menu__item:hover > .ty-menu__submenu-item-header .ty-menu__item-link,
.ty-menu-vertical .ty-menu__submenu .is-hover-menu > .ty-menu__submenu-item-header .ty-menu__item-link {
  background: #ff9900;
  color: #444;
}
.no-touch .ty-menu-vertical .ty-menu__submenu .ty-menu__item:hover i,
.ty-menu-vertical .ty-menu__submenu .is-hover-menu i {
  color: #fff;
}
.ty-menu-vertical .ty-menu__item .ty-menu__submenu .ty-menu__item-link {
  color: #ff9900;
  background: white;
  padding: 14px 20px;
}
.no-touch .ty-menu-vertical .ty-menu__item:hover > .ty-menu__submenu,
.ty-menu-vertical .is-hover-menu > .ty-menu__submenu {
  display: block;
}
.no-touch .ty-menu-vertical .ty-menu__item .ty-menu__submenu .ty-menu__item:hover > .ty-menu__item-link {
  background: #ff9900;
  color: white;
}
.ty-menu-vertical .ty-menu__item .ty-icon-left-open {
  display: none;
}
.ty-menu__item-arrow i {
  position: absolute;
  z-index: 5;
  right: 15px;
  top: 17px;
  color: #a1a6aa;
}
.ty-menu-vertical .ty-menu__submenu-item-header {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border: 0px;
}
.ty-menu-vertical .ty-menu__items.rtl {
  text-align: right;
}
.ty-menu-vertical .ty-menu__items.rtl .ty-icon-right-open {
  display: none;
}
.ty-menu-vertical .ty-menu__items.rtl .ty-icon-left-open {
  left: 15px;
  right: auto;
  display: block;
}
.ty-menu-vertical .ty-menu__items.rtl .ty-menu__submenu {
  width: 202px;
  right: 100%;
  left: auto;
}
.ty-menu-vertical .ty-menu__items.rtl .ty-menu__submenu-items {
  width: 200px;
}
.ty-menu__submenu-to-right {
  position: relative;
}
.ty-menu__submenu-to-right .ty-menu__submenu-items {
  right: 0px;
}
.ty-menu-item__sale .ty-menu__item-link,
.no-touch .ty-menu-item__sale .ty-menu__item-link:hover {
  color: yellow;
}
html.dialog-is-open {
  overflow: hidden;
}
html.dialog-is-open body {
  overflow: scroll;
}
.ui-widget,
.ui-widget button {
  font-family: 'Open Sans', sans-serif;
}
.object-container {
  padding: 10px 20px 0px 20px;
  background: #fff;
  overflow: auto;
}
.object-container .notification-content {
  top: 11px;
  right: 24px;
  min-width: 420px;
  position: absolute;
  z-index: 1510;
}
.ui-widget select,
.ui-widget textarea {
  font-weight: normal;
}
.ui-widget-content.ui-dialog {
  padding: 0;
  border: none;
  max-width: 930px;
}
.object-container .ty-control-group__label {
  float: none;
  width: auto;
  display: inline-block;
  min-width: 120px;
  vertical-align: top;
}
.ui-dialog .ui-dialog-content {
  overflow: visible;
  padding: 0;
  min-height: 120px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui-widget-content.ui-dialog {
  overflow: hidden;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 13px 20px 10px;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  background: #ffffff;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-corner-all {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ui-dialog .ui-resizable-se {
  right: 1px;
  bottom: 1px;
}
.ui-widget-overlay {
  position: fixed;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: url('../../../../../../../../design/themes/responsive/media/images/picker_bg_outside.png?1753621501') repeat-x 0 -50% scroll #000;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
div.ui-dialog .ui-dialog-title {
  width: auto;
  margin: 0;
  color: #2c3e50;
  font-weight: normal;
  font-size: 18px;
  padding-right: 20px;
}
.ui-dialog .ui-dialog-titlebar-close {
  top: 27px;
  right: 13px;
  padding: 0;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: url('../../../../../../../../design/themes/responsive/media/images/icons/openhand.cur?1753621501'), move;
}
.ui-dialog .buttons-container {
  margin: 0px -20px;
}
.ui-dialog .buttons-container.picker {
  padding: 13px 0;
  width: 100%;
  border-top: 1px solid #ffffff;
  background-color: #f9f9f9;
}
.buttons-container-picker {
  padding: 0;
  width: 100%;
}
.buttons-container-picker {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 20px;
  border: 1px solid #e3e3e3;
}
.ui-dialog .buttons-container.picker > div {
  margin: 0 15px;
}
.ui-widget-header .ui-icon-closethick {
  color: #e6e6e6;
  background: none;
  margin: -10px 0 0 -10px;
  text-indent: 0;
  font: 13px/1 'glyphs';
  speak: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0.7;
}
.ui-widget-header .ui-icon-closethick.ui-state-hover {
  opacity: 1;
}
.ui-widget-header .ui-icon-closethick:before {
  font-family: 'glyphs';
  content: "\e009";
  speak: none;
  -webkit-font-smoothing: antialiased;
}
.ui-widget-header .ui-dialog-titlebar-close.ui-state-hover {
  border: none;
  background: none;
}
.ui-widget-header .ui-dialog-titlebar-close.ui-state-hover span:before {
  color: #ffffff;
}
.ui-widget-header .ui-state-default {
  background: none;
  border: 0;
}
.ui-dialog-dragging {
  background: #f7f7e7 none;
  opacity: 0.6;
}
.ui-dialog-dragging .ui-resizable-handle {
  display: none;
}
.ui-dialog-dragging .ui-dialog-content {
  visibility: hidden;
}
.ty-wysiwyg-content h1 {
  font-size: 36px;
  font-weight: bold;
}
.ty-wysiwyg-content h2 {
  font-weight: bold;
  font-size: 30px;
}
.ty-wysiwyg-content h3 {
  font-weight: bold;
  font-size: 24px;
}
.ty-wysiwyg-content h4 {
  font-weight: bold;
  font-size: 18px;
}
.ty-wysiwyg-content h5 {
  font-weight: bold;
  font-size: 14px;
}
.ty-wysiwyg-content h6 {
  font-weight: bold;
  font-size: 12px;
}
.ty-wysiwyg-content h1,
.ty-wysiwyg-content h2,
.ty-wysiwyg-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.ty-wysiwyg-content h4,
.ty-wysiwyg-content h5,
.ty-wysiwyg-content h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.ty-wysiwyg-content td,
.ty-wysiwyg-content th {
  border: thin solid #dcdcdc;
  padding: 5px;
}
.ty-wysiwyg-content ul {
  padding: 0 0 0 20px;
  list-style-type: disc;
}
.ty-wysiwyg-content ul li {
  list-style-type: disc;
}
.ty-wysiwyg-content ol {
  padding: 0 0 0 20px;
  list-style-type: decimal;
}
.ty-wysiwyg-content ol li {
  list-style-type: decimal;
}
.ty-wysiwyg-content .no-border td {
  border: 0;
}
.ty-column1 {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column2 {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column3 {
  display: inline-block;
  width: 33.3333333333%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column4 {
  display: inline-block;
  width: 25%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column5 {
  display: inline-block;
  width: 20%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column6 {
  display: inline-block;
  width: 16.6666666667%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column7 {
  display: inline-block;
  width: 14.2857142857%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column8 {
  display: inline-block;
  width: 12.5%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column9 {
  display: inline-block;
  width: 11.1111111111%;
  vertical-align: top;
  margin-right: -0.25em;
}
.ty-column10 {
  display: inline-block;
  width: 10%;
  vertical-align: top;
  margin-right: -0.25em;
}
@media (max-width: 979px) {
  .ty-column1 {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-right: -0.25em;
  }
  .ty-column2 {
    width: 100%;
  }
  .ty-column3 {
    width: 50%;
  }
  .ty-column4 {
    width: 33.3333333333%;
  }
  .ty-column5 {
    width: 25%;
  }
  .ty-column6 {
    width: 20%;
  }
  .ty-column7 {
    width: 16.6666666667%;
  }
  .ty-column8 {
    width: 14.2857142857%;
  }
  .ty-column9 {
    width: 12.5%;
  }
  .ty-column10 {
    width: 11.1111111111%;
  }
}
@media (max-width: 767px) {
  .ty-column1 {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-right: -0.25em;
  }
  .ty-column2 {
    width: 50%;
  }
  .ty-column3 {
    width: 50%;
  }
  .ty-column4 {
    width: 50%;
  }
  .ty-column5 {
    width: 50%;
  }
  .ty-column6 {
    width: 50%;
  }
  .ty-column7 {
    width: 50%;
  }
  .ty-column8 {
    width: 50%;
  }
  .ty-column9 {
    width: 50%;
  }
  .ty-column10 {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .ty-column1 {
    width: 100%;
  }
  .ty-column2 {
    width: 100%;
  }
  .ty-column3 {
    width: 100%;
  }
  .ty-column4 {
    width: 100%;
  }
  .ty-column5 {
    width: 100%;
  }
  .ty-column6 {
    width: 100%;
  }
  .ty-column7 {
    width: 100%;
  }
  .ty-column8 {
    width: 100%;
  }
  .ty-column9 {
    width: 100%;
  }
  .ty-column10 {
    width: 100%;
  }
}
.tygh-top-panel {
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(to bottom,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
}
.top-menu-grid {
  padding-top: 38px;
}
.top-quick-links {
  margin: 6px 0 0;
}
.top-quick-links a {
  color: #4d4d4f;
}
.our-brands-grid {
  margin-bottom: 80px;
}
.ty-order-summary {
  margin-top: 66px;
}
.tygh-header > div {
  padding-top: 39px;
}
.header-widget-grid .top-menu-grid {
  padding-top: 15px;
}
.search-widget-block-grid {
  padding: 15px 0;
}
.tygh-header > div {
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(to bottom,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
}
.tygh-content > div {
  padding-bottom: 40px;
}
.tygh-content > div {
  background-color: #fff;
}
.side-grid .ty-account-info__user-arrow {
  display: none;
}
.side-grid .ty-dropdown-box__content {
  right: auto;
  left: 0;
}
.main-content-grid {
  width: 100%;
}
.footer-content-grid {
  margin: 30px 0px;
}
.ty-holiday-gift-banner {
  margin-top: -20px;
  width: 100%;
}
.top-my-account {
  margin-left: 22px;
}
.buttons-container {
  padding: 17px 20px;
  background: #ffffff;
}
.buttons-container:before,
.buttons-container:after {
  display: table;
  content: "";
  line-height: 0;
}
.buttons-container:after {
  clear: both;
}
.ty-mainbox-body .buttons-container {
  margin: 25px 0px;
}
.ty-mainbox-title {
  margin-bottom: 10px;
}
.ty-mainbox-title:before,
.ty-mainbox-title:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-mainbox-title:after {
  clear: both;
}
.ty-mainbox-title__left {
  float: left;
}
.ty-mainbox-title__right {
  display: block;
  float: right;
  margin-top: 7px;
  font-weight: normal;
  font-size: 70%;
}
.ty-mainbox-title .ty-status {
  float: right;
  padding-top: 10px;
  color: #404040;
  font-style: normal;
  font-size: 14px;
}
.ty-mainbox-title .ty-date {
  font-style: normal;
  font-size: 70%;
  white-space: nowrap;
}
.ty-mainbox-container.ty-float-right,
.ty-mainbox-container.ty-float-left {
  width: inherit;
}
.ty-subheaders-group {
  margin: 0 15px 21px 15px;
}
.ty-subheader {
  margin: 0;
  padding: 7px 0 10px 0;
  font-size: 18px;
  color: #34495E;
}
.ty-subheader__tooltip {
  font-size: inherit;
}
.ty-mainbox-simple-title {
  margin-bottom: 10px;
}
.ty-mainbox-simple-title:before,
.ty-mainbox-simple-title:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-mainbox-simple-title:after {
  clear: both;
}
.ty-sidebox-important {
  margin-bottom: 15px;
}
.ty-sidebox-important__title {
  background: #ECF0F1;
  padding: 4px 14px 8px;
}
.ty-sidebox-important__title-wrapper {
  font-size: 13px;
  font-weight: normal;
  color: #909598;
}
.ty-sidebox-important__body {
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.ty-text-links {
  margin: 0 0 6px 0;
}
.ty-text-links:first-child {
  padding-top: 0;
}
.ty-text-links .ty-level-0 {
  margin-left: 0px;
}
.ty-text-links .ty-level-1 {
  margin-left: 10px;
}
.ty-text-links .ty-level-2 {
  margin-left: 20px;
}
.ty-text-links .ty-level-3 {
  margin-left: 30px;
}
.ty-text-links .ty-level-4 {
  margin-left: 40px;
}
.ty-text-links__active > .ty-text-links__a,
.no-touch .ty-text-links__a:hover {
  color: #cc7a00;
}
.ty-text-links__item {
  position: relative;
  display: block;
  margin-right: 15px;
}
.ty-text-links_show_inline .ty-text-links__item {
  display: inline-block;
}
.ty-text-links_show_inline .ty-level-0 > .ty-text-links {
  display: none;
  position: absolute;
  min-width: 200px;
  background: #fff;
  border: 1px solid #a8a8a8;
  z-index: 10;
  padding: 5px;
  margin: 0;
}
.no-touch .ty-text-links_show_inline .ty-level-0:hover .ty-text-links {
  display: block;
}
.ty-text-links_show_inline .ty-level-0 .ty-text-links__item {
  display: block;
}
.ty-dropdown-box .ty-text-links__item {
  margin: 0;
  padding: 7px 14px;
}
.ty-accordion {
  margin-top: 20px;
}
.ty-accordion .ui-accordion-header-icon {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  text-indent: 0;
  overflow: visible;
}
.ty-accordion .ui-accordion-header-icon:before {
  font-family: 'glyphs';
  font-size: 25px;
  content: "\e019";
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ty-accordion .ui-accordion-header {
  position: relative;
  color: #7c7e80;
  margin-top: 5px;
  padding: 8px 12px;
  border: 0px;
  border-radius: 0px;
  background: #e5ebec;
  background-image: none;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ty-accordion .ui-accordion-header.ui-state-active {
  background: #bdc3c7;
  color: white;
}
.ty-accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon:before {
  content: "\e01c";
}
.ty-accordion .ui-accordion-content {
  border: 0;
}
.ty-logo-container {
  position: relative;
  margin-top: 2px;
}
.ty-logo-container__image {
  display: inline-block;
  text-decoration: none;
}
.ty-logo-container__image.vertical-middle {
  visibility: hidden;
}
.ty-grid-list__item {
  margin: 0px 10px 35px 10px;
}
.ty-grid-list__item:before,
.ty-grid-list__item:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-grid-list__item:after {
  clear: both;
}
.ty-grid-list__item:hover .ty-icon-left-circle,
.ty-grid-list__item:hover .ty-icon-right-circle {
  visibility: visible;
}
.ty-grid-list__item:hover .ty-quick-view-button {
  visibility: visible;
}
.ty-grid-list__image {
  position: relative;
  padding: 18px 0;
  border: 1px solid #ebebeb;
  background: #fff;
  text-align: center;
  min-height: 150px;
}
.ty-grid-list__image .ty-no-image {
  border: 0px;
}
.ty-grid-list__price {
  display: inline-block;
  text-align: right;
  vertical-align: top;
  margin-top: 10px;
  float: right;
  max-width: 40%;
  overflow: hidden;
  word-break: break-all;
}
.ty-grid-list__no-price {
  text-align: left;
  width: auto;
}
.ty-grid-list__item-name {
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
  max-width: 59%;
  padding-right: 1%;
}
.ty-grid-list__item-name .product-title {
  color: #a6a6a8;
}
.ty-grid-list__control {
  padding-top: 5px;
}
.ty-product-empty {
  background: #F8F9F9;
  margin: 28px 10px 0 10px;
  height: 190px;
  text-align: center;
}
.ty-product-empty__text {
  color: #cdcdcd;
  font-size: 115%;
  line-height: 190px;
}
.ty-product-list {
  padding: 35px 0;
}
.ty-product-list__image {
  position: relative;
  float: left;
  margin: 0 25px 20px 0;
  border: 1px solid #ebebeb;
}
.ty-product-list__content {
  overflow: hidden;
}
.ty-product-list__info {
  overflow-x: auto;
  overflow-y: hidden;
}
.ty-product-list__control .ty-btn {
  margin-bottom: 10px;
  margin-right: 10px;
}
.ty-product-list__control .ty-product-coming-soon {
  margin: 10px 0px;
}
.ty-product-list__item-name .product-title {
  font-size: 130%;
}
.ty-product-list__price .ty-price-num {
  font-size: 120%;
}
.ty-product-list__price {
  padding: 10px 0px;
}
.ty-product-list__description {
  line-height: 170%;
}
.ty-product-list .ty-qty-out-of-stock {
  margin-right: 20px;
  padding: 2px 0px 0px 0px;
  vertical-align: top;
}
.ty-compact-list__item {
  padding: 10px 0;
  border-bottom: 1px solid #dfdfdf;
  position: relative;
}
.ty-compact-list__item:before,
.ty-compact-list__item:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-compact-list__item:after {
  clear: both;
}
.ty-compact-list__content:before,
.ty-compact-list__content:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-compact-list__content:after {
  clear: both;
}
.ty-compact-list__item .ty-discount-label {
  top: auto;
  right: auto;
  bottom: 5px;
}
.ty-compact-list__item .ty-qty {
  margin: 0;
}
.ty-compact-list__image {
  float: left;
  width: 13%;
  padding: 0px 25px;
  text-align: center;
}
.ty-compact-list__image .ty-discount-label {
  position: static;
  float: none;
  display: inline-block;
  margin-top: 5px;
}
.ty-compact-list__title {
  float: left;
  width: 45%;
  margin: 0 10px 0 0;
}
.ty-compact-list__controls {
  float: right;
}
.ty-compact-list__controls .ty-btn__add-to-cart {
  margin: 0 0 0 10px;
}
.ty-compact-list__controls .ty-qty-out-of-stock {
  margin-right: 0;
}
.ty-compact-list__controls .ty-product-coming-soon {
  width: 186px;
  right: 0px;
  padding-top: 9px;
  text-align: right;
  position: absolute;
}
.ty-product-coming-soon {
  color: #767676;
}
.ty-compact-list__controls > div {
  display: inline-block;
  vertical-align: middle;
}
.ty-compact-list__controls .qty {
  padding-top: 0;
}
.ty-compact-list__price {
  margin-right: 10px;
}
.ty-compact-list__price .ty-list-price {
  margin-right: 4px;
}
.ty-compact-list__item .ty-control-group__label {
  width: auto;
}
.ty-thumbnail-list__item {
  margin-bottom: 20px;
  text-align: center;
}
.ty-thumbnail-list__img-block {
  display: inline-block;
}
.ty-thumbnail-list__name {
  padding: 6px 0;
}
.ty-thumbnail-list__butons {
  padding: 10px 0;
}
.ty-template-small__item {
  padding: 10px 0;
  border-bottom: 1px dotted #ebebeb;
}
.ty-template-small__item:last-child {
  border: 0;
}
.ty-template-small__item-img {
  float: left;
  margin-right: 10px;
  vertical-align: top;
}
.ty-template-small__item-price {
  margin-top: 5px;
}
.ty-template-small__item-description {
  overflow: hidden;
}
.ty-scroller-list__item {
  padding-top: 20px;
  text-align: center;
}
.ty-scroller-list__description .product-title {
  display: inline-block;
  overflow: hidden;
  padding-top: 5px;
  width: 90%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ty-scroller-list__item:hover .ty-quick-view-button {
  visibility: visible;
  text-align: center;
}
.ty-simple-list__buttons {
  padding: 17px 20px;
}
.ty-simple-list .ty-discount-label {
  top: 1px;
  right: 1px;
}
.ty-simple-list .ty-discount-label:before,
.ty-simple-list .ty-discount-label:after {
  content: "";
  position: absolute;
}
.ty-simple-list .ty-discount-label:before {
  top: -1px;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 150px;
  background-image: -webkit-linear-gradient(bottom,transparent,#fff);
  background-image: -moz-linear-gradient(bottom,transparent,#fff);
  background-image: -o-linear-gradient(bottom,transparent,#fff);
}
.ty-simple-list .ty-discount-label:after {
  top: 0;
  right: 1px;
  width: 150px;
  height: 1px;
  background-image: -webkit-linear-gradient(right,#fff,transparent);
  background-image: -moz-linear-gradient(right,#fff,transparent);
  background-image: -o-linear-gradient(right,#fff,transparent);
}
ol.text-link-list .text-link-list__item {
  list-style: decimal;
}
.ty-profile-field {
  margin-top: 30px;
}
.ty-profile-field .ty-input-text {
  width: 100%;
}
.ty-profile-field__switch {
  margin: 25px 0px;
  padding: 15px 20px;
  border: 2px solid #d1d1d1;
  background: white;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.ty-profile-field__switch-label {
  float: left;
}
.ty-profile-field__switch-actions {
  float: right;
}
.ty-profile-field__switch-actions label {
  padding-right: 15px;
}
.ty-profile-field__select-country,
.ty-profile-field__select-state,
.ty-profile-field__select {
  width: 100%;
}
.ty-billing-zip-code,
.ty-shipping-zip-code {
  clear: both;
}
.company .buttons-container {
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
  border-radius: 0px 0px 3px 3px;
  margin: 30px 0px 28px -21px;
  padding: 17px 20px 17px 20px;
  width: 100%;
}
.ty-billing-first-name,
.ty-billing-last-name,
.ty-shipping-first-name,
.ty-shipping-last-name,
.ty-billing-country,
.ty-billing-state,
.ty-shipping-country,
.ty-shipping-state,
.ty-first-name,
.ty-last-name {
  display: inline-block;
  width: 47%;
}
.ty-billing-first-name + .ty-billing-last-name,
.ty-billing-country + .ty-billing-state,
.ty-shipping-first-name + .ty-shipping-last-name,
.shipping-country + .ty-shipping-state,
.ty-first-name + .ty-last-name {
  margin-left: 5%;
}
.billing-last-name,
.shipping-last-name {
  margin-right: 0;
}
.ty-account {
  margin-top: 30px;
}
.ty-account .ty-input-text {
  width: 100%;
}
.ty-account-detail {
  margin: 45px 0 0 58px;
  padding-bottom: 250px;
  background: url('../../../../../../../../design/themes/responsive/media/images/profile_details.png?1753621501') no-repeat bottom center;
  color: #BDC3C7;
}
.ty-account-detail h4 {
  font-size: 19px;
  padding-bottom: 10px;
}
.ty-account-detail ul li {
  list-style-type: disc;
  margin: 15px 0 0 17px;
}
.ty-account-benefits {
  margin: 47px 0 0 60px;
  color: #BDC3C7;
}
.ty-account-benefits h4 {
  padding-bottom: 22px;
  font-size: 19px;
}
.ty-account-benefits ul li {
  list-style-type: disc;
  margin-bottom: 11px;
  margin-left: 17px;
}
.ty-languages {
  margin: 0 15px 0 0;
}
.ty-languages__item {
  float: left;
  display: inline-block;
  padding: 8px 6px;
}
.ty-languages__icon-link .ty-flag {
  margin-right: 0;
}
.ty-languages__active {
  background: #dfe4e4;
  color: black;
}
.ty-currencies__txt {
  float: left;
  padding: 8px 5px 8px 0;
}
.ty-currencies__item {
  float: left;
  padding: 8px 13px;
  color: #4d4d4f;
}
.ty-currencies__item:hover {
  background: #f5f5f5;
  color: #343435;
}
.ty-currencies__active {
  background: #f5f5f5;
  color: #343435;
}
.ty-sidebox {
  margin-bottom: 44px;
  word-wrap: break-word;
  background: #fff;
}
.ty-sidebox__title {
  position: relative;
  padding: 0px 30px 9px 0px;
  border-bottom: 1px solid #fff;
}
.touch .ty-sidebox__title {
  cursor: pointer;
}
.ty-sidebox__title-toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 100;
  float: left;
  width: 35px;
  color: #cccccc;
  text-align: center;
  font-size: 25px;
  cursor: pointer;
}
.ty-sidebox__icon-hide {
  display: none;
}
.ty-sidebox__title.open .ty-sidebox__icon-open {
  display: none;
}
.ty-sidebox__title.open .ty-sidebox__icon-hide {
  display: block;
}
.ty-sidebox__title-wrapper,
.ty-sidebox__title span,
.ty-sidebox__title a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #A1A6AA;
  padding: 0;
}
.ty-sidebox .buttons-container {
  background: none;
  padding: 20px 0px;
}
.ty-compare {
  position: relative;
}
.ty-compare__wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}
.ty-compare-menu {
  width: 150px;
}
.ty-compare-menu__a {
  padding: 8px 16px 7px;
  display: block;
}
.ty-compare-menu__a:hover {
  background: #eff0f2;
  color: #34495e;
  text-decoration: none;
}
.ty-compare-menu__elem {
  display: block;
  padding: 8px 16px 7px;
  color: #fff;
  background: #1abc9c;
}
.ty-compare-products {
  width: 100%;
  table-layout: fixed;
}
.ty-compare-products__product {
  padding: 0 10px;
  width: 215px;
  vertical-align: top;
  text-align: center;
}
.ty-compare-products__item {
  padding: 5px 0;
}
.ty-compare-products__menu {
  vertical-align: top;
  padding: 0 10px;
  width: 150px;
}
.ty-compare-products__product .buttons-container {
  margin: 0;
}
.no-touch .ty-compare-products__product .ty-qty .ty-control-group__label {
  display: inline-block;
  float: none;
  width: 90px;
}
.touch .ty-compare-products__product .ty-qty .ty-control-group__label {
  display: block;
  width: 100%;
}
.ty-compare-products__delete {
  position: relative;
  visibility: hidden;
  padding-bottom: 2px;
}
.touch .ty-compare-products__delete,
.ty-compare-products__product:hover .ty-compare-products__delete {
  visibility: visible;
}
.ty-compare-feature {
  position: relative;
  z-index: 20;
  margin-bottom: 10px;
}
.ty-compare-feature__table {
  width: 100%;
  table-layout: fixed;
}
.ty-compare-feature__row:nth-child(odd) {
  background-color: #ffffff;
}
.ty-compare-feature__item {
  padding: 10px;
  border: 1px solid #ebebeb;
  vertical-align: middle;
  text-align: center;
}
.ty-compare-feature_item_size {
  padding: 0 10px;
  width: 215px;
}
.ty-compare-sort {
  width: 150px;
  text-align: left;
}
.ty-compare-sort__a {
  visibility: hidden;
  margin-left: 3px;
  vertical-align: middle;
}
.touch .ty-compare-sort__a,
.ty-compare-sort:hover .ty-compare-sort__a {
  visibility: visible;
}
.ty-compare-list__item {
  text-align: left;
}
.ty-compare-checkbox {
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 5px;
  width: 13px;
  height: 13px;
  border: 1px solid #4d4d4d;
  background-color: #fff;
  color: #8c8c8f;
  text-align: left;
}
.ty-compare-checkbox__icon {
  position: relative;
  top: -2px;
  left: 1px;
  font-size: 11px;
}
.ty-price-num {
  font-size: 15px;
  font-weight: bold;
}
.ty-sku {
  padding: 0;
  font-size: 90%;
}
.ty-price,
.ty-sub-price,
.ty-list-price {
  font-size: 100%;
}
.ty-price {
  margin: 6px 0;
  color: #4d4d4f;
}
.ty-sub-price {
  color: #343435;
}
.ty-list-price {
  color: #343435;
  line-height: 100%;
  font-size: 13px;
}
.ty-tax-include {
  display: block;
  padding-bottom: 5px;
}
.ty-price-update {
  display: inline-block;
  font-size: 13px;
}
.ty-qty {
  margin-bottom: 15px;
}
.ty-qty-in-stock,
.ty-qty-out-of-stock {
  font-weight: bold;
}
.ty-qty-in-stock {
  color: #3FA00E;
}
.ty-qty-out-of-stock {
  color: #e74c3c;
}
.ty-min-qty-description {
  font-size: 12px;
  margin-top: -7px;
  padding-top: 0;
  color: #bfbfbf;
}
.ty-price-curency {
  display: inline-block;
}
.ty-price-curency__title {
  display: inline-block;
  float: left;
  margin: 5px 0;
}
input.ty-price-curency__input {
  margin-left: 5px;
  width: 70px;
  height: 35px;
  font-size: 140%;
}
.ty-no-price {
  display: block;
  padding: 0px;
  color: #E74C3C;
}
.ty-product-notify-email {
  width: 200px;
  margin-bottom: 15px;
}
.ty-product-notify-email__input {
  width: 100%;
}
.ty-discount-label {
  position: absolute;
  right: 0;
  top: 0;
  background: #ff6600;
  color: white;
  list-style: none;
}
.ty-discount-label__item {
  float: left;
  height: 28px;
  font-size: 14px;
  white-space: nowrap;
  line-height: 28px;
  padding: 0 10px 0 12px;
  color: #fff;
}
.ty-value-changer {
  display: inline-block;
  vertical-align: top;
  width: 53px;
}
input.ty-value-changer__input {
  float: left;
  width: 36px;
  height: 33px;
  text-align: center;
}
.touch input.ty-value-changer__input {
  height: 34px;
}
.ty-value-changer__increase,
.ty-value-changer__decrease {
  position: relative;
  float: right;
  width: 14px;
  height: 14px;
  border: 1px solid #d9d9d9;
  color: #d9d9d9;
  font-size: 16px;
  line-height: 13px;
  cursor: pointer;
  background: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ty-value-changer__increase {
  margin-bottom: 1px;
}
.ty-value-changer__increase:hover,
.ty-value-changer__decrease:hover {
  color: #d9d9d9;
}
.no-touch .ty-value-changer__increase:hover,
.no-touch .ty-value-changer__decrease:hover {
  background: #d9d9d9;
  color: #fff;
  text-decoration: none;
}
.touch .ty-value-changer {
  width: 110px;
}
.touch .ty-value-changer__input {
  float: right;
}
.touch .ty-value-changer__increase,
.touch .ty-value-changer__decrease {
  float: left;
  width: 36px;
  height: 32px;
  font-size: 22px;
  line-height: 27px;
  background: #d9d9d9;
  color: #fff;
}
.touch .ty-value-changer__increase {
  border-right: 0;
  float: right;
}
.touch .ty-value-changer__decrease {
  border-left: 0;
}
.ty-period {
  clear: both;
}
.ty-period__wrapper {
  float: left;
  padding-right: 20px;
}
.ty-period__select {
  width: 180px;
}
.ty-period__dash {
  padding: 0 3px;
}
.ty-calendar__block {
  width: 115px;
  display: inline-block;
  position: relative;
}
.ty-calendar__button {
  position: absolute;
  top: 15px;
  right: 2px;
  margin-top: -10px;
  margin-right: 8px;
  color: #bfbfbf;
  vertical-align: middle;
  font-size: 155%;
}
.ty-calendar__input {
  width: 100%;
}
.ty-calendar-link:hover {
  text-decoration: none;
}
.ty-qty-discount {
  overflow-x: auto;
  margin-bottom: 15px;
}
.ty-qty-discount__table {
  margin-top: 10px;
  min-width: 200px;
  padding: 0;
  border: 1px solid #fff;
}
.ty-qty-discount__table .ty-qty-discount__td {
  border: 0 none;
  border-right: 1px solid #fff;
  padding: 8px 12px;
}
.tooltip {
  display: none;
  max-width: 200px;
  z-index: 10000;
  padding: 9px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  text-align: left;
  font-weight: normal;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.tooltip p {
  color: #fff;
  padding: 0px;
}
.tooltip-arrow {
  position: absolute;
  top: -10px;
  right: 3px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent rgba(0,0,0,0.8) transparent;
}
.tooltip.arrow-top .tooltip-arrow {
  top: auto;
  left: auto;
  bottom: -10px;
  right: 3px;
  border-width: 0 10px 10px 0;
  border-color: transparent rgba(0,0,0,0.8) transparent transparent;
}
.tooltip.right {
  padding: 9px;
  text-align: left;
}
.arrow-top.right .tooltip-arrow {
  left: 3px;
  right: auto;
  border-width: 10px 10px 0 0;
  border-color: rgba(0,0,0,0.8) transparent transparent transparent;
}
.arrow-down.right .tooltip-arrow {
  right: auto;
  top: -4px;
  left: 3px;
  border-width: 10px 0 0 10px;
  border-color: transparent transparent transparent rgba(0,0,0,0.8);
}
.tooltip img {
  max-width: 100%;
}
.touch .ty-tooltip-block {
  display: none;
}
.ty-tooltip-block {
  vertical-align: middle;
}
.ty-no-image {
  position: relative;
  display: block;
  border: 1px solid #ebebeb;
  background: #fcfcfc;
  color: #c8c8c8;
  cursor: default;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ty-no-image__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 32px;
}
.ty-spinner {
  background: url('../../../../../../../../design/themes/responsive/media/images/spinner.gif?1753621501') no-repeat center center;
}
.ty-grayscale {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
}
.ty-grayscale:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
}
.ty-status-info label {
  display: block;
  margin: 0 20px 10px 0;
}
.ty-select-block {
  position: absolute;
  top: 31px;
  left: 0;
  z-index: 1022;
  min-width: 50px;
  border: 1px solid #a8a8a8;
  background-color: #fff;
}
.ty-select-wrapper {
  position: relative;
}
.ty-select-block__a {
  cursor: pointer;
  display: block;
  padding: 8px 13px 2px;
  color: #8c8c8c;
  border: 1px solid transparent;
}
.ty-select-block__a:hover {
  background: #f5f5f5;
  color: #8c8c8c;
  text-decoration: none;
}
.ty-select-block__a.open,
.ty-select-block__a.open:hover {
  background: #a8a8a8;
  color: white;
}
.ty-select-block__a.open .ty-select-block__arrow {
  color: white;
}
.ty-select-block__a-item {
  display: inline-block;
  vertical-align: top;
}
.ty-select-block__arrow {
  margin-left: 3px;
  font-size: 140%;
  color: #999999;
}
input.ty-select-block__input {
  margin: 5px 10px;
  width: 220px;
}
.ty-select-block__list-item .ty-select-block__list-a {
  text-decoration: none;
}
.ty-select-block__list-a:hover {
  background: #ff9900;
  color: white;
}
.ty-select-block__list-a {
  display: block;
  padding: 7px 14px 7px 14px;
  white-space: nowrap;
  cursor: pointer;
}
.ty-select-block__list-a:before,
.ty-select-block__list-a:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-select-block__list-a:after {
  clear: both;
}
.ty-select-block__txt {
  float: left;
  padding: 8px 5px 8px 0;
}
.ty-dropdown-box {
  display: inline-block;
  position: relative;
  color: #34495E;
}
.ty-dropdown-box  .ty-icon-down-micro {
  position: relative;
  top: 5px;
  width: 7px;
  color: #999999;
  font-size: 20px;
  line-height: 0;
}
.ty-dropdown-box__title {
  position: relative;
  display: inline-block;
  padding: 7px 11px 7px 8px;
  border: 1px solid transparent;
}
.ty-dropdown-box__title a {
  color: #999999;
}
.ty-dropdown-box__title a:hover {
  text-decoration: none;
}
.ty-dropdown-box__title:hover {
  background: #f5f5f5;
}
.ty-dropdown-box__title .ty-account-info__title {
  text-decoration: none;
}
.ty-dropdown-box__title.open {
  z-index: 650;
  background: #999999;
}
.ty-dropdown-box__title.open a,
.ty-dropdown-box__title.open i,
.ty-dropdown-box__title.open .ty-minicart-title {
  color: white;
}
.ty-dropdown-box__content {
  position: absolute;
  right: 0;
  z-index: 600;
  margin-top: -1px;
  min-width: 220px;
  border: 1px solid #a8a8a8;
  background: #fff;
  text-align: left;
}
.ty-dropdown-box__content .ty-dropdown-box__item {
  display: block;
  margin-bottom: 0px;
  padding: 7px 14px;
}
.ty-dropdown-box__content .ty-dropdown-box__item:hover {
  background: #ff9900;
  color: white;
}
.ty-dropdown-box__content .ty-dropdown-box__item:hover a {
  display: block;
  color: white;
}
.ty-dropdown-box__content .ty-account-info__orders {
  padding: 14px 14px 7px 14px;
  margin-top: 20px;
  background: #ffffff;
}
.ty-dropdown-box__content .ty-account-info__buttons {
  padding: 15px 14px 16px 14px;
  margin-top: -6px;
  background: #ffffff;
}
.ty-dropdown-box__content .ty-account-info__name:hover {
  background: none;
  color: #34495e;
}
.ty-minicart__icon {
  color: #8c8c8c;
  top: 7px;
  font-size: 14px;
  position: absolute;
}
.ty-account-info {
  padding-top: 2px;
}
.ty-account-info__title {
  padding: 0 5px;
}
.ty-account-info__user-arrow {
  position: relative;
  top: 5px;
  width: 7px;
  color: #34495E;
  font-size: 20px;
  line-height: 0;
}
.logged.ty-sidebox__title .ty-account-info__user-arrow {
  display: none;
}
.logged .ty-account-info__title,
.logged .ty-account-info__user-arrow {
  color: #8c8c8c;
}
.ty-account-info__item {
  padding: 0;
  margin-bottom: 12px;
}
.ty-account-info__item .ty-account-info__a {
  text-decoration: none;
}
.ty-account-info__name {
  padding-bottom: 10px;
}
.ty-account-info__orders {
  padding: 15px 0 4px;
}
.ty-account-info__orders-txt {
  color: #6c6c6c;
}
.ty-account-info__orders-input {
  margin: 5px 0 0;
}
.ty-dropdown-box__content .ty-account-info__buttons .ty-btn {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ty-dropdown-box__content .ty-account-info__buttons .ty-btn + .ty-btn {
  margin: 10px 0 0;
}
.ty-login {
  margin-top: 30px;
  min-height: 200px;
}
.ty-login__input {
  margin: 0;
  width: 100%;
}
.ty-login__remember-me {
  padding: 6px 0;
}
.ty-login__filed-label {
  width: auto;
  color: #343435;
}
.ty-password-forgot__label {
  float: left;
}
a.ty-password-forgot__a {
  float: right;
  padding: 6px 0;
}
.ty-recover-password {
  margin-top: 30px;
}
.ty-login-reglink__a {
  display: inline-block;
  padding: 0 0 10px;
}
.ty-login-popup {
  min-width: 295px;
  max-width: 310px;
  font-family: Open Sans;
  font-size: 14px;
}
.ty-login-popup .ty-login__input {
  margin: 0;
  padding: 8px 5px 7px;
  height: 36px;
  font-size: 115%;
}
.ty-captcha__img {
  border: 1px solid #C7C7C7;
  cursor: pointer;
}
.ty-captcha__label {
  display: inline-block;
  margin-bottom: 5px;
}
.ty-captcha__code {
  display: inline-block;
  min-width: 130px;
  vertical-align: top;
}
.ty-captcha__refresh {
  position: relative;
  vertical-align: middle;
  margin-left: 7px;
  color: #8D8D8D;
  font-size: 14px;
  cursor: pointer;
}
.ty-captcha__input {
  margin: 0;
  margin-right: 10px;
  padding: 3px 3px;
  width: 120px;
  vertical-align: top;
}
.ty-checkout__login .ty-captcha__input {
  width: 110px;
  margin-bottom: 5px;
}
.ty-checkout__login .buttons-container {
  background: none;
  margin: 0px;
}
.ty-login-popup .ty-captcha__input {
  width: 140px;
  margin-bottom: 6px;
}
.ty-captcha__txt {
  clear: both;
  padding-top: 3px;
  color: #4d4d4f;
}
.ty-login-info {
  margin: 46px 0 0 59px;
}
.ty-login-info__title,
.ty-login-info h4 {
  padding-bottom: 10px;
  margin: 0;
  font-size: 19px;
  color: #BDC3C7;
}
.ty-login-info__txt {
  color: #BDC3C7;
}
.ty-success-registration__text {
  display: block;
  padding: 7px 0 40px;
  line-height: 170%;
}
.ty-success-registration__item {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 30px;
  padding-left: 17px;
  min-height: 60px;
  width: 48%;
  border-left: 1px solid #f2f2f2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.success-registration__a {
  font-weight: bold;
}
.ty-success-registration__info {
  display: block;
  margin-top: 10px;
  color: #bfbfbf;
}
.ty-breadcrumbs {
  position: relative;
  margin-bottom: 14px;
  padding: 20px 105px 10px 0px;
  color: #ffffff;
}
.ty-breadcrumbs__arrow,
.ty-breadcrumbs__a,
.ty-breadcrumbs__current {
  display: inline;
  padding: 2px;
}
.ty-breadcrumbs__current {
  color: #ff9900;
}
.ty-breadcrumbs__a {
  color: #bfbfbf;
}
.ty-breadcrumbs__slash {
  display: inline-block;
  margin: 0px 6px;
  color: #bfbfbf;
}
.ty-breadcrumbs__a:hover {
  color: #bfbfbf;
}
.ty-product-switcher {
  position: absolute;
  top: 25px;
  right: 0;
  padding: 0 24px;
}
.ty-product-switcher__a {
  display: inline-block;
  position: absolute;
  cursor: pointer;
  top: -2px;
  padding: 0;
  font-size: 18px;
}
.ty-product-switcher__a:hover {
  text-decoration: none;
}
.ty-product-switcher__a-left {
  float: left;
  left: 0;
}
.ty-product-switcher__a-right {
  float: right;
  right: 0;
}
.ty-product-switcher__icon {
  color: #b3b3b3;
}
.ty-product-switcher__a:hover .ty-product-switcher__icon {
  color: #cccccc;
}
.ty-product-switcher__a.disabled,
.ty-product-switcher__a.disabled .ty-product-switcher__icon,
.ty-product-switcher__a.disabled:hover .ty-product-switcher__icon {
  background: none;
  color: #e6e6e6;
  cursor: default;
}
.ty-product-switcher span {
  font-size: 85%;
  padding: 2px;
  color: #e6e6e6;
}
.ty-section {
  margin: 20px 0 15px 0;
}
.ty-section__title {
  padding: 13px 15px 11px 15px;
  cursor: pointer;
  background: #ecf0f1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.ty-section__switch {
  float: right;
}
.ty-section__arrow {
  padding-left: 6px;
}
.open .ty-section_switch_off,
.ty-section_switch_on {
  display: block;
}
.open .ty-section_switch_on,
.ty-section_switch_off {
  display: none;
}
.ty-section__body {
  overflow: hidden;
  padding: 20px 20px 0 20px;
  border: 1px solid #ECF0F1;
  border-top: none;
}
.ty-section__body .buttons-container {
  margin: 30px 0 0 -20px;
  padding: 15px 20px 15px 20px;
  width: 100%;
  background: #fff;
}
.ty-search-result {
  padding: 12px 7px;
}
.ty-search-form__inline-input {
  width: 190px;
}
.ty-search-result:hover {
  background: #fff;
}
.ty-search-form__input {
  width: 170px;
}
.ty-search-form__input-large {
  width: 200px;
}
.ty-subcategories-field {
  float: left;
  margin-left: 10px;
}
.ty-search-form .ty-search-form__buttons-container {
  margin-bottom: 0;
}
.ty-search-block {
  position: relative;
}
.ty-search-magnifier {
  position: absolute;
  top: 5px;
  right: 6px;
  padding: 0;
  width: 20px;
  height: 26px;
  border: none;
  background: none;
  color: #d9d9d9;
  font-size: 145%;
  cursor: pointer;
}
input.ty-search-block__input {
  display: block;
  padding: 7px 30px 7px 10px;
  width: 100%;
  height: 33px;
  border: 1px solid #d9d9d9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.ty-search-block__input:focus {
  outline: 0;
  border: 1px solid #ff9900;
  background-color: #fff;
}
.vendor-stores-block-grid h2 {
  margin: 0px;
  font-size: 25px;
  text-align: center;
}
.ty-sort-container {
  padding-left: 10px;
  background: #fff;
  margin: 28px 0px;
}
.ty-sort-container__views-icons {
  display: inline-block;
  float: right;
}
.ty-sort-container__views-a {
  display: block;
  color: #bfbfbf;
  float: left;
  padding: 9px 9px;
  width: 15px;
  height: 17px;
  font-size: 125%;
}
.ty-sort-container__views-a:hover {
  text-decoration: none;
}
.ty-sort-container__views-a.active {
  background: #f2f2f2;
}
.ty-sort-dropdown {
  display: inline-block;
  position: relative;
}
.ty-sort-dropdown .ty-sort-dropdown__wrapper {
  text-decoration: none;
}
.ty-sort-dropdown__wrapper {
  padding: 5px 7px 9px 7px;
  display: inline-block;
  color: #34495e;
  cursor: pointer;
}
.ty-sort-dropdown__icon {
  font-size: 20px;
  position: relative;
  padding-left: 10px;
  top: 5px;
}
.ty-sort-dropdown__wrapper:hover {
  background: #f7f7f7;
}
.ty-sort-dropdown__wrapper.open {
  background: #8c8c8c;
  color: white;
}
.ty-sort-dropdown__content {
  position: absolute;
  z-index: 100;
  border: 1px solid #97a0a5;
  background: #fff;
  min-width: 200px;
}
.ty-sort-dropdown__content .ty-sort-dropdown__content-item-a {
  text-decoration: none;
}
.ty-sort-dropdown__content-item-a {
  padding: 7px 14px;
  color: #ff9900;
  display: block;
}
.ty-sort-dropdown__content-item-a:hover {
  background: #ff9900;
  color: #fff;
}
.ty-subcategories__item {
  display: inline-block;
  margin: 5px 20px 5px 0px;
}
.ty-subcategories-img {
  display: block;
  margin: auto;
  padding-bottom: 10px;
}
.ty-subcategories-block {
  margin: 10px 0;
  display: inline-block;
  min-width: 350px;
  vertical-align: top;
}
.ty-subcategories-block__item {
  padding-bottom: 10px;
  text-align: center;
}
.ty-subcategories-block__a {
  font-weight: bold;
}
.ty-feature {
  margin: 30px 0px;
}
.ty-feature:before,
.ty-feature:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-feature:after {
  clear: both;
}
.ty-feature__image {
  float: left;
  margin: 0 25px 10px 0;
}
.ty-feature__description {
  line-height: 140%;
  overflow: hidden;
}
.ty-product-feature {
  padding: 10px;
}
.ty-product-feature:nth-child(2n) {
  background: #ffffff;
}
.ty-product-feature__label {
  display: inline-block;
  width: 280px;
  vertical-align: top;
}
.ty-product-feature__value {
  display: inline-block;
  margin-left: 5px;
}
.ty-product-feature .ty-product-feature__multiple {
  list-style: none;
  padding-left: 0;
}
.ty-product-feature .ty-product-feature__multiple-item {
  list-style: none;
  margin-bottom: 5px;
}
.ty-product-feature-group {
  margin-bottom: 10px;
}
.ty-product-feature-group .ty-subheader {
  padding: 15px 0 6px 0;
  margin: 0;
  font-size: 120%;
}
.ty-features-all__group {
  margin-bottom: 50px;
}
.ty-features-all__list-item {
  padding-bottom: 8px;
}
.ty-features-all__list-a {
  font-size: 110%;
}
.ty-features-list {
  padding: 3px 0;
}
.ty-tygh {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.ty-helper-container {
  position: relative;
}
.ty-helper-container {
  background: transparent  repeat scroll;
}
.container {
  min-height: 0;
  min-width: 0;
}
.container-fluid {
  max-width: 1200px;
  min-width: 280px;
  margin: 0 auto;
}
.tygh-footer {
  min-height: 70px;
}
.bottom-copyright {
  margin-top: 15px;
  color: #444;
  font-size: 13px;
}
.ty-payment-icons {
  margin: 10px 0px;
}
.footer-no-wysiwyg ul {
  margin: 10px 0 0 0px;
  padding-left: 0px;
}
.footer-no-wysiwyg ul li {
  list-style-type: none;
}
.ty-social-link-block {
  margin-top: 18px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.ty-social-link {
  display: inline-block;
  margin-right: 26px;
  position: relative;
  vertical-align: bottom;
  top: 7px;
}
.ty-social-link a {
  color: white;
  display: block;
}
.ty-social-link i {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  font-size: 38px;
  color: #fff;
}
.ty-social-link span {
  display: inline-block;
  vertical-align: middle;
}
h3.ty-social-link__title {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  font-weight: normal;
  margin: 0px 20px 0px 0px;
  color: #fff;
}
.ty-social-link:last-child {
  margin-right: 0px;
}
.ty-footer-menu__icon-open,
.ty-footer-menu__icon-hide {
  display: none;
  color: #444;
}
.footer-stay-connected {
  background: #ff9900;
  color: #fff;
  min-height: 84px;
}
.ty-footer-menu {
  color: #9ba1a7;
}
.ty-footer-menu > .row {
  padding: 30px 0px 15px 0px;
}
.tygh-footer > div {
  background-color: #ffffff;
  background-image: -moz-linear-gradient(top,#fff,#fff);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#fff));
  background-image: -webkit-linear-gradient(top,#fff,#fff);
  background-image: -o-linear-gradient(top,#fff,#fff);
  background-image: linear-gradient(to bottom,#fff,#fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
  width: auto;
  min-width: none;
  max-width: none;
  padding: 0;
}
.tygh-footer .ty-footer-grid__full-width {
  float: none;
  width: auto;
}
.container-fluid .ty-footer-grid__full-width {
  padding-left: 15px;
  padding-right: 15px;
}
.footer-copyright {
  background-color: #ffffff;
}
.ty-footer-menu__header,
.ty-footer-general__header {
  position: relative;
  color: #444;
  font-weight: bold;
  font-size: 19px;
  padding-top: 20px;
  margin-bottom: 0;
  cursor: pointer;
}
.ty-footer-menu__items,
.ty-footer-general__body {
  margin: 10px 0 20px;
}
.ty-footer-menu__item {
  margin-bottom: 8px;
}
.ty-footer-menu__item a {
  color: #444;
}
.ty-footer-menu__item a:hover {
  color: #ff9900;
}
.ty-product-block {
  margin: 5px 0 30px 0;
  margin-top: 5px;
  position: relative;
}
.ty-product-block-title {
  margin-bottom: 10px;
  font-size: 26px;
  color: #4d4d4f;
}
.ty-brand {
  margin: 5px 0;
}
.ty-product-block__img-wrapper {
  position: relative;
  float: left;
  margin-right: 20px;
  padding: 0 0 10px;
  min-height: 282px;
  min-width: 282px;
}
.ty-product-block__img-wrapper img {
  display: block;
  margin: 0 auto;
}
.ty-product-block__left {
  display: table-cell;
}
.ty-product-block__note {
  position: absolute;
  right: 0;
  padding: 21px 0 0;
  width: 200px;
  line-height: 140%;
  color: #798d8e;
}
.ty-product-prices {
  margin: 20px 0px;
}
.ty-product-block__note .product-promo-header {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.ty-product-block__price-actual {
  margin: 10px 0px;
}
.ty-product-block__price-actual .ty-price-num {
  font-family: Open Sans;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
}
.ty-product-block__option .help-inline {
  margin-left: 120px;
  display: block;
  text-align: left;
}
.ty-product-block__option,
.ty-product-block__advanced-option,
.ty-product-block__field-group {
  margin-bottom: 10px;
}
.ty-product-block__field-group .ty-control-group {
  margin-bottom: 0;
}
.ty-product-block__sku .ty-control-group {
  margin: 0px;
}
.ty-product-block__description-title {
  margin: 20px 0 5px 0;
  font-size: 130%;
  font-weight: normal;
}
.ty-product-block__button {
  margin-top: 20px;
}
.ty-product-block__button .ty-btn {
  margin-right: 20px;
  margin-bottom: 10px;
}
.ty-product-block__button .button-container {
  display: inline-block;
}
.content-description {
  line-height: 1.4;
}
.ty-product-block .ty-discount-label {
  z-index: 1;
}
.ty-product-bigpicture__img {
  position: relative;
  padding-top: 20px;
}
.ty-product-bigpicture__img:before,
.ty-product-bigpicture__img:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-product-bigpicture__img:after {
  clear: both;
}
.ty-product-bigpicture__img .ty-pict {
  max-height: 420px;
}
.ty-product-bigpicture__as-thumbs .ty-product-thumbnails {
  float: left;
  margin: 0 -60px 0 0;
  width: 55px;
  position: relative;
  z-index: 5;
}
.ty-product-bigpicture .ty-product-bigpicture-thumbnails_gallery {
  padding-left: 60px;
}
.ty-product-bigpicture .ty-product-img {
  border: 0;
  float: right;
  width: 100%;
}
.ty-product-bigpicture .ty-previewer {
  text-align: center;
  margin-left: 60px;
}
.ty-product-bigpicture__no-thumbs .ty-previewer {
  margin-left: 0px;
}
.ty-product-bigpicture .ty-product-thumbnails__item {
  margin: 0 10px 10px 0;
}
.ty-product-bigpicture__left {
  width: 100%;
  float: left;
  text-align: center;
}
.ty-product-bigpicture__left-wrapper {
  margin: 20px 350px 0 0;
}
.ty-product-bigpicture .ty-product-block-title {
  font-size: 28px;
  margin-bottom: 20px;
}
.ty-product-bigpicture__right {
  float: left;
  margin-left: -320px;
  width: 318px;
  margin-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
  border: 1px solid #ebebeb;
  text-align: center;
  box-sizing: border-box;
}
.ty-product-bigpicture .ty-product-block__note {
  position: static;
  width: auto;
}
.ty-product-bigpicture .ty-discount-label {
  display: inline-block;
  position: static;
  margin-left: 3px;
  border-radius: 3px;
}
.ty-product-bigpicture .ty-discount-label__item {
  height: 25px;
  line-height: 25px;
  display: inline-block;
  float: none;
  font-size: 14px;
  font-weight: normal;
}
.ty-product-bigpicture__brand .ty-features-list {
  padding: 16px 0;
  border-bottom: 1px solid #dddfdf;
  box-shadow: 0 1px 0 #fff;
  background: #fff;
}
.ty-product-bigpicture__prices {
  padding: 20px 0;
  margin: 0 10px 20px;
  border-bottom: 1px solid #dddfdf;
  box-shadow: 0 1px 0 #fff;
}
.ty-product-bigpicture__prices .ty-list-price {
  font-size: 14px;
}
.ty-product-bigpicture__prices .ty-product-block__price-actual .ty-price-num {
  font-size: 30px;
}
.ty-product-bigpicture__prices .ty-save-price {
  color: #e65c00;
}
.ty-product-bigpicture__sidebar-bottom {
  width: 230px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: left;
}
.ty-product-bigpicture .ty-control-group__label {
  display: inline-block;
  float: none;
  width: 95px;
  text-align: left;
}
.ty-product-bigpicture .ty-product-block__note,
.ty-product-bigpicture .ty-product-block__button {
  text-align: center;
}
.ty-product-bigpicture .ty-product-block__note {
  padding-top: 8px;
}
.ty-product-bigpicture .ty-product-block__button .ty-btn {
  margin-right: 0;
}
.ty-product-bigpicture .ty-product-options__description,
.ty-product-bigpicture .ty-product-variant-image {
  margin-left: 0;
}
.ty-product-bigpicture .ty-product-options .ty-input-text {
  width: auto;
  max-width: 105px;
}
.ty-product-bigpicture .ty-product-options {
  margin-bottom: 10px;
}
.ty-product-bigpicture .ty-product-block__option .help-inline {
  margin: 0 0 12px;
}
.ty-product-options__title {
  padding-right: 5px;
  font-weight: bold;
}
.ty-product-options {
  margin-bottom: 15px;
}
.ty-product-options .ty-table {
  margin-top: 10px;
}
.ty-product-options .ty-input-text {
  width: 240px;
}
.ty-product-options__item-label {
  font-weight: bold;
}
.ty-product-options__description {
  margin: 5px 0 0 120px;
  padding: 0;
  color: #cccccc;
  font-size: 85%;
}
.ty-product-options__image {
  display: inline-block;
  margin: 2px 0;
  border: 2px solid #ffffff;
  cursor: pointer;
  min-height: 52px;
}
.product-variant-image-selected {
  border-color: #fff;
}
.ty-product-options__elem {
  display: inline-block;
}
.ty-product-options__fileuploader .help-inline {
  margin-left: 0;
}
.ty-product-options__box {
  display: inline-block;
  padding: 6px 0;
}
.ty-product-options__box .help-inline {
  margin-left: 0;
}
.ty-product-variant-image {
  margin-left: 120px;
  padding: 10px 0;
}
.ui-dialog .ty-product-variant-image {
  margin-left: 134px;
}
.ty-product-options__textarea {
  min-width: 240px;
  min-height: 60px;
  resize: vertical;
}
.ty-product-options__no-combinations {
  padding-top: 0;
  color: #b94a48;
}
.ty-product-img {
  border: 1px solid #fff;
  position: relative;
}
.ty-product-img .ty-no-image {
  border: 0px;
}
.ty-product-thumbnails {
  margin-top: 10px;
  text-align: left;
}
.ty-product-thumbnails__item {
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  border: 1px solid #fff;
}
.ty-product-thumbnails__item.active {
  border-color: #888;
}
.ty-previewer {
  position: relative;
  display: block;
}
.ty-previewer:hover .previewer__icon {
  visibility: visible;
}
.ty-previewer__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  visibility: hidden;
  margin: -18px 0 0 -18px;
  padding: 0;
  width: 37px;
  height: 39px;
  background: url('../../../../../../../../design/themes/responsive/media/images/icons/zoom_icon.png?1753621501') no-repeat;
  opacity: 0.7;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2) {
  .ty-previewer__icon {
    background-image: url('../../../../../../../../design/themes/responsive/media/images/icons/zoom_icon@2x.png?1753621501');
    background-size: 37px, 39px;
  }
}
.ty-previewer__icon:hover {
  opacity: 1;
}
.ty-thumbs-wrapper {
  position: relative;
}
.ty-thumbs-wrapper .ty-icon-left-circle,
.ty-thumbs-wrapper .ty-icon-right-circle {
  position: absolute;
  top: 50%;
  visibility: hidden;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.touch .ty-grid-list__item .ty-icon-left-circle,
.touch .ty-grid-list__item .ty-icon-right-circle {
  visibility: visible;
}
.ty-thumbs-wrapper .ty-icon-left-circle {
  left: 3px;
}
.ty-thumbs-wrapper .ty-icon-right-circle {
  right: 3px;
}
.ty-popup-tabs {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px dotted #dedede;
}
.ty-popup-tabs__item {
  display: inline-block;
  padding: 2px 15px 2px 0;
  text-transform: uppercase;
  font-size: 85%;
  cursor: pointer;
}
.ty-popup-tabs__icon {
  margin-right: 3px;
  font-size: 14px;
}
.ty-fileuploader {
  padding: 6px 0 0;
}
.ty-fileuploader__file-section {
  overflow: hidden;
}
.ty-fileuploader__file-local {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ty-fileuploader__file-input {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  height: 300px;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
span.ty-fileuploader__filename {
  padding: 0 0 0 5px;
  position: relative;
  top: -2px;
}
.ty-fileuploader__icon {
  position: relative;
  top: 2px;
  margin-right: 5px;
  cursor: pointer;
}
.ty-fileuploader.cm-failed-field .ty-fileuploader__a {
  color: #B94A48;
  font-weight: bold;
}
.ty-quick-view__wrapper {
  width: 700px;
}
.ty-quick-view__wrapper .ty-product-block__left {
  max-width: 450px;
  padding-left: 20px;
}
a.ty-quick-view__title {
  font-size: 24px;
  font-weight: bold;
  color: #4d4d4f;
}
.ty-quick-view__title .ty-product-block-title {
  margin-bottom: 0;
}
.ty-quick-view-tools {
  position: relative;
  height: 20px;
}
.ty-quick-view-tools .ty-product-switcher {
  top: 0;
}
.ty-quick-view__wrapper .ty-product-block__img {
  display: table-cell;
  vertical-align: top;
  margin-right: 20px;
  position: relative;
}
.ty-quick-view__wrapper .ty-product-img {
  margin-bottom: 15px;
}
.ty-quick-view__wrapper .ty-product-block__note {
  position: static;
  padding-top: 10px;
  width: 100%;
}
.ty-quick-view-button {
  padding-top: 5px;
  visibility: hidden;
  text-align: left;
}
.touch .ty-grid-list__control {
  display: none;
}
.ty-product-notification__body {
  padding: 15px 20px;
  min-height: 72px;
}
.ty-product-notification__body .ty-product-options {
  display: block;
  padding: 0;
}
.ty-product-notification__body .ty-control-group__label {
  display: none;
}
.ty-product-notification__body .ty-product-options__info {
  margin-top: 30px;
  padding-left: 0;
  max-height: 420px;
  overflow-y: auto;
  width: 100%;
}
.ty-product-notification__body .ty-product-options-name {
  width: 110px;
  padding: 6px 0;
  float: left;
}
.ty-product-notification__body .ty-product-options-content {
  width: 378px;
  padding: 6px 0;
  float: left;
}
.ty-product-notification__item {
  margin-bottom: 20px;
}
.ty-product-notification__content {
  overflow: hidden;
}
.ty-product-notification__product-name {
  float: left;
  display: block;
  margin-bottom: 7px;
}
.ty-product-notification__price {
  float: right;
  margin-left: 25px;
}
.ty-product-notification__image,
.ty-product-notification__body .ty-no-image {
  float: left;
  margin-right: 20px;
  padding: 10px;
}
.ty-product-notification__divider {
  margin: 0 0 10px 0;
}
.ty-product-notification__amount {
  width: 46%;
}
.ty-product-notification__subtotal {
  font-weight: bold;
  width: 46%;
  text-align: right;
}
.ty-product-notification__body ul ul {
  border-left: 1px solid #fff;
  margin-left: 70px;
}
.ty-product-notification__buttons {
  padding: 15px 20px;
  background: #ECF0F1;
}
.ty-product-filters__wrapper {
  background: #fff;
}
.ty-product-filters {
  padding-top: 5px;
  line-height: 140%;
  margin-left: 7px;
  margin-bottom: 15px;
}
.ty-product-filters__variants {
  overflow-y: auto;
  line-height: 1.4em;
  margin-bottom: 7px;
}
.ty-product-filters__group {
  padding: 2px 0;
  margin: 5px 3px;
}
.ty-product-filters__group label,
.ty-product-filters__group label > input {
  cursor: pointer;
}
.ty-product-filters__group label.disabled,
.ty-product-filters__group label.disabled > input {
  background-color: transparent;
  color: #dadadb;
  cursor: default;
}
.ty-product-filters__item-more {
  margin-bottom: -9px;
}
.ty-product-filters__tools {
  padding: 10px 12px;
}
.ty-product-filters__extra-block {
  margin-top: -3px;
}
.ty-product-filters__extra-link {
  border-color: #cccccc;
  cursor: pointer;
}
.ty-filter-icon {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #cccccc;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  font-size: 70%;
  background: #fff;
}
.ty-filter-icon__check,
.ty-filter-icon__delete {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
  width: 8px;
  height: 8px;
  font-size: 8px;
}
.ty-filter-icon__check,
.ty-filter-icon__delete {
  display: none;
}
.ty-product-filters__title {
  color: #858588;
  font-weight: 600;
}
.ty-product-filters__title .ty-icon-cancel-circle {
  position: relative;
  font-size: 16px;
  top: 4px;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 5px;
}
.ty-product-filters__title .ty-icon-cancel-circle:hover {
  color: #ff9900;
}
.ty-product-filters__switch {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eeeeef;
}
.ty-product-filters__switch-right,
.ty-product-filters__switch-down {
  margin-right: 5px;
  color: #cccccc;
  float: right;
  font-size: 115%;
}
.ty-product-filters__switch-down {
  margin-right: 4px;
}
.open.ty-product-filters__switch .ty-product-filters__switch-down,
.ty-product-filters__switch-right {
  display: none;
}
.open.ty-product-filters__switch .ty-product-filters__switch-right,
.ty-product-filters__switch-down {
  position: relative;
  display: inline-block;
  top: 2px;
}
.ty-product-filters__advanced-button,
.ty-product-filters__reset-button {
  position: relative;
  color: #7f7f83;
  font-size: 85%;
}
.ty-product-filters__reset-button {
  float: right;
}
.ty-product-filters__reset-icon {
  position: absolute;
  left: -14px;
  font-size: 130%;
}
.ty-product-filters__search {
  position: relative;
  padding: 10px 10px 0 3px;
}
.ty-product-filters__search .ty-input-text-medium {
  padding-right: 28px;
  width: 100%;
}
.ty-product-filters__search-icon {
  position: absolute;
  right: 18px;
  top: 18px;
}
.ty-product-filters__no-items-found {
  margin-bottom: 20px;
  margin-right: 10px;
}
.ty-horizontal-product-filters {
  padding-left: 10px;
  background: #fff;
  margin: 0 0 30px;
}
.ty-horizontal-product-filters-dropdown {
  display: inline-block;
  position: relative;
}
.ty-horizontal-product-filters-dropdown .ty-horizontal-product-filters-dropdown__wrapper {
  text-decoration: none;
}
.ty-horizontal-product-filters-dropdown__wrapper {
  padding: 5px 7px 9px 7px;
  display: inline-block;
  color: #34495e;
  cursor: pointer;
}
.ty-horizontal-product-filters-dropdown__wrapper.active {
  background: #f7f7f7;
}
.ty-horizontal-product-filters-dropdown__icon {
  font-size: 20px;
  position: relative;
  padding-left: 10px;
  top: 5px;
}
.ty-horizontal-product-filters-dropdown__wrapper:hover {
  background: #f7f7f7;
}
.ty-horizontal-product-filters-dropdown__wrapper.open {
  background: #8c8c8c;
  color: white;
}
.ty-horizontal-product-filters-dropdown__content {
  position: absolute;
  z-index: 101;
  border: 1px solid #97a0a5;
  background: #fff;
  min-width: 250px;
}
.ty-horizontal-filters-content-to-right {
  right: 0;
}
.ty-horizontal-product-filters-dropdown__content .ty-horizontal-product-filters-dropdown__content-item-a {
  text-decoration: none;
}
.ty-horizontal-product-filters-dropdown__content-item-a {
  padding: 7px 14px;
  color: #ff9900;
  display: block;
}
.ty-horizontal-product-filters-dropdown__content-item-a:hover {
  background: #ff9900;
  color: #fff;
}
.ty-horizontal-product-filters-dropdown .ty-product-filters {
  margin-bottom: 0;
}
.ty-horizontal-product-filters-dropdown a .ty-icon-cancel-circle {
  position: relative;
  font-size: 16px;
  top: 3px;
  padding-left: 5px;
}
.ty-horizontal-product-filters-dropdown a .ty-icon-cancel-circle:hover {
  color: #ff9900;
}
.ty-horizontal-product-filters .ty-range-slider,
.ty-horizontal-product-filters .ty-range-slider .ui-slider-range,
.ty-horizontal-product-filters .ty-range-slider .ui-slider-handle {
  z-index: 101;
}
.ty-horizontal-product-filters-dropdown__content .ty-product-filters__tools {
  background-color: #fff;
}
.ty-horizontal-product-filters.ty-selected-product-filters {
  margin-bottom: 25px;
}
.cm-date-range {
  display: inline-block;
  padding: 15px 10px 9px;
  margin-bottom: 15px;
}
.cm-date-range a {
  color: #4d4d4f;
}
.ty-date-range .ty-icon-calendar {
  position: relative;
  color: #4d4d4f;
  font-size: 16px;
  margin-right: 3px;
  top: 2px;
}
.daterangepicker.dropdown-menu.opensright,
.daterangepicker.dropdown-menu.opensleft {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #97a0a5;
  padding: 10px 8px;
  z-index: 101;
}
.daterangepicker.dropdown-menu.opensright:before,
.daterangepicker.dropdown-menu.opensleft:before,
.daterangepicker.dropdown-menu.opensright:after,
.daterangepicker.dropdown-menu.opensleft:after {
  display: none;
}
.daterangepicker .ranges {
  min-width: 180px;
}
.daterangepicker > .ranges > ul > li {
  color: #ff9900;
}
.daterangepicker > .ranges > ul > li.active,
.daterangepicker > .ranges > ul > li:hover {
  background: #ff9900;
  border: 1px solid #ff9900;
  color: #fff;
}
.daterangepicker .ranges .range_inputs label {
  display: block;
  width: auto;
  color: #4d4d4f;
}
.daterangepicker_start_input,
.daterangepicker_end_input {
  margin-top: 5px;
  margin-bottom: 20px;
}
.daterangepicker .input-mini {
  width: 80px;
  cursor: not-allowed;
  background-color: #eee;
}
.daterangepicker button.btn.btn-small.btn-success.applyBtn {
  font-family: 'RobotoCondensed';
  color: #fff !important;
  display: inline-block;
  margin-bottom: 0;
  padding: 6px 14px;
  outline: 0px;
  border: 1px solid rgba(0,0,0,0);
  background: #BDC3C7;
  background-image: none;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 1.428571429;
  cursor: pointer;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: background 200ms;
  -moz-transition: background 200ms;
  -o-transition: background 200ms;
  transition: background 200ms;
  background: #00b5a9;
  margin-right: 5px;
}
.daterangepicker button.btn.btn-small.clearBtn {
  font-family: 'RobotoCondensed';
  color: #fff !important;
  display: inline-block;
  margin-bottom: 0;
  padding: 6px 14px;
  outline: 0px;
  border: 1px solid rgba(0,0,0,0);
  background: #BDC3C7;
  background-image: none;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 1.428571429;
  cursor: pointer;
  font-family: Open Sans;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: background 200ms;
  -moz-transition: background 200ms;
  -o-transition: background 200ms;
  transition: background 200ms;
}
.daterangepicker .calendar td.active,
.daterangepicker .calendar td.active:hover {
  background-color: #ff9900;
  background-image: -moz-linear-gradient(top,#ff9900,#ff9900);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#ff9900),to(#ff9900));
  background-image: -webkit-linear-gradient(top,#ff9900,#ff9900);
  background-image: -o-linear-gradient(top,#ff9900,#ff9900);
  background-image: linear-gradient(to bottom,#ff9900,#ff9900);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff9900', endColorstr='#ffff9900', GradientType=0);
}
.ty-price-slider {
  padding: 10px;
  margin-bottom: 20px;
  color: #909598;
}
.ty-price-slider__input-text {
  margin: 0 0 5px 0;
  width: 74px;
}
.ty-range-slider__wrapper {
  margin-left: -1px;
  color: #e6e6e6;
}
.ty-range-slider__item {
  position: absolute;
  top: -5px;
  width: 1px;
  height: 10px;
  background: #e6e6e6;
}
.ty-range-slider__num {
  position: absolute;
  top: 21px;
  left: -25px;
  display: block;
  width: 45px;
  text-align: center;
  font-size: 75%;
  cursor: pointer;
  color: #909598;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ty-range-slider {
  position: relative;
  margin: 15px 12px;
  height: 5px;
  border: 1px solid #e6e6e6;
  background: #ecf0f1;
  border-right: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ty-range-slider .ui-slider-range {
  background: #e6e6e6;
  border: 0px;
  margin-top: -1px;
  height: 7px;
}
.ty-range-slider .ui-slider-handle {
  top: -9px;
  margin-left: -8px;
  width: 11px;
  height: 20px;
  background: #fff;
  border-radius: 0px;
  border: 0px;
  cursor: col-resize;
}
.ty-range-slider .ui-slider-handle {
  outline: 0 none;
  -ms-touch-action: none;
  touch-action: none;
}
.ty-range-slider.ui-state-disabled .ui-slider-handle {
  cursor: not-allowed;
}
.ty-cart-content {
  margin-top: 30px;
  border: 1px solid #ffffff;
}
.ty-cart-content__title {
  padding: 12px;
  border: 1px solid #ffffff;
  border-right: 0 none;
  border-left: 0 none;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
  background: #EDEFF1;
}
.ty-cart-content__title.ty-left {
  text-align: left;
}
.ty-cart-content__title.ty-right {
  text-align: right;
}
.ty-cart-content__product-elem {
  padding: 17px 10px;
  border: none;
  border-top: 1px solid #ffffff;
  vertical-align: top;
}
.ty-cart-content__image {
  float: left;
}
.ty-cart-content__image-block {
  padding-left: 20px;
}
.ty-cart-content__product-title {
  font-size: 115%;
}
.ty-cart-content__qty {
  padding: 12px 30px 0;
  text-align: center;
}
.ty-cart-content__sku {
  padding: 5px 0;
}
.ty-cart-content__price {
  padding-right: 20px;
  text-align: right;
}
.ty-cart-content__detailed-link {
  display: inline-block;
  margin: 10px 0 10px;
  border-bottom: 1px dotted transparent;
  text-decoration: none;
  cursor: pointer;
}
.ty-cart-content__detailed-link.open,
.ty-cart-content__detailed-link:hover {
  border-color: #ff9900;
  text-decoration: none;
}
.ty-cart-content__product-delete {
  margin: 0 0 0 6px;
  vertical-align: middle;
}
.ty-cart-content__product-delete:hover {
  text-decoration: none;
}
.ty-cart-content__options {
  margin-top: 20px;
}
.ty-cart-content__more-info {
  margin-top: 0;
}
.ty-cart-content__more-info-title {
  padding: 12px;
}
.ty-cart-content__clear-button {
  margin-left: 10px;
}
.ty-cart-content__payment-methods {
  float: right;
  margin: 30px 0 0;
  border-top: 1px solid #666;
  -webkit-box-shadow: inset 0 70px 70px -30px #7a7a7a;
  -moz-box-shadow: inset 0 70px 70px -30px #7a7a7a;
  box-shadow: inset 0 70px 70px -30px #7a7a7a;
  text-align: center;
}
.ty-cart-content__payment-methods-item {
  padding: 20px 10px 0;
}
.ty-cart-content__payment-methods-title {
  display: inline-block;
  margin: 0 auto;
  margin-bottom: -30px;
  padding: 10px;
  color: #737373;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 85%;
}
.ty-cart-content__buttons {
  padding: 18px 22px;
  background: #ffffff;
}
.ty-cart-content__left-buttons {
  float: left;
}
.ty-cart-content__right-buttons {
  float: right;
}
.ty-cart-items {
  overflow: auto;
  padding: 10px 22px;
  max-height: 400px;
  width: 320px;
}
.ty-cart-items__list-item {
  padding: 10px 0px;
  position: relative;
  border-bottom: 1px solid #ecf0f1;
}
.ty-cart-items__list-item .ty-icon-cancel-circle {
  color: #b3b3b3;
}
.ty-cart-items__list-item:last-child {
  border-bottom: 0px;
}
.ty-cart-items__list-item:hover .ty-cart-items__list-item-tools {
  display: block;
}
.ty-cart-items__list-item-tools a:hover {
  text-decoration: none;
}
.ty-cart-items__list-item-image {
  float: left;
  margin-right: 25px;
}
.ty-cart-items__list-item-desc {
  overflow: hidden;
}
.ty-cart-items__list-item-tools {
  position: absolute;
  top: 10px;
  right: 0px;
  display: none;
}
.ty-cart-items__empty {
  margin: 15px 0;
  color: #cccccc;
}
.ty-minicart-title {
  padding-left: 20px;
  display: inline-block;
  text-decoration: none;
}
.ty-cart-total {
  background: #EDEFF1;
}
.ty-cart-total__wrapper {
  padding: 17px 20px;
  border: 1px solid #ffffff;
  border-top: none;
}
.ty-cart-statistic {
  float: right;
  padding-top: 10px;
}
.ty-cart-statistic__item {
  clear: both;
  overflow: hidden;
  padding: 0 0 15px 0;
  color: #b3b3b3;
}
.ty-cart-statistic__title {
  position: relative;
  float: left;
  margin-right: 20px;
  width: 220px;
  text-align: right;
  white-space: normal;
}
.ty-cart-statistic_title_main {
  font-weight: bold;
}
.ty-statistic-list-subtotal-discount,
.ty-statistic-list-discount {
  color: #e74c3c;
}
.ty-cart-statistic__value {
  position: relative;
  display: inline-block;
  width: 140px;
  text-align: right;
}
.ty-cart-statistic__total-title {
  margin-right: 10px;
}
.ty-cart-statistic__total-value {
  display: inline-block;
  width: 140px;
}
.ty-cart-statistic__group {
  padding-bottom: 5px;
}
.ty-cart-statistic__total-list {
  border-top: 1px solid #e0e0e0;
}
.ty-cart-statistic__total {
  padding: 9px 0 0 0;
  text-align: right;
  font-weight: bold;
  font-size: 138%;
}
.ty-cart-total__a-estimation {
  display: inline-block;
  margin: 0 2px 0 3px;
  text-transform: uppercase;
  font-size: 85%;
  line-height: 130%;
  border-bottom: 1px solid transparent;
}
.ty-cart-total__a-estimation:hover {
  border-bottom: 1px dotted #ff9900;
  text-decoration: none;
}
.ty-cart-total__icon-estimation {
  padding: 0 2px;
}
.ty-cart-content__estimation {
  max-width: 480px;
}
.ty-sidebox .ty-input-text-medium {
  width: 100%;
}
.ty-estimation__title {
  margin-top: 15px;
  font-weight: bold;
  font-size: 16px;
  color: #b3b3b3;
}
.ty-estimation-buttons__rate {
  float: none;
}
.ty-estimation-buttons .ty-btn + .ty-btn {
  margin-left: 0;
}
.ty-estimation-buttons .ty-btn {
  vertical-align: top;
}
.ty-cart-content-products {
  margin-bottom: 6px;
  position: relative;
  padding: 0 10px;
  border: 1px solid #bdc3c7;
  background: #fff;
}
.ty-cart-content-products__item {
  padding-top: 15px;
  border-bottom: 1px solid #bdc3c7;
}
.ty-cart-content-products__item:last-child {
  border: 0;
}
.ty-discount-info {
  position: relative;
  margin-top: 7px;
  padding: 10px;
  border: 1px solid #bdc3c7;
  background: #fff;
  font-size: 90%;
}
.ty-discount-coupon__ty-control-group {
  margin: 5px 0;
}
.ty-coupons__container {
  float: left;
  padding-right: 25px;
  width: 235px;
}
.ty-coupons__item {
  padding: 0 0 5px;
}
.ty-coupons__item:last-child {
  padding-bottom: 0;
}
.ty-coupons__item-delete,
.ty-coupons__item-delete:hover {
  text-decoration: none;
}
.ty-group-block {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 3px;
}
.ty-group-block__arrow {
  position: relative;
}
.ty-group-block__arrow .ty-caret-info {
  top: -17px;
}
.ty-group-block .ty-caret-outer {
  border-bottom: 7px solid #fff;
  border-bottom-color: rgba(0,0,0,0.1);
}
.ty-group-block .ty-caret-inner {
  border-bottom-color: #ffffff;
}
.ty-checkout__title {
  display: inline-block;
  margin: 30px 0 0;
  text-decoration: none;
  font-weight: bold;
  font-style: normal;
  font-size: 26px;
  font-family: Open Sans;
}
.ty-checkout__title-icon {
  color: #c1d72e;
  vertical-align: middle;
  font-size: 27px;
}
.checkout__block {
  padding: 0 20px;
}
.ty-checkout-buttons {
  margin-top: 15px;
  padding: 17px 25px 0px 25px;
  border-top: 1px solid #e6e6e6;
  background: #fff;
}
.ty-checkout__terms {
  margin: 25px 0px;
  padding: 15px 20px;
  border: 2px solid #bdc3c7;
  border-radius: 3px;
  background: #fff;
  font-weight: bold;
}
.ty-checkout__shipping-tips {
  color: #7f7f7f;
}
.ty-step__container {
  margin: 0 0 5px 0;
  position: relative;
}
.ty-step__container .ty-icon-down-micro {
  display: none;
}
.ty-step__container-active {
  margin: 0 0 45px 0;
  background: #fff;
}
.ty-step__container-active .ty-tabs {
  margin-top: 5px;
  padding: 0px 10px;
}
.ty-step__container-active .ty-tabs__content {
  padding: 0;
}
.ty-step__body-active .ty-address-switch {
  margin: 25px 20px;
}
.ty-step__container-active .ty-step__title-txt {
  margin-left: 32px;
}
.ty-step__container-active .ty-step__title-left {
  background: #FFF;
  color: #d1d1d1;
  margin-top: -1px;
}
.ty-step__container {
  background: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ty-step__title,
.ty-step__title-active,
.ty-step__title-complete {
  position: relative;
  padding: 10px 14px 9px 14px;
}
.ty-step__title-complete {
  padding-right: 110px;
}
.ty-step__title-complete .ty-step__title-left {
  position: static;
  padding: 0px;
  background: none;
  color: #bfbfbf;
  display: inline;
}
.ty-step__title-complete .ty-step__title-txt {
  margin-left: 30px;
  color: #bfbfbf;
}
.ty-step__title-complete .ty-step__title-right .ty-btn {
  position: absolute;
  right: 8px;
  top: 8px;
}
.ty-step__title-active {
  background: #d1d1d1;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ty-step__title-arrow {
  display: block;
  width: 35px;
  height: 18px;
  position: absolute;
  font-size: 80px;
  line-height: 0;
  bottom: -30px;
  color: #d1d1d1;
  left: 35px;
}
.ty-step__title-txt {
  color: white;
  font-size: 20px;
  font-weight: normal;
}
.ty-step__title .ty-step__title-txt {
  font-weight: normal;
  color: #bfbfbf;
  margin-left: 36px;
}
.ty-step__title-icon {
  position: absolute;
  top: 14px;
  left: 16px;
}
.ty-step-one .ty-checkout-buttons {
  border: 0;
  margin-top: 6px;
}
.ty-step-one .buttons-container {
  border: 0;
  padding-left: 0;
  padding-right: 0;
}
.ty-step__title-left {
  font-weight: normal;
  font-size: 18px;
  position: absolute;
  display: inline-block;
  color: #fff;
  padding: 2px 9px;
  background: #d1d1d1;
  border-radius: 50px;
}
.ty-step__title-right {
  float: right;
  padding: 4px 0 0 0;
}
.ty-step__body-active {
  padding: 20px 0;
}
.ty-step__body-active .select-profile label {
  display: none;
}
.ty-step__body-active .ty-control-group .ty-input-text {
  width: 100%;
}
.ty-checkout__relogin {
  display: inline-block;
  padding: 10px 10px 20px;
}
.ty-checkout__login {
  float: left;
  padding-right: 3%;
  padding-left: 3%;
  width: 46%;
}
.ty-checkout__login .ty-login {
  margin-top: 0;
}
.ty-checkout__register {
  position: relative;
  float: left;
  margin: 0 0 0 3%;
  width: 45%;
}
.ty-checkout__register #anonymous_checkout .ty-control-group {
  margin-bottom: 0;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.ty-anonymous_checkout {
  padding: 0 25px;
  margin-top: 20px;
}
.ty-anonymous_checkout__field {
  padding: 0 25px;
  margin-top: 20px;
}
.ty-checkout__register-content {
  padding-left: 20px;
}
.ty-checkout__register-cancel {
  margin-left: 15px;
}
.ty-checkout__register-methods {
  margin: 0;
  padding: 0;
}
.ty-checkout__register-methods-item {
  margin: 0px;
  padding: 15px 0 0;
}
input.ty-checkout__register-methods-radio {
  float: left;
  margin-top: 2px;
}
.ty-checkout__register-methods-title {
  display: block;
  padding-bottom: 5px;
  overflow: hidden;
}
.ty-checkout__register-methods-hint {
  display: inline-block;
  padding-left: 20px;
  color: #7f7f7f;
  font-size: 95%;
}
.ty-shipping-options__vendor-name {
  display: inline-block;
  padding: 15px 0 10px;
  font-weight: bold;
}
.ty-shipping-options__products {
  margin-left: 15px;
}
.ty-shipping-options__total {
  margin-top: 15px;
  padding: 15px 0;
  border-top: 1px solid #e5e5e5;
}
.ty-customer-notes {
  padding: 15px 0;
}
.ty-customer-notes__title {
  font-weight: bold;
}
.ty-customer-notes__text {
  width: 100%;
  height: 100px;
  resize: vertical;
}
.ty-checkout__billing-options {
  padding: 20px 20px 0;
}
.ty-checkout__billing-options.ty-notab {
  padding: 0px 20px 0;
}
.ty-checkout__billing-tabs .ty-tabs {
  padding-left: 20px;
}
.ty-credit-card {
  display: inline-block;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 15px 22px;
  max-width: 363px;
  border: 1px solid #f2f2f2;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: white;
}
.ty-credit-card__control-group {
  position: relative;
}
input.ty-credit-card__input {
  padding: 8px;
  width: 100%;
  height: 40px;
  font-size: 18px;
}
input.ty-credit-card__input-short {
  margin: 0;
  width: 50px;
}
.ty-credit-card__ty-control-group {
  position: relative;
}
.ty-credit-card .help-inline {
  display: none;
}
.ty-credit-card__cvv-field {
  display: inline-block;
  margin: 17px 15px;
  max-width: 190px;
}
.ty-credit-card__cvv-field-input {
  width: 65px;
  font-size: 18px;
  height: 38px;
}
.ty-cc-icons {
  position: absolute;
  right: 57px;
  bottom: 25px;
  display: inline-block;
  margin: 0 0 15px;
}
.ty-cc-icons__item {
  position: absolute;
  z-index: 10;
  display: inline-block;
  visibility: hidden;
  padding: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.ty-cc-icons__icon {
  display: inline-block;
  margin: 0;
  width: 51px;
  height: 32px;
  background: url('../../../../../../../../design/themes/responsive/media/images/icons/payments.png?1753621501') no-repeat;
}
.ty-cc-icons__item.cc-default,
.ty-cc-icons__item.active {
  visibility: visible;
}
.ty-cc-icons__item .default {
  background-position: -300px 0px;
}
.ty-cc-icons__item .visa-electron {
  background-position: -200px -100px;
}
.ty-cc-icons__item .maestro {
  background-position: 0 -200px;
}
.ty-cc-icons__item .american-express {
  background-position: -100px -200px;
}
.ty-cc-icons__item .discover {
  background-position: -200px -200px;
}
.ty-cc-icons__item  .mastercard {
  background-position: 0px -100px;
}
.ty-cc-icons__item  .visa {
  background-position: -200px 0px;
}
.ty-cvv2-about {
  display: inline-block;
  margin-left: 10px;
}
.touch .ty-cvv2-about {
  display: none;
}
.ty-cvv2-about:hover {
  position: relative;
  text-decoration: none;
}
.ty-cvv2-about__title {
  cursor: pointer;
  color: #ff9900;
}
.ty-cvv2-about__note {
  display: none;
  padding: 15px 5px;
  width: 340px;
  border: 1px solid #ffffff;
  background-color: #fff;
  -webkit-border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  border-radius: 6px 6px 6px 6px;
  -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ty-cvv2-about:hover .ty-cvv2-about__note {
  position: absolute;
  bottom: 0;
  left: 100%;
  z-index: 100;
  display: block;
}
.ty-cvv2-about__image {
  float: left;
  padding: 0 15px;
}
.ty-cvv2-about__description {
  float: left;
  width: 240px;
}
.ty-cvv2-about__description-title {
  margin: 0;
}
.ty-payment-icons {
  margin: 10px 0;
}
.ty-payment-icons__item {
  display: inline-block;
  margin-left: 10px;
  width: 51px;
  height: 32px;
  background: url('../../../../../../../../design/themes/responsive/media/images/icons/payments.png?1753621501') no-repeat;
}
.ty-payment-icons__item.twocheckout {
  background-position: 0 0;
}
.ty-payment-icons__item.mastercard {
  background-position: 0px -100px;
}
.ty-payment-icons__item.paypal {
  background-position: -100px -100px;
}
.ty-payment-icons__item.visa {
  background-position: -200px 0px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2) {
  .ty-payment-icons__item {
    background-image: url('../../../../../../../../design/themes/responsive/media/images/icons/payments@2x.png?1753621501');
    background-size: 400px, 400px;
  }
}
.ty-checkout-summary__block {
  margin-top: 20px;
  width: 100%;
}
.ty-checkout-summary__item {
  padding-bottom: 15px;
}
.ty-checkout-summary__total {
  text-align: left;
}
.ty-checkout-summary__total-sum {
  display: inline-block;
  float: right;
}
.ty-checkout-summary__taxes {
  padding-bottom: 2px;
  font-weight: bold;
}
.ty-checkout-summary__taxes-amount {
  display: inline-block;
  overflow: hidden;
  width: 70px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ty-checkout-summary__order_discount {
  color: #E74C3C;
}
.ty-order-products__list {
  padding: 0px 0px;
}
.ty-order-products__list .ty-product-options {
  display: block;
  padding: 6px 0 0;
  color: #8c8c8f;
}
.ty-order-products__item {
  padding: 14px 0;
  border-bottom: 1px solid #ecf0f1;
}
.ty-order-products__item:last-child {
  padding-bottom: 5px;
  border: none;
}
.ty-order-products__item:first-child {
  padding-top: 0;
}
.ty-order-products__item-delete {
  visibility: hidden;
  float: right;
}
.ty-order-products__item-delete:hover {
  text-decoration: none;
}
.ty-order-products__item:hover .ty-order-products__item-delete {
  visibility: visible;
}
.ty-order-products__price {
  color: #343435;
}
.ty-order-products__a {
  display: inline-block;
  margin: 2px 0 5px;
  max-width: 238px;
}
.ty-order-products__buttons {
  padding: 14px 0px;
}
.ty-order-products__buttons .text-button {
  color: #E74C3C;
}
.ty-order-info {
  color: #343435;
}
.ty-order-info__title {
  font-weight: bold;
}
.shipping-adress__delim {
  margin-bottom: 15px;
  padding-top: 10px;
  border-bottom: 1px solid #ECF0F1;
}
.ty-order-info__profile-field {
  padding: 10px;
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.ty-order-info__profile-field-item {
  float: none;
  clear: left;
}
.ty-order-info__profile-field .b-firstname,
.ty-order-info__profile-field .b-lastname,
.ty-order-info__profile-field .b-address,
.ty-order-info__profile-field .b-city,
.ty-order-info__profile-field .b-country,
.ty-order-info__profile-field .b-state,
.ty-order-info__profile-field .b-zipcode,
.ty-order-info__profile-field .s-firstname,
.ty-order-info__profile-field .s-lastname,
.ty-order-info__profile-field .s-address,
.ty-order-info__profile-field .s-city,
.ty-order-info__profile-field .s-country,
.ty-order-info__profile-field .s-state,
.ty-order-info__profile-field .s-zipcode {
  float: left;
  clear: none;
  padding-right: 5px;
}
.ty-order-info__profile-field .b-address,
.ty-order-info__profile-field .s-address {
  clear: left;
}
.ty-checkout-complete__create-account {
  width: 49%;
  display: inline-block;
}
.ty-checkout-complete__buttons:before,
.ty-checkout-complete__buttons:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-checkout-complete__buttons:after {
  clear: both;
}
.ty-checkout-complete__buttons-left {
  float: left;
}
.ty-checkout-complete__buttons-right {
  float: right;
}
.ty-checkout-complete__login-info {
  width: 45%;
  margin-left: 5%;
  display: inline-block;
  vertical-align: top;
}
.ty-checkout-complete_width_full {
  width: 100%;
  margin: 0 0 45px 0;
}
.ty-checkout-complete__order-success {
  margin-bottom: 20px;
}
.ty-checkout-complete__button-vmid {
  display: inline-block;
  margin-top: 8px;
}
.ty-other-pay {
  margin-top: 20px;
}
.ty-payments-list {
  float: left;
  margin: 0;
  padding-right: 60px;
}
.ty-payments-list__item {
  padding: 0px 0px 20px 0;
}
input.ty-payments-list__checkbox {
  float: left;
  margin-top: 2px;
}
.ty-payments-list__checkbox:checked + .ty-payments-list__item-group {
  font-weight: bold;
}
.ty-payments-list__item-group {
  padding-left: 20px;
  color: #b3b3b3;
}
.ty-payments-list__description {
  padding-top: 5px;
  margin-bottom: 10px;
  font-weight: normal;
}
.ty-payments-list__instruction {
  display: inline-block;
  width: 255px;
  margin-bottom: 10px;
  color: #fff;
}
.ty-payments-list__instruction h2 {
  font-weight: bold;
  font-size: 135%;
  line-height: 130%;
}
.ty-payments-list__instruction p {
  padding-top: 10px;
  line-height: 150%;
}
.ty-payments-list__image {
  max-width: 120px;
}
.ty-payment-method-iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 700px;
  background: #c0c0c0;
  opacity: 0.9;
}
.ty-payment-method-iframe__label {
  position: relative;
  top: 350px;
  padding: 10px;
  height: 50px;
}
.ty-payment-method-iframe__text {
  position: relative;
  top: 20px;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
}
.ty-payment-method-iframe__box {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 700px;
}
.ty-repay .ty-tabs {
  margin-top: 5px;
}
.ty-repay-button {
  padding-bottom: 20px;
}
.ty-orders-detail {
  position: relative;
}
.ty-orders-detail .tabs {
  margin-top: 20px;
}
.ty-orders-detail .ty-subheaders-group {
  margin: 0;
}
.ty-orders__actions {
  margin: 25px 0;
}
.ty-orders__actions .ty-btn + .ty-btn {
  margin-left: 30px;
}
.ty-orders__actions-right {
  float: right;
}
.ty-orders__actions-right-item {
  float: left;
  margin-left: 25px;
}
.ty-profiles-info {
  margin-top: 20px;
  vertical-align: top;
}
.ty-profiles-info:before,
.ty-profiles-info:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-profiles-info:after {
  clear: both;
}
.ty-profiles-info__item {
  float: left;
  margin-right: 3%;
  width: 30%;
}
.ty-profiles-info__title {
  margin-bottom: 5px;
  font-size: 15px;
}
.ty-profiles-info__field {
  padding-top: 12px;
}
.ty-profiles-info__field .ty-info-field {
  margin-bottom: 5px;
}
.ty-profiles-info__field .ty-info-field:before,
.ty-profiles-info__field .ty-info-field:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-profiles-info__field .ty-info-field:after {
  clear: both;
}
.ty-orders-detail__products {
  margin-top: 25px;
}
.ty-orders-detail__table {
  width: 100%;
  margin-top: 10px;
}
.ty-orders-detail__table-product {
  width: 65%;
}
.ty-orders-detail__table-price {
  width: 15%;
  text-align: right;
}
.ty-orders-detail__table-quantity {
  width: 10%;
}
.ty-orders-detail__table-subtotal {
  text-align: right;
}
.ty-orders-notes {
  margin-top: 28px;
}
.ty-orders-notes__body {
  position: relative;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #fff;
  line-height: 150%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ty-orders-summary {
  margin-top: 28px;
}
.ty-orders-summary__wrapper {
  float: left;
  margin-top: 10px;
  padding: 4px 20px;
  min-width: 52%;
  background: #ffffff;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ty-orders-summary__table {
  width: 100%;
}
.ty-orders-summary__row {
  border-bottom: 1px solid #E3E9EC;
}
.ty-orders-summary__row:last-child {
  border-bottom: 0px;
}
.ty-orders-summary__total {
  font-weight: bold;
}
.ty-orders-summary__wrapper td {
  padding: 13px 10px 11px 0;
  vertical-align: top;
}
.ty-orders-summary__taxes-description {
  padding-top: 5px;
}
.ty-orders-summary__right {
  float: right;
}
.ty-orders-shipment__info {
  margin-top: 30px;
}
.ty-orders-shipment__table {
  width: 100%;
  margin-top: 10px;
}
.ty-orders-search {
  position: relative;
  width: 100%;
}
.ty-orders-search__item {
  vertical-align: top;
}
.ty-orders-search__user-info {
  margin: 0;
  padding: 0;
}
.ty-orders-repay {
  margin-top: 30px;
}
.ty-orders-repay .tabs-content {
  padding-left: 20px;
}
.ty-order-status {
  margin: 5% auto;
  padding: 15px 15px 15px 40px;
  width: 920px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7 url('../../../../../../../../design/themes/responsive/media/images/icons/ajax.gif?1753621501') no-repeat 15px center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.ty-license-agreement__checkbox__checkbox {
  font-weight: bold;
}
.ty-orders-promotion {
  margin-top: 30px;
}
.ty-orders-promotion__title {
  font-size: 16px;
}
.ty-orders-promotion__description {
  overflow-x: auto;
  overflow-y: hidden;
  margin-bottom: 10px;
  padding: 10px;
}
.ty-exception {
  position: relative;
  margin: 50px 0px 30px 0px;
  padding: 40px 0px 70px 0px;
}
.ty-exception__code {
  top: 92px;
  left: 63px;
  display: inline-block;
  width: 300px;
  color: #E74C3C;
  text-align: center;
  font-weight: bold;
  font-size: 86px;
  line-height: 70px;
}
.ty-exception__code-txt {
  display: block;
  text-align: center;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
}
.ty-exception__title-info {
  display: inline-block;
  padding-left: 30px;
}
.ty-exception__title {
  padding: 0px 0px 25px 0px;
  font-size: 25px;
  font-weight: normal;
  color: #34495E;
}
.ty-exception__info {
  padding: 0px 0px 30px 0px;
  color: #BDC3C7;
  font-size: 110%;
}
.ty-exception__links {
  margin: 0px 20px 0px 0px;
}
.ty-exception__links-item {
  float: left;
  list-style-type: none;
  margin-right: 20px;
}
.ty-exception__links-a {
  text-decoration: underline;
  cursor: pointer;
}
.ty-sitemap {
  margin-bottom: 10px;
}
.ty-sitemap__section-title {
  display: block;
  padding: 10px 0 7px 0;
  border-color: #ffffff;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
}
.ty-sitemap__section-wrapper {
  float: left;
  margin-top: 20px;
  margin-bottom: 30px;
  width: 33%;
}
.ty-sitemap__tree {
  margin: 20px 0 15px 0;
}
.ty-sitemap__tree-section-list {
  display: inline-block;
  float: left;
  margin-bottom: 30px;
  min-height: 165px;
  width: 33%;
  font-size: 12px;
}
.ty-sitemap__section-sub-title {
  font-weight: bold;
  font-size: 120%;
}
.ty-sitemap__tree-list-item {
  font-size: 12px;
  line-height: 17px;
  padding: 5px 0;
}
.ty-sitemap__tree-list-item {
  padding: 5px 0;
}
.ty-company-fields {
  margin-bottom: 50px;
}
.ty-company-fields .ty-input-text,
.ty-company-fields .ty-input-textarea-long {
  width: 100%;
}
.ty-company-fields select {
  width: 100%;
}
.ty-companies {
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
}
.ty-companies:before,
.ty-companies:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-companies:after {
  clear: both;
}
.ty-companies__info {
  overflow: hidden;
  padding-left: 25px;
}
.ty-companies__img {
  float: left;
  text-align: center;
}
.ty-company-title {
  display: inline-block;
  padding: 5px 0;
}
.ty-company-detail__top-links {
  line-height: 20px;
}
.ty-company-detail__view-products {
  display: inline-block;
  margin-top: 5px;
  margin-right: 15px;
  cursor: pointer;
}
.ty-company-detail__categories {
  margin-top: 10px;
}
.ty-company-detail__table {
  width: 100%;
  margin-top: 10px;
}
.ty-company-detail__info-title {
  margin-bottom: 0;
  padding-bottom: 5px;
  color: #404040;
  font-weight: bold;
  font-size: 115%;
}
.ty-company-detail__logo {
  float: left;
  overflow: hidden;
  margin: 0 100px 20px 0;
  width: 160px;
  height: 100px;
  border: 1px solid #ddd;
  text-align: center;
  line-height: 100px;
}
.ty-company-detail__logo:before,
.ty-company-detail__logo:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-company-detail__logo:after {
  clear: both;
}
.ty-company-detail__logo .ty-no-image {
  width: 160px;
  height: 100px;
}
.ty-company-detail__info {
  overflow: hidden;
  margin-top: 25px;
}
.ty-company-detail__info:before,
.ty-company-detail__info:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-company-detail__info:after {
  clear: both;
}
.ty-company-image {
  vertical-align: middle;
}
.ty-company-detail__info-list {
  float: left;
  margin-bottom: 20px;
  max-width: 240px;
  word-break: break-all;
}
.ty-company-detail_info-first {
  margin-right: 10%;
}
.ty-company-detail__ty-control-group {
  padding-top: 3px;
}
.ty-company-detail__control-label {
  display: inline-block;
  width: 65px;
}
.ty-company-info {
  margin: 45px 0 0 58px;
  padding-bottom: 280px;
  background: url('../../../../../../../../design/themes/responsive/media/images/company_vendor.png?1753621501') no-repeat bottom center;
}
.ty-company-info h4 {
  padding-bottom: 10px;
  font-size: 19px;
}
.ty-company-info ul li {
  margin-bottom: 11px;
  margin-left: 17px;
  padding: 2px 0;
  list-style-type: disc;
}
.vendor-info-grid {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 30px 0 3px;
  padding: 35px 0;
}
.ty-vendor-information {
  text-align: right;
}
.ty-entry-page__item {
  margin: 3px 0;
  padding: 8px;
}
.ty-entry-page__a {
  display: block;
}
.ty-categories-picker {
  margin-top: -1px;
  width: 100%;
}
.ty-categories-picker__title,
.ty-categories-picker__item {
  padding: 12px;
  border: 1px solid #ecf0f1;
  text-align: left;
}
.ty-categories-picker .ty-dir-list {
  color: #b3b3b3;
}
.ty-tree-space {
  display: inline-block;
  width: 10px;
}
.download {
  margin-top: 20px;
}
.ty-download__table {
  width: 100%;
  margin: 11px 0 35px 0;
}
.ty-download-icon {
  margin-right: 5px;
  color: #BDC3C7;
}
.ty-download__empty {
  color: #fff;
}
.ty-download__icon {
  margin-left: 5px;
  font-size: 120%;
}
.ty-top-panel {
  position: fixed;
  width: 100%;
  z-index: 500;
}
.ty-top-panel-padding {
  padding-top: 36px;
}
.ty-top-panel__wrapper {
  position: relative;
  z-index: 100;
  overflow: hidden;
  height: 35px;
  border-bottom: 1px solid #262626;
  background: #333 url('../../../../../../../../design/themes/responsive/media/images/csse_bg.png?1753621501');
  -webkit-box-shadow: inset 0 0 25px rgba(0,0,0,0.5);
  -moz-box-shadow: inset 0 0 25px rgba(0,0,0,0.5);
  box-shadow: inset 0 0 25px rgba(0,0,0,0.5);
}
.ty-top-panel__title {
  float: left;
  margin: 0 0 0 15px;
  color: #d3d3d3;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 14px;
  line-height: 36px;
}
.ty-top-panel__logo {
  display: inline-block;
  width: 20px;
  float: left;
  padding: 0 15px;
  height: 36px;
  border-right: 1px solid #282828;
  -webkit-box-shadow: 1px 0px 0px 0px #393939;
  -moz-box-shadow: 1px 0px 0px 0px #393939;
  box-shadow: 1px 0px 0px 0px #393939;
}
.ty-top-panel__logo-link:hover {
  text-decoration: none;
}
.ty-top-panel__icon-basket {
  position: relative;
  top: 7px;
  color: #666666;
  font-size: 20px;
}
.ty-top-panel__icon-basket:hover {
  color: #f3f3f3;
}
.ty-top-panel__timer {
  color: #cfcfcf;
  margin-right: 15px;
}
.ty-top-panel__close {
  width: 9px;
  padding: 0 15px;
  color: #969696;
  font-size: 12px;
}
.ty-top-panel__close:hover {
  background: rgba(0,0,0,0.3);
  color: #f3f3f3;
  text-decoration: none;
}
.ty-top-panel-action {
  float: right;
  line-height: 36px;
}
.ty-top-panel-action__setting {
  padding: 0 15px;
  width: 22px;
}
.ty-top-panel-action__setting:hover,
.ty-top-panel-action__setting.active {
  background: rgba(0,0,0,0.3);
  text-decoration: none;
}
.ty-top-panel-action__setting:hover .ty-top-panel-action__icon-setting {
  color: #f3f3f3;
}
.ty-top-panel-action__icon-setting {
  color: #969696;
  font-size: 22px;
  position: relative;
  top: 3px;
}
.ty-top-panel-action_item {
  display: inline-block;
  border-right: 1px solid #282828;
  -webkit-box-shadow: 1px 0px 0px 0px #393939;
  -moz-box-shadow: 1px 0px 0px 0px #393939;
  box-shadow: 1px 0px 0px 0px #393939;
}
.minimize-label {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1000;
  width: 35px;
  height: 20px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  background: #4d4d4d;
  text-decoration: none;
  opacity: 0.7;
}
.minimize-label:hover {
  opacity: 1;
}
.minimize-label__icon {
  position: absolute;
  top: -2px;
  left: 11px;
  color: #ccc;
  font-size: 22px;
}
.ty-top-panel-btn {
  margin-right: 15px;
  padding: 3px 12px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #636363;
  background-image: -moz-linear-gradient(top,#6d6d6d,#555555);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#6d6d6d),to(#555555));
  background-image: -webkit-linear-gradient(top,#6d6d6d,#555555);
  background-image: -o-linear-gradient(top,#6d6d6d,#555555);
  background-image: linear-gradient(to bottom,#6d6d6d,#555555);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6d6d6d', endColorstr='#ff555555', GradientType=0);
  -webkit-box-shadow: inset 0 1px rgba(255,255,255,0.3);
  -moz-box-shadow: inset 0 1px rgba(255,255,255,0.3);
  box-shadow: inset 0 1px rgba(255,255,255,0.3);
  color: #fff;
  text-shadow: 0px 1px 0px rgba(0,0,0,0.5);
  font-size: 12px;
  cursor: pointer;
}
.ty-top-panel-btn:hover {
  background-color: #7d7d7d;
  background-image: -moz-linear-gradient(top,#878787,#6e6e6e);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#878787),to(#6e6e6e));
  background-image: -webkit-linear-gradient(top,#878787,#6e6e6e);
  background-image: -o-linear-gradient(top,#878787,#6e6e6e);
  background-image: linear-gradient(to bottom,#878787,#6e6e6e);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff878787', endColorstr='#ff6e6e6e', GradientType=0);
  color: #fff;
  text-decoration: none;
  text-shadow: 0px 1px 0px rgba(0,0,0,0.5);
}
.ty-top-panel-btn:active {
  background-color: #5f5f5f;
  background-image: -moz-linear-gradient(top,#555555,#6e6e6e);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#555555),to(#6e6e6e));
  background-image: -webkit-linear-gradient(top,#555555,#6e6e6e);
  background-image: -o-linear-gradient(top,#555555,#6e6e6e);
  background-image: linear-gradient(to bottom,#555555,#6e6e6e);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff555555', endColorstr='#ff6e6e6e', GradientType=0);
  -webkit-box-shadow: inset 0 -1px rgba(255,255,255,0.05);
  -moz-box-shadow: inset 0 -1px rgba(255,255,255,0.05);
  box-shadow: inset 0 -1px rgba(255,255,255,0.05);
  color: #fff;
  text-shadow: none;
  font-size: 12px;
}
.te-mode {
  margin-left: 300px;
}
.te-mode .ty-ajax-loading-box {
  margin-left: 156px;
}
html #jquery-overlay {
  z-index: 1060;
}
html #jquery-lightbox {
  z-index: 1070;
}
.homepage-banners {
  margin-top: 25px;
}
.homepage-hotdeals {
  margin: 50px 0;
}
.ty-homepage-vendors {
  margin-top: 35px;
  margin-right: 40px;
  padding: 15px 0 30px 0;
}
.ty-homepage-vendors ul {
  margin: 15px 15px 0 0;
}
.ty-homepage-vendors ul li {
  padding: 5px 0;
}
.ty-homepage-vendors__devider {
  border-top: 1px solid #fff;
  padding: 10px 0;
  margin-top: 15px;
}
.ty-pagination {
  margin: 10px 0 10px;
  padding: 10px 0 10px 0;
}
.ty-pagination__items {
  display: inline-block;
  color: #a6a6a6;
}
.ty-pagination__bottom {
  border-top: 1px solid #dedede;
}
.ty-pagination__item,
.ty-pagination__selected {
  color: white;
  display: inline-block;
  padding: 3px 7px;
  min-width: 12px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
.ty-pagination__item {
  color: #a6a6a6;
}
.ty-pagination__item:hover {
  background: #fff;
  color: #a6a6a6;
  padding: 4px 7px;
}
.ty-pagination__selected {
  color: #fff;
  font-size: 14px;
  background: #ff9900;
}
.ty-pagination__range,
.ty-pagination__btn {
  margin: 0 4px;
  padding: 5px 7px;
  width: auto;
  color: #a6a6a6;
}
.ty-pagination__btn:hover {
  color: #a6a6a6;
}
.ty-pagination__prev,
.ty-pagination__next {
  color: #a6a6a6;
}
.ty-pagination__prev:hover,
.ty-pagination__next:hover {
  color: #a6a6a6;
  background: #fff;
  cursor: pointer;
}
.ty-pagination__text {
  text-transform: uppercase;
}
.ty-pagination__text-arrow {
  font-size: 16px;
  line-height: 10px;
  font-style: normal;
}
.ty-tabs {
  margin-top: 30px;
  vertical-align: bottom;
  border-bottom: 1px solid #ededed;
}
.ty-tabs__list {
  vertical-align: bottom;
}
.ty-tabs__item,
.ty-tabs .subtab {
  float: left;
  vertical-align: bottom;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0;
  margin: 2px 2px 0 0;
  padding: 0 0 0 3px;
  position: relative;
  background: #f2f2f2;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}
.ty-tabs__item:hover,
.ty-tabs .subtab:hover {
  background: #fafafa;
}
.ty-tabs__item.active,
.ty-tabs .subtab.active {
  background: #cccccc;
}
.ty-tabs__a,
.ty-tabs .subtab a {
  display: block;
  padding: 8px 21px 2px 18px;
  height: 23px;
  color: #7c7e80;
  text-decoration: none;
}
.ty-tabs__item.active .ty-tabs__a {
  color: #fff;
}
.ty-tabs .subtab .ty-tabs__item.active .ty-tabs__a {
  color: #7C7E80;
}
.ty-tabs__a:hover,
.ty-tabs .subtab a:hover {
  text-decoration: none;
  color: #7c7e80;
}
.ty-tabs__content {
  padding: 15px 5px;
}
.tab-list-title {
  margin: 50px 0 15px 0px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  font-size: 22px;
}
.ty-tabs .open .dropdown-menu {
  display: block;
}
.ty-tabs .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  min-width: 160px;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topright: 0px;
  border-top-right-radius: 0px;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-left-radius: 0px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}
.ty-tabs .dropdown-menu li.active {
  float: none;
  border: 0;
  margin: 0;
}
.ty-tabs .dropdown-menu li {
  display: block;
  margin: 0;
  float: none;
  background: none;
  border: 0px;
}
.ty-tabs .subtab {
  float: right;
}
.ty-tabs .ty-icon-down-dir {
  position: relative;
  float: none;
  top: 0;
  left: 0;
  margin: 0 2px;
}
.ty-ajax-loading-box__inner {
  display: none;
  margin: 0 10px 0 5px;
  padding: 6px 0 6px 27px;
  color: #fff;
  font-weight: bold;
}
.ty-ajax-loading-box {
  position: fixed;
  top: 50%;
  right: 50%;
  left: 50%;
  z-index: 100001;
  display: none;
  overflow: visible;
  margin-top: -26px;
  margin-left: -26px;
  padding: 0px;
  min-height: 52px;
  width: 52px;
  background: url('../../../../../../../../design/themes/responsive/media/images/icons/ajax_loader.svg?1753621501') no-repeat 10px 10px #0d0d0d;
  opacity: 0.8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ty-ajax-loading-box_text_block {
  min-width: 120px;
  min-height: 76px;
  background-position: 44px 10px;
}
.ty-ajax-loading-box-with__text-wrapper {
  color: #fff;
  margin-top: 50px;
  display: block;
  margin-left: 0px;
  width: 110px;
  padding: 0px 5px 5px 5px;
  text-align: center;
}
.ty-ajax-overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 10000;
  display: none;
}
.notification-content-extended {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1101;
  margin: -40px 0 0 -320px;
  min-height: 140px;
  width: 640px;
  color: #000;
  background-color: #fff;
  border: 1px solid gray;
}
.notification-content-extended .ty-product-notification__body {
  overflow: auto;
}
.notification-body-extended {
  color: #000;
  overflow-x: hidden;
  overflow-y: auto;
}
.notification-container {
  position: fixed;
  top: 0;
  right: 40px;
  z-index: 1022;
  min-width: 300px;
  width: 40%;
}
.notification-container-top {
  top: 10px;
}
.notification-content {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 35px 10px 18px;
  line-height: 150%;
  border-radius: 2px;
}
.notification-content strong {
  margin-right: 7px;
}
.notification-content-extended h1 {
  position: relative;
  padding: 13px 30px 10px 20px;
  border: none;
  border-bottom: 1px solid #bdc3c7;
  background: #f8f9f9;
  font-weight: normal;
  font-size: 18px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.notification-content-extended h1 span {
  position: absolute;
  top: 15px;
  right: 14px;
  width: 16px;
  height: 16px;
  color: #acacac;
  text-shadow: none;
  font: 13px/1 'glyphs';
  opacity: 1;
  cursor: pointer;
  speak: none;
  -webkit-font-smoothing: antialiased;
}
.notification-content-extended h1 span:before {
  font-family: 'glyphs';
  content: "\e009";
  speak: none;
  -webkit-font-smoothing: antialiased;
}
.notification-content-extended h1 span:hover {
  color: #dfdfdf;
  opacity: 1;
}
.close {
  position: absolute;
  top: 5px;
  right: 7px;
  float: right;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 15px;
  cursor: pointer;
  -webkit-appearance: none;
}
.close:hover {
  text-decoration: none;
  cursor: pointer;
}
.alert-success,
.alert-warning,
.alert-error {
  position: relative;
  margin: 7px 0 7px 0;
  border: 1px solid;
  font-size: 100%;
  opacity: 0.96;
}
.alert-success {
  border-color: #8bc045;
  background: #d0eaae;
  color: #496e16;
}
.alert-success .close {
  color: #8bc045;
}
.alert-warning {
  border-color: #f39c12;
  background: #f5e08c;
  color: #ac6e0b;
}
.alert-warning .close {
  color: #f39c12;
}
.alert-error {
  border-color: #c0392b;
  background: #eb7064;
  color: white;
}
.alert-error .close {
  color: #c0392b;
}
.alert-error a {
  color: #fff;
  text-decoration: underline;
}
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px,0px,0px);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoheight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
  min-height: 150px;
}
.owl-buttons {
  color: #737373;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}
.owl-controls {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeout .7s both ease;
  -moz-animation: fadeout .7s both ease;
  animation: fadeout .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadein .7s both ease;
  -moz-animation: fadein .7s both ease;
  animation: fadein .7s both ease;
}
.owl-backslide-out {
  -webkit-animation: backslideout 1s both ease;
  -moz-animation: backslideout 1s both ease;
  animation: backslideout 1s both ease;
}
.owl-backslide-in {
  -webkit-animation: backslidein 1s both ease;
  -moz-animation: backslidein 1s both ease;
  animation: backslidein 1s both ease;
}
.owl-godown-out {
  -webkit-animation: scaletofade .7s ease both;
  -moz-animation: scaletofade .7s ease both;
  animation: scaletofade .7s ease both;
}
.owl-godown-in {
  -webkit-animation: godown .6s ease both;
  -moz-animation: godown .6s ease both;
  animation: godown .6s ease both;
}
.owl-fadeup-in {
  -webkit-animation: scaleupfrom .5s ease both;
  -moz-animation: scaleupfrom .5s ease both;
  animation: scaleupfrom .5s ease both;
}
.owl-fadeup-out {
  -webkit-animation: scaleupto .5s ease both;
  -moz-animation: scaleupto .5s ease both;
  animation: scaleupto .5s ease both;
}
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backslideout {
  25% {
    opacity: .5;
    -webkit-transform: translatez(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translatez(-500px) translatex(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translatez(-500px) translatex(-200%);
  }
}
@-moz-keyframes backslideout {
  25% {
    opacity: .5;
    -moz-transform: translatez(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translatez(-500px) translatex(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translatez(-500px) translatex(-200%);
  }
}
@keyframes backslideout {
  25% {
    opacity: .5;
    transform: translatez(-500px);
  }
  75% {
    opacity: .5;
    transform: translatez(-500px) translatex(-200%);
  }
  100% {
    opacity: .5;
    transform: translatez(-500px) translatex(-200%);
  }
}
@-webkit-keyframes backslidein {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translatez(-500px) translatex(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translatez(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translatez(0) translatex(0);
  }
}
@-moz-keyframes backslidein {
  0%,
  25% {
    opacity: .5;
    -moz-transform: translatez(-500px) translatex(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translatez(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translatez(0) translatex(0);
  }
}
@keyframes backslidein {
  0%,
  25% {
    opacity: .5;
    transform: translatez(-500px) translatex(200%);
  }
  75% {
    opacity: .5;
    transform: translatez(-500px);
  }
  100% {
    opacity: 1;
    transform: translatez(0) translatex(0);
  }
}
@-webkit-keyframes scaletofade {
  to {
    opacity: 0;
    -webkit-transform: scale(.8);
  }
}
@-moz-keyframes scaletofade {
  to {
    opacity: 0;
    -moz-transform: scale(.8);
  }
}
@keyframes scaletofade {
  to {
    opacity: 0;
    transform: scale(.8);
  }
}
@-webkit-keyframes godown {
  from {
    -webkit-transform: translatey(-100%);
  }
}
@-moz-keyframes godown {
  from {
    -moz-transform: translatey(-100%);
  }
}
@keyframes godown {
  from {
    transform: translatey(-100%);
  }
}
@-webkit-keyframes scaleupfrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleupfrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleupfrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleupto {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleupto {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleupto {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.owl-theme {
  margin: 0;
}
.ty-owl-controls {
  margin: -40px 0 0 0;
  float: right;
  position: relative;
  z-index: 100;
}
.ty-sidebox .ty-owl-controls {
  margin: -50px 0 0 0;
}
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}
.owl-theme .owl-controls-outside {
  margin-top: 0;
  text-align: center;
}
.owl-theme .owl-controls .owl-buttons div {
  color: #fff;
  display: inline-block;
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #d1d1d1;
  filter: alpha(opacity=70);
  opacity: 0.7;
}
.owl-theme .owl-controls-outside .owl-buttons div {
  float: left;
  font-size: 15px;
  padding: 2px 9px;
  height: 20px;
  width: 6px;
  margin-top: 3px;
  margin-bottom: 0;
}
.owl-theme .owl-controls-outside .owl-buttons div:last-child {
  margin-right: 0;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: alpha(opacity=100);
  opacity: 1;
  text-decoration: none;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #A9B0B4;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: alpha(opacity=100);
  opacity: 1;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.owl-item.loading {
  background: url('../../../../../../../../design/themes/responsive/media/images/icons/ajax_loader.svg?1753621501') no-repeat center center;
}
.owl-more-theme .owl-controls {
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -18px;
}
.owl-more-theme .owl-prev,
.owl-more-theme .owl-next {
  position: absolute;
  padding: 3px 8px 0 8px;
}
.owl-more-theme .owl-prev i,
.owl-more-theme .owl-next i {
  font-size: 30px;
}
.owl-more-theme .owl-prev {
  left: -35px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.owl-more-theme .owl-next {
  right: -35px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.ty-footer-form-block {
  margin: 27px 0px 0px 0px;
  color: white;
}
.ty-footer-form-block__title {
  display: inline-block;
  padding-right: 30px;
  font-size: 22px;
  color: white;
  font-weight: normal;
}
.ty-footer-form-block__form {
  display: inline-block;
  margin: 0 0 10px 0;
  width: 300px;
}
.ty-footer-form-block__form .cm-hint {
  color: #c9c9c9;
}
.dropdown-menu {
  display: none;
}
@-ms-viewport {
  width: device-width;
}
.hidden {
  display: none;
}
.visible-phone {
  display: none !important;
}
.visible-tablet {
  display: none !important;
}
.hidden-desktop {
  display: none !important;
}
.visible-desktop {
  display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}
@media (min-width: 1224px) {
  .row {
    margin-left: -25px;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 25px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 1175px;
  }
  .span16 {
    width: 1175px;
  }
  .span15 {
    width: 1100px;
  }
  .span14 {
    width: 1025px;
  }
  .span13 {
    width: 950px;
  }
  .span12 {
    width: 875px;
  }
  .span11 {
    width: 800px;
  }
  .span10 {
    width: 725px;
  }
  .span9 {
    width: 650px;
  }
  .span8 {
    width: 575px;
  }
  .span7 {
    width: 500px;
  }
  .span6 {
    width: 425px;
  }
  .span5 {
    width: 350px;
  }
  .span4 {
    width: 275px;
  }
  .span3 {
    width: 200px;
  }
  .span2 {
    width: 125px;
  }
  .span1 {
    width: 50px;
  }
  .offset16 {
    margin-left: 1225px;
  }
  .offset15 {
    margin-left: 1150px;
  }
  .offset14 {
    margin-left: 1075px;
  }
  .offset13 {
    margin-left: 1000px;
  }
  .offset12 {
    margin-left: 925px;
  }
  .offset11 {
    margin-left: 850px;
  }
  .offset10 {
    margin-left: 775px;
  }
  .offset9 {
    margin-left: 700px;
  }
  .offset8 {
    margin-left: 625px;
  }
  .offset7 {
    margin-left: 550px;
  }
  .offset6 {
    margin-left: 475px;
  }
  .offset5 {
    margin-left: 400px;
  }
  .offset4 {
    margin-left: 325px;
  }
  .offset3 {
    margin-left: 250px;
  }
  .offset2 {
    margin-left: 175px;
  }
  .offset1 {
    margin-left: 100px;
  }
  .row-fluid {
    width: 100%;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.12765957447%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.12765957447%;
  }
  .row-fluid .span16 {
    width: 100%;
  }
  .row-fluid .span15 {
    width: 93.6170212766%;
  }
  .row-fluid .span14 {
    width: 87.2340425532%;
  }
  .row-fluid .span13 {
    width: 80.8510638298%;
  }
  .row-fluid .span12 {
    width: 74.4680851064%;
  }
  .row-fluid .span11 {
    width: 68.085106383%;
  }
  .row-fluid .span10 {
    width: 61.7021276596%;
  }
  .row-fluid .span9 {
    width: 55.3191489362%;
  }
  .row-fluid .span8 {
    width: 48.9361702128%;
  }
  .row-fluid .span7 {
    width: 42.5531914894%;
  }
  .row-fluid .span6 {
    width: 36.170212766%;
  }
  .row-fluid .span5 {
    width: 29.7872340426%;
  }
  .row-fluid .span4 {
    width: 23.4042553191%;
  }
  .row-fluid .span3 {
    width: 17.0212765957%;
  }
  .row-fluid .span2 {
    width: 10.6382978723%;
  }
  .row-fluid .span1 {
    width: 4.25531914894%;
  }
  .row-fluid .offset16 {
    margin-left: 104.255319149%;
  }
  .row-fluid .offset16:first-child {
    margin-left: 102.127659574%;
  }
  .row-fluid .offset15 {
    margin-left: 97.8723404255%;
  }
  .row-fluid .offset15:first-child {
    margin-left: 95.7446808511%;
  }
  .row-fluid .offset14 {
    margin-left: 91.4893617021%;
  }
  .row-fluid .offset14:first-child {
    margin-left: 89.3617021277%;
  }
  .row-fluid .offset13 {
    margin-left: 85.1063829787%;
  }
  .row-fluid .offset13:first-child {
    margin-left: 82.9787234043%;
  }
  .row-fluid .offset12 {
    margin-left: 78.7234042553%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 76.5957446809%;
  }
  .row-fluid .offset11 {
    margin-left: 72.3404255319%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 70.2127659574%;
  }
  .row-fluid .offset10 {
    margin-left: 65.9574468085%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 63.829787234%;
  }
  .row-fluid .offset9 {
    margin-left: 59.5744680851%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 57.4468085106%;
  }
  .row-fluid .offset8 {
    margin-left: 53.1914893617%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 51.0638297872%;
  }
  .row-fluid .offset7 {
    margin-left: 46.8085106383%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 44.6808510638%;
  }
  .row-fluid .offset6 {
    margin-left: 40.4255319149%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 38.2978723404%;
  }
  .row-fluid .offset5 {
    margin-left: 34.0425531915%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 31.914893617%;
  }
  .row-fluid .offset4 {
    margin-left: 27.6595744681%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 25.5319148936%;
  }
  .row-fluid .offset3 {
    margin-left: 21.2765957447%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 19.1489361702%;
  }
  .row-fluid .offset2 {
    margin-left: 14.8936170213%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 12.7659574468%;
  }
  .row-fluid .offset1 {
    margin-left: 8.51063829787%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 6.3829787234%;
  }
}
.row {
  margin-left: -20px;
}
.row:before,
.row:after {
  display: table;
  content: "";
  line-height: 0;
}
.row:after {
  clear: both;
}
[class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 20px;
}
.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}
.span16 {
  width: 940px;
}
.span15 {
  width: 880px;
}
.span14 {
  width: 820px;
}
.span13 {
  width: 760px;
}
.span12 {
  width: 700px;
}
.span11 {
  width: 640px;
}
.span10 {
  width: 580px;
}
.span9 {
  width: 520px;
}
.span8 {
  width: 460px;
}
.span7 {
  width: 400px;
}
.span6 {
  width: 340px;
}
.span5 {
  width: 280px;
}
.span4 {
  width: 220px;
}
.span3 {
  width: 160px;
}
.span2 {
  width: 100px;
}
.span1 {
  width: 40px;
}
.offset16 {
  margin-left: 980px;
}
.offset15 {
  margin-left: 920px;
}
.offset14 {
  margin-left: 860px;
}
.offset13 {
  margin-left: 800px;
}
.offset12 {
  margin-left: 740px;
}
.offset11 {
  margin-left: 680px;
}
.offset10 {
  margin-left: 620px;
}
.offset9 {
  margin-left: 560px;
}
.offset8 {
  margin-left: 500px;
}
.offset7 {
  margin-left: 440px;
}
.offset6 {
  margin-left: 380px;
}
.offset5 {
  margin-left: 320px;
}
.offset4 {
  margin-left: 260px;
}
.offset3 {
  margin-left: 200px;
}
.offset2 {
  margin-left: 140px;
}
.offset1 {
  margin-left: 80px;
}
.row-fluid {
  width: 100%;
}
.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}
.row-fluid:after {
  clear: both;
}
.row-fluid [class*="span"] {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  margin-left: 2.12765957447%;
}
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.12765957447%;
}
.row-fluid .span16 {
  width: 100%;
}
.row-fluid .span15 {
  width: 93.6170212766%;
}
.row-fluid .span14 {
  width: 87.2340425532%;
}
.row-fluid .span13 {
  width: 80.8510638298%;
}
.row-fluid .span12 {
  width: 74.4680851064%;
}
.row-fluid .span11 {
  width: 68.085106383%;
}
.row-fluid .span10 {
  width: 61.7021276596%;
}
.row-fluid .span9 {
  width: 55.3191489362%;
}
.row-fluid .span8 {
  width: 48.9361702128%;
}
.row-fluid .span7 {
  width: 42.5531914894%;
}
.row-fluid .span6 {
  width: 36.170212766%;
}
.row-fluid .span5 {
  width: 29.7872340426%;
}
.row-fluid .span4 {
  width: 23.4042553191%;
}
.row-fluid .span3 {
  width: 17.0212765957%;
}
.row-fluid .span2 {
  width: 10.6382978723%;
}
.row-fluid .span1 {
  width: 4.25531914894%;
}
.row-fluid .offset16 {
  margin-left: 104.255319149%;
}
.row-fluid .offset16:first-child {
  margin-left: 102.127659574%;
}
.row-fluid .offset15 {
  margin-left: 97.8723404255%;
}
.row-fluid .offset15:first-child {
  margin-left: 95.7446808511%;
}
.row-fluid .offset14 {
  margin-left: 91.4893617021%;
}
.row-fluid .offset14:first-child {
  margin-left: 89.3617021277%;
}
.row-fluid .offset13 {
  margin-left: 85.1063829787%;
}
.row-fluid .offset13:first-child {
  margin-left: 82.9787234043%;
}
.row-fluid .offset12 {
  margin-left: 78.7234042553%;
}
.row-fluid .offset12:first-child {
  margin-left: 76.5957446809%;
}
.row-fluid .offset11 {
  margin-left: 72.3404255319%;
}
.row-fluid .offset11:first-child {
  margin-left: 70.2127659574%;
}
.row-fluid .offset10 {
  margin-left: 65.9574468085%;
}
.row-fluid .offset10:first-child {
  margin-left: 63.829787234%;
}
.row-fluid .offset9 {
  margin-left: 59.5744680851%;
}
.row-fluid .offset9:first-child {
  margin-left: 57.4468085106%;
}
.row-fluid .offset8 {
  margin-left: 53.1914893617%;
}
.row-fluid .offset8:first-child {
  margin-left: 51.0638297872%;
}
.row-fluid .offset7 {
  margin-left: 46.8085106383%;
}
.row-fluid .offset7:first-child {
  margin-left: 44.6808510638%;
}
.row-fluid .offset6 {
  margin-left: 40.4255319149%;
}
.row-fluid .offset6:first-child {
  margin-left: 38.2978723404%;
}
.row-fluid .offset5 {
  margin-left: 34.0425531915%;
}
.row-fluid .offset5:first-child {
  margin-left: 31.914893617%;
}
.row-fluid .offset4 {
  margin-left: 27.6595744681%;
}
.row-fluid .offset4:first-child {
  margin-left: 25.5319148936%;
}
.row-fluid .offset3 {
  margin-left: 21.2765957447%;
}
.row-fluid .offset3:first-child {
  margin-left: 19.1489361702%;
}
.row-fluid .offset2 {
  margin-left: 14.8936170213%;
}
.row-fluid .offset2:first-child {
  margin-left: 12.7659574468%;
}
.row-fluid .offset1 {
  margin-left: 8.51063829787%;
}
.row-fluid .offset1:first-child {
  margin-left: 6.3829787234%;
}
[class*="span"].hide,
.row-fluid [class*="span"].hide {
  display: none;
}
[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
  float: right;
}
.container {
  margin-right: auto;
  margin-left: auto;
}
.container:before,
.container:after {
  display: table;
  content: "";
  line-height: 0;
}
.container:after {
  clear: both;
}
.container-fluid {
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
  line-height: 0;
}
.container-fluid:after {
  clear: both;
}
@media (min-width: 768px) and (max-width: 979px) {
  .row {
    margin-left: -10px;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 10px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 726px;
  }
  .span16 {
    width: 726px;
  }
  .span15 {
    width: 680px;
  }
  .span14 {
    width: 634px;
  }
  .span13 {
    width: 588px;
  }
  .span12 {
    width: 542px;
  }
  .span11 {
    width: 496px;
  }
  .span10 {
    width: 450px;
  }
  .span9 {
    width: 404px;
  }
  .span8 {
    width: 358px;
  }
  .span7 {
    width: 312px;
  }
  .span6 {
    width: 266px;
  }
  .span5 {
    width: 220px;
  }
  .span4 {
    width: 174px;
  }
  .span3 {
    width: 128px;
  }
  .span2 {
    width: 82px;
  }
  .span1 {
    width: 36px;
  }
  .offset16 {
    margin-left: 746px;
  }
  .offset15 {
    margin-left: 700px;
  }
  .offset14 {
    margin-left: 654px;
  }
  .offset13 {
    margin-left: 608px;
  }
  .offset12 {
    margin-left: 562px;
  }
  .offset11 {
    margin-left: 516px;
  }
  .offset10 {
    margin-left: 470px;
  }
  .offset9 {
    margin-left: 424px;
  }
  .offset8 {
    margin-left: 378px;
  }
  .offset7 {
    margin-left: 332px;
  }
  .offset6 {
    margin-left: 286px;
  }
  .offset5 {
    margin-left: 240px;
  }
  .offset4 {
    margin-left: 194px;
  }
  .offset3 {
    margin-left: 148px;
  }
  .offset2 {
    margin-left: 102px;
  }
  .offset1 {
    margin-left: 56px;
  }
  .row-fluid {
    width: 100%;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 1.37741046832%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 1.37741046832%;
  }
  .row-fluid .span16 {
    width: 100%;
  }
  .row-fluid .span15 {
    width: 93.6170212766%;
  }
  .row-fluid .span14 {
    width: 87.2340425532%;
  }
  .row-fluid .span13 {
    width: 80.8510638298%;
  }
  .row-fluid .span12 {
    width: 74.4680851064%;
  }
  .row-fluid .span11 {
    width: 68.085106383%;
  }
  .row-fluid .span10 {
    width: 61.7021276596%;
  }
  .row-fluid .span9 {
    width: 55.3191489362%;
  }
  .row-fluid .span8 {
    width: 48.9361702128%;
  }
  .row-fluid .span7 {
    width: 42.5531914894%;
  }
  .row-fluid .span6 {
    width: 36.170212766%;
  }
  .row-fluid .span5 {
    width: 29.7872340426%;
  }
  .row-fluid .span4 {
    width: 23.4042553191%;
  }
  .row-fluid .span3 {
    width: 17.0212765957%;
  }
  .row-fluid .span2 {
    width: 10.6382978723%;
  }
  .row-fluid .span1 {
    width: 4.25531914894%;
  }
  .row-fluid .offset16 {
    margin-left: 102.754820937%;
  }
  .row-fluid .offset16:first-child {
    margin-left: 101.377410468%;
  }
  .row-fluid .offset15 {
    margin-left: 97.8723404255%;
  }
  .row-fluid .offset15:first-child {
    margin-left: 95.7446808511%;
  }
  .row-fluid .offset14 {
    margin-left: 91.4893617021%;
  }
  .row-fluid .offset14:first-child {
    margin-left: 89.3617021277%;
  }
  .row-fluid .offset13 {
    margin-left: 85.1063829787%;
  }
  .row-fluid .offset13:first-child {
    margin-left: 82.9787234043%;
  }
  .row-fluid .offset12 {
    margin-left: 78.7234042553%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 76.5957446809%;
  }
  .row-fluid .offset11 {
    margin-left: 72.3404255319%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 70.2127659574%;
  }
  .row-fluid .offset10 {
    margin-left: 65.9574468085%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 63.829787234%;
  }
  .row-fluid .offset9 {
    margin-left: 59.5744680851%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 57.4468085106%;
  }
  .row-fluid .offset8 {
    margin-left: 53.1914893617%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 51.0638297872%;
  }
  .row-fluid .offset7 {
    margin-left: 46.8085106383%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 44.6808510638%;
  }
  .row-fluid .offset6 {
    margin-left: 40.4255319149%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 38.2978723404%;
  }
  .row-fluid .offset5 {
    margin-left: 34.0425531915%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 31.914893617%;
  }
  .row-fluid .offset4 {
    margin-left: 27.6595744681%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 25.5319148936%;
  }
  .row-fluid .offset3 {
    margin-left: 21.2765957447%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 19.1489361702%;
  }
  .row-fluid .offset2 {
    margin-left: 14.8936170213%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 12.7659574468%;
  }
  .row-fluid .offset1 {
    margin-left: 8.51063829787%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 6.3829787234%;
  }
}
@media (min-width: 1224px) {
  .ty-footer-grid__full-width > .row {
    width: 1200px;
    margin: 0 auto;
  }
  .ty-footer-grid__full-width > .row-fluid {
    max-width: 1200px;
    min-width: 280px;
    margin: 0 auto;
  }
  .ty-footer-menu__items,
  .ty-footer-general__body {
    display: block !important;
  }
}
@media (max-width: 1224px) {
  .ty-footer-grid__full-width > .row {
    width: 960px;
    margin: 0 auto;
  }
  .ty-footer-form-block__form {
    width: 220px;
  }
  h3.ty-footer-form-block__title,
  h3.ty-social-link__title {
    font-size: 20px;
  }
  .ty-orders__actions-right {
    float: none;
  }
}
@media (max-width: 1025px) {
  .ty-sidebox__body-toggle {
    display: block;
  }
  .tygh-content .container,
  .ty-footer-menu,
  .footer-copyright {
    padding: 0px 10px;
  }
  .ty-select-block__a {
    margin-right: 0;
  }
  .top-currencies {
    margin-left: 2px;
  }
  .ty-grid-list__item .ty-icon-left-circle,
  .ty-grid-list__item .ty-icon-right-circle {
    visibility: visible;
  }
  .ty-product-empty {
    display: none;
  }
  .ty-wish-list-empty [class*="ty-column"] {
    width: 100%;
  }
  .ty-wish-list-empty [class*="ty-column"]:first-child .ty-product-empty {
    display: block;
  }
  .ty-exception__code {
    display: block;
    width: 100%;
  }
  .ty-exception__title-info {
    display: block;
    padding-left: 0px;
    text-align: center;
  }
  .ty-exception__links {
    margin: 0px;
  }
  .ty-exception__links-item {
    float: none;
    display: inline-block;
    margin: 0 5px;
  }
  .ty-payment-icons .ty-payment-icons__item {
    margin-left: 5px;
  }
  .ty-footer-form-block__form {
    width: 80%;
  }
  h3.ty-social-link__title {
    display: block;
    margin-top: 21px;
    margin-bottom: 10px;
  }
  .ty-sort-container {
    padding-left: 0px;
  }
  .ty-product-block__note {
    width: 100%;
    position: static;
  }
  .ty-product-options__item-label {
    display: block;
    width: 100%;
    float: none;
  }
  .ty-product-options__description,
  .ty-product-block__option .help-inline {
    margin-left: 0;
  }
  .ty-product-variant-image {
    margin-left: 0;
  }
  .ty-product-detail .ty-product-block__left {
    padding-right: 0;
  }
  .ty-multi-checkout__step {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
  .ty-multi-checkout__arrow {
    display: none;
  }
  .ty-pagination__text {
    display: none;
  }
}
@media (min-width: 1025px) {
  .ty-menu__item,
  .ty-text-links_show_inline {
    display: block !important;
  }
}
@media (min-width: 1025px) {
  .ty-cart-content .ty-cart-content__product-elem,
  .ty-cart-content .ty-cart-content__title {
    border: 0;
  }
  .ty-menu__menu-btn {
    display: none !important;
  }
  .ty-menu-vertical .ty-menu__submenu [class*="menu-level-"].ty-menu__item-active > .ty-menu__submenu-item-header .ty-menu__item-link {
    background: #ff9900;
    color: #444;
  }
  .ty-menu-vertical .ty-menu__submenu [class*="menu-level-"].ty-menu__item-active i {
    color: #fff;
  }
  .ty-sidebox__body {
    display: block !important;
  }
}
@media (max-width: 1024px) {
  html.dialog-is-open {
    overflow: scroll;
  }
  .ty-menu__items .ty-menu__items-show {
    display: block !important;
    border-bottom: 0;
  }
  .ty-menu__item {
    display: none;
    float: none;
    margin-right: 0px;
    border-bottom: 1px solid #f0f0f0;
    padding: 0px;
    position: relative;
  }
  .no-touch .ty-menu__item:hover .ty-menu__submenu-items,
  .ty-menu__item:hover .ty-menu__submenu-items {
    display: none;
  }
  .ty-menu__item:last-child {
    box-shadow: none;
    border-bottom: 0;
  }
  .ty-menu__item .ty-menu__item-toggle-active {
    background: #f2f2f2;
  }
  .ty-menu__item .ty-menu__item-link {
    position: static;
  }
  .ty-menu__submenu .ty-menu__submenu-items {
    padding: 0;
  }
  .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item {
    border-bottom: 1px solid #d8d8d8;
    margin: 0;
  }
  .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item .ty-menu__submenu-link {
    display: block;
    padding: 12px 30px 12px 40px;
  }
  .no-touch .ty-menu__submenu-items .ty-menu__submenu-link:hover {
    color: #cc7a00;
  }
  .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item-active a {
    color: black;
    background: none;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-item {
    position: relative;
    padding: 0px;
    padding-left: 35px;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-list {
    display: none;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__item-toggle-active {
    background: #e0e0e0;
  }
  .ty-menu__items .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__item-toggle {
    color: #bfbfbf;
  }
  .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__submenu-link {
    padding: 13px 40px;
    display: block;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-item-header {
    min-height: 45px;
    margin: 0px;
    padding-bottom: 0px;
    border-bottom: 1px solid #d8d8d8;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-item-header-active {
    background: #e0e0e0;
  }
  .ty-menu__menu-btn {
    border-bottom: 0px;
    box-shadow: none;
  }
  .ty-menu__submenu-items {
    background: #ededed;
    position: static;
  }
  .ty-icon-short-list {
    padding-right: 4px;
  }
  .ty-menu__item-toggle {
    width: 50px;
    height: 44px;
    position: absolute;
    text-align: center;
    font-size: 35px;
    right: 0px;
    z-index: 100;
    color: #fff;
    top: 0px;
    cursor: pointer;
  }
  .ty-menu__item-toggle:hover {
    color: #fff;
  }
  .ty-menu__icon-hide,
  .ty-menu__icon-open {
    display: inline-block;
    line-height: 46px;
  }
  .ty-menu__submenu-dropdown-bottom {
    margin: auto;
  }
  .ty-menu__icon-hide {
    display: none;
  }
  .ty-menu__item-toggle-active .ty-menu__icon-hide {
    display: inline-block;
  }
  .ty-menu__item-toggle-active .ty-menu__icon-open {
    display: none;
  }
  .ty-menu-vertical {
    margin-bottom: 40px;
  }
  .ty-menu-vertical .ty-menu__item .ty-menu__submenu {
    position: static;
    display: block;
  }
  .ty-menu-vertical .ty-menu__item.menu-level-2 {
    padding-left: 35px;
  }
  .ty-menu-vertical .ty-menu__item .ty-menu__submenu .ty-menu__item-link {
    background: none;
    color: #ff9900;
    padding-left: 40px;
  }
  .ty-menu-vertical .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__item-link {
    color: #ff9900;
  }
  .ty-menu-vertical .ty-menu__submenu .dropdown-vertical__dir .ty-menu__submenu-item-header .ty-menu__item-link {
    text-transform: uppercase;
    font-weight: bold;
  }
  .ty-menu-vertical .ty-menu__submenu .menu-level-2.ty-menu__item-active .ty-menu__item-link {
    background: #e0e0e0;
  }
  .ty-menu-vertical .ty-menu__submenu .menu-level-2.ty-menu__item-active .ty-menu__item-link {
    color: #000;
  }
  .ty-menu-vertical .ty-menu__submenu .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__item-link {
    padding-left: 40px;
    text-transform: none;
    font-weight: normal;
    background: none;
  }
  .ty-menu-vertical .ty-menu__item-toggle i {
    top: 3px;
  }
  .ty-menu-vertical .ty-menu__submenu .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__item-link {
    padding-left: 40px;
  }
  .ty-menu-vertical .ty-menu__item .ty-menu__submenu-items .ty-menu__submenu-items {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
  .ty-menu-vertical .ty-menu__submenu-items .dropdown-vertical__dir .ty-menu__item-toggle {
    background: none;
    color: #bfbfbf;
  }
  .ty-menu-vertical .ty-menu__submenu-item-header {
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: none;
    border-bottom: none;
  }
  .ty-menu-vertical .ty-menu__submenu-item-header .ty-menu__submenu-item-header .ty-menu__item-link {
    color: #1ABC9C;
    text-transform: none;
  }
  .ty-menu-vertical .ty-menu__item .ty-menu__submenu .ty-menu__item:hover i {
    color: #A1A6AA !important;
  }
  .ty-menu-vertical .ty-menu__item .ty-menu__submenu .ty-menu__submenu-items {
    border: 1px solid #2B3E51;
    border-top: 0px;
    border-bottom: 0px;
  }
  .ty-menu-vertical .ty-menu__item .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-items {
    border: 0px;
  }
  .ty-menu-vertical .ty-menu__submenu-items .ty-menu__item {
    border-top: 1px solid #d8d8d8;
    border-bottom: 0;
  }
  .no-touch .ty-menu-vertical .ty-menu__submenu .ty-menu__item:hover > .ty-menu__submenu-item-header .ty-menu__item-link {
    background: none;
    color: #cc7a00;
  }
  .ty-menu-vertical .menu-level-1.ty-menu__item-active > .ty-menu__submenu-item-header {
    background: #e0e0e0;
  }
  .ty-menu-vertical .ty-menu__items.rtl .ty-menu__submenu {
    width: auto;
  }
  .ty-menu-vertical .ty-menu__items.rtl .ty-menu__submenu-items {
    width: auto;
  }
  .ty-menu-vertical .ty-menu__items.rtl .ty-menu__item-toggle {
    left: 0px;
  }
  .ui-dialog input[type="text"],
  .ui-dialog input[type="password"],
  .ui-dialog textarea,
  .ui-dialog select {
    width: 100%;
  }
  .ui-dialog input[type="checkbox"] {
    margin: -20px 0px;
  }
  body.dialog-is-open {
    overflow: visible;
  }
  div.ui-dialog .ui-dialog-title {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ty-estimation-buttons__rate {
    margin-bottom: 0px;
    float: right;
  }
  .top-menu-grid {
    padding-top: 0;
  }
  .top-logo-grid {
    padding-top: 15px;
  }
  .top-logo-grid:before,
  .top-logo-grid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .top-logo-grid:after {
    clear: both;
  }
  .ty-logo-container {
    text-align: center;
    margin: 10px 0px 30px;
  }
  .tygh-header > div,
  .tygh-top-panel > div {
    padding: 0px 10px;
  }
  .ty-mainbox-title .ty-status {
    display: block;
    float: none;
  }
  .notification-content-extended {
    width: 96%;
    left: 2%;
    right: 10px;
    margin: 0px;
  }
  .notification-content-extended .ty-product-notification__body {
    max-height: none !important;
    overflow: visible;
  }
  .ty-product-notification__body .ty-product-options-name {
    width: 50%;
  }
  .ty-product-notification__body .ty-product-options-content {
    width: 50%;
    text-align: right;
  }
  .notification-container {
    top: 0;
    right: 0px;
    min-width: 100%;
    width: 100%;
  }
  .notification-content {
    margin: 0px;
    border: none;
  }
  .notification-content .close {
    top: 8px;
    right: 20px;
  }
  .ty-product-notification__image {
    float: none;
    display: block;
    margin: 0 auto;
  }
  .ty-product-notification__product-name {
    max-width: 200px;
  }
  .ty-table table,
  .ty-table thead,
  .ty-table tbody,
  .ty-table th,
  .ty-table td,
  .ty-table tr {
    display: block;
  }
  .ty-table {
    margin: 5px 0px 20px;
  }
  .ty-table {
    border: none;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .ty-table tr {
    border: 1px solid #ccc;
  }
  .ty-table td {
    border: none;
    border-bottom: 1px solid #eee;
    white-space: normal;
    text-align: left;
    min-height: 18px;
    width: auto !important;
  }
  .ty-table td:before,
  .ty-table td:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .ty-table td:after {
    clear: both;
  }
  .ty-table tr td:last-child {
    border-bottom: 0px;
  }
  .ty-table__no-items td {
    padding: 0px;
  }
  .ty-table__no-items .ty-no-items {
    margin-bottom: 0px;
  }
  .ty-table__responsive-header {
    float: left;
    width: 35%;
    padding-right: 5%;
    font-weight: bold;
    word-break: normal;
    display: block;
  }
  .ty-table__responsive-content {
    float: left;
    width: 50%;
  }
  .ty-table.hidden,
  .ty-table .hidden {
    display: none;
  }
  .ty-cart-content .ty-cart-content__image-block {
    border-bottom: 0;
  }
  .ty-cart-content .ty-table__responsive-header,
  .ty-table__responsive-content {
    float: none;
    width: 100%;
    padding: 0;
  }
  .ty-cart-content__image {
    float: none;
    text-align: center;
  }
  .ty-cart-content__left-buttons,
  .ty-cart-content__right-buttons {
    float: none;
  }
  .ty-cart-content__right-buttons {
    margin-top: 10px;
  }
  .ty-cart-content__top-buttons .ty-btn,
  .ty-cart-content__bottom-buttons .ty-btn {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-cart-content__top-buttons .ty-btn + .ty-btn,
  .ty-cart-content__bottom-buttons .ty-btn + .ty-btn {
    margin: 15px 0 0;
  }
  .ty-cart-total .ty-coupons__container {
    float: none;
    padding: 0;
    width: 100%;
  }
  .ty-cart-content__estimation {
    max-width: inherit;
  }
  .ty-cart-statistic {
    float: none;
    margin-top: 10px;
  }
  .ty-cart-statistic__title,
  .ty-cart-statistic__total-title {
    width: 50%;
    margin-right: 0;
    float: left;
  }
  .ty-cart-statistic__value,
  .ty-cart-statistic__total-value {
    width: 50%;
    float: left;
  }
  .top-links-grid .ty-dropdown-box {
    background: none;
  }
  .ty-dropdown-box .ty-account-info__title-txt {
    display: none;
  }
  .account-benefits {
    margin: 0px 0px 30px 0px;
  }
  .top-cart-content {
    margin: 13px 0px;
  }
  .header-widget-grid .top-cart-content {
    margin: 0px;
  }
  .header-widget-grid {
    padding: 0px 10px;
  }
  .ty-grid-list__item:hover {
    border-radius: 0px;
    background: transparent;
  }
  .ty-quick-view-button {
    display: none;
    margin-bottom: 30px;
  }
  .product-list__control {
    float: none;
    margin-bottom: 10px;
  }
  .product-list__image {
    float: none;
    margin: 0px 0px 20px 0px;
    width: 100%;
    text-align: center;
  }
  .ty-compact-list__image .ty-discount-label {
    display: inline-block;
    height: 30px;
    position: static;
    float: none;
  }
  .ty-sidebox {
    margin-bottom: 10px;
  }
  .ty-sidebox:last-child {
    margin-bottom: 30px;
  }
  .ty-product-block__left {
    display: block;
    overflow: visible;
    min-width: 0;
  }
  .ty-product-block__img-wrapper {
    width: 100%;
    margin: 0;
    float: none;
    text-align: center;
    min-height: 0;
  }
  .ty-product-block__img-wrapper:before,
  .ty-product-block__img-wrapper:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .ty-product-block__img-wrapper:after {
    clear: both;
  }
  .ty-product-block__img-wrapper .ty-no-image {
    width: 100% !important;
  }
  .ui-dialog .ty-product-variant-image {
    margin-left: 0;
  }
  .ty-product-bigpicture__left,
  .ty-product-bigpicture__left-wrapper {
    width: 100%;
    margin: 0;
  }
  .ty-product-bigpicture__right {
    width: 100%;
    margin-left: 0;
  }
  .ty-account-detail {
    margin-left: 0;
    background: none;
    padding-bottom: 0;
  }
  .ty-profile-field__switch-label {
    float: none;
    text-align: center;
    margin-bottom: 10px;
  }
  .ty-profile-field__switch-actions {
    float: none;
    text-align: center;
  }
  .ty-billing-first-name,
  .ty-billing-last-name,
  .ty-shipping-first-name,
  .ty-shipping-last-name,
  .ty-billing-country,
  .ty-billing-state,
  .ty-shipping-country,
  .ty-shipping-state,
  .ty-first-name,
  .ty-last-name {
    width: 100%;
  }
  .ty-billing-first-name + .ty-billing-last-name,
  .ty-billing-country + .ty-billing-state,
  .ty-shipping-first-name + .ty-shipping-last-name,
  .shipping-country + .ty-shipping-state,
  .ty-first-name + .ty-last-name {
    margin-left: 0;
  }
  .ty-buttons-container__add-or-close .ty-btn {
    display: block;
    margin: 0px;
  }
  .ty-buttons-container__add-or-close .ty-close-text {
    padding-top: 10px;
    display: inline-block;
  }
  .ty-login-info {
    margin: 30px 0 0;
  }
  .ty-success-registration__item {
    display: block;
    width: 100%;
  }
  .ty-account-benefits {
    margin: 30px 0 0;
  }
  .ty-company-fields {
    margin-bottom: 20px;
  }
  .ty-company-info {
    margin: 0;
    padding: 0;
    background: none;
  }
  .ty-features-all {
    text-align: center;
  }
  .ty-feature__image {
    float: none;
  }
  .ty-product-feature__label {
    width: 180px;
  }
  .ty-sitemap__tree-section-list,
  .ty-sitemap__section-wrapper {
    width: 50%;
  }
  .ty-breadcrumbs {
    padding-right: 10px;
  }
  .ty-product-switcher {
    position: relative;
    top: 10px;
    text-align: center;
  }
  .ty-product-switcher__a {
    position: relative;
    top: 0;
    vertical-align: middle;
    font-size: 20px;
  }
  .ty-product-switcher__a-left,
  .ty-product-switcher__a-right {
    float: none;
  }
  .ty-product-switcher__a-left {
    margin-right: 10px;
  }
  .ty-product-switcher__a-right {
    margin-left: 10px;
  }
  .ty-product-switcher span {
    font-size: 100%;
  }
  .ty-checkout__login {
    float: none;
    padding: 0 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-checkout__register {
    float: none;
    padding: 0 15px;
    margin: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-checkout__register-content {
    padding-left: 0;
  }
  .ty-checkout-buttons__submit-order {
    padding-bottom: 20px;
  }
  .ty-compare-products__menu,
  .ty-compare-sort {
    width: 130px;
  }
  .ty-compare-products__product,
  .ty-compare-feature_item_size {
    width: 180px;
  }
  .ty-compare__buttons .ty-btn {
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-compare__buttons .ty-btn + .ty-btn {
    margin: 15px 0 0;
  }
  .search-block-grid {
    margin-top: 0px !important;
  }
  .footer-no-wysiwyg ul {
    margin: 0;
  }
  .ty-social-link-block {
    margin: 10px 0px 20px;
    text-align: center;
  }
  .ty-footer-grid__full-width .ty-float-right,
  .ty-footer-grid__full-width .ty-float-left {
    float: none;
  }
  .ty-footer-grid__full-width > .row {
    width: auto;
    margin: 0 auto;
  }
  .ty-footer-menu__items,
  .ty-footer-general__body {
    margin: 0;
    display: none;
  }
  .ty-footer-menu__item {
    padding: 15px 0px 15px 0px;
    border-bottom: 1px solid #dfdfdf;
    padding-left: 20px;
    margin-bottom: 0;
  }
  .ty-footer-menu__header,
  .ty-footer-general__header {
    padding: 15px 30px 15px 0;
    border-bottom: 1px solid #777777;
  }
  .ty-footer-menu__icon-open,
  .ty-footer-menu__icon-hide {
    position: absolute;
    top: 12px;
    right: 0;
    font-size: 40px;
    color: #bfbfbf;
    cursor: pointer;
  }
  .ty-footer-menu__icon-open {
    display: block;
  }
  .ty-footer-menu__header.open .ty-footer-menu__icon-hide,
  .ty-footer-general__header.open .ty-footer-menu__icon-hide {
    display: block;
  }
  .ty-footer-menu__header.open .ty-footer-menu__icon-open,
  .ty-footer-general__header.open .ty-footer-menu__icon-open {
    display: none;
  }
  .ty-footer-form-block__title {
    display: block;
    padding-right: 0;
  }
  .ty-footer-form-block {
    text-align: center;
    margin: 20px 0px 0px 0px;
  }
  .order-summary {
    margin-top: 0;
  }
  .ty-step__container-active {
    margin-bottom: 20px;
  }
  .ty-checkout-complete__buttons .ty-btn {
    margin: 0 0 15px 0;
  }
  .ty-checkout-complete__buttons-left,
  .ty-checkout-complete__buttons-right {
    float: none;
  }
  .ty-period__wrapper {
    float: none;
  }
  .ty-login-popup {
    min-width: 100px;
    max-width: none;
  }
  .ty-orders__actions .ty-btn {
    text-align: left;
    display: block;
  }
  .ty-orders__actions .ty-btn + .ty-btn {
    margin-left: 0;
    margin-top: 3px;
  }
  .ty-profiles-info__item {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .ty-profiles-info__item:last-child {
    margin-bottom: 0;
  }
  .ty-orders-summary__right {
    float: none;
  }
  .ty-orders-summary__wrapper {
    float: none;
    min-width: 0;
  }
  .container {
    width: auto;
  }
  .row-fluid {
    width: 100%;
  }
  .row {
    margin-left: 0;
  }
  [class*="span"],
  .row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .span12,
  .row-fluid .span12 {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  .ty-cart-items {
    width: 256px;
  }
  .ty-cart-items__list-item-desc {
    width: 187px;
  }
  .ty-cart-items__list-item-tools {
    right: -10px;
    display: block;
  }
  .vendor-info-grid {
    margin-top: 10px;
  }
  .vendor-stores-block-grid {
    float: left !important;
    width: auto !important;
    padding: 10px 0;
  }
  .vendor-logo-grid .logo-container {
    text-align: center;
    float: none;
    margin-bottom: 20px;
  }
  .vendor-search-grid {
    margin-bottom: 20px;
  }
  .ty-vendor-information {
    text-align: center;
  }
  .ty-text-links-wrapper {
    position: relative;
  }
  .ty-text-links-btn {
    display: inline-block;
    padding: 9px 10px 7px 10px;
    color: #999999;
    cursor: pointer;
  }
  .ty-text-links-btn.open {
    z-index: 650;
    background: #999999;
    color: #fff;
  }
  .ty-text-links-btn__arrow {
    font-size: 20px;
    line-height: 0;
    position: relative;
    top: 5px;
    width: 7px;
  }
  .top-links-grid .ty-text-links-btn {
    margin-top: -7px;
  }
  .ty-text-links_show_inline {
    position: absolute;
    min-width: 170px;
    right: 0;
    display: none;
    background: #fff;
    border: 1px solid #a8a8a8;
    padding: 7px 14px;
    z-index: 5;
    margin: 0;
  }
  .ty-text-links_show_inline .ty-level-0 > .ty-text-links {
    display: block;
    background: none;
    border: 0 none;
    padding: 0;
    position: relative;
  }
  .ty-text-links_show_inline .ty-text-links__item {
    margin-right: 0;
    display: block;
  }
  .ty-text-links_show_inline .ty-text-links {
    margin: 0;
  }
  .ty-text-links_show_inline .ty-text-links__item .ty-text-links__a {
    display: block;
  }
  .ty-filter-tooltip {
    float: right;
    left: 0 !important;
    margin-right: 20px;
  }
  .daterangepicker.dropdown-menu.opensright,
  .daterangepicker.dropdown-menu.opensleft {
    min-width: 340px !important;
  }
  .daterangepicker.dropdown-menu.opensright .ranges,
  .daterangepicker.dropdown-menu.opensright .calendar,
  .daterangepicker.dropdown-menu.opensleft .ranges,
  .daterangepicker.dropdown-menu.opensleft .calendar {
    float: none;
    margin: 10px auto 15px;
  }
  .daterangepicker.dropdown-menu.opensright:before,
  .daterangepicker.dropdown-menu.opensleft:before,
  .daterangepicker.dropdown-menu.opensright:after,
  .daterangepicker.dropdown-menu.opensleft:after {
    display: none;
  }
  .ty-horizontal-product-filters {
    padding-left: 0;
  }
  .ty-horizontal-product-filters-dropdown {
    width: 100%;
    border-bottom: 1px solid #eeeeef;
  }
  .ty-horizontal-product-filters-dropdown:last-child {
    border-bottom: none;
  }
  .ty-horizontal-product-filters-dropdown__content {
    min-width: 100%;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .ty-horizontal-product-filters-dropdown .ty-horizontal-product-filters-dropdown__wrapper {
    display: block;
    padding: 10px;
  }
  .ty-horizontal-product-filters-dropdown__content {
    position: relative;
    margin-bottom: 10px;
  }
  .ty-horizontal-product-filters-dropdown__icon {
    float: right;
    margin-right: 4px;
    top: 0px;
  }
  .ty-subcategories {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .ty-mainbox-title__right {
    float: none;
    display: block;
    margin-top: 0;
  }
  .ty-mainbox-title__left {
    float: none;
    display: block;
  }
  .ty-cart-content__buttons {
    padding: 16px 12px;
  }
  .header-widget-grid .top-logo-grid {
    padding-top: 0px;
  }
  .header-widget-grid .top-logo-grid {
    width: 50%;
    float: left;
  }
  .header-widget-grid .cart-content-grid {
    width: 50%;
    float: right;
    white-space: nowrap;
  }
  .ty-estimation-buttons__rate {
    margin-bottom: 10px;
    float: none;
  }
  .ty-search-form__input {
    margin: 4px 0px;
    width: 100%;
  }
  .ty-features-all .ty-column6 {
    width: 50%;
  }
  .ty-product-list__image {
    float: none;
    margin-bottom: 25px;
    margin-right: 0px;
    text-align: center;
  }
  .ty-sitemap__tree-section-list,
  .ty-sitemap__section-wrapper {
    width: 100%;
    min-height: 0;
  }
  .ty-compact-list__controls .ty-product-coming-soon {
    position: static;
    right: auto;
  }
  .ty-compact-list__controls .ty-btn + .ty-product-coming-soon {
    position: absolute;
    right: 0px;
  }
  .ty-product-feature__label {
    width: 120px;
  }
  .ty-product-feature__value {
    max-width: 160px;
  }
  .ty-sort-container__views-a {
    padding: 7px;
  }
  .ty-compact-list__image,
  .ty-compact-list__title {
    display: block;
    width: 100%;
    float: none;
    padding: 0;
  }
  .ty-compact-list__image {
    margin-bottom: 10px;
  }
  .ty-btn__add-to-cart {
    margin-right: 10px;
  }
  .ty-product-block__button .ty-btn + .ty-btn {
    margin-left: 0px;
  }
  .ty-pagination {
    text-align: center;
  }
  .ty-pagination__btn {
    width: 94%;
  }
  .ty-pagination__items {
    margin: 15px 0;
  }
  .ty-pagination__item {
    padding: 5px 6px;
  }
  .ty-pagination__text {
    display: inline-block;
  }
  .ty-step__title-txt {
    font-size: 18px;
  }
  .ty-checkout__billing-tabs .ty-tabs {
    padding: 0px;
  }
  .ty-checkout__billing-tabs .ty-tabs__item {
    float: none;
  }
  .ty-companies__img {
    float: none;
  }
  .ty-companies__info {
    padding: 0;
  }
  .ty-filters-search__item {
    padding-right: 0;
  }
  .ty-subcategories-block {
    min-width: 100%;
  }
}
.ty-tag-cloud {
  margin: 10px 0;
}
.ty-tag-cloud__item {
  margin-right: 10px;
}
.ty-tag-level-0,
.ty-tag-level-0:active {
  font-size: 100%;
}
.ty-tag-level-1,
.ty-tag-level-1:active {
  font-size: 150%;
}
.ty-tag-level-2,
.ty-tag-level-2:active {
  font-size: 200%;
}
.ty-tag-level-3,
.ty-tag-level-3:active {
  font-size: 250%;
}
.ty-tag-level-4,
.ty-tag-level-4:active {
  font-size: 300%;
}
.ty-tag-level-5,
.ty-tag-level-5:active {
  font-size: 350%;
}
.ty-tag-level-6,
.ty-tag-level-6:active {
  font-size: 400%;
}
ul.ty-tags-list {
  padding-left: 0;
}
.ty-tags-list__item {
  display: inline-block;
}
.ty-tags-list__a {
  position: relative;
  display: block;
  float: left;
  margin: 3px 5px 3px 15px;
  padding: 0 27px 0 10px;
  font-size: 12px;
  line-height: 24px;
  text-decoration: none;
  border: 0 none;
  background: #e6e6e6;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.ty-tags-list__a:before {
  position: absolute;
  top: 50%;
  left: -14px;
  float: left;
  margin-top: -12px;
  width: 0;
  height: 0;
  border-width: 12px 14px 12px 0;
  border-style: solid;
  border-color: transparent #e6e6e6 transparent transparent;
  content: "";
}
.ty-tags-list__a:after {
  position: absolute;
  top: 50%;
  left: 0;
  float: left;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  background: #fff;
  content: "";
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.ty-tags-list__a {
  background: #e6e6e6;
  color: #676767;
  transition: none;
  padding-right: 10px;
}
.ty-tags-list__a:hover {
  background: #16A085;
  color: #fff;
  text-shadow: none;
}
.ty-tags-list__a:hover:before {
  border-right-color: #16a085;
}
.ty-newsletters {
  margin-bottom: 30px;
}
.ty-newsletters__item {
  margin-bottom: 5px;
}
.ty-gift-certificate {
  margin-top: 25px;
}
.ty-gift-certificate__amount-alert {
  color: #a6a6a6;
  padding-top: 2px;
}
.error .ty-gift-certificate__amount-alert {
  color: #b94a48;
}
.ty-gift-certificate__amount-input {
  width: 115px;
}
.ty-gift-certificate__switch {
  margin: 25px 0px;
  padding: 15px 20px;
  border: 2px solid #bdc3c7;
  background: white;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.ty-gift-certificate__switch-label {
  float: left;
}
.ty-gift-certificate__switch-mail {
  float: right;
}
.ty-gift-certificate__send {
  float: left;
  padding-right: 15px;
}
.ty-gift-certificate__products .ty-no-items {
  display: none;
}
.ty-gift-certificate__products .product-picker-icon {
  float: left;
  margin: 2px 5px 0 0;
}
.ty-gift-certificate__select {
  width: 100%;
}
.ty-gift-certificate__country {
  display: inline-block;
  width: 47%;
}
.ty-gift-certificate__state {
  display: inline-block;
  margin-left: 5%;
  width: 47%;
}
.ty-gift-certificate-validate {
  margin-top: 42px;
}
.ty-gift-certificate-validate .ty-input-append {
  width: 88%;
  float: right;
}
.ty-gift-certificate__currency {
  position: absolute;
  margin-top: 7px;
  margin-left: 120px;
}
.ty-gift-certificate-validate__title {
  font-weight: normal;
  text-align: right;
}
.ty-gift-certificate__icon {
  position: absolute;
  top: 3px;
  left: -35px;
  font-size: 27px;
  line-height: 27px;
  color: #ddd;
}
.ty-gift-certificate-verify {
  min-width: 600px;
  max-width: 600px;
}
table.ty-gift-certificate-verify__table {
  margin: 10px 0 20px 0;
  width: 100%;
}
table.ty-gift-certificate-verify__table {
  margin-top: 0;
  width: 100%;
}
.ty-gift-certificate-verify__row {
  padding: 7px 13px;
}
.ty-gift-certificate-verify__error {
  max-width: 250px;
  text-align: center;
  font-weight: bold;
}
.ty-gift-certificate-history {
  width: 100%;
}
.ty-gift-image {
  position: relative;
  display: block;
  margin: 0 auto;
  border: 1px solid #ebebeb;
  background-color: #f9f9f9;
  color: #c8c8c8;
  cursor: default;
}
.ty-gift-image__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
  font-size: 32px;
  line-height: 32px;
}
.ty-product-notification__item .ty-gift-image {
  margin-right: 20px;
}
.ty-gift-certificate-order {
  margin-top: 10px;
}
.ty-gift-certificate-order__group-label {
  display: inline-block;
  padding: 6px 0;
  width: 100px;
}
.ty-gift-certificate-order__group-item {
  display: inline-block;
  padding: 6px 0;
}
.ty-gift-certificate-history .ty-no-items {
  margin-bottom: 0;
}
@media (max-width: 979px) {
  .ty-gift-certificate__preview-btn {
    float: none;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .ty-gift-certificate-verify {
    min-width: inherit;
  }
  .ty-gift-certificate-verify__row {
    display: block;
  }
  .ty-gift-certificate-validate {
    margin-top: 20px;
  }
  .certificates-verify-grid {
    margin-bottom: 30px;
  }
  .certificates-verify-grid:before,
  .certificates-verify-grid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .certificates-verify-grid:after {
    clear: both;
  }
}
.ty-reward-points__info {
  margin-top: 10px;
}
.ty-reward-points__points-in-use {
  display: block;
  overflow: hidden;
  padding-top: 5px;
}
.ty-reward-points__delete-icon {
  position: relative;
  top: 3px;
  text-decoration: none;
}
.ty-reward-points__delete-icon:hover {
  text-decoration: none;
}
.ty-reward-points-userlog {
  width: 100%;
}
.ty-reward-points-userlog__date {
  width: 20%;
}
.ty-reward-points-userlog__points {
  width: 10%;
}
.ty-reward-points-userlog__reason {
  width: 70%;
}
.ty-checkout-summary__item .ty-reward-points__coupon {
  display: block;
}
.ty-reward-points__product-info:last-child {
  margin-bottom: 0;
}
.ty-reward-points__product-info:before,
.ty-reward-points__product-info:after {
  display: table;
  content: "";
  line-height: 0;
}
.ty-reward-points__product-info:after {
  clear: both;
}
.ty-cart-content-products .ty-reward-points__product-info .ty-control-group__label {
  font-weight: bold;
}
.ty-form-builder__checkbox-label,
.ty-form-builder__radio-label {
  display: inline-block;
  margin: 0 15px 5px 0;
  white-space: nowrap;
}
.ty-form-builder__multiple-select,
.ty-form-builder__select,
.ty-form-builder__state,
.ty-form-builder__country {
  width: 100%;
  max-width: 500px;
}
.ty-form-builder__textarea {
  width: 100%;
  max-width: 500px;
}
.ty-form-builder .ty-input-text {
  width: 100%;
  max-width: 500px;
}
@media (max-width: 979px) {
  .ty-form-builder__textarea {
    max-width: 400px;
  }
  .ty-form-builder .ty-input-text {
    max-width: 400px;
  }
  .ty-form-builder__multiple-select,
  .ty-form-builder__select,
  .ty-form-builder__state,
  .ty-form-builder__country {
    max-width: 400px;
  }
}
.ty-blog__item {
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
  margin: -1px;
  margin-bottom: 50px;
}
.ty-blog__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ty-blog *,
.ty-blog-grid * {
  font-size: 14px;
}
.ty-blog h1,
.ty-blog-grid h1 {
  font-size: 25px;
}
.ty-blog h2,
.ty-blog-grid h2 {
  font-size: 23px;
}
.ty-blog h3,
.ty-blog-grid h3 {
  font-size: 21px;
}
.ty-blog h4,
.ty-blog-grid h4 {
  font-size: 19px;
}
.ty-blog h5,
.ty-blog-grid h5 {
  font-size: 16px;
}
.ty-blog h6,
.ty-blog-grid h6 {
  font-size: 14px;
}
.ty-blog hr,
.ty-blog-grid hr {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ty-blog img,
.ty-blog-grid img {
  width: auto;
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.ty-blog h2.ty-blog__post-title,
.ty-blog-grid h2.ty-blog__post-title {
  margin-bottom: 4px;
}
.ty-blog .ty-blog__post-title,
.ty-blog-grid .ty-blog__post-title {
  margin-bottom: 0;
  padding: 0 0 6px;
  font-size: 27px;
}
.ty-blog .ty-blog__img-block,
.ty-blog-grid .ty-blog__img-block {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ty-blog .ty-blog__img-block img,
.ty-blog-grid .ty-blog__img-block img {
  margin-top: 0;
  margin-bottom: 0;
}
.ty-blog .ty-blog__description,
.ty-blog-grid .ty-blog__description {
  margin-bottom: 30px;
}
.ty-blog .ty-blog__date,
.ty-blog-grid .ty-blog__date {
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 10px;
  color: #adadad;
  font-weight: normal;
  font-size: 12px;
}
.ty-blog .ty-blog__author,
.ty-blog-grid .ty-blog__author {
  display: inline-block;
  margin-bottom: 15px;
  padding-left: 12px;
  border-left: 1px solid #adadad;
  color: #adadad;
  font-weight: normal;
  font-size: 12px;
}
.ty-blog-sidebox {
  margin: 0 0 10px;
}
.ty-blog-sidebox__item {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 7px;
}
.ty-blog-sidebox__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.ty-blog-text-links {
  margin: 20px 0 40px;
}
.ty-blog-text-links__item {
  margin-bottom: 20px;
}
.ty-blog-text-links__item:last-child {
  margin-bottom: 25px;
}
.ty-blog-text-links__date {
  color: #adadad;
  border: 1px solid #fff;
  padding: 3px 8px;
  margin-right: 9px;
  float: left;
  font-size: 12px;
}
.ty-blog-text-links__a {
  padding-top: 3px;
  display: block;
}
.ty-blog-recent-posts-scroller {
  margin-left: -10px;
  margin-right: -10px;
}
.ty-blog-recent-posts-scroller__item {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.ty-blog-recent-posts-scroller__item .ty-blog__date {
  display: block;
  margin-bottom: 0;
  margin-top: 5px;
  color: #adadad;
  font-size: 12px;
}
.ty-blog-recent-posts-scroller__img-block {
  margin-bottom: 10px;
  max-height: 150px;
  min-height: 150px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.ty-blog-recent-posts-scroller__img-block img {
  display: block;
  bottom: -100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: -100%;
  vertical-align: middle;
}
.ty-blog-recent-posts-scroller__img-block .ty-no-image {
  height: 150px;
  min-height: initial !important;
  min-width: initial !important;
}
@media (max-width: 767px) {
  .ty-blog__title {
    margin-top: 50px;
  }
}
.ty-polls + .ty-polls {
  margin-top: 50px;
}
.ty-polls,
.ty-ty-polls__results {
  margin-bottom: 30px;
}
h2.ty-poll-header {
  font-size: 18px;
}
h3.ty-poll__header {
  font-size: 16px;
  margin-bottom: 5px;
}
.ty-poll {
  padding: 10px 2px;
}
.ty-poll-list {
  margin: 0 0 10px 0;
}
.ty-poll-list__item {
  margin-bottom: 10px;
}
.ty-poll__textarea {
  width: 100%;
  height: 50px;
}
.ty-poll__input-text {
  margin: 7px 0;
}
.ty-polls__description,
.ty-poll__header,
.ty-polls__footer {
  padding-bottom: 5px;
}
.ty-poll__required-question {
  color: #ea7162;
}
.ty-polls__results {
  margin-bottom: 15px;
}
.ty-polls__results-item {
  margin-bottom: 15px;
}
.ty-polls-graph {
  margin: 15px 0 0;
}
.ty-polls-graph__title {
  float: left;
  width: 70%;
}
.ty-polls-graph__ratio {
  float: right;
  width: 25%;
  text-align: right;
}
.ty-polls-graph__bar {
  border: 1px solid #e2e2e2;
  overflow: hidden;
  margin-top: 3px;
  height: 11px;
}
.ty-polls-graph__bar-result {
  width: 0;
  height: 100%;
  background: #3e3e3e;
}
.ty-polls__total {
  font-size: 15px;
  margin-top: 15px;
  font-weight: bold;
}
.ui-dialog .ty-polls {
  min-width: 350px;
}
.ty-banner__image-item {
  text-align: center;
}
.ty-banner__image-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px 0;
  text-align: center;
}
.ty-scroller-discussion-list {
  margin-left: -10px;
  margin-right: -10px;
}
.ty-discussion-post__content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.ty-discussion-post__content a {
  display: block;
  position: relative;
}
.ty-scroller-discussion-list__item {
  margin-left: 10px;
  margin-right: 10px;
}
.ty-discussion-post {
  position: relative;
  margin: 10px 0 15px 0;
  padding: 15px;
  border: 1px solid #fff;
}
.ty-discussion-post__author {
  font-weight: bold;
}
.ty-discussion-post__date {
  float: right;
  right: 0;
  margin-top: 1px;
  color: #adadad;
  font-size: 12px;
}
.ty-discussion-post__rating {
  font-size: 15px;
  margin-bottom: 5px;
}
.ty-discussion-post__message {
  line-height: 1.75;
}
.ty-company-detail__top-links .ty-stars__icon {
  font-size: 21px;
}
.ty-discussion__rating-wrapper {
  margin-bottom: 10px;
}
.ty-discussion__rating-wrapper .ty-stars .ty-stars__icon {
  font-size: 20px;
  margin-right: 0px;
}
.ty-stars,
.ty-discussion__review-a,
.ty-discussion__review-write {
  display: inline-block;
  margin-right: 25px;
  cursor: pointer;
}
.ty-stars {
  color: #ff9900;
}
.ty-stars__icon {
  vertical-align: middle;
  margin-left: 2px;
  font-size: 15px;
}
.ty-stars a:hover {
  text-decoration: none;
}
.ty-product-list__rating {
  position: absolute;
  text-align: center;
  right: 0;
  left: 0;
}
.ty-product-list__rating .ty-stars {
  margin-right: 0;
}
.ty-companies .ty-stars {
  display: block;
  margin: 5px 0 0;
}
.ty-rating {
  float: left;
  color: #ff9900;
}
.ty-rating__label {
  display: inline-block;
}
.ty-rating:not(:checked) > .ty-rating__check {
  position: absolute;
  left: -9999px;
  clip: rect(0,0,0,0);
}
.ty-rating:not(:checked) > .ty-rating__label {
  float: right;
  width: 17px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 100%;
  line-height: 1.2;
  margin-right: 2px;
}
.ty-rating:not(:checked) > .ty-rating__label:before {
  font-family: 'glyphs';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 21px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "\e004";
}
.ty-rating:not(:checked) > .ty-rating__label:hover:before,
.ty-rating:not(:checked) > .ty-rating__label:hover ~ .ty-rating__label:before {
  content: "\e041";
}
.ty-rating > .ty-rating__check:checked ~ .ty-rating__label:before,
.ty-rating > .ty-rating__check:checked + .ty-rating__label:hover:before,
.ty-rating > .ty-rating__check:checked + .ty-rating__label:hover ~ .ty-rating__label:before,
.ty-rating > .ty-rating__check:checked ~ .ty-rating__label:hover:before,
.ty-rating > .ty-rating__check:checked ~ .ty-rating__label:hover ~ .ty-rating__label:before,
.ty-rating > .ty-rating__label:hover ~ .ty-rating__check:checked ~ .ty-rating__label:before {
  content: "\e041";
}
.ty-template-small__item-description .ty-stars {
  display: block;
}
@media (max-width: 979px) {
  .ty-discussion-post__author {
    display: block;
  }
  .ty-discussion-post__date {
    display: block;
    float: none;
  }
}
.ty-twishlist-item {
  text-align: center;
  height: 18px;
  margin-bottom: 10px;
}
.ty-grid-list__item:hover .ty-twishlist-item__remove {
  visibility: visible;
}
.ty-add-to-wish {
  display: inline-block;
  margin: 0;
}
@media (max-width: 767px) {
  .ty-wish-list__buttons .ty-btn {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ty-wish-list__buttons .ty-btn + .ty-btn {
    margin: 15px 0 0;
  }
}
.csc_live_search_css {
  background-color: #ffffff;
  border-radius: 5px;
  right: 0px;
  margin-top: 47px;
  position: absolute;
  top: 0;
  width: 500px;
  z-index: 10000;
}
.csc_live_search_navigation {
  height: 35px;
  width: 100%;
  display: block;
  background: #FAFAFA;
  border-radius: 5px 5px 0 0;
}
.csc_live_search_navigation .csc_live_search_pre,
.csc_live_search_navigation .csc_live_search_next {
  display: inline-block;
  width: 49px;
  height: 25px;
  margin: 3px;
}
.csc_live_search_navigation .csc_live_search_pre a,
.csc_live_search_navigation .csc_live_search_next a {
  width: 49px;
  height: 25px;
  background: url('../../../../../../../../design/themes/responsive/media/images/addons/csc_live_search/next_prev.png?1753621501') no-repeat;
  display: block;
  opacity: 0.3;
}
.csc_live_search_navigation .csc_live_search_pre a:hover,
.csc_live_search_navigation .csc_live_search_next a:hover {
  opacity: 0.5;
}
.csc_live_search_navigation .csc_live_search_pre {
  float: left;
}
.csc_live_search_navigation .csc_live_search_next {
  float: right;
}
.csc_live_search_navigation .csc_live_search_next a {
  background: url('../../../../../../../../design/themes/responsive/media/images/addons/csc_live_search/next_prev.png?1753621501') -49px no-repeat;
}
.csc_live_search_navigation .csc_live_search_total {
  width: 280px;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  margin-top: 9px;
}
.ty-template-small__item-img {
  padding-left: 3px;
}
.csc_no_transition {
  transition: none !important;
}
.csc_no_line b {
  text-decoration: underline;
}
.csc_template-item-price {
  font-weight: bold;
}
.csc_template-small__item {
  padding: 10px;
}
.csc_template-small__item-img {
  float: left;
  margin-right: 10px;
  vertical-align: top;
  width: 60px;
}
.csc_live_search_tree {
  padding-left: 3px;
}
.csc_live_search_tree:hover {
  text-decoration: none;
}
.csc_live_search_tree li {
  text-decoration: none;
  display: block;
  margin: 0 0 0 1.2em;
  background-color: #fff;
  border: dotted silver;
  border-width: 0 0 1px 1px;
  padding: 0;
}
.csc_live_search_tree li:hover {
  background-color: transparent;
}
.csc_live_search_tree li div {
  display: block;
  position: relative;
  bottom: -0.8em;
  background-color: #fff;
  margin: 0 0 .2em .7em;
  padding: 0 0.3em;
  text-align: left;
}
ul.csc_live_search_tree {
  padding-bottom: 15px;
}
.csc_root_tree_element {
  margin: 10px 0 0 14px;
  text-align: left;
}
.csc_product_code {
  display: none;
}
.csc_snize-dropdown-arrow {
  float: left;
  height: 14px;
  right: 132px;
  overflow: hidden;
  position: absolute;
  top: -14px;
  width: 21px;
}
.csc_snize-arrow-outer,
.csc_snize-arrow-inner {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  margin-left: -2px;
}
.csc_snize-arrow-outer {
  border-right: 11px solid rgba(255,255,255,0);
  border-left: 11px solid rgba(255,255,255,0);
  border-bottom: 15px solid #A5ACB2;
}
.csc_snize-arrow-inner {
  top: 2px;
  left: 2px;
  display: inline-block;
  border-right: 9px solid rgba(255,255,255,0);
  border-left: 9px solid rgba(255,255,255,0);
  border-bottom: 13px solid #FAFAFA;
}
.csc_snize-arrow-inner .csc_snize-arrow-inner-label {
  border-bottom: 13px solid #f7f7f7;
}
.css_live_no_found {
  height: 40px;
  text-align: center;
  padding-top: 20px;
}
body .ty-tygh form input.csc_live_search_loading {
  background: url('../../../../../../../../design/themes/responsive/media/images/addons/csc_live_search/filters_spinner.gif?1753621501') no-repeat #fff center !important;
}
.csc_template-p-description {
  position: relative;
}
.lvs-category-label {
  border-radius: 0;
  opacity: 1;
  padding: 0;
  text-shadow: none;
}
a.lvs-category-label:hover {
  opacity: 1;
  color: #fff;
}
.csc_template-p-description {
  padding-left: 0 !important;
  float: left;
  width: calc(calc(100%) - 70px);
  text-align: left;
}
.cloudzoom-lens {
  border: 1px solid #b3b3b3;
  cursor: move;
  width: 150px;
  height: 150px;
}
.cloudzoom-zoom {
  border: 1px solid #a6a6a6;
  height: 450px;
  width: 450px;
  z-index: 2000;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.cloudzoom-zoom-inside {
  border: medium none;
  box-shadow: none;
  z-index: 2000;
}
.cloudzoom-caption {
  background-color: #000000;
  color: #FFFFFF;
  display: none;
  font-family: sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding: 10px;
  text-align: left;
}
.cloudzoom-blank {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/addons/image_zoom/blank.png?1753621501');
  z-index: 2000;
}
.cloudzoom-ajax-loader {
  background-image: url('../../../../../../../../design/themes/responsive/media/images/icons/ajax_loader.svg?1753621501');
  height: 32px;
  width: 32px;
}
#wiz_prm1 {
  width: 800px;
}
#wiz_prm1 div {
  border: 0 solid transparent;
  border-radius: 0 0 0 0;
}
#wiz_prm1 .the-title strong {
  color: #363636;
  font-family: "Century Gothic", Helvetica, Arial;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 2.5px;
  line-height: 35px;
  padding-bottom: 4px;
  text-align: center;
  display: block;
}
#wiz_prm1 b {
  font-weight: bold;
}
#wiz_prm1 .discount {
  text-align: center;
  color: #FF6600;
  font-family: "Century Gothic", Helvetica, Arial;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}
#page_products.view [id^="wiz_prm1_add_to_cart"] {
  color: #FFFFFF !important;
  font-size: 15px;
  height: 48px;
  margin: -6px 0 5px -5px;
  width: 287px;
}
@media screen and (min-width: 1024px) {
  .csc_live_search_css::before {
    border-left: 10px solid #ffffff;
    border-top: 10px solid rgba(0,0,0,0);
    content: "";
    display: block;
    left: 70px;
    margin-top: -10px;
    position: absolute;
    transform: rotate(135deg);
  }
  .csc_live_search_css::before,
  .csc_live_search_css::after {
    display: none;
  }
  .csc_live_search_css::after {
    border-left: 10px solid #ffffff;
    border-top: 10px solid rgba(0,0,0,0);
    content: "";
    display: block;
    left: 70px;
    margin-top: -10px;
    position: absolute;
    transform: rotate(135deg);
  }
  #csc_livesearch {
    background: #ffffff none repeat scroll 0 0;
    position: absolute;
    top: 130px;
    right: unset !important;
    left: unset;
    border-radius: unset;
    width: inherit;
  }
  .csc_live_search_css {
    box-sizing: border-box;
    text-align: left;
  }
  .ty-search-block {
    position: static !important;
  }
  .csc_live_search_css::before,
  .csc_live_search_css::after {
    display: none;
  }
  .csc-template-small {
    display: flex;
    margin: 0 auto;
    max-width: 100%;
    width: 1200px;
  }
  .csc_live_search_css {
    margin-top: 0 !important;
  }
  .csc_live_search_css {
    margin-top: 50px;
  }
  #thecloser:hover {
    color: #000000 !important;
  }
  #thecloser {
    color: #fe737b !important;
    display: none;
    cursor: pointer;
    font-size: 55px !important;
    position: relative;
    right: -383px !important;
    top: -47px !important;
    z-index: 550;
    width: 30px;
  }
  .csc_live_search_css {
    display: none;
  }
  #theresto {
    font-size: 20px !important;
  }
  #theresto .grid-list .ty-grid-list__item-name {
    height: 65px !important;
  }
  #theresto .product-title > p {
    height: 39px;
  }
  #theprods .ty-grid-list__item-name .product-title {
    color: #000000 !important;
    height: 50px;
  }
}
@media screen and (max-width: 1023px) {
  #thecloser {
    display: none !important;
  }
  div#theresto {
    display: none !important;
  }
  ul.csc_template-small.csc_live_search_tree {
    display: none;
  }
}
.plus_popup .ty-footer-form-block__title {
  color: #333333;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(//fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-UFVZ0d.woff) format('woff');
}
body,
p,
div,
li {
  font-size: 15px !important;
  font-family: 'RobotoCondensed';
  color: #808080 !important;
}
.ty-btn {
  font-family: 'RobotoCondensed';
}
a {
  color: #666666 !important;
  font-size: 15px !important;
  font-family: 'RobotoCondensed' !important;
}
a:hover {
  font-family: 'RobotoCondensed';
}
h1,
h2 {
  font-family: 'RobotoCondensed';
}
.span8.skroutz-reviews-homepage {
  border: 2px solid #f6f6f6 !important;
}
.programm-promos .programm-promos-right {
  background: #7F135E none repeat scroll 0 0;
  padding-top: 6px;
  margin-left: 16px;
}
.span8.skroutz-reviews-homepage {
  margin-left: 6px !important;
  width: 597px !important;
}
.span8.presentation-text {
  border: 2px solid #f6f6f6;
  padding: 11px;
}
.span8.presentation-text {
  width: 597px !important;
}
.programm-promos-left > h4,
.programm-promos-right > h4 {
  border-bottom: 1px solid;
  color: #ffffff;
  font-size: 23px !important;
  font-weight: 300 !important;
  margin: 0 auto !important;
  width: 90%;
}
.programm-promos .url a:hover {
  text-decoration: underline;
}
.programm-promos .url a {
  color: #ffffff !important;
}
.programm-promos .url {
  background: #000000;
  padding: 6px 0;
}
.programm-promos-left > p,
.programm-promos-right > p {
  color: #ffffff;
  height: 70px;
  font-weight: 300;
  font-size: 25px;
}
.pages-view.page-68  h1.ty-mainbox-title {
  text-align: left !important;
}
.ty-qty-discount .ty-qty-discount__label {
  color: #343435;
}
.ty-product-block__left .ty-qty-discount .ty-table.ty-qty-discount__table {
  margin-top: 0;
}
.pages-view > #tygh_container > #tygh_main_container > .tygh-content > .container-fluid > .row-fluid > .span12.main-content-grid > .ty-mainbox-container > h1.ty-mainbox-title {
  text-align: left;
  color: #000 !important;
}
.ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header {
  border: none;
}
.ty-product-filters__title .ty-icon-cancel-circle:hover {
  color: #000000 !important;
}
.ty-pagination__bottom > .ty-pagination {
  text-align: right !important;
}
.profiles-update .ty-control-group__title.cm-profile-field {
  font-weight: 500;
}
.top-menu .ty-menu__submenu-item-header {
  padding-bottom: 0 !important;
  min-height: unset !important;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 {
  padding: 21px 11px !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(11) .ty-menu__submenu > .ty-menu__submenu-items .ty-top-mine__submenu-col:last-child .ty-menu__submenu-item-header:after {
  border-color: rgba(0,0,0,0);
}
.main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(11) .ty-menu__submenu > .ty-menu__submenu-items .ty-top-mine__submenu-col:last-child .ty-menu__submenu {
  display: none;
}
.products-view .ty-product-block__left form .ty-qty-discount {
  margin-bottom: 0;
  margin-top: 6px;
}
.ty-qty-discount__table .ty-qty-discount__td {
  border-right: 1px solid #f1f1f1 !important;
}
.wishlist-view h1.ty-mainbox-title > span > span {
  color: #808080;
}
.wishlist-view h1.ty-mainbox-title > span {
  color: #000000;
}
.wishlist-view h1.ty-mainbox-title span {
  display: block;
}
.wishlist-view h1.ty-mainbox-title span .subtitle {
  font-size: 15px;
  font-weight: 400;
}
.wishlist-view .ty-mainbox-container.clearfix h1 {
  margin-bottom: 25px;
}
.cart-wishlist:hover span {
  color: #fe737b;
}
.programm-promos {
  margin-top: 9px;
}
.checkout-checkout .ty-order-summary .ty-sidebox__title {
  margin-bottom: 5px !important;
  border-bottom: none !important;
}
.checkout-checkout .ty-order-summary .ty-sidebox__title-wrapper,
.checkout-checkout .ty-order-summary  .ty-sidebox__title span,
.checkout-checkout .ty-order-summary  .ty-sidebox__title a {
  font-size: 25px !important;
  font-weight: 300 !important;
}
.out-of-screen-product-list .ty-simple-list__price.clearfix {
  height: 22px;
}
.checkout-checkout .side-grid .ty-order-summary .ty-discount-info {
  margin-left: 0 !important;
  border: 1px solid #ededed !important;
}
.checkout-checkout .side-grid .ty-order-summary .ty-discount-info {
  border: 1px solid #ededed !important;
}
.checkout-checkout .ty-reward-points__txt-point {
  color: #fe737b !important;
  font-weight: 300;
}
.checkout-checkout .ty-discount-info > .ty-caret-info > .ty-caret-outer {
  border-bottom: 7px solid #ededed;
}
#checkout_totals  #ty-coupons__container > #point_payment {
  width: 100% !important;
}
#checkout_totals .ty-coupons__container  .ty-discount-coupon__control-group {
  background: #ededed none repeat scroll 0 0;
  box-sizing: border-box;
  padding: 10px;
  text-align: left;
  width: 100%;
}
#checkout_totals .ty-coupons__container .code-input.discount-coupon {
  width: 100%;
}
.checkout-checkout .side-grid .ty-order-summary thead > tr > td.ty-checkout-summary__item:nth-child(2) {
  text-align: center;
}
.checkout-checkout .side-grid .ty-order-summary tbody > tr:first-child td.ty-checkout-summary__item {
  width: 62%;
}
.out-of-screen-product-list > .ty-mainbox-container {
  margin-bottom: 10px;
}
.out-of-screen-product-list .ty-scroller-list__item .list_discount_block {
  display: none !important;
}
.out-of-screen-product-list .ty-simple-list__price .ty-price-update .ty-price span {
  color: #fe737b !important;
}
.programm-promos .programm-promos-left {
  background: #fe737b none repeat scroll 0 0;
  padding-top: 6px;
}
.friendsinvite-view #successful tbody tr:first-child > td {
  text-align: center;
  background: rgba(241,241,241,0.4) none repeat scroll 0 0;
}
.friendsinvite-create #tygh_main_container .ty-mainbox-container h1 {
  margin-bottom: 26px;
}
.profiles-update .span8.profile-information-grid.pc {
  margin-top: 33px;
}
.products-frontpage .ty-simple-list .ty-simple-list__buttons {
  padding-top: 17px !important;
}
.ty-simple-list .ty-simple-list__buttons {
  padding-top: 8px !important;
}
.friendsinvite-view .main-content-grid > .ty-mainbox-container > .ty-mainbox-body > .row {
  margin-left: 0;
}
.friendsinvite-view .table p {
  margin-left: 8px;
}
.friendsinvite-view .ty-mainbox-container > .ty-mainbox-body > .row > .container-fluid {
  padding: 0 !important;
}
.wishlist-view .buttons-container.ty-wish-list__buttons.ty-wish-list__continue.span13 {
  float: right;
}
.checkout-checkout .ty-control-group__title.cm-profile-field {
  font-weight: 500;
}
.ty-product-block__button .phone-help > span {
  margin-left: 9px;
}
.ty-product-block__button .phone-help > .fa-phone {
  right: -2px;
}
.programm-promos > div {
  display: inline-block;
  float: left;
  width: 49%;
  text-align: center;
}
.main-menu-para .ty-menu__item.cm-menu-item-responsive:nth-child(11) > .ty-menu__item-link {
  pointer-events: none;
}
.oroidiv > a:hover {
  text-decoration: underline;
}
.diagonismos-view .diago.container-fluid {
  margin-top: 34px !important;
  padding: 0 !important;
}
.diagonismos-view #tygh_main_container > .tygh-content > .container-fluid.content-grid {
  padding-bottom: 12px;
}
.ty-grid-list.ty-wish-list-empty > .ty-column4 > .ty-product-empty {
  display: block;
}
.badge {
  background-color: #777777;
  border-radius: 10px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  min-width: 10px;
  padding: 3px 7px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.badge-warning {
  background-color: #f0ad4e;
}
.badge-info {
  background-color: #5bc0de;
}
.orders-search .intro-to-ordersearch-page {
  font-weight: 500;
  text-align: center !important;
}
.user-profile-menu.span4,
.orders-table {
  display: inline-block !important;
  margin-left: 0 !important;
}
.orders-table .ty-orders-search td {
  border: 1px solid #ecf0f1 !important;
}
.reward-points-page td,
.reward-points-page th {
  border: 1px solid #ecf0f1 !important;
}
.user-profile-menu .general-pages > .ty-mainbox-title {
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}
.friendsinvite-create #tygh_main_container > .tygh-content > .container-fluid.content-grid {
  padding-bottom: 0;
}
.profiles-update .ty-profile-field.ty-account.form-wrap {
  margin-top: 0;
}
.wishlist-view .ty-mainbox-title .subtitle {
  margin-top: 5px;
}
#review_body .secure-icon {
  margin-top: 11px;
  width: 100% !important;
}
.ty-top-mine__submenu-col.mitem_1665:hover > .ty-menu__submenu {
  display: none;
}
.ty-top-mine__submenu-col.mitem_1665 > .ty-menu__submenu-item-header::after {
  border-color: rgba(0,0,0,0) !important;
}
.ty-top-mine__submenu-col.mitem_1665 > .ty-menu__submenu-item-header > a {
  color: #bf087f !important;
  text-transform: uppercase;
}
.orders-search .ty-orders-search td.ty-orders-search__item {
  border: 1px solid #ecf0f1;
}
.orders-search .ty-orders-search > thead > tr > th {
  border: 1px solid #ecf0f1;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(6) > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:nth-child(10) > .ty-menu__submenu {
  top: -180px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(6) > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:nth-child(10) > .ty-menu__submenu {
  top: -177px;
}
.checkout-cart #cart_items .ty-cart-content tbody tr {
  border-bottom: 1px solid #d9d9d9 !important;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(4) > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:nth-child(2) > .ty-menu__submenu {
  top: -136px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(4) > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:nth-child(2) > .ty-menu__submenu {
  top: -133px;
}
#checkout_totals .ty-coupons__container .clearfix .ty-gift-certificate-coupon {
  background: #ededed none repeat scroll 0 0;
  padding: 10px;
  box-sizing: border-box;
  width: 100% !important;
  text-align: left;
}
.ty-gift-certificate-coupon.ty-discount-coupon__control-group > input {
  width: 300px !important;
}
#checkout_totals .ty-coupons__container .clearfix {
  width: 100%;
}
.ty-cart-content .ty-cart-content__title {
  font-weight: normal;
}
.blog-carousel .ty-scroller-list__item {
  border: 1px solid #ffffff;
}
.blog-carousel .ty-scroller-list__item:hover {
  border: 1px solid #e7e7e8;
}
.ty-discussion-post__buttons.buttons-container > a {
  background: #fe737b none repeat scroll 0 0 !important;
}
.ty-discussion-post__buttons.buttons-container > a:hover {
  background: #000 none repeat scroll 0 0 !important;
}
.half-page-banner-text .ty-banner__image-wrapper {
  width: 600px !important;
}
.half-page-banner-text .half-page {
  width: 600px !important;
}
.ty-wysiwyg-content.half-page-banner-description {
  background: #ededed none repeat scroll 0 0;
  bottom: 25px;
  height: 94px;
  left: 106px;
  margin: 0 auto !important;
  position: absolute;
  width: 375px;
}
.half-page .ty-mainbox-title {
  background: #ededed none repeat scroll 0 0;
  bottom: 125px;
  left: 106px;
  position: absolute;
  width: 375px;
}
.span16.brands-homepage {
  background: #ededed none repeat scroll 0 0;
}
.brands-homepage .owl-carousel .owl-item {
  min-height: unset;
}
.top-brands-block .two-rows-block {
  margin-left: 0 !important;
}
.ty-wysiwyg-content.half-page-banner-brand-left {
  position: absolute;
  right: 53px;
  top: 123px;
  width: 209px;
}
.ty-wysiwyg-content.half-page-banner-brand-right {
  position: absolute;
  left: 54px;
  top: 118px;
  width: 209px;
}
.brand-banner-right .ty-mainbox-title {
  position: absolute;
  left: 32px;
  top: 75px;
}
.half-page .ty-banner__image-wrapper {
  margin-bottom: 0;
}
.half-page-banner-brand-right .text-description {
  text-align: right;
}
.brand-banner-left .see-more a,
.brand-banner-right .see-more a {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 100;
}
.brand-banner-left .see-more:hover,
.brand-banner-right .see-more:hover {
  background: #000000;
}
.half-page-banner-brand-left .see-more {
  float: left !important;
}
.brand-banner-right .see-more {
  float: right;
}
.two-rows-block .ty-banner__image-wrapper {
  margin-bottom: 0;
}
.span8.two-rows-block {
  width: 600px !important;
}
.brand-banner-left .see-more,
.brand-banner-right .see-more {
  background: #e06370 none repeat scroll 0 0;
  float: right;
  text-align: center;
  width: 90%;
  margin-top: 10px;
}
.half-page-banner-brand-right .text-description {
  text-align: right;
}
.brand-banner-left .ty-mainbox-title {
  position: absolute;
  right: 43px;
  top: 82px;
}
.two-rows-block .ty-mainbox-container .ty-mainbox-title span {
  font-size: 30px !important;
  font-weight: normal;
}
.ty-mainbox-container.brand-banner-right {
  position: relative;
}
.ty-mainbox-container.brand-banner-left {
  position: relative;
}
.half-page-banner-text .half-page .ty-mainbox-title > span {
  font-size: 26px !important;
  font-weight: normal;
}
.half-page .see-more > a:hover {
  text-decoration: underline;
}
.half-page > .half-page-banner-description > .text-description > p {
  padding: 0;
}
.half-page .see-more {
  text-align: center;
}
.home-slider-index .banners.owl-carousel.owl-theme {
  height: 534px !important;
}
.ty-footer-grid__full-width .item-exeggya:nth-child(3),
.ty-footer-grid__full-width .item-exeggya:nth-child(4) {
  padding-bottom: 0;
}
.tabbed-homepage-product-list-outer .span16.tabbed-homepage-multiproduct-list {
  margin-bottom: 28px !important;
  margin-top: 22px !important;
}
.top-brands-block .block-title-custom > .ty-wysiwyg-content > h2 {
  margin-bottom: 10px;
  margin-top: 40px;
}
.half-page .see-more a {
  font-size: 16px !important;
}
.half-page > .half-page-banner-description > .text-description {
  padding: 10px 10px 6px;
}
.span16.tabbed-homepage-product-list-outer {
  background: #ededed none repeat scroll 0 0;
  margin-top: 7px;
}
.top-cart-content .free-shipping-estimation .inner-shipping {
  text-align: center;
}
.ty-logo-container .ty-logo-container__image {
  margin-left: 10px;
}
.span16.logo-row {
  padding: 3px 0;
}
.products-view .breadcrumbs-grid > div > .ty-breadcrumbs {
  margin-bottom: 6px;
}
.products-view .ty-product-block__wrapper.clearfix {
  margin-top: 20px;
}
.span16.map-index-outer > .row-fluid {
  max-width: unset !important;
}
.span4.logo-container-header {
  width: 22.5% !important;
  position: relative;
  z-index: 501;
}
#searchnew {
  position: relative;
  z-index: 510;
}
.presentation-text .right-side > p {
  padding-top: 0;
}
.span16.keywords-homepage-outer {
  margin-top: 0 !important;
}
.group_tags ul {
  padding-left: 0;
  display: inline-block;
  margin-right: 13px;
  width: 23%;
}
.group_tags li {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 1px;
  padding-top: 8px;
  list-style-type: none !important;
}
.group_tags {
  margin-bottom: 15px;
  margin-top: 15px;
}
.newsletter td:first-child {
  width: 26%;
  text-align: right;
}
.home-side-menu .ty-text-links__item.ty-level-0 > a {
  color: #ff0000 !important;
}
.span4.newsletter-footer {
  background: #ededed none repeat scroll 0 0;
  box-shadow: 0 8px 8px -10px #696868 inset;
}
.newsletter {
  padding: 0 0;
}
.footer-acount-info .ty-footer-general__header::before {
  content: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/account-footer.png?1753621501');
  left: 89px;
  position: absolute;
  top: 24px;
}
.newsletter-footer .ty-footer-general__header::before {
  content: url("../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/newsletter-footer.png?1487777054");
  left: 148px;
  position: absolute;
  top: 23px;
}
.newsletter-footer .ty-footer-general__header::before {
  content: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/newsletter-footer.png?1753621501');
}
.newsletter .newsletter-buttons.clearfix {
  text-align: center;
}
.newsletter .newsletter-title > h3 {
  color: #ffffff;
  font-size: 73px;
  margin-bottom: 0;
  font-style: italic;
}
.newsletter .ty-footer-form-block__form.ty-control-group.ty-input-append {
  text-align: center;
}
.newsletter-buttons .button {
  float: none !important;
}
.under-newsletter-title p {
  color: #ffffff;
  font-size: 15px !important;
  margin: 0 auto;
  text-align: center;
  padding-top: 0;
}
.ty-simple-list__price.clearfix {
  height: 42px;
}
.checkout-cart .ty-cart-content__left-buttons .ty-mainbox-title {
  font-size: 32px !important;
  color: #000000 !important;
  font-weight: 300 !important;
}
.multiproducts_block_row_sorting .owl-carousel {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
}
.multiproducts_block_row .ty-scroller-list__item {
  width: 33.3333333%;
}
.ty-checkout-summary__block .ty-checkout-summary__item {
  vertical-align: top;
}
.checkout-checkout .side-grid .ty-checkout-summary__block > tbody > tr > td:nth-child(2) {
  text-align: center;
}
.checkout-checkout .side-grid [id^="checkout_order_info"] .ty-sidebox__title.cm-combination span {
  font-size: 25px !important;
  font-weight: 300 !important;
}
.checkout-checkout .side-grid [id^="checkout_order_info"] .ty-sidebox__title.cm-combination {
  padding: 9px 1px 3px 5px !important;
  margin-bottom: 12px;
  border-bottom: none !important;
}
.checkout-checkout .ty-order-info > h4.ty-order-info__title {
  padding-left: 6px;
  margin-bottom: 5px;
  font-weight: 500;
}
.ty-checkout-summary__block thead .ty-checkout-summary__item {
  color: #666666;
  font-weight: bold;
}
.checkout-checkout .shipping-adress__delim {
  margin-bottom: 6px !important;
}
.checkout-checkout .ty-checkout-summary table.ty-checkout-summary__block a:hover {
  text-decoration: underline;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2.alphabeta-index > li.ty-top-mine__submenu-col {
  min-width: 23px;
}
.top-menu .ty-menu__item .ty-menu__submenu-items.alphabeta-index > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header > .ty-menu__submenu-link {
  padding: 12px 0 !important;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:hover .squaredTwos span {
  display: block;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2.alphabeta-index > .ty-top-mine__submenu-col > .ty-menu__submenu > ul {
  background: #ffffff !important;
  border: 1px solid #ededed;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:hover .squaredTwos img {
  display: none;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:hover .squaredTwos {
  background: #ededed none repeat scroll 0 0;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:nth-child(6n) {
  border-right: 1px solid #ededed;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:nth-child(6n) {
  margin-right: 0;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:nth-child(n + 7) {
  border-top: none !important;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li:last-child {
  border-right: 1px solid #ededed;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li {
  border-left: 1px solid #ededed;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  display: inline-block;
  float: left;
  height: 73px;
  line-height: 73px;
  position: relative;
  text-align: center;
  transition: all 0.6s ease 0s;
  vertical-align: middle;
  width: 196px;
  padding: 0 !important;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li .texti {
  display: none;
  font-size: 15px;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header > a.ty-menu__submenu-link {
  font-size: 17px !important;
}
.span16.slider-main-banners-bottom > .row-fluid > .small.span5 {
  width: 393px;
}
.span16.slider-main-banners-top > .row-fluid > .small.span5 {
  width: 393px;
  margin-left: 10px;
}
.span16.slider-main-banners-top > .row-fluid > .big.span11 {
  width: 797px;
}
.span16.slider-main-banners-bottom > .row-fluid > .big.span11 {
  width: 797px;
  margin-left: 10px;
}
.mainbox-body.popular-searches {
  background: #ededed none repeat scroll 0 0;
  padding: 7px 10px;
}
.mainbox-body.popular-searches .ty-text-links__a:hover {
  color: #000 !important;
}
.multi_products_tabs a.product-title p {
  overflow: hidden;
}
.mainbox-body.popular-searches {
  display: flex;
}
.mainbox-body.popular-searches > span {
  color: #000000;
  font-size: 19px;
  font-weight: 100;
  text-align: right;
}
.popular-searches > .search-urls {
  margin-left: 26px;
  padding-top: 6px;
}
.popular-searches > .search-urls > .ty-text-links__a {
  color: #808080 !important;
}
.slider-main-banners-top .ty-banner__image-wrapper,
.slider-main-banners-bottom .ty-banner__image-wrapper {
  margin-bottom: 9px;
}
.span16.popular-searches-outside {
  margin-top: 11px;
}
.span16.slider-main-banners-top .ty-banner__image,
.span16.slider-main-banners-bottom .ty-banner__image {
  transition: all 0.8s ease 0.1s;
}
.span16.slider-main-banners-bottom .ty-banner__image-wrapper:hover img,
.span16.slider-main-banners-top .ty-banner__image-wrapper:hover img {
  transform: scale(1.05);
  transition: all 0.8s ease 0.1s;
}
.span16.slider-main-banners-top {
  margin-top: 20px;
}
.ty-checkout-summary[id^="checkout_info_summary"] {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 3px;
  padding: 2px 5px 5px 5px;
}
.side-grid > [id^="checkout_order_info"] > .order-information {
  background: #ededed none repeat scroll 0 0;
  padding: 2px 4px;
}
.checkout-checkout .ty-order-info #tygh_shipping_method > li {
  padding-left: 0;
}
.checkout-cart .ty-cart-content thead {
  border-bottom: 2px solid #000000;
}
.ty-cart-total {
  background: #ffffff none repeat scroll 0 0 !important;
}
.checkout-checkout .index-top-banners-under-menu,
.checkout-cart .index-top-banners-under-menu {
  display: none !important;
}
.ty-cart-statistic__total-list {
  border-top: none !important;
  float: right;
}
.checkout-cart .ty-cart-statistic.ty-statistic-list {
  border-bottom: 1px solid #d9d9d9;
  width: 290px;
}
.inner-right-cart_total .ty-cart-statistic__total-list {
  width: 290px;
}
.index-text-message div {
  padding: 0 20px;
}
html div#esatisfaction {
  left: 30px !important;
}
#checkout_totals div {
  display: inline-block;
}
.checkout-cart #checkout_totals div {
  float: none;
}
.checkout-cart .free-shipping-estimation {
  width: 100%;
}
.ty-cart-total .free-shipping-estimation {
  margin-bottom: 11px;
}
.free-shipping-estimation {
  font-size: 16px;
  text-align: center;
}
.checkout-cart .free-shipping-estimation {
  width: 100%;
}
form#searchnew {
  position: relative;
}
.inner-shipping {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
  padding: 2px 0;
  width: 95%;
}
.top-cart-content .ty-cart-content__buttons > .ty-float-left a {
  background: #808080 none repeat scroll 0 0 !important;
}
.top-cart-content .ty-cart-content__buttons > .ty-float-left a:hover {
  background: #333 none repeat scroll 0 0 !important;
  text-decoration: none !important;
}
.ty-cart-statistic__item {
  color: #4d4d4f !important;
}
.ty-float-right.ty-cart-content__right-buttons button,
.ty-float-right.ty-cart-content__right-buttons a:first-child {
  background: #fff none repeat scroll 0 0;
  color: #00b5a9;
}
.ty-float-right.ty-cart-content__right-buttons button:hover,
.ty-float-right.ty-cart-content__right-buttons a:first-child:hover {
  background: #fff none repeat scroll 0 0;
  color: #00b5b9;
}
.ty-billing-first-name + .ty-billing-last-name,
.ty-billing-country + .ty-billing-state,
.ty-shipping-first-name + .ty-shipping-last-name,
.shipping-country + .ty-shipping-state,
.ty-first-name + .ty-last-name {
  margin-left: 5.5% !important;
}
.ty-billing-state,
.ty-billing-phone,
.ty-shipping-phone {
  margin-left: 5.5% !important;
}
.ty-control-group.ty-profile-field__item.ty-billing-phone {
  margin-left: 5.5% !important;
  width: 47%;
}
.ty-control-group.ty-profile-field__item.ty-mobile {
  margin-left: 5.5%;
  margin-right: 0 !important;
}
.ty-control-group.ty-profile-field__item.ty-billing-state {
  margin-left: 5.5% !important;
}
.ty-control-group.ty-profile-field__item.ty- {
  width: 100%;
}
.ty-control-group.ty-profile-field__item.ty-shipping-city,
.ty-control-group.ty-profile-field__item.ty-shipping-state {
  margin-left: 5.5%;
}
#review_body .btn.btn-success {
  background: #f60 none repeat scroll 0 0;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 9px 0;
  width: 100%;
  font-size: 16px;
}
.span16.under-metaforika {
  float: none !important;
  margin: 0 auto !important;
  text-align: right;
  width: 1200px !important;
}
.text-free-shipping-athens > span {
  font-size: 11px;
}
.free-shipping-header-promo .icon-free-shipping {
  position: relative;
  top: 0px;
}
.item-exeggya .fa.fa-info {
  color: #333333;
  font-size: 38px;
}
.text-free-shipping-athens {
  position: relative;
  top: 6px;
  width: 194px;
}
.text-call-us-now {
  position: relative;
  right: -21px;
  width: 177px;
}
.phone-number-shipping .second-row {
  font-weight: 600;
}
.ty-payments-list__item-title {
  color: #4d4d4d;
}
.ty-step__container-active,
.ty-like-step {
  background: #fff !important;
}
.ty-like-step .ty-step__container-active {
  background: #fff !important;
}
.ty-step__title-txt {
  font-size: 17px !important;
  color: #4d4d4d !important;
}
.ty-step__title-active {
  background: #fff;
}
.ty-step__container-active .ty-step__title-left {
  background: #4d4d4d !important;
}
.checkout-checkout .ty-step__container-active .ty-step__title-left {
  background: #ffffff !important;
  color: #fe737b !important;
  font-weight: bold;
}
.clear-both.plus-skroutzeasy-login > a {
  margin-left: 21px;
}
.checkout-summary .float-right {
  float: right;
}
.ty-control-group.ty-profile-field__item.ty-shipping-country {
  margin-left: 0 !important;
}
.checkout-checkout .ty-mainbox-title {
  text-align: center !important;
}
.checkout-checkout .ty-checkout__title {
  font-size: 20px !important;
  color: #666 !important;
  font-family: 'RobotoCondensed' !important;
}
.checkout-checkout .checkout-checkout-title {
  color: #000000 !important;
}
.ty-control-group.ty-profile-field__item.ty- {
  width: 100% !important;
}
.checkout-checkout .span4.side-grid {
  border-right: none !important;
}
.checkout-checkout .ty-gift-certificate-coupon.ty-discount-coupon__control-group > input {
  width: 100% !important;
}
.checkout-checkout .ty-coupons__list.ty-discount-info {
  width: unset !important;
}
.checkout-checkout .ty-order-summary {
  margin-top: 0px !important;
}
.checkout-checkout .ty-step__title-complete .ty-step__title-right > .ty-btn__secondary:active {
  box-shadow: none !important;
}
.checkout-checkout .ty-step__title-complete .ty-step__title-right > .ty-btn__secondary:hover {
  color: #fe737b !important;
}
.checkout-checkout .ty-step__title-complete .ty-step__title-right > .ty-btn__secondary {
  background: none;
  color: #666 !important;
  font-weight: bold;
  text-decoration: underline;
  padding: 6px 3px !important;
}
.checkout__block #shipping_rates_list > .ty-shipping-options__method > .ty-valign {
  color: #666666;
}
#step_three_body .ty-checkout__shipping-tips {
  margin-top: 20px;
}
.checkout-checkout .ty-checkout-buttons > .ty-btn__secondary.ty-btn:hover {
  background: #000000 !important;
}
.checkout-checkout .ty-checkout-buttons > .ty-btn__secondary.ty-btn {
  background: #fe737b !important;
}
.checkout-checkout .ty-step__title-complete .ty-step__title-icon.ty-icon-ok {
  color: #808080;
}
.checkout-checkout .ty-checkout-summary__item.ty-checkout-summary__taxes {
  color: #666 !important;
}
.ty-sidebox.ty-order-summary > h2 > span {
  color: #000000;
}
.ty-sidebox.order-products > h2 > span {
  color: #000000;
}
#anonymous_checkout .ty-checkout-buttons > .ty-btn__primary.ty-btn:hover {
  background: #000 !important;
}
.ty-checkout__login .ty-btn__login.ty-btn__secondary.ty-btn:hover {
  background: #000000 !important;
  color: white !important;
}
.ty-checkout__login .ty-btn__login.ty-btn__secondary.ty-btn {
  background: #fe737b !important;
  color: black !important;
  font-size: 15px !important;
  font-family: Roboto;
  border: 2px solid black;
  border-radius: 2px;
  width: 100%;
  min-height: 45px;
}
#anonymous_checkout .ty-checkout-buttons > .ty-btn__primary.ty-btn {
  font-size: 15px !important;
  min-height: 45px;
}
#step_three.ty-step__container-active.ty-step-three {
  margin-bottom: 14px;
}
#checkout_steps .ty-step__container > .ty-step__title,
#checkout_steps .ty-step__container > .ty-step__title-complete {
  margin-bottom: 0;
}
#checkout_steps .ty-step__container.active {
  border-bottom: none !important;
}
#checkout_steps .ty-step__container {
  border-bottom: 2px solid #ededed;
}
.notification-body-extended .simple-list-wishlist {
  display: none;
}
.ty-checkout__title-icon.ty-icon-lock {
  position: relative;
  top: -4px;
}
.ty-step__body-active {
  padding: 0 !important;
}
.ty-simple-list .ty-notify-for-product-availability {
  display: none;
}
.cart-content-grid .top-cart-content .cm-cart-content.cm-cart-content-thumb::before {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
  content: "";
  height: 23px;
  position: absolute;
  top: -20px;
  width: 100%;
}
#review_body .maintable .product-name:hover {
  text-decoration: underline;
}
#review_step .ty-step__title-txt {
  margin-left: 3px !important;
}
.ty-sku-item .ty-control-group__label {
  width: auto;
}
.ty-discussion__rating-wrapper .ty-sku-item {
  color: #000000;
  font-size: 13px;
}
.checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__primary:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__primary:hover {
  background: #000000 none repeat scroll 0 0 !important;
  color: #ffffff !important;
}
.checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__primary {
  background: #fe737b none repeat scroll 0 0 !important;
  font-weight: 400;
}
.checkout-complete .ty-login .buttons-container,
.checkout-complete .ty-checkout-complete__buttons {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.ty-polls__buttons.buttons-container {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.ty-checkout-complete__create-account .ty-control-group__label.ty-login__filed-label.cm-required.cm-password {
  width: 148px;
}
.checkout-cart .ty-mainbox-cart__body > #cart_items > .ty-cart-content > thead > tr > th {
  font-size: 15px;
  font-weight: 600;
}
.ty-cart-content__right-buttons button.ty-btn__secondary.ty-btn:hover {
  color: #fe737b !important;
}
.checkout-cart .ty-cart-content__right-buttons a.ty-btn.ty-btn__secondary:hover {
  color: #fe737b !important;
}
.checkout-cart .ty-cart-content__right-buttons a.ty-btn.ty-btn__secondary {
  background: #fff none repeat scroll 0 0 !important;
  border: 1px solid #000000;
  color: #000000 !important;
}
.ty-cart-content__right-buttons button.ty-btn__secondary.ty-btn {
  color: #000000 !important;
  font-size: 15px;
}
.checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__secondary.cm-external-click {
  background: #fff none repeat scroll 0 0 !important;
  color: #000000 !important;
  box-shadow: none !important;
  border: none !important;
  font-size: 13px;
}
input[type="text"],
input[type="password"],
textarea,
select {
  border: 1px solid #ededed;
  font-family: "RobotoCondensed" !important;
}
.order-search-index .tracking-search .order-track {
  font-size: 15px;
}
.checkout-checkout #subsciption_ {
  display: none;
}
.checkout-checkout .ty-discount-coupon__control-group.ty-reward-points__coupon.ty-input-append.ty-inline-block > input {
  padding-right: 0;
  color: #fe737b !important;
}
.checkout-checkout .ty-checkout-summary__item .ty-discount-info {
  border: 1px solid #ededed;
}
.checkout-checkout .ty-discount-coupon__control-group.ty-reward-points__coupon.ty-input-append.ty-inline-block > button {
  width: auto !important;
  right: 0 !important;
  padding: 0 6px;
  background: #666 !important;
  color: #ffffff !important;
}
.ty-customer-notes + h3 {
  display: none;
}
.span5.number-of-prods-promo {
  margin-left: 3.02766% !important;
  margin-top: 2.7%;
}
.checkout_free_ship_notification_box.cm-notification-content.notification-content.cm-auto-hide.alert-success {
  background: #fe737b none repeat scroll 0 0;
  border-color: #fe737b;
  color: #ffffff !important;
  font-size: 16px;
  left: 32%;
  padding-bottom: 18px;
  padding-top: 18px;
  position: fixed;
  top: 43%;
  width: 642px;
}
.checkout_free_ship_notification_box .close.cm-notification-close {
  color: #ffffff;
}
.checkout_free_ship_notification_box.cm-notification-content.notification-content.cm-auto-hide.alert-success > strong {
  display: none;
}
.pages-view .side-grid > .ty-mainbox-container.clearfix.general-pages h1 {
  text-align: center;
}
.pages-view .side-grid > .ty-mainbox-container.clearfix.general-pages .ty-mainbox-body ul li {
  text-align: left;
}
.span16.logo-row {
  margin-top: 15px;
}
.ty-gift-certificate-coupon .ty-input-text.cm-hint {
  color: #fe737b;
  font-style: italic;
}
.home-side-menu {
  margin-top: 13px !important;
}
.home-side-menu h3.popular-search {
  color: #000000;
  font-weight: 400;
  margin-bottom: 10px;
  padding-top: 16px;
  text-align: center;
}
.everyday_products .owl-buttons > div:hover > i.fa {
  color: #000000 !important;
}
.span4.home-side-urls {
  width: 257px;
}
.ty-gift-certificate-coupon > input {
  width: 250px !important;
}
.ty-gift-certificate-coupon > input,
.ty-gift-certificate-coupon > button {
  display: inline-block;
}
.ty-gift-certificate-coupon .ty-input-text.cm-hint {
  color: #fe737b !important;
  font-size: 15px;
  font-style: italic;
}
.ty-cart-content__product-title {
  color: #4d4d4d !important;
}
.free-shipping-estimation .inner-shipping {
  margin-top: 0;
  text-align: left;
}
.free-shipping-estimation .inner-shipping span {
  color: #fe737b !important;
  font-style: italic;
  font-weight: bold;
}
.free-shipping-estimation .inner-shipping {
  font-size: 17px !important;
}
.free-shipping-estimation .inner-shipping {
  font-style: italic;
  color: #666666 !important;
}
.inner-left-cart_total .free-shipping-estimation {
  background: #ededed none repeat scroll 0 0;
  box-sizing: border-box;
  padding: 10px 0;
}
.cm-dialog-opener.cm-dialog-auto-size.ty-cart-total__a-estimation {
  color: #a1c746;
}
a.ty-cart-content__product-title:hover {
  color: #a1c746;
}
.ty-btn {
  color: #fff !important;
}
.ty-cart-content__right-buttons .ty-btn.ty-btn__secondary {
  padding: 6px 10px;
}
.ty-btn:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-cart-content__right-buttons button.ty-btn__secondary.ty-btn {
  box-shadow: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #5e5f5b !important;
}
.ty-step__container-active .ty-step__title-left {
  background: #fff none repeat scroll 0 0 !important;
}
.ty-step__title-active .ty-step__title-left {
  color: #fff !important;
}
.checkout-checkout .ty-step__title-active.clearfix span.ty-step__title-left {
  color: #fe737b !important;
}
.checkout-checkout .ty-step__title-active.clearfix .ty-step__title-left {
  font-size: 27px !important;
}
.checkout-checkout .ty-step__title-active.clearfix span {
  color: #000 !important;
  font-size: 19px !important;
}
.checkout-checkout .ty-subheader {
  color: black !important;
  font-weight: bold;
}
.checkout-checkout .ty-control-group__label {
  color: #808080 !important;
}
.checkout-checkout .ty-step__title-active .ty-step__title-left {
  margin: 0;
  color: #fe737b !important;
  top: 1px;
}
.checkout-checkout .ty-step__container-active .ty-step__title-left {
  padding: 2px 3px !important;
}
.ty-password-forgot .ty-checkout-login-form .ty-password-forgot__a:hover {
  text-decoration: underline;
}
.checkout-checkout .ty-step__title-left {
  background: #ffffff !important;
  color: #666666 !important;
  font-weight: bold;
}
.checkout-checkout .ty-checkout-buttons > .ty-btn__secondary.ty-btn {
  background: #fe737b none repeat scroll 0 0;
  font-size: 16px;
}
.checkout-checkout .ty-checkout__shipping-tips > p {
  font-weight: 300;
}
.checkout-checkout .ty-wysiwyg-content td,
.checkout-checkout .ty-wysiwyg-content th {
  border: none !important;
}
#review_step .ty-step__title-left > img {
  top: 2px;
  position: relative;
}
.ty-menu__submenu-to-right .ty-menu__submenu-items {
  right: unset !important;
}
.ty-step__title-active.clearfix {
  border-bottom: 1px solid #ffffff !important;
}
#review_step .ty-step__title-active.clearfix {
  text-align: center;
}
#review_step .ty-step__title-left {
  position: relative;
  right: -4px !important;
  top: -3px;
}
#place_order_one_click_checkout {
  background: #bf077f none repeat scroll 0 0 !important;
  border-color: #bf077f !important;
  transition: background 200ms ease 0s;
}
.fear_factor {
  border: none !important;
  text-align: left !important;
}
.add-to-cart-product {
  text-align: center;
  position: relative;
}
.brand-name-grid-list > a:hover {
  color: #fe737b;
}
.brand-name-grid-list {
  text-align: center;
}
.brand-name-grid-list a {
  font-weight: 600;
  color: #000000 !important;
}
.grid-list .prod-amount span {
  color: #000000 !important;
}
.grid-list .ty-list-price.ty-save-price.ty-nowrap > .other_col > [id^="prc_discount_value_"] {
  color: #fe737b !important;
}
.brand-name-grid-list {
  text-align: center;
}
.brand-name-grid-list > a {
  color: #000000;
}
.ty-template-small__item-description > .brand-name-grid-list > a:hover {
  text-decoration: none;
}
.products-view .add-to-cart-product-button .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  background: #fe737b none repeat scroll 0 0 !important;
  font-weight: 500;
}
.products-view .add-to-cart-product-button .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn:hover {
  background: #000000 none repeat scroll 0 0 !important;
}
.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  background: #000 none repeat scroll 0 0 !important;
  position: relative;
  font-weight: 600;
}
.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn:hover {
  background: #fe737b none repeat scroll 0 0 !important;
}
.ty-product-block__price-actual .ty-price-num {
  font-family: "RobotoCondensed" !important;
  font-size: 29px !important;
}
.other_col {
  font-weight: 400;
}
.ty-simple-list__buttons .add_to_wishlist_para {
  display: none;
}
.social-footer .ty-wysiwyg-content img {
  transition: all 0.5s ease 0.1s;
  border-radius: 50%;
}
.ty-gift-certificate-coupon label {
  color: #fe737b;
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  width: 100%;
}
.social-footer li a:hover .hovered {
  display: inline-block;
}
.social-footer li a:hover .neutral {
  display: none;
}
.social-footer .hovered {
  display: none;
}
.ty-grid-list__price .ty-list-price.ty-nowrap.ty-tax-include {
  display: none;
}
.ty-product-block .product_block_right .ty-sidebox {
  padding: 10px 6px 10px 10px;
}
.whenfixed.clearfix {
  margin-top: 6px;
}
.ty-product-block__button .ty-btn {
  margin-bottom: 0px !important;
}
.ty-product-block__button .ty-btn,
.tab_bar_w .ty-btn {
  margin-right: 0 !important;
}
.ty-product-block__button {
  margin: 0 !important;
}
.products-view .fear_factor {
  margin-top: 4px !important;
}
.ty-qty {
  margin-bottom: 0 !important;
}
.button-add-to-the-cart {
  vertical-align: bottom;
}
.product-qty-picker {
  width: 0;
}
.product-qty-picker .ty-control-group__label {
  margin-right: 0 !important;
}
.ty-step__container-active,
.ty-like-step {
  margin: 10px 0 10px 11px !important;
}
.ty-like-step {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 11px !important;
  padding-right: 11px !important;
}
.ty-step__container-active.ty-step-two {
  margin-right: 11px !important;
}
.ty-step__container-active.ty-step-three {
  margin: 0 !important;
}
#review_step .ty-step__title-active.clearfix {
  padding-bottom: 7px;
}
.ty-breadcrumbs a:hover {
  color: #808080 !important;
  text-decoration: underline;
}
.ty-breadcrumbs__current {
  font-weight: 600;
  color: #808080 !important;
}
.ty-sidebox__title {
  padding: 0 0 9px !important;
  text-align: center !important;
}
.icon-free-shipp {
  color: #707070;
}
.icon-free-shipp {
  margin-left: 2px;
  position: relative;
}
.fa.fa-check-circle {
  color: #c1c1c1;
  font-size: 14px;
}
.ty-product-block__left .stock-wrap .product-list-field .ty-qty-in-stock.ty-control-group__item {
  margin-left: 4px;
  padding: 0;
}
.ty-product-block__price-actual {
  margin: 0 !important;
}
.ty-cart-content td {
  vertical-align: middle;
}
.ty-cart-content__product-elem.ty-cart-content__qty div {
  width: 53px;
  margin-top: 7px !important;
}
.ty-cart-items__list .ty-cart-items__list-item-desc .item-desc > a {
  font-size: 13px !important;
}
.inner-shipping {
  color: #fe737b !important;
}
.top-cart-content .ty-cart-items__list-item-desc .item-code,
.ty-cart-items__list-item-desc .amount_price__list_item span {
  font-size: 12px;
}
.top-cart-content .amount_price__list_item > span.item-price {
  float: right;
}
.amount_price__list_item > span {
  display: inline-block;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__item-link > span {
  position: relative;
  top: 2px;
}
.gm-style .gm-style-iw {
  background: #ffffff none repeat scroll 0 0 !important;
  border: 1px solid #cecece;
  border-radius: 2px;
  display: block !important;
  height: 100% !important;
  left: 0 !important;
  min-height: 105px !important;
  padding: 3px 0 0 7px;
  top: 0 !important;
  width: 100% !important;
}
.map-info-window {
  height: 106px !important;
}
.ty-gift-certificate-coupon .ty-btn-go {
  right: -35px;
}
.cm-hint {
  color: #c5c5c5 !important;
}
.ty-input-append .ty-input-text {
  padding-right: 35px;
  width: 100%;
}
.ty-input-append .ty-input-text {
  width: unset !important;
}
#quick_search_result .right {
  display: none;
}
#quick_search_result tr:last-child {
  border-bottom: none;
}
#quick_search_result tr {
  border-bottom: 1px solid #f1f1f1;
}
.qsearch-result.border.cm-popup-box {
  min-width: 485px !important;
}
.ty-cart-content__product-title {
  font-size: 109%;
}
.ty-cart-content__product-title {
  color: #000 !important;
  font-weight: bold;
}
.checkout-cart .ty-gift-certificate-coupon .ty-btn-go:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.checkout-cart .ty-gift-certificate-coupon .ty-btn-go:hover {
  background: #777777;
}
.checkout-cart .ty-gift-certificate-coupon .ty-btn-go {
  background: #666666 none repeat scroll 0 0;
  color: #fff;
  font-weight: 600;
  height: 32px;
  position: relative !important;
  right: -2px;
  top: 0 !important;
  width: 111px !important;
  transition: background 200ms ease 0s;
}
.checkout-cart .ty-gift-certificate-coupon .ty-btn-go {
  border-left: medium none !important;
}
#checkout_totals div {
  float: none !important;
}
#checkout_totals div {
  float: none !important;
}
#checkout_totals div {
  display: inline-block;
  float: left;
}
.ty-coupons__container {
  float: left;
  width: 235px;
}
.ty-coupons__container {
  text-align: center;
  width: 100% !important;
}
.checkout-cart .ty-cart-total__wrapper {
  padding: 17px 0;
}
.inner-right-cart_total.span6 {
  margin-left: 0;
}
.inner-left-cart_total {
  vertical-align: top;
}
.ty-cart-content__sku.ty-sku {
  color: #000 !important;
}
.ty-cart-content .ty-cart-content__title {
  font-size: 13px;
}
tr > td.ty-cart-content__product-elem.ty-cart-content__list_price {
  color: #000000;
}
#review_step .ty-step__title-left {
  height: 32px;
  padding: 0 6px !important;
  position: relative;
  right: -42px;
  top: -2px;
}
#review_body hr {
  margin-bottom: 13px;
  border-color: #e5e5e5 !important;
}
#review_body .checkout-summary .tbody > tr:last-child td {
  padding-bottom: 7px !important;
}
#review_body .checkout-summary .total tr td {
  padding-top: 9px !important;
}
#place_order_one_click_checkout:hover {
  background: #681857 !important;
}
#place_order_one_click_checkout:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset !important;
}
label.cm-failed-label {
  color: red !important;
}
input.cm-failed-field[type="text"],
input.cm-failed-field[type="password"],
textarea.cm-failed-field,
.cm-field-container.cm-failed-field input[type="text"] {
  border-color: red !important;
}
.help-inline p {
  color: red !important;
  font-size: 10px !important;
}
#review_step .ty-step__title-active.clearfix {
  margin-bottom: 0;
}
.checkout-title {
  background: #ededed none repeat scroll 0 0 !important;
  border: 1px solid #dedede !important;
  margin-top: 13px;
  padding: 10px 0;
}
.icon-lock {
  text-align: right;
  vertical-align: bottom;
}
.text-lock {
  text-align: left;
}
.checkout-checkout-title {
  margin-left: 26px;
  margin-top: 12px;
  text-align: left;
  color: #7a7a7b !important;
}
.checkout-title > table {
  width: 100%;
}
.ty-checkout__title {
  font-size: 19px !important;
  margin: 0 !important;
}
.ty-checkout__title-icon {
  color: #fe737b;
}
.ty-checkout__title-icon.ty-icon-lock {
  top: -2px !important;
}
#step_four.ty-step__container-active.ty-step-four {
  margin: 15px 0 0 !important;
}
#step_four .ty-step__title-active.clearfix {
  margin-bottom: 0;
}
.brands-homepage .see-all-brands > a {
  font-size: 17px !important;
}
.brands-homepage .owl-carousel.owl-theme {
  margin-top: 14px;
}
.span16.brands-homepage {
  position: relative;
}
.brands-homepage .owl-theme.ty-owl-controls {
  position: unset;
}
.brands-homepage .owl-prev i,
.brands-homepage .owl-next i {
  color: #666666;
  font-size: 31px;
  font-weight: 100;
}
.brands-homepage .owl-prev,
.brands-homepage .owl-next {
  top: 20px;
}
.brands-homepage .owl-prev {
  left: 0;
}
.brands-homepage .owl-next {
  right: 8px;
}
.brands-homepage .see-all-brands {
  margin: 15px 0 14px;
  text-align: center;
}
.see-all-brands > a:hover {
  text-decoration: underline;
}
.checkout-checkout .ty-step__title-txt {
  font-size: 18px !important;
  font-weight: bold;
  color: #000000 !important;
}
.checkout-checkout .ty-step__title-left {
  top: 9px;
}
#review_step .maintable td:first-child {
  text-align: left;
}
#review_step .maintable td:last-child {
  text-align: right;
}
.oroi-xrisis.cm-dialog-opener.cm-fixed-size {
  text-decoration: underline;
  margin-left: 4px;
  margin-right: 4px;
}
.checkout-checkout .credit::before {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/payments.png?1753621501') no-repeat scroll 0 0;
  content: "";
  display: block;
  height: 44px;
  left: 17px;
  position: absolute;
  top: 22px;
  width: 119px;
}
.ty-payments-list__item.credit {
  position: relative;
}
#review_body .colapsed th {
  font-weight: 600;
}
.ty-payments-list__item-title {
  font-weight: 600;
}
#review_step .ty-step__title-active.clearfix {
  margin-bottom: 13px;
}
.ty-payments-list__item.credit {
  margin-bottom: 16px;
}
.ty-cart-content__product-delete.ty-delete-big {
  color: #1b1b1b !important;
  font-size: 10px !important;
}
.ty-cart-statistic__total-title {
  color: #000;
  font-size: 17px;
}
.ty-cart-statistic__item.ty-cart-statistic__total > .ty-cart-statistic__total-value span {
  color: #000000;
}
.ty-product-notification__content > .ty-product-notification__product-name {
  color: #000 !important;
}
.ty-product-notification__content > .ty-product-notification__price {
  color: #000000 !important;
}
.ty-cart-statistic__total-value {
  font-size: 17px;
}
.inner-shipping {
  font-size: 15px !important;
  margin-top: 10px;
}
.basket-value div {
  font-size: 14px !important;
  font-weight: 600;
  color: #000;
}
.cart-content-info-message {
  padding: 0 6px;
  text-align: center;
}
.cart-content-info-message > label {
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 300;
}
.cart-content-info-message > label {
  display: block;
}
.cart-content-info-message .phone-number > i {
  font-size: 24px;
}
.work-hours {
  margin-bottom: 6px;
}
.cart-content-info-message .phone-number {
  font-size: 18px;
  display: block;
  margin: 3px 0 1px;
}
#tygh_main_container > .tygh-top-panel > .container-fluid.top-grid {
  max-width: unset;
  padding: 0;
}
.span16.top-promo-outer > .row-fluid {
  max-width: 1200px;
  margin: 0 auto !important;
  float: none !important;
}
.span16.top-promo-outer {
  background: #fe737b none repeat scroll 0 0;
}
.span16.top-header-row-outer > .row-fluid {
  max-width: 1200px;
  margin: 0 auto !important;
  float: none !important;
}
.work-hours > span {
  display: block;
}
.top-cart-content > .ty-dropdown-box > .ty-dropdown-box__content > .cm-cart-content::before {
  background: none;
  content: "";
  display: block;
  height: 20px;
  left: 30%;
  position: absolute;
  top: -23px;
  width: 50%;
}
.inner-shipping.for-free > strong {
  font-weight: 400;
}
.grid-list .bdd-image-list:hover .bdd_tooltip-list {
  display: block;
}
.grid-list .bdd_tooltip-list::before {
  border-color: #fe737b rgba(0,0,0,0) rgba(0,0,0,0);
  border-style: solid;
  border-width: 10px 10px 0;
  bottom: -13px;
  content: " ";
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  width: 0;
}
.grid-list .bdd_tooltip-list {
  background: #ffffff none repeat scroll 0 0;
  border: 4px solid #fe737b;
  border-radius: 3px;
  padding: 8px;
  right: -129px;
  top: -149px;
  width: 300px;
  z-index: 4;
  -webkit-box-shadow: 3px 10px 17px -10px rgba(0,0,0,0.75);
  -moz-box-shadow: 3px 10px 17px -10px rgba(0,0,0,0.75);
  box-shadow: 3px 10px 17px -10px rgba(0,0,0,0.75);
}
.grid-list .bdd-image-list {
  right: 3px;
  float: right;
  margin-top: -28px;
}
.grid-list .bdd_tooltip-list {
  display: none;
}
.grid-list .ty-product-block__left #apivita-shadow-badge {
  margin-top: 70px !important;
}
.grid-list .bdd_tooltip-list h4 {
  margin-bottom: 7px !important;
}
.chrome .everyday_products .ty-scroller-list__description > .ty-simple-list .product-title {
  height: 54px;
}
.buttons-container.ty-cart-content__top-buttons.clearfix {
  margin-bottom: -21px;
}
.buttons-container.ty-cart-content__bottom-buttons.clearfix {
  margin-top: 0;
}
.ty-cart-statistic__value {
  width: 121px;
}
.ty-cart-statistic__value.discount-price {
  color: green;
}
.checkout-cart .product_block_right > .ty-sidebox > h2 > span {
  color: #fe737b;
  text-transform: none;
}
.checkout-cart .product_block_right > .ty-sidebox > h2 .under-tile {
  display: none;
}
.brand .ty-features-list > a {
  color: #fe737b !important;
}
.ty-checkout-summary__order_discount {
  color: #fe737b !important;
}
.brand .ty-features-list > a:hover {
  text-decoration: underline;
}
.products-view .ty-product-block .ty-product-prices > [id^="clean_price_update"] > .ty-list-price.ty-nowrap.ty-tax-include {
  display: none;
}
.checkout-cart .ty-sidebox.skroutz .ty-sidebox__title.cm-combination {
  margin-bottom: 0;
}
.ty-coupons__list.ty-discount-info {
  margin: 10px 0 0 10px !important;
  width: 366px !important;
}
.ty-cart-content__right-buttons .update-cart-wrapper {
  display: inline;
}
.ty-cart-content__right-buttons .update-cart-wrapper > i.ty-icon-cw {
  color: #000000;
}
.update-cart-wrapper .ty-product-filters__reset-icon.ty-icon-cw {
  top: 1px;
}
.ty-discount-info {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #bdc3c7;
  font-size: 90%;
  margin-top: 7px;
  padding: 10px;
  position: relative;
}
.ty-cart-statistic__item.ty-statistic-list-subtotal-discount > .ty-cart-statistic__title {
  margin-right: 12px;
}
.checkout-cart .span16.newsletter-outer,
.checkout-checkout .span16.newsletter-outer {
  display: none !important;
}
#applied_promotions ul li {
  color: #fe737b !important;
  font-size: 18px !important;
  font-weight: 300;
}
#applied_promotions,
#applied_promotions ul li {
  color: #fe737b !important;
  font-size: 18px !important;
}
.inner-right-cart_total .ty-cart-statistic.ty-statistic-list span {
  color: #000000;
}
.ty-coupons__item {
  padding: 0 0 5px;
}
.checkout-cart .cm-notification-content.notification-content.alert.alert-success.cm-auto-hide {
  display: none !important;
}
.cm-notification-content.cm-notification-content-extended.notification-content-extended.cm-auto-hide > h1 {
  background: #ededed none repeat scroll 0 0;
  border-color: #fff !important;
  margin: 0 auto;
  padding: 18px 0;
  text-align: center;
  font-weight: 300;
  font-size: 18px;
  color: #666 !important;
}
.free_samples_list_overlay {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 900;
}
.everyday_products.free-samples .ty-scroller-list__item:hover {
  border: 1px solid #fff !important;
}
.free-samples .ty-scroller-list__description {
  height: 74px;
}
.free-samples .ty-scroller-list__item .free_samples_list_overlay:hover .free_sample_icon {
  display: block !important;
  top: 40%;
}
.free_samples .free_samples_list_overlay:hover .free_sample_icon > .fa.fa-gift {
  font-size: 31px !important;
  transition: all 0.2s ease 0.1s;
}
.free_sample_icon > .fa.fa-gift {
  transition: all 0.2s ease 0.1s;
  font-size: 31px;
  color: #fff;
  position: relative;
  top: 9px;
}
.free_sample_icon .ty-scroller-list__item:hover {
  cursor: pointer;
}
.everyday_products > .ty-mainbox-body {
  margin-top: 10px;
}
.free_sample_icon:hover {
  background: #000000;
}
.free_sample_icon {
  display: none;
  position: absolute;
  background: #fe737b;
  border-radius: 50%;
  left: 40%;
  height: 47px;
  width: 47px;
  z-index: 901;
}
.free-samples .ty-scroller-list__item {
  position: relative;
}
.free-samples  .ty-scroller-list__item.clicked .free_samples_list_overlay > .free_sample_icon {
  top: 1px;
  right: 1px;
  display: block !important;
  width: 31px;
  height: 31px;
}
.free-samples .ty-scroller-list__item.clicked {
  pointer-events: auto !important;
  opacity: 1 !important;
}
.free-samples .ty-scroller-list__item.nfollow {
  opacity: 0.3;
  pointer-events: none;
}
#bio_ep .bottom-part__bg {
  margin-top: 0 !important;
}
.ty-cart-content__product-delete.ty-delete-big:hover {
  text-decoration: underline;
}
.ty-cart-content__product-elem .ty-cart-content__product-title:hover {
  text-decoration: underline;
}
.checkout-cart #cart_items .ty-cart-content__product-elem.ty-cart-content__qty .quantity {
  color: #000000 !important;
}
.free-samples .ty-scroller-list__item.clicked .free_samples_list_overlay > .free_sample_icon {
  left: unset;
  right: 5px;
  top: 5px;
}
.free-samples .ty-scroller-list__item {
  cursor: pointer;
}
.free-samples .ty-scroller-list__item.clicked > .free_samples_list_overlay > .free_sample_icon > .fa.fa-gift {
  font-size: 22px;
  position: relative;
  top: 4px;
}
.free-samples .ty-scroller-list__item > .free_samples_list_overlay:hover {
  background: rgba(237,237,237,0.6) none repeat scroll 0 0 !important;
}
.cm-notification-content .ty-mainbox-container > .ty-mainbox-title.styled > span {
  color: #666666 !important;
}
.notification-body-extended .ty-scroller-list__description  .ty-simple-list__price.clearfix {
  height: 19px !important;
}
.ty-product-notification__divider {
  border-color: #d9d9d9 !important;
}
.ty-product-notification__total-info.clearfix {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: #d9d9d9 !important;
  height: auto;
  padding-bottom: 10px !important;
}
.ty-product-notification__body .free-shipping-estimation {
  font-weight: 300;
  font-size: 17px !important;
  margin-top: 13px;
  color: #5e5f5b;
}
.notification-body-extended .free-shipping-estimation span {
  color: #f3737b;
}
.notification-body-extended .ty-product-notification__buttons {
  text-align: center;
}
.notification-body-extended .ty-product-notification__buttons.clearfix {
  padding-top: 0;
  padding-bottom: 14px;
}
.notification-body-extended > h1 {
  color: #000000;
  font-size: 18px !important;
  font-weight: 400;
}
.notification-body-extended {
  padding: 0 !important;
}
.notification-body-extended .ty-btn {
  font-size: 15px !important;
  font-weight: 300;
  padding: 7px 18px;
}
.bottom-bg_prd-added {
  background: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/popup_news_bottom-bg.jpg?1753621501');
  height: 26px;
  margin-top: 12px;
}
.notification-body-extended .ty-product-notification__buttons .ty-float-right {
  margin-left: 12px;
}
.notification-body-extended .ty-product-notification__buttons > div {
  display: inline;
  float: none !important;
}
.free-shipping-estimation {
  font-size: 16px !important;
  text-align: center;
  margin-top: 7px;
}
.notification-body-extended .free-shipping-estimation > span {
  font-weight: 500;
}
.free-surcharge-promo .fa.fa-money {
  color: #c1c1c1;
  font-size: 14px;
}
.free-surcharge-promo-text {
  color: #343435;
  margin-left: 1px;
}
.free-surcharge-promo {
  margin-top: 1px;
}
.ty-product-notification__price {
  font-weight: bold;
}
.notification-body-extended {
  padding: 20px;
}
.notification-body-extended .ty-mainbox-container.clearfix {
  position: relative;
}
.notification-body-extended .owl-prev {
  left: 0;
  position: absolute;
  top: 120px;
}
.wishlist-view .ty-twishlist-item {
  margin-bottom: 0 !important;
  margin-top: 27px !important;
}
.notification-body-extended .owl-next {
  position: absolute;
  right: 14px;
  top: 128px;
}
.ty-product-block__left .form-field.product-list-field {
  margin-bottom: 2px;
}
.notification-body-extended .owl-theme.ty-owl-controls {
  position: unset;
}
.notification-body-extended .ty-simple-list .ty-discount-label {
  display: none;
}
.single-brand-view .brands-homepage-images .ty-brand-filters__block .squaredTwos:last-child {
  border-right: 1px solid #eaeaea;
}
.notification-body-extended .ty-btn.ty-btn__primary {
  background: #f3737b none repeat scroll 0 0;
  color: #fff !important;
}
.checkout-checkout .object-container .ty-wysiwyg-content p {
  text-align: justify;
}
#quick_search_result .cm-search-row.nowrap a {
  padding-top: 23px;
  vertical-align: middle;
}
#quick_search_result .cm-search-row.nowrap a:hover {
  text-decoration: underline;
}
.number.bigger::before {
  right: -3px;
}
.notification-body-extended .ty-btn.ty-btn__primary:hover {
  background: #000 none repeat scroll 0 0;
}
.notification-body-extended .ty-scroller-list__description .product-title {
  white-space: unset !important;
}
.notification-body-extended .ty-mainbox-title {
  background: #fff none repeat scroll 0 0;
  text-align: center;
}
.ty-mainbox-title.styled > span::before {
  content: none;
}
.cart-content-info-message .phone-number > img {
  width: 21px;
  position: relative;
  top: -1px;
}
.notification-body-extended .ty-mainbox-container .ty-mainbox-title.styled > span {
  line-height: 30px !important;
  padding: 3px !important;
}
.notification-body-extended .ty-mainbox-container .ty-mainbox-title.styled > span {
  font-family: 'RobotoCondensed' !important;
}
.notification-body-extended .ty-mainbox-container .ty-mainbox-title.styled > span {
  left: 8px;
  position: relative;
  top: -7px;
}
.ty-mainbox-title.styled > span {
  background: #ffffff none repeat scroll 0 0;
  font-size: 20px;
  font-weight: normal;
  line-height: 35px;
  padding: 10px;
}
.notification-content-extended h1 span {
  right: 18px !important;
  color: #ffffff !important;
  font-size: 24px !important;
}
.ty-product-notification__buttons {
  background: #ffffff !important;
}
.notification-body-extended .ty-btn.ty-btn__secondary {
  background: #000 none repeat scroll 0 0;
  color: #fff !important;
}
.notification-body-extended .ty-btn.ty-btn__secondary:hover {
  background: #fe737b none repeat scroll 0 0;
}
.notification-container > .cm-notification-content.notification-content {
  color: #fff !important;
}
.notification-body-extended .ty-control-group.ty-product-options__info.clearfix {
  margin-bottom: 0;
}
.notification-body-extended .ty-scroller-list .rating-wish-grid-row .ty-simple-list__price {
  height: 19px !important;
}
.notification-body-extended .ty-scroller-list .rating-wish-grid-row > .simple-list-wishlist {
  display: none;
}
.ty-scroller-list .best-sell-img {
  position: absolute;
  top: 0;
}
.ty-stars__icon.ty-icon-star {
  color: #fe737b;
}
.ty-stars__icon.ty-icon-star-half {
  color: #fe737b;
}
.categories-view .category-content [id^="category_products_"] p {
  color: #000000 !important;
  font-size: 14px;
}
.ty-range-slider__num {
  color: #000000 !important;
}
.side-grid .see-all-brands {
  display: none;
}
.ty-product-list__content .ty-product-list__description {
  color: #000000 !important;
}
.notification-body-extended .ty-simple-list__price.clearfix span {
  display: inline;
}
.notification-body-extended .product-title {
  height: 53px;
}
.notification-body-extended {
  padding-bottom: 10px;
}
.ty-product-options select:focus {
  border-color: #d4d4df !important;
}
.ty-mainbox-container.clearfix.order-complete-poll h1 {
  border-bottom: 1px solid #d9d9d9;
  color: #4d4d4f;
  font-size: 26px;
  padding-bottom: 7px;
}
.ty-mainbox-container.clearfix.order-complete-poll {
  margin-top: 62px !important;
}
.ty-polls,
.ty-ty-polls__results {
  margin-bottom: 30px;
}
.order-complete-poll .ty-polls > p {
  font-size: 16px;
}
.order-complete-poll .ty-polls > p,
.order-complete-poll .ty-polls > div {
  text-align: center;
}
.checkout-complete .complete-title .ty-wysiwyg-content h1 {
  font-size: 24px !important;
}
.complete-title h1 {
  color: #000;
  text-align: center;
  margin-bottom: 0;
}
.complete-title h1 {
  margin-top: 0 !important;
}
.everyday_products .owl-buttons > div > i.fa {
  font-size: 28px;
  color: #808080 !important;
}
.complete-title .ty-wysiwyg-content > p {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.checkout-complete .ty-checkout-complete__order-success > p {
  display: none;
}
.order-complete-poll .ty-mainbox-title {
  text-align: center;
}
.ty-icon-feed {
  margin-top: -84px !important;
}
.left-pop-up-title > h1 {
  text-align: center;
}
.left-pop-up-title {
  padding: 2px;
}
.plus_popup.leftcarts_popup .left-pop-up-title > p {
  color: #666 !important;
}
.plus_popup.leftcarts_popup .left-pop-up-title > h1 {
  font-weight: 300;
  color: #000000 !important;
}
.plus_popup.leftcarts_popup .left-pop-up-title > h1 {
  color: #000000;
  font-weight: 300;
  margin-top: 0;
  padding-top: 18px;
}
.ty-footer-general__body .ty-text-links__item {
  margin-right: 0;
}
.leftcarts_popup .free-shipping-estimation {
  color: #4d4d4f;
  font-weight: 300;
}
.bottom-part__bg {
  background: rgba(0,0,0,0) url("/design/themes/responsive/media/images/popup_news_bottom-bg.jpg?1495624335") repeat scroll center bottom;
  height: 35px;
  margin-top: 25px;
}
.button-leftcarts #cart_pop_btn.button.orange.float-right {
  background: #fe737b none repeat scroll 0 0;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 400;
  padding: 9px 13px;
  transition: background 200ms ease 0s;
}
.ty-cart-content__product-delete.ty-delete-big {
  display: block;
}
.button-leftcarts #cart_pop_btn.button.orange.float-right:hover {
  background: #000000 !important;
}
.button-leftcarts .button.orange.float-right:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.leftcarts_popup .button-leftcarts {
  margin-top: 43px;
}
.leftcarts_popup .free-shipping-estimation {
  margin-top: 15px;
  margin-bottom: 10px;
}
.leftcarts_popup .total-cart-amount {
  font-weight: bold;
  margin-top: 20px;
  text-align: right;
}
.leftcarts_popup .maintable {
  border-bottom: 1px solid #e5e5e5;
}
#fancybox-outer > div {
  height: auto !important;
}
#fancybox-content > div {
  height: auto !important;
}
.page-43 .ty-mainbox-title {
  font-size: 20px;
  text-align: center !important;
}
.page-43 .ty-wysiwyg-content h3 {
  font-size: 17px !important;
  font-weight: 600 !important;
}
.page-43 .ty-poll__textarea {
  height: 31px !important;
  width: 187px !important;
}
.ty-checkout-complete__buttons.buttons-container {
  padding: 0 !important;
}
.ty-checkout-complete__create-account .buttons-container.clearfix {
  margin-bottom: 10px;
  padding: 0 !important;
}
.timed-promo-footer-text {
  margin-bottom: -12px;
}
.span8.half-page-banner-text {
  width: 600px !important;
}
.span8.half-page-banner-text:last-child {
  margin-left: 0 !important;
}
.profiles-add .ty-account-benefits ul li::before,
.checkout-complete .ty-account-benefits ul li::before {
  color: #fe737b;
  content: "";
  display: block;
  font-family: fontawesome;
  height: 16px;
  left: -18px;
  position: absolute;
  top: 2px;
  width: 16px;
  font-size: 17px;
}
.ty-control-group__title.cm-required {
  font-weight: 500;
}
.ty-account-benefits li {
  position: relative;
}
.ty-account-benefits ul li {
  list-style: outside none none;
}
.complete-title .ty-wysiwyg-content > p {
  font-size: 15px !important;
  font-weight: 600;
  text-align: center;
}
.ty-account-benefits > ul {
  padding: 0 !important;
}
.ty-checkout-complete__create-account .buttons-container .ty-btn {
  background: #000 none repeat scroll 0 0;
}
.ty-checkout-complete__create-account .buttons-container .ty-btn:hover {
  background: #fe737b !important;
}
.ty-checkout-complete__create-account .buttons-container .ty-btn:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-checkout-complete__buttons .ty-btn.ty-btn__secondary {
  background: #a1c746 none repeat scroll 0 0;
}
.ty-checkout-complete__buttons .ty-btn.ty-btn__secondary:hover {
  background: #B3DB4E none repeat scroll 0 0;
  color: #ffffff !important;
}
.ty-checkout-complete__buttons .ty-btn.ty-btn__secondary:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-polls__buttons.buttons-container .ty-btn {
  background: #0076C4 none repeat scroll 0 0;
}
.ty-polls__buttons.buttons-container .ty-btn:hover {
  background: #1fa1f2 none repeat scroll 0 0;
}
.ty-polls__buttons.buttons-container .ty-btn:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-polls__buttons.buttons-container {
  padding-left: 0;
}
.products-view .ty-qty-in-stock.ty-control-group__item {
  color: #a1c746 !important;
  font-weight: 600;
}
.product-list-field .ty-control-group__label {
  width: 96px;
}
.ty-discussion__rating-wrapper {
  border-bottom: 2px solid #f6f6f5;
}
.ty-template-small__item-description .rate-amount {
  margin-right: 5px;
}
.ty-simple-list__price .ty-price span {
  color: #FE737B !important;
}
.products-view .payment-methods-product a:hover {
  text-decoration: underline;
}
.ty-template-small__item-description .rate-amount,
.ty-template-small__item-description .ty-stars {
  display: inline-block;
}
.payment-methods-product {
  margin-top: 10px;
}
.payment-methods-product .clearfix.smallable-1 {
  padding: 0 0px;
}
.clearfix.smallable-2 .ty-control-group__label {
  padding-left: 8px;
}
.clearfix.smallable-2 li i {
  font-size: 13px;
}
.fear_factor {
  width: 100% !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.fear_factor .no-bullet li {
  background: #f6f6f5 none repeat scroll 0 0;
}
.fear_factor .no-bullet li {
  text-align: center;
}
.fear_factor .no-bullet:last-child li span {
  position: relative;
}
.payment-methods-product .ty-control-group__item > ul {
  padding: 0;
  float: right;
  margin-top: -1px;
}
.payment-methods-product .ty-control-group__item li {
  line-height: 1;
  margin-left: 3px;
}
.smallable-1 .ty-control-group__label {
  width: 89px;
}
.payment-methods-product td.second .ty-control-group__item .tracking-link-product-info {
  border-bottom: 1px dotted;
  color: #343435 !important;
}
.payment-methods-product td.second .ty-control-group__item a {
  color: #808080 !important;
}
.payment-methods-product td.second .ty-control-group__item,
.payment-methods-product td.second .ty-control-group__item a {
  font-size: 13px !important;
  font-weight: 400;
  color: #666;
}
.payment-methods-product td.second > ul > li {
  font-size: 12px !important;
}
.payment-methods-product .ty-control-group__item > #ship_at_product_page {
  font-size: 11px;
}
.smallable-2 .ty-control-group__item > ul li {
  font-size: 10px !important;
  list-style: outside none none;
  padding: 0;
}
.smallable-2 .ty-control-group__label {
  width: 88px;
}
.payment-methods-product .smallable-2 li {
  display: inline;
  margin-right: 15px;
  position: relative;
}
.page-196 #pagination_contents h1 {
  text-align: center;
}
.page-196 #pagination_contents .lang-side_bar_text,
.page-196 #pagination_contents .under-tile {
  display: block;
  text-align: center;
}
.page-196 #pagination_contents .under-tile {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}
.page-196 #pagination_contents .lang-side_bar_text {
  font-size: 13px !important;
}
.page-196 .grid-list > .ty-column5 {
  margin-bottom: 35px;
}
.page-196 .grid-list {
  margin-top: 27px !important;
}
.page-196 .grid-list > .ty-column5 .ty-grid-list__item {
  margin-bottom: 9px !important;
}
.page-196 .ty-column5 {
  margin-right: 0;
}
.page-196 .grid-list .ty-column5 .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  display: none;
}
.page-196 .grid-list > .ty-column5:hover {
  border: 1px solid #BF087F;
}
.page-196 .grid-list > .ty-column5 {
  border: 1px solid #ffffff;
  box-sizing: border-box;
}
.page-196 .grid-list .ty-column5.line::before {
  border-bottom: 1px solid #d9d9d9;
  content: "";
  left: 0px;
  margin-top: -15px;
  position: absolute;
  right: 0;
  width: 1200px;
}
.page-196 #pagination_contents h1 {
  margin-bottom: 0;
}
.ty-statistic-list-discount .ty-cart-statistic__title {
  color: green;
}
.clearfix.smallable-2 li:first-child:after {
  content: "";
}
.clearfix.smallable-2 li::after {
  content: "|";
  left: -9px;
  position: absolute;
  top: 2px;
}
#cookie-bar {
  background: #f1f1f1 !important;
}
#cookie-bar a {
  border-radius: 0 !important;
}
#cookie-bar .cb-enable:hover {
  background: #000000 !important;
}
#cookie-bar .cb-enable {
  background: #fe737b !important;
}
.profile-controls .ty-account-info > a {
  display: none;
}
.payment-methods-product .clearfix.smallable-2 > ul {
  background: #f2f2f2 none repeat scroll 0 0;
  padding: 3px 0;
}
.payment-methods-product {
  background: #f7f7f6 none repeat scroll 0 0;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #f2f2f2;
}
.payment-methods-product .ty-control-group__label {
  font-weight: 400;
  font-size: 13px;
}
.ty-mainbox-container.clearfix.everyday_products span {
  text-align: center;
}
.ty-mainbox-container.clearfix.everyday_products > .ty-mainbox-title {
  margin-bottom: 0;
}
.ty-mainbox-container.clearfix.everyday_products > .ty-mainbox-title {
  margin-bottom: 0;
  text-transform: uppercase;
}
.everyday_products.ty-mainbox-container .ty-mainbox-title > span {
  font-size: 30px !important;
  text-transform: none;
}
.ty-mainbox-container.clearfix.everyday_products .under-title {
  display: block;
}
.products-view .ty-product-block__left h1 {
  line-height: 1;
  margin-top: 0;
}
.fear_factor .no-bullet p {
  padding: 0;
}
.fear_factor .no-bullet p span {
  color: #333333;
}
.product_block_right .ty-template-small__item.clearfix {
  position: relative;
}
.product_block_right .ty-template-small__item.clearfix {
  text-align: center;
}
.product_block_right .ty-template-small__item-img {
  float: none !important;
  margin-right: 0;
}
.ty-template-small__item {
  text-align: center;
}
.ty-template-small .ty-template-small__item-img {
  float: none;
}
.ty-template-small__item-img {
  position: relative;
}
.ty-template-small__item .ty-discount-label {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
  right: -10px;
  top: -7px;
}
.ty-template-small__item .ty-discount-label span {
  color: #a1c746;
  font-weight: bold;
}
.ty-template-small__item-description .product-title {
  color: #000 !important;
  font-weight: 500;
}
.ty-template-small__item-description .rate_num {
  display: none;
}
.ty-template-small__item-description .stock-wrap .product-list-field {
  margin-bottom: 0 !important;
}
.ty-template-small__item-description .stock-wrap .product-list-field label {
  display: none;
}
.ty-template-small__item .ty-control-group__item {
  display: inline-block;
  padding: 1px 0;
}
.ty-template-small__item-price [id^="old_price_update_"] span {
  display: inline;
  font-size: 14px !important;
}
.ty-template-small__item-price span {
  display: inline;
}
.products-view .product_block_right .ty-sidebox h2 span {
  color: #000000;
  font-size: 19px;
  text-transform: none;
}
.ty-product-options__item-label {
  font-weight: normal !important;
}
.ty-template-small a:hover {
  text-decoration: underline;
}
.ty-scroller-list__description .product-title {
  color: #1f1d1e !important;
  font-size: 15px !important;
  font-weight: 600;
  padding-top: 2px;
}
.ty-scroller-list__item .ty-discount-label {
  background: #a1c746 !important;
}
.ty-scroller-list__item .ty-discount-label__value {
  font-weight: bold;
}
.ty-scroller-list__item .rate_num {
  display: none;
}
.ty-simple-list .product-list-field .ty-control-group__label {
  display: none;
}
.rate-amount .ty-control-group.product-list-field {
  margin-bottom: 0;
}
.rate-amount span,
.rate-amount div {
  display: inline-block;
}
.rate-amount .ty-nowrap.ty-stars {
  margin-left: 4px !important;
  margin-right: 0;
}
.products-view .ty-sidebox.skroutz {
  margin-top: 0;
}
.rate-amount .stock-wrap {
  margin-right: 12px;
}
.ty-simple-list .ty-simple-list__price.clearfix span {
  display: inline;
}
.products-frontpage .other_col {
  font-weight: 300;
}
.products-frontpage .inner-add-to-cart-product {
  text-align: center;
}
.products-frontpage .ty-btn.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart {
  width: 78% !important;
}
.products-frontpage .ty-simple-list__price.clearfix {
  height: 47px;
}
.products-frontpage .product-list-field .ty-control-group__item.avail {
  font-weight: 400;
}
.products-frontpage .fa.fa-check-circle {
  color: #676767;
}
.products-frontpage .list_discount_block span {
  color: #d3d3d3 !important;
  font-size: 13px !important;
}
.products-frontpage .ty-simple-list .ty-simple-list__price.clearfix span {
  font-size: 16px;
  color: #676767;
}
.products-frontpage .ty-simple-list__price.clearfix .ty-price-update span {
  font-size: 31px;
}
.ty-simple-list__price.clearfix .ty-price-update span {
  font-size: 18px;
}
.ty-cart-content__product-elem .ty-cart-content__product-delete {
  margin-left: 0 !important;
}
.ty-simple-list__price .ty-strike [id^="sec_list_price_"].ty-list-price.ty-nowrap {
  margin-left: 7px;
}
.ty-simple-list .inner-add-to-cart-product button,
.side-list-under-product .inner-add-to-cart-product .ty-btn {
  padding: 5px 47px;
}
.ty-simple-list .inner-add-to-cart-product button:active,
.side-list-under-product .inner-add-to-cart-product .ty-btn:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-scroller-list__description .product-title {
  white-space: unset !important;
}
.chrome .products-view .ty-simple-list .product-title p {
  height: 53px;
}
.products-view .ty-simple-list .product-title p {
  height: 56px;
  overflow: hidden;
}
.revs_inside .go-to-reviews > a:hover {
  text-decoration: underline;
}
.product-after-details .ty-scroller-list__item {
  border: 1px solid #ffffff;
}
.product-after-details .ty-scroller-list__item:hover {
  border: 1px solid #e7e7e8;
}
.inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big {
  background: #0072c0 none repeat scroll 0 0;
  font-weight: 600;
}
.inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big:hover {
  color: #fff !important;
  text-decoration: none !important;
}
.inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big.text-button {
  position: relative;
}
.side-list-under-product .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big.text-button {
  padding: 5px 11px !important;
  width: 42%;
}
.side-list-under-product .ty-sidebox__body ul.ty-template-small li {
  list-style: outside none none;
}
.side-list-under-product .ty-sidebox__body ul.ty-template-small {
  list-style: outside none none !important;
  padding-left: 0;
}
.products-frontpage .ty-scroller-list__item {
  height: 453px;
}
.ty-simple-list .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big {
  position: relative;
}
.ty-simple-list .inner-add-to-cart-product a.ty-btn.ty-btn__primary.ty-btn__big {
  font-weight: 500;
  padding: 2px 0;
  position: relative;
  width: 78%;
  font-size: 18px !important;
  transition: none 0s ease 0s;
}
.ty-template-small__item:hover .ty-template-small__item-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button .fa.fa-heart-o {
  top: 5px;
  right: -1px;
  position: absolute;
}
.chrome .ty-template-small__item:hover .ty-template-small__item-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button .fa.fa-heart-o {
  position: absolute;
  right: -1px;
  top: 6px;
}
.ty-template-small__item:hover .ty-template-small__item-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  display: block;
}
.ty-template-small__item-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button:hover {
  background: #fe737b;
  color: #fff !important;
}
.ty-template-small__item.clearfix {
  position: relative;
}
#fixme .ty-template-small__item-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  right: 40px !important;
  top: 19px !important;
}
#fixme .ty-template-small__item-list__rating > span {
  margin-right: 0;
}
.ty-template-small__item-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  position: absolute;
  display: none;
  top: 4px;
  right: 6px;
  background: #fff;
  color: #000 !important;
  border-radius: 50%;
}
.simple-list-wishlist .ty-add-to-wish .fa.fa-heart-o {
  font-size: 17px;
  font-weight: bold;
}
.ty-scroller-list__description .product-title > p {
  font-weight: 500 !important;
}
.everyday_products .ty-scroller-list__item {
  padding-top: 0px;
  height: 442px !important;
}
.simple-list-wishlist {
  text-align: right;
}
.side-list-under-product .add-to-cart-product {
  width: 132px;
}
.owl-theme .owl-controls-outside .owl-buttons div {
  width: 5px !important;
  height: 17px !important;
}
.side-list-under-product .ty-nowrap.ty-stars {
  margin-top: 1px;
}
.side-list-under-product .stock-wrap {
  margin-top: 2px;
}
.side-list-under-product .ty-template-small__item-price {
  margin-top: 0;
}
.side-list-under-product .add-to-cart-product {
  margin-top: 2px;
}
.ty-template-small__item-price {
  margin-top: 2px;
}
.ty-mainbox-container.clearfix.everyday_products {
  border-top: 2px solid #ededed;
  padding-top: 20px;
}
.template-small__name {
  margin-bottom: 1px;
}
.ty-pagination__selected {
  background: #333333 none repeat scroll 0 0 !important;
}
.checkout-complete .ty-poll__header {
  font-weight: 500;
}
.ty-pagination__bottom .ty-pagination__item {
  color: #000000 !important;
}
.ty-pagination__items .ty-pagination__selected {
  background: #fff !important;
  color: #fe737b;
}
.ty-pagination__item.ty-pagination__btn.see-all-pagination:hover {
  text-decoration: none !important;
}
.ty-grid-list__item-name .product-title > p {
  padding-top: 2px;
}
.side-grid .category-categories .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple {
  top: 0;
}
.ty-pagination__item.ty-pagination__btn.see-all-pagination:hover span {
  color: #ffffff !important;
  text-decoration: none !important;
}
.ty-pagination__item.ty-pagination__btn.see-all-pagination:hover {
  background: #000000;
}
.ty-pagination__item.ty-pagination__btn.see-all-pagination {
  border: 1px solid #000000;
  border-radius: 0;
}
.ty-pagination__item a:hover {
  text-decoration: underline;
}
.ty-pagination__bottom .ty-pagination__item:hover {
  text-decoration: underline;
}
.ty-pagination__item .ty-pagination__text {
  font-size: 14px;
}
.ty-pagination__items a,
.ty-pagination__items span {
  font-size: 14px;
}
.ty-pagination__item:hover a {
  color: #fe737b;
}
.ty-pagination__item:hover {
  background: #ffffff;
}
.products-view .ty-discussion-post__buttons .ty-btn.cm-dialog-opener.cm-dialog-auto-size.ty-btn__primary {
  background: #000 none repeat scroll 0 0 !important;
}
.products-view .ty-discussion-post__buttons .ty-btn.cm-dialog-opener.cm-dialog-auto-size.ty-btn__primary:hover {
  background: #fe737b !important;
}
.side-list-under-product .ty-discount-label {
  background: #a1c746 none repeat scroll 0 0 !important;
}
.side-list-under-product .ty-discount-label span span {
  color: #fff !important;
}
.product_block_right {
  width: 277px !important;
}
.products-view .tab_content a {
  text-decoration: underline;
}
.side-grid .ty-menu__submenu-items > .ty-top-mine__submenu-col {
  background: #ffffff none repeat scroll 0 0 !important;
}
.side-grid .ty-menu__item:hover > .ty-menu__submenu > .ty-menu__submenu-items {
  top: 0;
}
.side-grid .ty-menu__submenu-items > .ty-top-mine__submenu-col {
  background: #ffffff none repeat scroll 0 0 !important;
  margin-bottom: 5px !important;
  padding-bottom: 2px !important;
  padding-left: 13px !important;
  padding-top: 2px !important;
}
.ty-product-block__left .product-list-field .ty-control-group__item.avail {
  font-size: 15px;
}
.product-list-field .fa.fa-check-circle {
  color: #676767;
  font-size: 15px;
  margin-left: 1px;
}
.free-shipping .fa.fa-truck {
  color: #676767;
  font-size: 15px;
}
.products-view .ty-product-block__left .stock-wrap .ty-control-group.product-list-field {
  margin-bottom: 0;
}
.side-list-under-product .ty-discount-label__item {
  padding: 0 5px;
}
.side-list-under-product .ty-sidebox__title .ty-sidebox__title-wrapper.hidden-phone {
  color: #000;
  font-size: 19px;
  text-transform: none;
}
.tab_bar_w .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  background: #fe737b none repeat scroll 0 0 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
.tab_bar_w .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn:hover {
  background: #000000 !important;
  transition: none !important;
}
.side-list-under-product .ty-discount-label {
  right: -3px;
}
.relative {
  margin-top: 10px !important;
  padding: 0 !important;
}
.fear_factor li span .fa-exclamation-triangle,
.fear_factor li span p {
  display: inline;
}
.fear_factor .fa.fa-exclamation-triangle {
  font-size: 15px;
  margin-right: 4px;
}
.product-qty-picker .ty-qty label {
  display: none;
}
.fa.fa-truck {
  color: #c1c1c1;
  font-size: 14px;
}
.add-to-cart-product-button {
  margin-top: 8px;
}
.side-list-under-product .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big.text-button:hover {
  background: #128EDD;
}
.side-list-under-product .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big.text-button:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-simple-list .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big:hover {
  background: #1ea0f1 none repeat scroll 0 0;
}
.ty-simple-list .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.side-list-under-product .ty-btn.ty-btn__primary.ty-btn__big {
  position: relative;
}
.side-list-under-product .inner-add-to-cart-product .ty-btn {
  padding: 3px 17px !important;
}
.side-list-under-product .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big:hover {
  background: #1ea0f1 none repeat scroll 0 0;
}
.side-list-under-product .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.whenfixed.clearfix a {
  font-size: 16px !important;
}
.tab_bar_w .add-to-cart-product {
  float: right;
  width: 258px;
}
.fakebtn.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  margin-top: 0;
}
.tab_bar_w .add-to-cart-product {
  margin-top: 23px;
}
.fakebtn.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  width: 100% !important;
}
.product-after-details .ty-owl-controls {
  position: unset;
}
.product-after-details {
  position: relative;
}
.product-after-details .owl-prev {
  left: -37px;
  position: absolute;
  top: 145px;
}
.product-after-details .owl-next {
  position: absolute;
  right: -16px;
  top: 145px;
}
.product-after-details .owl-theme .owl-controls .owl-buttons div {
  background: #fff !important;
}
.fa.fa-angle-left,
.fa.fa-angle-right {
  font-size: 44px;
  color: #818181;
}
.product-after-details .ty-mainbox-title {
  text-align: center;
}
.ty-product-block {
  margin-bottom: 0 !important;
}
.ty-social-buttons__inline {
  margin: 0;
}
.ty-product-notification__product-name {
  width: auto !important;
}
.ty-scroller-list__description .product-title {
  font-size: 13px !important;
}
.total-category.products-pagination {
  padding-left: 8px;
}
.total-category.products-pagination {
  display: inline-block;
}
.ty-sort-dropdown {
  display: inline-block;
  position: relative;
}
.ty-sort-dropdown {
  display: inline-block;
  position: relative;
  float: right;
}
.ty-icon-feed {
  float: none !important;
  margin-top: 0 !important;
}
.ty-sort-container__views-icons {
  display: inline-block;
  float: right;
}
.ty-sort-container__views-a.active {
  background: #dfe2e6 none repeat scroll 0 0;
}
.ty-sort-container__views-a.active {
  background: #ffffff none repeat scroll 0 0 !important;
}
.ty-sort-container__views-a.active {
  color: #0086D0;
}
#sorting_placeholder {
  border-bottom: 2px solid #ededed;
  border-top: 1px solid #fff;
  height: 37px;
  margin-bottom: 17px;
  margin-top: 8px;
}
.total-category.products-pagination {
  padding: 9px 0;
}
.ty-sort-dropdown__wrapper.open {
  background: #fff !important;
}
.ty-sort-dropdown__wrapper:hover {
  background: #fff;
}
.ty-sort-dropdown__content.cm-popup-box {
  padding: 0;
}
.ty-sort-dropdown__content-item {
  list-style: outside none none !important;
}
.ty-sort-dropdown__content {
  border-top: none !important;
  border-color: #ededed !important;
}
.ty-sort-dropdown__wrapper {
  padding: 5px 7px 14px !important;
}
.ty-sort-dropdown__content-item-a:hover {
  background: #fff none repeat scroll 0 0;
  color: #0086D0;
  text-decoration: underline;
}
.items-per-page .ty-sort-dropdown__content {
  min-width: 121px !important;
}
.ty-grid-list__price span {
  display: inline;
}
.ty-mainbox-container.clearfix.skroutz.smartphone {
  margin-bottom: 13px;
}
.total-category.products-pagination {
  padding: 9px 0 9px 6px !important;
}
.ty-product-block__left .product-list-field .ty-control-group__item.avail {
  margin-left: 3px;
}
.product-list-field .ty-control-group__item.avail {
  font-weight: 400;
  color: #000;
  font-size: 13px;
  padding: 0;
}
.ty-scroller-list__item .rate-amount {
  margin-bottom: 3px;
}
.free-shipping .icon-free-shipp {
  color: #000;
}
.fear_factor .no-bullet span {
  font-size: 13px !important;
}
.fear_factor ul {
  margin-top: 0 !important;
}
.fear_factor .no-bullet p span {
  color: #4d4d4f;
}
.product_block_right > .ty-sidebox > h2 > span {
  color: #1f1d1e;
  display: inline-block;
  font-size: 19px;
}
.cross-prod.Everyday.Products {
  margin-top: 11px;
}
.checkout-cart .product_block_right .ty-sidebox {
  padding: 10px 6px 10px 10px;
}
.lang-side_bar_text {
  font-size: 11px !important;
  font-weight: normal !important;
  text-transform: none !important;
}
.lang-see-them-all-div {
  text-align: right;
}
.lang-see-them-all-div .lang-see-them-all a:hover {
  text-decoration: underline;
}
.ty-stars .cm-external-click:hover {
  text-decoration: none !important;
}
#fixme.span5.side-grid.reversed .lang-see-them-all-div,
#fixme.span5.side-grid.reversed > div > h2 > .lang-side_bar_text {
  display: none;
}
.ty-discussion-post__buttons .ty-btn__primary:hover {
  color: #fff !important;
  background: #1FA1F2 !important;
}
.product-title:hover {
  text-decoration: underline;
}
.object-container .buttons-container .ty-btn__secondary.ty-btn {
  background: #000 none repeat scroll 0 0;
}
.object-container .buttons-container .ty-btn__secondary.ty-btn:hover {
  background: #fe737b !important;
}
.buttons-container .ty-btn__secondary.ty-btn
.tab_content.ty-wysiwyg-content.content-product_tab_41 a {
  text-decoration: none;
}
.buttons-container .ty-btn__secondary.ty-btn
.tab_content.ty-wysiwyg-content.content-product_tab_41 a:hover {
  text-decoration: underline;
}
.notification-content .cm-notification-close {
  color: #ffffff;
}
.products-view .ui-dialog .ui-dialog-titlebar-close {
  top: 21px;
}
.ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-icon-only.ui-dialog-titlebar-close .ui-state-hover a {
  color: #303030 !important;
}
.ui-widget-header .ui-dialog-titlebar-close.ui-state-hover span::before {
  color: #303030 !important;
}
.ty-discussion-post__buttons.buttons-container a {
  text-decoration: none !important;
}
.tab_content.ty-wysiwyg-content.content-product_tab_41 a {
  text-decoration: none;
}
.pages-view .buttons-container .ty-btn {
  background: #fe737b none repeat scroll 0 0;
  font-size: 15px;
}
.pages-view .ty-mainbox-container.general-pages .ty-text-links > .ty-text-links__item {
  text-align: left;
}
.pages-view .buttons-container .ty-btn:hover {
  background: #000 none repeat scroll 0 0;
}
.auth-login_form .buttons-container .ty-btn.ty-btn__secondary {
  font-size: 15px;
}
.ty-password-forgot__a:hover {
  color: #fe737b !important;
}
.profiles-add .tygh-content .buttons-container .ty-btn.ty-btn__secondary:hover,
.auth-recover_password .tygh-content .buttons-container .ty-btn.ty-btn__secondary:hover,
.pages-view .tygh-content .buttons-container .ty-btn.ty-btn__secondary:hover {
  background: #fe737b none repeat scroll 0 0;
}
.profiles-add .tygh-content .buttons-container .ty-btn.ty-btn__secondary,
.auth-recover_password .tygh-content .buttons-container .ty-btn.ty-btn__secondary,
.pages-view .tygh-content .buttons-container .ty-btn.ty-btn__secondary {
  background: #000 none repeat scroll 0 0;
}
.buttons-container .ty-btn.ty-btn__secondary {
  background: #fe737b none repeat scroll 0 0;
}
.buttons-container .ty-btn.ty-btn__secondary:hover {
  background: #000 none repeat scroll 0 0;
}
.page-70 .ty-poll__textarea {
  height: 31px !important;
  width: 187px !important;
}
.products-view .ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
  border-color: #fe737b !important;
}
.pages-view .main-content-grid {
  text-align: justify;
}
.pages-view .ty-control-group__title {
  font-weight: 500;
}
.cityfast-get_history .summary-details > th {
  font-weight: 500 !important;
}
#register_checkout > .ty-btn.ty-btn__primary:hover {
  background: #fe737b;
}
#register_checkout > .ty-btn.ty-btn__primary {
  background: #000000;
  width: calc(100% - 10px);
  min-height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-prev,
.owl-next {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
}
#content_product_tab_12 {
  position: relative;
}
.ty-cart-items__list-item-tools {
  right: -4px;
  top: 11px;
}
#content_product_tab_12 .owl-theme.ty-owl-controls {
  position: unset;
}
#content_product_tab_12 .owl-prev {
  left: -35px;
  position: absolute;
  top: 190px;
}
#content_product_tab_12 .owl-next {
  position: absolute;
  right: -19px;
  top: 190px;
}
.side-list-under-product .ty-template-small .ty-template-small__item-price {
  margin-bottom: 0px;
}
#fixme.side-grid.reversed .ty-template-small__item .rating-wish-grid-row.ty-template-small__item {
  margin-bottom: 11px;
  width: 52%;
}
#fixme.side-grid.reversed .ty-template-small__item-price .ty-price-update.discounted {
  margin-right: 7px;
}
#fixme.side-grid.reversed .template-small__name {
  margin: 0 auto;
  width: 63%;
}
.ty-cart-content__right-buttons .ty-btn__secondary.ty-btn {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.ty-cart-content__right-buttons .ty-btn__secondary.ty-btn:hover {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
  text-decoration: underline;
}
.checkout-cart .ty-mainbox-container.clearfix h1 {
  text-align: center !important;
}
.checkout-cart .ty-mainbox-container.clearfix {
  position: relative;
}
.checkout-cart .owl-theme.ty-owl-controls {
  position: unset !important;
}
.checkout-cart .owl-prev {
  left: -30px;
  position: absolute;
  top: 185px;
}
.checkout-cart .owl-next {
  position: absolute;
  top: 185px;
}
.checkout-cart .ty-scroller-list__item {
  border: 1px solid #fff !important;
}
.checkout-cart .ty-scroller-list__item:hover {
  border: 1px solid #d3d3d3 !important;
}
.checkout-cart .buttons-container.ty-cart-content__bottom-buttons.clearfix {
  margin-bottom: 0;
}
.shadow.prod.block {
  display: none;
}
.top-menu .mitem_1476.ty-menu__item.cm-menu-item-responsive {
  background: #333;
}
.top-menu .mitem_1550.ty-menu__item {
  background: #4d4d4d;
}
.top-menu .mitem_1423.ty-menu__item {
  background: #666666;
}
.top-menu .mitem_1551.ty-menu__item {
  background: #808080;
}
.top-menu .mitem_1560.ty-menu__item {
  background: #969696;
}
.top-menu .mitem_blog.ty-menu__item {
  background: #969696;
}
.top-menu .mitem_blog.ty-menu__item > .ty-menu__item-link > span,
.top-menu .mitem_1560.ty-menu__item > .ty-menu__item-link > span,
.top-menu .mitem_1551.ty-menu__item > .ty-menu__item-link > span,
.top-menu .mitem_1476.ty-menu__item > .ty-menu__item-link > span,
.top-menu .mitem_1550.ty-menu__item > .ty-menu__item-link > span,
.top-menu .mitem_1423.ty-menu__item > .ty-menu__item-link > span,
.top-menu .mitem_2692.ty-menu__item > .ty-menu__item-link > span {
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.product-after-details .ty-simple-list .rate-amount .product-list-field .ty-qty-in-stock.ty-control-group__item {
  padding: 0;
}
.lang-side_bar_text {
  display: none;
}
.lang-see-them-all-div {
  display: none;
}
.prod-amount .ty-control-group__item.avail {
  padding: 0;
}
.checkout-checkout .ty-reward-points__coupon > input {
  width: 100% !important;
}
.ty-reward-points__coupon .ty-input-text,
.ty-reward-points__coupon .ty-btn-go {
  display: inline-block;
}
.ty-reward-points__coupon .ty-input-text.cm-hint {
  color: #fe737b !important;
  font-size: 15px;
  font-style: italic;
}
.checkout-checkout .ty-reward-points__coupon .ty-btn-go:hover {
  background: #000000 none repeat scroll 0 0;
}
.checkout-checkout .ty-reward-points__coupon .ty-btn-go {
  background: #666666 none repeat scroll 0 0;
  color: #ffffff;
  padding: 0 6px;
  right: 0;
  width: auto;
}
.categories-view .grid-list .ty-nowrap.ty-stars {
  margin-right: 6px;
}
.chrome .ty-grid-list__item-name .product-title p {
  height: 48px;
}
.ty-grid-list__item-name .product-title p {
  font-weight: 600;
  height: 50px;
  overflow: hidden;
}
.grid-list .prod-amount {
  height: 19px;
}
.ty-mainbox-container .ty-simple-list .product-title > p {
  color: #000 !important;
  font-weight: 400;
}
.ty-mainbox-container .ty-simple-list .product-title > p {
  padding-bottom: 0;
  padding-top: 0px;
}
.revs_inside .real_reviews > .review > .review-body {
  margin-top: 9px;
}
.ty-mainbox-container .ty-simple-list__price .ty-list-price span {
  color: #000;
}
.ty-simple-list .rate-amount .fa.fa-check-circle {
  color: #676767;
}
.ty-template-small__item-description .fa.fa-check-circle {
  color: #676767;
}
.ty-template-small__item-description .template-small__name > .product-title {
  color: #000 !important;
}
.ty-template-small__item-price .ty-list-price .ty-strike span {
  color: #000;
}
.span4 .ty-product-filters__wrapper .ty-product-filters__search {
  padding: 10px 0 0;
}
.ty-price-update.discounted span {
  color: #FE737B !important;
}
.grid-list .ty-nowrap.ty-stars {
  margin-right: 0;
}
.top-cart-content .inner.empty-cart {
  margin-top: 10px;
}
.ty-checkout-complete__create-account .ty-subheader,
.profiles-update .ty-subheader {
  color: #808080;
  font-weight: 500;
  font-size: 21px;
}
.country-flag.active a {
  pointer-events: none;
}
.country-languages li:first-child {
  margin-right: 3px;
}
.country-languages {
  position: relative;
  top: 4px;
  left: -6px;
}
.active.country-flag svg path {
  fill: #999 !important;
}
.country-flag svg {
  border: 1px solid #ededed;
  border-radius: 50%;
}
.country-flag.active a {
  pointer-events: none;
}
.country-flag.active:hover svg {
  border: 1px solid #ededed;
}
.country-flag:hover svg {
  border: 1px solid #FE737B;
  border-radius: 50%;
}
.country-flag svg {
  width: 23px;
}
.country-languages li {
  display: inline-block;
}
.user-profile-menu ul.ty-text-links > .ty-text-links__item {
  text-align: left;
}
.notification-body-extended .ty-scroller-list .bestprice-image.not-alone {
  top: 10px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple > .ty-menu__submenu-item > .ty-menu__submenu-link {
  font-weight: 400 !important;
  font-size: 15px !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple > .ty-menu__submenu-item:hover a {
  color: #fff !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple > .ty-menu__submenu-item:hover {
  background: #BF087F !important;
  border-top: 1px solid #BF087F !important;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple > .ty-menu__submenu-item {
  padding: 13px 0 12px 40px !important;
}
.ty-control-group.ty-profile-field__item.ty-billing-country {
  margin-left: 5.5%;
}
#fixme.side-grid .ty-template-small__item .template-small__name {
  height: 39px;
  overflow: hidden;
}
.ty-control-group.ty-profile-field__item.ty-shipping-country {
  margin-left: 5.5% !important;
}
.ty-control-group.ty-profile-field__item.ty-mobile {
  margin-left: 0 !important;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-billing-phone {
  margin-left: 0 !important;
  width: 100%;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items {
  position: relative;
  padding: 0 !important;
  top: 0px;
  text-align: left;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > li {
  background: #ededed;
  min-width: 148px;
  padding: 0 !important;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header {
  text-align: center;
}
.top-menu > .ty-menu__items > .ty-menu__item.hovered > .ty-menu__submenu {
  background: #ededed;
  z-index: 100;
}
.top-menu .ty-menu__item.hovered .ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2 > li {
  text-align: center;
}
.new_user_discount {
  padding: 0;
  color: #666;
}
.top-menu > .ty-menu__items > .ty-menu__item.mitem_1560.ty-menu__item-active.active.other_hovered > a:before {
  background: #969696 !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.mitem_1551.ty-menu__item-active.active.other_hovered > a:before {
  background: #808080 !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.mitem_1550.ty-menu__item-active.active.other_hovered > a:before {
  background: #4d4d4d !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.mitem_1476.ty-menu__item-active.active.other_hovered > a:before {
  background: #333 !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.mitem_1423.ty-menu__item-active.active.other_hovered > a:before {
  background: #666 !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.active > a::before {
  height: 100%;
  z-index: 1;
}
.top-menu > .ty-menu__items > .ty-menu__item.hovered > a.ty-menu__item-link::before {
  height: 100%;
  z-index: 1;
  background-color: #fe737b !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.active.other_hovered.hovered > a.ty-menu__item-link::before {
  height: 100%;
  z-index: 1;
  background-color: #fe737b !important;
}
.top-menu > .ty-menu__items > .ty-menu__item.active.other_hovered > a::before {
  background-color: #fe737b;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0;
  left: 0;
  position: absolute;
  transition: height 0.3s ease-out 0s, background-color 0.3s ease-out 0s;
  width: 100%;
  z-index: -1;
}
.top-menu .ty-menu__item .ty-menu__submenu-items > .ty-top-mine__submenu-col:hover > .ty-menu__submenu-item-header > .ty-menu__submenu-link {
  color: #fe737b !important;
  text-decoration: underline;
}
.top-menu .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-menu__submenu-item > .ty-menu__submenu-link {
  text-transform: uppercase;
}
.top-menu .ty-menu__item .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header > .ty-menu__submenu-link {
  color: #000 !important;
  display: block;
  width: 100%;
  padding: 14px 0 12px 0;
  text-transform: uppercase;
}
.top-menu .ty-menu__submenu-items .ty-menu__submenu-list.level-3 .ty-menu__submenu-item:hover > .ty-menu__submenu-link {
  color: #fe737b !important;
  text-decoration: underline;
}
.chrome .top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list {
  margin-top: 0;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list {
  margin-top: 1px;
  padding: 6px;
}
.top-menu > .ty-menu__items > .ty-menu__item.hovered > .ty-menu__submenu > .ty-menu__submenu-items {
  background: #ededed !important;
}
.top-menu .ty-menu__item.active .ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2 > li {
  display: inline-block;
  text-align: center;
  padding: 13px 0;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple:hover:after {
  background: none !important;
}
.top-menu .ty-menu__item.hovered .ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2 > li {
  display: inline-block;
  text-align: center;
  padding: 13px 0;
}
.ty-mainbox-simple-container.clearfix.top-my-account.ty-float-right {
  position: relative;
}
.top-menu .ty-menu__submenu-items.ty-menu__submenu-items-simple.cm-responsive-menu-submenu.level-2.alphabeta-index > li {
  min-width: 17px;
}
.top-menu .ty-menu__submenu-list.level-3 > .ty-menu__submenu-item  a:hover {
  color: #fe737b !important;
}
.top-menu .hovered.ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > ul.ty-menu__submenu-list.level-3 {
  background: #ededed;
}
.top-menu .active.ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > ul.ty-menu__submenu-list.level-3 {
  background: #ededed;
}
.top-menu .ty-menu__item.hovered > .ty-menu__submenu > .ty-menu__submenu-items {
  display: block;
}
.top-menu .ty-menu__submenu-list.level-3 > .ty-menu__submenu-item > a {
  font-weight: bold;
}
.top-menu .ty-menu__submenu-items .ty-menu__submenu-item > .ty-menu__submenu-link {
  color: #000000 !important;
}
.chrome .top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu {
  bottom: -46px;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -46px;
}
.reward_points-userlog h1.ty-mainbox-title {
  margin-top: 15px;
}
.orders-search .ty-mainbox-body .ty-section.ty-search-form {
  display: none;
}
.friendsinvite-view h1 {
  margin-top: 15px;
}
.friendsinvite-create h1.ty-mainbox-title {
  margin-top: 15px;
}
.friendsinvite-create .buttons-container {
  padding-left: 0;
}
.friendsinvite-create .buttons-container .ty-btn:hover {
  background: #fe737b;
}
.friendsinvite-create .buttons-container .ty-btn {
  background: #000000 none repeat scroll 0 0;
  font-size: 15px;
}
.reward_points-userlog .ty-mainbox-title > span {
  color: #000000;
}
.pages-view .ty-mainbox-title > span {
  color: #000000;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-billing-zip-code {
  margin-left: 0 !important;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-shipping-zip-code {
  margin-left: 0 !important;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-billing-last-name {
  margin-left: 5% !important;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-shipping-last-name {
  margin-left: 5% !important;
}
.profiles-update .ty-profile-field__buttons.buttons-container {
  padding-left: 0 !important;
}
.profiles-update #shipping_address_reset:hover {
  background: #fe737b;
}
.chrome .main-menu-para .ty-menu__items > .ty-menu__item:nth-child(6) > .ty-menu__submenu {
  top: -180px !important;
}
.main-menu-para .ty-menu__items > .ty-menu__item:nth-child(6) > .ty-menu__submenu {
  top: -176px !important;
}
.profiles-update #shipping_address_reset {
  background: #000;
  font-size: 15px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple > .ty-menu__submenu-item {
  background: #ffffff none repeat scroll 0 0;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  min-width: unset !important;
  padding: 11px 0 12px 40px !important;
  position: relative;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-shipping-city {
  display: inline-block;
  width: 47%;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-shipping-zip-code {
  display: inline-block;
  width: 47%;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-shipping-address {
  display: inline-block;
  width: 47%;
}
.profiles-update .ty-btn__secondary.ty-btn {
  font-size: 15px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple {
  background: #ffffff;
  width: 305px !important;
}
.grid-list .ty-discount-label {
  background: #fe737b none repeat scroll 0 0;
  font-weight: bold;
}
.grid-list .ty-discount-label__item {
  font-size: 16px;
  border: 1px dashed #fff;
  outline: 2px solid #fe737b;
  padding: 1px 6px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item {
  width: 100%;
  margin-bottom: 1px;
  background: #f1f1f1;
}
.homepage-sidebanners .ty-banner__image-wrapper {
  margin-bottom: 14px;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item .ty-menu__item-link {
  min-height: 44px !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item .ty-menu__item-link {
  min-height: 43px !important;
}
.grid-list .ty-column4 {
  position: relative;
}
.new-product {
  background: #b3db4e none repeat scroll 0 0;
  color: #fff;
  font-weight: bold;
  padding: 5px 9px;
  position: absolute;
  right: 0;
}
.categories-view .grid-list .product-title > p {
  padding-bottom: 0;
  line-height: 1.1;
}
.ty-grid-list__image .ty-discount-label {
  left: 2px !important;
}
.ty-grid-list__item-name,
.ty-grid-list__price,
.grid-list__rating {
  text-align: center !important;
}
.ty-sort-container__views-a {
  font-size: 125% !important;
}
.rss-feed {
  position: relative;
  top: 3px;
}
.ty-price-slider {
  color: #000;
}
.ty-price-slider .ty-price-slider__input-text {
  height: 21px;
  width: 50px;
}
.ty-price-slider .ty-price-slider__input-text {
  border: 1px solid #000000;
}
.checkout-cart .product_block_right .ty-sidebox {
  padding: 10px 6px 10px 10px;
}
.ty-range-slider .ui-slider-range {
  margin-top: -2px;
}
.ty-range-slider__item {
  top: -6px;
}
.ui-slider-handle.ui-state-default.ui-corner-all {
  background: #666 none repeat scroll 0 0;
}
.ui-slider-range.ui-widget-header.ui-corner-all {
  background: #666 none repeat scroll 0 0;
}
.ty-range-slider__item {
  background: #000000 !important;
}
.ty-range-slider {
  border-color: #000000 !important;
  background: #000000 !important;
  height: 2px !important;
}
.ty-column4:nth-child(4n+5)::before {
  content: "";
  left: 4px;
  margin-top: -15px;
  position: absolute;
  right: 0;
  width: 883px;
}
.middle-banners-homepage .half-page > .half-page-banner-description > .text-description p {
  line-height: 1.1;
}
.middle-banners-homepage .half-page > .half-page-banner-description > .text-description {
  height: 50px;
}
.top-brands-block .two-rows-block .text-description > p {
  line-height: 1.1;
}
.half-page-banner-description > .text-description > p {
  line-height: 1.1;
}
.blog_article_preview > .blog_content_inside {
  line-height: 1.1;
}
.products-view .ty-product-block__left .stock-wrap .ty-qty-in-stock.ty-control-group__item {
  padding: 0;
}
.page-196 #pagination_contents hr.under-tile {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
}
.ty-pagination {
  text-align: right;
}
.ty-pagination__text {
  text-transform: none !important;
}
.ty-pagination {
  border-bottom: medium none !important;
}
.categories-view .ty-column4 {
  border: 1px solid #ffffff;
}
.categories-view .ty-product-filters__tools .ty-product-filters__reset-icon.ty-icon-cw {
  left: -2px;
  position: relative;
  top: 3px;
}
.chrome .top-menu > .ty-menu__items.cm-responsive-menu {
  top: -46px;
}
.span5.small.rowed {
  margin-left: 10px;
}
.top-menu > .ty-menu__items.cm-responsive-menu {
  position: relative;
  top: -46px;
}
.chrome .top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items {
  top: 0px;
}
.top-menu .ty-menu__item.active .ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2 > li > .ty-menu__submenu-link {
  display: block;
  padding: 14px 0 12px 0;
  text-transform: uppercase;
}
.top-menu .ty-menu__item.hovered .ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2 > li > .ty-menu__submenu-link {
  display: block;
  padding: 14px 0 12px 0;
}
.checkout-checkout .ty-gift-certificate-coupon .ty-input-text.cm-hint {
  font-size: 13px;
}
.grid-list .ty-column4:hover {
  border: 1px solid #d3d3d3 !important;
}
.grid-list .inner-add-to-cart-product > a {
  font-size: 18px !important;
  font-weight: 500 !important;
}
.categories-view .grid-list .ty-column4,
.product_features-view .grid-list .ty-column4,
.products-search .grid-list .ty-column4 {
  margin-bottom: 35px;
  box-sizing: border-box;
}
.ty-grid-list__item {
  margin: 0 10px !important;
}
.category-name span,
.category-name div {
  display: inline-block;
}
.category-name > span {
  font-size: 185.714%;
}
.socials-product {
  float: right;
}
.socials-product .ty-social-buttons {
  margin: 8px 0 0;
}
.category-title-with-socials {
  margin-bottom: 8px;
}
.category-categories h2 {
  color: #000;
  font-size: 15px !important;
  font-weight: 600;
  text-align: left;
}
.no-touch .ty-menu__item:hover .ty-menu__item-link,
.is-hover-menu .ty-menu__item-link,
.is-hover-menu.ty-menu__item-active .ty-menu__item-link {
  background: none !important;
}
.category-categories .ty-menu__item-link {
  font-size: 13px !important;
  min-height: 0;
  padding: 0;
}
.category-categories .ty-menu__item-link:hover {
  text-decoration: underline;
}
.ty-menu-vertical .ty-menu__items {
  border-bottom: none;
}
.category-categories .ty-menu__items.cm-responsive-menu {
  padding-bottom: 6px;
}
.category-categories .ty-icon-right-open {
  display: none;
}
.no-touch .ty-menu-vertical .ty-menu__item:hover > .ty-menu__submenu,
.ty-menu-vertical .is-hover-menu > .ty-menu__submenu {
  display: none !important;
}
.categories-view .ty-sidebox__title.cm-combination {
  display: none;
}
.category-categories > .ty-mainbox-simple-title {
  border-bottom: 2px solid #ededed;
  padding: 3px 0 10px 10px;
}
.grid-list .ty-grid-list__price .ty-price-update span {
  font-size: 18px;
  color: #fe737b;
}
.ty-grid-list__item-name p {
  height: 50px;
  overflow: hidden;
}
.shipping-promo div {
  display: inline;
}
.products-view .product-title > p {
  font-weight: 600;
}
.ty-sort-container__views-a.cm-ajax.active i {
  color: #fe737b;
}
.ty-sort-container__views-a:hover {
  color: #fe737b;
}
.sku-product-list label,
.sku-product-list span {
  color: #000000;
}
.ty-product-list .product-title {
  color: #000000 !important;
  font-size: 17px !important;
  font-weight: 500;
}
.all-brands-header-toolbar {
  margin-top: 13px;
}
.ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  transition: none !important;
}
.tab_bar_w .tab_bar_descr {
  color: #000000 !important;
}
.chrome #fixme .ty-template-small__item-list-wishlist .add_to_wishlist_para .fa.fa-heart-o {
  top: 6px;
}
#fixme .ty-template-small__item-list-wishlist .add_to_wishlist_para .fa.fa-heart-o {
  position: absolute;
  right: -1px;
  top: 5px;
}
.ty-sort-dropdown__wrapper {
  color: #808080;
}
.total-category.products-pagination {
  color: #808080;
  font-size: 16px !important;
}
.rss-feed .ty-icon-feed {
  color: #808080;
}
.ty-sort-container__views-a.cm-ajax:hover {
  color: #fe737b !important;
}
.ty-sort-container__views-a.cm-ajax {
  color: #808080 !important;
}
.span3.blog-recent h2 {
  margin-bottom: 0;
}
.ty-sidebox.blog-recent-inner h2 {
  margin-bottom: 0;
}
.ty-sidebox__title {
  padding: 0 0 9px !important;
  text-align: center !important;
}
.ty-sidebox__title {
  border-bottom: 1px solid #ffffff;
  padding: 0 30px 9px 0;
  position: relative;
}
.ty-sidebox.blog_categories .ty-blog-text-links > ul > .ty-blog-text-links__item > .ty-blog-text-links__a:hover {
  text-decoration: underline;
}
.ty-sidebox.blog_categories .ty-blog-text-links > ul > .ty-blog-text-links__item > .ty-blog-text-links__a {
  font-size: 15px !important;
}
.ty-blog-text-links > ul > li > a {
  font-weight: 400;
}
.blog_sidebox .ty-sidebox__title.cm-combination span {
  color: #000 !important;
  font-size: 17px !important;
  font-weight: 600;
  text-transform: none !important;
}
.blog_categories_recent_posts .ty-blog-text-links__a {
  font-size: 13px !important;
  font-weight: 400;
  width: 245px;
}
.profiles-update .user-profile-menu .ty-text-links > .ty-text-links__item {
  text-align: left;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-billing-city {
  display: inline-block;
  margin-left: 5.5%;
  width: 47%;
}
.orders-search .ty-mainbox-title > span {
  color: #000000 !important;
}
.orders-search h1.ty-mainbox-title {
  margin-bottom: 0;
}
.general-pages .ty-mainbox-title > span {
  color: #666666 !important;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-mobile {
  display: inline-block;
  width: 47%;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-billing-zip-code {
  display: inline-block;
  width: 47%;
}
.profiles-update .ty-control-group.ty-profile-field__item.ty-billing-address {
  display: inline-block;
  width: 47%;
}
.ty-blog-recent-posts-scroller__content-block__blog > span > a:hover {
  color: #000000 !important;
}
.blog_categories_recent_posts .ty-blog-text-links__a:hover {
  text-decoration: underline;
}
.blog_sidebox .ty-blog-text-links .ty-blog-text-links__item {
  margin-bottom: 6px;
}
.blog_categories .ty-blog-text-links {
  margin-top: 6px;
}
.ty-blog-text-links__a {
  display: block;
  padding-top: 3px;
}
.blog_sidebox .ty-sidebox__title.cm-combination {
  margin-bottom: 3px;
  padding-bottom: 3px !important;
  text-align: left !important;
  text-transform: none !important;
  border-bottom: 1px solid #edeff1;
}
.blog_sidebox .ty-blog-text-links__item > div {
  display: inline-block;
  vertical-align: top;
}
.blog_sidebox .ty-blog-recent-posts-scroller__content-block__blog {
  margin-left: 7px;
}
.ty-blog-recent-posts-scroller__content-block__blog > span > a {
  text-decoration: underline;
  text-transform: uppercase;
}
.blog_categories_recent_posts .ty-blog-text-links__date {
  font-size: 11px !important;
  float: none;
  margin-right: 0;
  padding-left: 0;
}
.ty-product-list .ty-nowrap.ty-stars {
  margin-right: 2px;
}
.ty-product-list .ty-control-group.ty-sku-item {
  margin-bottom: 0;
}
.chrome .ty-product-list .ty-product-list__price > span {
  display: block;
}
.ty-product-list .ty-product-list__price span {
  font-size: 15px;
}
.ty-product-list .stock-wrap .ty-qty-in-stock.ty-control-group__item {
  padding-top: 0;
}
.ty-product-list .ty-product-list__price {
  padding: 6px 0;
}
.ty-product-list__content {
  width: 50%;
}
.ty-product-list > form > div {
  display: inline-block;
}
.ty-product-list .ty-discount-label {
  background: #A1C746 !important;
  font-weight: bold;
}
.ty-product-list .ty-product-list__description {
  position: relative;
}
.ty-product-list .ty-product-list__ratin {
  margin-bottom: 3px;
}
.side-list-buy-buttons {
  width: 30%;
  height: auto;
  position: relative;
}
.side-list-buy-buttons div {
  text-align: right;
}
.side-list-buy-buttons .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big,
.side-list-buy-buttons .inner-add-to-cart-product button {
  width: auto !important;
  margin-left: 16px;
  padding: 2px 42px;
}
.ty-template-small__item-description .add-to-cart-product > .inner-add-to-cart-product > .ty-btn.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.cm-submit.text-button {
  font-weight: 500;
  transition: none;
}
#spyc .tab-list-title {
  color: #000000;
}
.side-list-under-product .rating-wish-grid-row.ty-template-small__item {
  width: 44%;
}
input.ty-value-changer__input {
  height: 37px;
}
.checkout-cart .ty-value-changer__increase,
.checkout-cart .ty-value-changer__decrease {
  line-height: 16px;
}
.ty-value-changer__increase,
.ty-value-changer__decrease {
  height: 16px;
  line-height: 18px;
}
.side-list-buy-buttons .ty-product-list__control {
  margin-top: 11px;
  position: relative;
  float: right;
}
.side-list-buy-buttons .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big:hover {
  background: #fe737b !important;
  transition: none 0s ease 0s;
}
.newsletter .ty-footer-form-block table {
  width: 100%;
}
.product_block_right .ty-sidebox__body .ty-template-small__item.clearfix:hover {
  border: 1px solid #d3d3d3 !important;
}
.product_block_right .ty-sidebox__body .ty-template-small__item.clearfix {
  border: 1px solid #fff !important;
}
.ty-product-list .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  font-weight: 400 !important;
  font-size: 18px !important;
}
.lang-side_bar_text {
  color: #4d4d4f !important;
  font-weight: 600 !important;
}
.ty-product-list .ty-notify-for-product-availability {
  display: none;
}
hr.under-tile {
  border-bottom: 1px solid #DADADA;
  width: 122px;
  display: none;
}
.grid-list .ty-notify-for-product-availability {
  display: none;
}
.products-view .product_block_right > .ty-sidebox > .ty-sidebox__title hr.under-tile {
  display: none !important;
}
.products-view .product_block_right > .ty-sidebox > .ty-sidebox__title {
  margin-bottom: 0;
}
.products-view .product_block_right .ty-sidebox .lang-see-them-all-div {
  display: block;
}
.products-view .product_block_right .ty-sidebox .lang-see-them-all-div span a {
  color: #4d4d4f !important;
  font-weight: 600 !important;
}
.ty-template-small .product-list-field .ty-control-group__item.avail {
  color: #000;
}
.products-view .ty-simple-list [id^="clean_price_update_"] {
  display: none !important;
}
.ty-simple-list .ty-simple-list__price.clearfix span {
  display: inline;
}
.side-list-under-product .under-tile {
  display: none;
}
.under-title {
  border-bottom: 1px solid #dadada;
  margin-bottom: 25px;
  width: 122px;
  display: none;
}
.product-after-details .under-title {
  display: block !important;
}
#content_product_tab_12.tab_content .ty-scroller-list__item {
  border: 1px solid #fff;
}
#content_product_tab_12.tab_content .ty-scroller-list__item:hover {
  border: 1px solid #e7e7e8;
}
.content-product_tab_12 .owl-wrapper-outer {
  padding-right: 15px;
}
.product-after-details .ty-mainbox-title > span {
  font-size: 26px !important;
  font-weight: 400;
}
.squaredTwo {
  width: 20px !important;
  height: 20px !important;
}
.squaredTwo label {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
}
.squaredTwo label::after {
  left: -2px !important;
  top: 1px !important;
}
.squaredTwo input[type="checkbox"]:checked + label::after {
  border-color: #fe737b !important;
}
.ty-product-block__img-wrapper {
  margin-right: 0px !important;
}
.products-view .ty-product-block__left {
  display: inline-block !important;
  margin-right: 3px !important;
  margin-bottom: 15px;
}
.products-view .product_block_right {
  display: inline-block !important;
}
#sorting_placeholder {
  padding: 5px 0 !important;
}
#sorting_placeholder .ty-sort-dropdown__content.cm-popup-box {
  right: 0;
  top: 42px;
  border: 2px solid #ededed;
}
.ty-product-list .ty-product-list__image {
  margin-bottom: 0 !important;
}
.ty-product-list.clearfix > form {
  display: flex;
}
.side-list-buy-buttons {
  padding-top: 16px;
}
.ty-product-list__image {
  border: none !important;
}
.ty-footer-grid__full-width > .row-fluid {
  max-width: unset !important;
}
.ty-footer-grid__full-width {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ty-footer-grid__full-width .exxegy-footer {
  float: none !important;
  margin: 0 auto !important;
  max-width: unset;
}
.exxegy-footer-inner .item-exeggya > h4 {
  margin-bottom: 0 !important;
  margin-top: 4px !important;
  color: #333333;
  font-size: 16px;
}
.info-footer-div p,
.info-footer-div h4 {
  color: #ffffff !important;
}
.info-footer-div .ty-wysiwyg-content > p {
  padding-top: 0;
}
.info-footer-div .ty-wysiwyg-content > h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.item-exeggya > span {
  color: #333333;
}
.exxegy-footer-inner .item-exeggya {
  padding: 14px 0;
}
.exxegy-footer-inner {
  float: none !important;
  margin: 0 auto !important;
  max-width: 1200px;
}
#tygh_footer .ty-footer-grid__full-width > .row-fluid > div {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 280px;
  float: none;
}
.ui-slider-handle.ui-state-default.ui-corner-all {
  border-radius: 0 !important;
  width: 10px !important;
}
.footer-acount-info .ty-footer-menu__item {
  margin-bottom: 0;
}
.tab_bar_w {
  left: 0;
  position: relative;
  right: 0;
  width: 100%;
}
#tygh_footer .span16.exxegy-footer {
  max-width: unset !important;
}
#tygh_footer .span16.copyright-bottom {
  background: #666666 none repeat scroll 0 0;
  max-width: unset !important;
  text-align: center;
}
#tygh_footer .ty-footer-grid__full-width .payment-icons {
  max-width: unset !important;
  text-align: center;
}
.item-exeggya span {
  display: block;
}
.tab_bar_w.fixed {
  border-bottom: 1px solid #ccc;
  box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent, 7px 10px 30px -17px #cccccc;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  z-index: 99999;
}
.newsletter .ty-footer-form-block__title {
  display: none;
}
.newsletter .ty-footer-form-block {
  margin-top: 11px;
}
.newsletter .second {
  width: 30%;
}
.newsletter .ty-footer-form-block .ty-input-text.cm-hint,
.newsletter .ty-footer-form-block .ty-input-text.cm-hint-focused {
  padding: 0 6px;
  width: 88% !important;
  height: 32px;
}
.newsletter-footer .newsletter .newsletter-buttons > .button.white.withborder.raphar.woman {
  background: #fe737b !important;
}
.newsletter-footer .newsletter .newsletter-buttons > .button.white.withborder.raphar.woman:hover {
  background: #000000 !important;
}
.newsletter-footer .newsletter .newsletter-buttons > .button.white.withborder.raphar.man {
  background: #000000 !important;
}
.newsletter-footer .newsletter .newsletter-buttons > .button.white.withborder.raphar.man:hover {
  background: #fe737b !important;
}
.ty-footer-form-block .ty-input-text.cm-hint {
  font-style: italic;
}
.newsletter .under-newletter-text {
  color: #ffffff;
  display: block;
  font-style: italic;
}
.newsletter .second {
  width: 19%;
}
.newsletter .button.white.withborder {
  background: #0072c0 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  padding: 8px 35px;
  font-size: 15px;
}
#tygh_footer .newsletter .newsletter-buttons.clearfix {
  margin-top: 7px;
}
.newsletter .button.white.withborder:hover {
  background: #000000;
}
.newsletter-buttons.clearfix {
  padding: 0 0 0 1px;
}
.newsletter > table {
  width: 100%;
}
.ty-footer .ty-text-links-wrapper .ty-text-links__a:hover {
  color: #5e5f5b !important;
  text-decoration: underline;
}
.footer-acount-info .ty-footer-menu__item > a:hover {
  text-decoration: underline;
  color: #5e5f5b !important;
}
.newsletter .ty-input-append .ty-input-text {
  width: 100% !important;
  padding: 0 6px !important;
  border: 2px solid #fff;
}
.ty-social-link-block {
  background: #5e5f5b none repeat scroll 0 0;
}
.ty-social-link-block .ty-social-link__title {
  color: #fff;
  margin-left: 7px;
}
.ty-social-link {
  top: -2px !important;
}
.ty-social-link-block {
  padding: 9px 0;
}
#tygh_footer a:hover {
  color: #666 !important;
}
.ty-footer-general__header {
  text-align: center;
}
.ty-text-links > .ty-text-links__item {
  text-align: center;
}
.general-pages .ty-text-links__item .ty-text-links__a:hover {
  color: #5e5f5b !important;
  text-decoration: underline;
}
.pages-view .span4.side-grid {
  border-right: none !important;
}
.general-pages .ty-text-links__item.ty-level-0.ty-text-links__active a {
  font-weight: 600 !important;
}
.ty-blog__post-title {
  color: #000000 !important;
}
.pages-view .ty-blog__description p > a:hover {
  color: #000000 !important;
}
.pages-view .ty-mainbox-body p > a {
  text-decoration: underline;
}
.ty-blog-grid .ty-wysiwyg-content a:hover {
  color: #000000 !important;
}
.general-pages .ty-mainbox-title > span {
  font-weight: 500;
  font-size: 20px;
}
.ty-blog .ty-blog__item .ty-blog__post-title:hover {
  text-decoration: underline;
}
.ty-blog .ty-blog__item .ty-blog__post-title {
  color: #000000 !important;
}
.ty-blog-grid a:hover {
  color: #000 !important;
}
.pages-view .span12 h1.ty-mainbox-title {
  font-size: 20px;
  text-align: center;
}
.auth-login_form .ty-login .buttons-container.clearfix {
  padding-left: 0 !important;
}
.profiles-add .ty-account .buttons-container {
  padding-left: 0 !important;
}
.buttons-container.login-recovery {
  padding-left: 0;
}
.ty-login-info__title,
.ty-login-info h4 {
  color: #bdc3c7;
  font-size: 19px;
  margin: 0;
  padding-bottom: 10px;
}
.ty-login-info__title,
.ty-login-info h4 {
  color: #666 !important;
  font-size: 16px !important;
}
.ty-recover-password form > .ty-control-group {
  margin-bottom: 0 !important;
}
.checkout-checkout .ty-order-summary {
  border: 2px solid #ededed;
  margin-top: 0;
  padding: 2px 11px;
}
.checkout-checkout .ty-order-summary {
  background: #ededed none repeat scroll 0 0;
  border: 2px solid #ededed;
  margin-top: 0;
  padding: 2px 2px 10px;
}
.checkout-checkout .ty-order-summary h2.ty-sidebox__title.cm-combination {
  padding: 5px 1px 3px 5px !important;
}
#tygh_shipping_method {
  margin-bottom: 10px;
}
.auth-recover_password #tygh_main_container .ty-mainbox-title > span {
  color: #000;
}
.auth-recover_password .ty-wysiwyg-content h4,
.auth-recover_password .ty-wysiwyg-content h5,
.auth-recover_password .ty-wysiwyg-content h6 {
  color: #666;
}
.login-recovery > .ty-btn__secondary.ty-btn {
  font-size: 15px !important;
}
.auth-login_form .ty-login-info__txt > p {
  margin-bottom: 16px;
}
.auth-login_form .tygh-content .span8.main-content-grid > .ty-mainbox-container > h1,
.profiles-add .tygh-content .span8.main-content-grid > .ty-mainbox-container > h1 {
  color: #000000;
  font-weight: bold;
  font-size: 20px !important;
}
.auth-login_form .ty-mainbox-container h1 {
  text-align: center;
}
.pages-view .no-touch .ty-text-links__a:hover {
  text-decoration: underline;
}
.pages-view .ty-text-links__active {
  font-weight: bold;
}
.profiles-add .ty-account .buttons-container .ty-btn.ty-btn__secondary {
  font-size: 16px !important;
  font-family: Roboto;
  width: 100%;
  height: 45px;
  background-color: #fe737b;
  color: black;
  border: 2px solid black;
  border-radius: 2px;
}
.profiles-add .ty-account .buttons-container .ty-btn.ty-btn__secondary:hover {
  background-color: black;
  color: white;
}
.profiles-add .ty-account .ty-profile-field__buttons.buttons-container {
  margin-top: 0;
  padding-top: 0;
}
.profiles-add .ty-account-benefits h4 {
  color: #666666;
}
.auth-login_form .ty-login-info__txt > a {
  background: #000 none repeat scroll 0 0;
  color: #fff !important;
  font-size: 15px !important;
  padding: 7px 15px;
}
.auth-login_form .ty-login-info__txt > a:hover {
  background: #fe737b none repeat scroll 0 0;
}
.auth-recover_password .tygh-content p {
  text-align: justify !important;
}
.products-frontpage .ty-simple-list__price.clearfix .ty-price-update .ty-no-price {
  font-size: 16px;
  position: relative;
  top: 14px !important;
}
.subcategories {
  border-bottom: 1px solid #676767;
  padding-bottom: 8px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:last-child {
  margin-bottom: 0;
}
.categories-view .subcategories .ty-subcategories__item {
  text-align: center;
}
.page-68 .buttons-container {
  padding-left: 0;
}
.page-68 h1.ty-mainbox-title {
  margin-top: 10px;
}
.page-70 .ty-form-builder__buttons.buttons-container {
  padding-left: 0;
}
.page-75 .ty-form-builder__buttons.buttons-container {
  padding-left: 0;
}
.page-76 .ty-form-builder__buttons.buttons-container {
  padding-left: 0;
}
.page-70 .ty-poll__header {
  font-size: 17px;
}
.page-68 .ty-form-builder__description {
  text-align: justify;
}
.profiles-add .ty-account .ty-subheader,
.profiles-add .ty-account .ty-newsletters {
  display: none;
}
.page- .ty-mainbox-title > span {
  font-size: 20px !important;
}
.auth-recover_password .span8 .ty-mainbox-title {
  text-align: center;
}
.general-pages .ty-mainbox-title {
  text-align: left !important;
}
.page-30 .ty-form-builder__buttons.buttons-container {
  padding-left: 0;
}
.page-61 .ty-form-builder__buttons.buttons-container {
  padding-left: 0;
}
.gemy .ty-wysiwyg-content > p {
  text-align: center;
  color: #fff;
}
.blog-carousel .ty-nowrap.ty-stars {
  margin-left: 12px !important;
  margin-right: 0;
}
.page-10 .grid-list .ty-column4 {
  border: 1px solid #fff;
}
.page-10 .grid-list .ty-column4:hover {
  border: 1px solid #e7e7e8 !important;
}
.page-10 .ty-mainbox-title {
  font-size: 23px;
  text-align: center;
}
.page-10 .ty-mainbox-container.clearfix.blog-prods {
  margin-top: 29px;
}
.page-10 .ty-mainbox-body .grid-list .ty-column4 {
  margin-bottom: 18px;
}
.page-10 .ty-column4:nth-child(4n+5)::before {
  border-bottom: 1px solid #d9d9d9;
  content: "";
  left: -1px;
  margin-top: -8px;
  position: absolute;
  right: 0;
  width: 1198px;
}
.ty-footer-form-block__form {
  width: 100% !important;
}
.blog-prods .ty-mainbox-title > span {
  font-size: 20px !important;
  font-weight: 400;
}
.blog-prods .under-title {
  display: block;
}
.ty-account-benefits h4 {
  font-size: 16px !important;
}
.page- .ty-mainbox-title {
  text-align: center;
}
.ty-account-benefits h4 {
  margin-bottom: 0;
}
.phone-number {
  color: #fe737b;
  font-size: 16px;
  margin-left: 5px;
  font-weight: bold;
}
.phone-text {
  font-size: 16px;
  color: #000;
}
.profile-controls .ty-account-info__buttons.buttons-container a {
  font-size: 16px !important;
}
.top-my-account .ty-account-info__title-txt {
  font-size: 16px !important;
}
.ty-account-info__buttons .ty-btn.ty-btn__secondary,
.ty-account-info__buttons .ty-btn.ty-btn__primary {
  background: #ededed none repeat scroll 0 0;
  color: #000 !important;
}
.ty-account-info__buttons .ty-btn.ty-btn__secondary:hover,
.ty-account-info__buttons .ty-btn.ty-btn__primary:hover {
  background: #ededed none repeat scroll 0 0 !important;
  color: #000 !important;
  box-shadow: none !important;
  text-decoration: underline;
}
.ty-account-info .ty-account-info__item.ty-dropdown-box__item:hover {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.ty-account-info__buttons.buttons-container {
  padding: 5px 0;
}
.ty-account-info__buttons a {
  text-align: left;
}
.description-banners-pickers .picker-item {
  cursor: default;
}
.ty-account-info__buttons .ty-btn.ty-btn__primary {
  margin-top: 0 !important;
  margin-left: 0 !important;
}
.top-my-account .ty-account-info li a {
  padding-left: 13px;
}
.ty-account-info__buttons a {
  padding-left: 12px;
}
.top-cart-content .cm-popup-box.ty-dropdown-box__content {
  z-index: 660;
  margin-top: -1px;
}
.top-cart-content .ty-cart-items__list .item-price {
  text-align: right;
}
.ty-dropdown-box__content {
  min-width: 181px !important;
}
.top-my-account .ty-mainbox-simple-body {
  display: none;
}
.top-my-account {
  height: 36px;
}
.top-my-account.open .ty-mainbox-simple-body {
  display: block;
}
.chrome .top-my-account .ty-mainbox-simple-body {
  top: 36px;
}
.top-my-account .ty-mainbox-simple-body {
  background: #ffffff none repeat scroll 0 0;
  border-bottom: 2px solid #ededed;
  border-left: 2px solid #ededed;
  border-right: 2px solid #ededed;
  position: absolute;
  right: -2px;
  top: 36px;
  z-index: 200;
  width: 176px;
  padding-bottom: 11px;
}
.top-my-account .ty-mainbox-simple-body ul.ty-account-info > li {
  text-align: center;
}
.ty-dropdown-box__title.open a,
.ty-dropdown-box__title.open i,
.ty-dropdown-box__title.open .ty-minicart-title {
  color: #5e5f5b;
}
.top-my-account {
  margin-left: 15px;
}
.top-account {
  position: relative;
}
.ty-account-info__buttons.buttons-container a {
  width: 100%;
}
.ty-account-info__item.ty-dropdown-box__item:last-child {
  margin-bottom: 0;
}
.top-my-account .ty-mainbox-simple-body div ul {
  padding-left: 7px;
  padding-right: 5px;
  padding-top: 10px;
}
.profile-controls .ty-account-info__item.ty-account-info__name.ty-dropdown-box__item {
  border-bottom: 1px dotted #4d4d4f;
}
.profile-controls .ty-account-info__item.ty-dropdown-box__item {
  text-align: left;
}
.blog-amount-rate {
  height: 23px;
}
.blog-prods .ty-grid-list__item-name {
  height: 66px;
}
.blog-prods .grid-list__rating {
  height: 20px;
}
.blog-prods .inner-add-to-cart-product {
  background: #005691 none repeat scroll 0 0;
}
.blog-prods .ty-btn.ty-btn__primary.ty-btn__big {
  padding: 6px 60px;
}
.blog-amount-rate div {
  display: inline-block;
}
.blog-prods .product-list-field .ty-control-group__item.avail {
  margin-left: 0;
}
.blog-amount-rate {
  text-align: center;
}
.blog-prods .grid-list__rating {
  margin-left: 9px;
}
.container-fluid.top-grid {
  background: #ededed none repeat scroll 0 0;
}
.tygh-top-panel {
  background: none;
}
.ty-sidebox .lang-side_bar_text {
  color: #808080 !important;
}
.multi-bg-left {
  width: 330px !important;
}
.multi-bg-right {
  right: 0;
  width: 330px !important;
}
.other_col [id^="prc_discount_value_"] {
  color: #0086d0;
}
.checkout-cart .ty-cart-statistic__title {
  width: auto !important;
}
.products-view .ty-product-switcher {
  top: 21px;
}
.ty-product-switcher .ty-product-switcher__a {
  top: 2px;
}
.ty-product-switcher span {
  color: #b3b3b3;
}
.ty-product-switcher .ty-product-switcher__a:hover {
  text-decoration: none;
}
#plus_timed_promotion_image {
  text-align: center;
}
#plus_timed_promotion_description {
  text-align: center;
}
#plus_timed_promotion_description .add-to-cart-product .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.ty-btn::before {
  float: none;
}
#plus_timed_promotion_description .add-to-cart-product {
  margin: 0 auto;
  width: 223px;
}
#fancybox-content {
  background: #fff;
}
#fancybox-content.left_carts_popup_content {
  border-top: 5px solid #BF077F;
}
.ty-mainbox-container.clearfix.index-products-list.skroutz .owl-controls {
  display: none !important;
}
.main-prods .skroutz .owl-controls {
  display: none !important;
}
.main-prods .skroutz .owl-controls {
  display: none;
}
#fancybox-outer {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
}
#plus_timed_promotion_image {
  margin-top: 15px;
}
.timed-promo-text > h3 {
  color: #005492;
  font-size: 19px;
  font-style: italic;
  margin-bottom: 0;
}
.timed-promo-text > p {
  color: #005492;
  font-size: 19px !important;
  margin: 0 auto;
  width: 400px;
}
.timed-promo-discount {
  color: #7fe931;
  font-size: 33px !important;
  font-weight: bold;
}
.timed-promo-text {
  margin-top: 4px;
}
.timed-promo-discount {
  margin-bottom: 12px;
}
.timed-promo-footer-text > p {
  color: #005492;
  font-size: 11px !important;
  padding: 0 6px;
}
#plus_timed_promotion_container .cart-button.clearfix {
  margin-bottom: 19px;
  margin-top: 11px;
}
.page-62 .ty-column4,
.page-116 .ty-column4 {
  border: 1px solid #fff !important;
}
.page-62 .ty-column4:hover,
.page-116 .ty-column4:hover {
  border: 1px solid #e7e7e8 !important;
}
.page-62 .prod-amount .stock-wrap,
.page-116 .prod-amount .stock-wrap {
  display: none;
}
.page-62 .prod-amount,
.page-116 .prod-amount {
  margin-top: 0;
}
.page-62 .grid-list__rating .ty-stars,
.page-116 .grid-list__rating .ty-stars {
  margin-right: 3px;
}
#plus_timed_promotion_description .cart-button .add-to-cart-product:before {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/add-to-cart.png?1753621501') no-repeat scroll 0 0;
  content: "";
  display: block;
  height: 25px;
  left: 4px;
  position: absolute;
  top: 5px;
  width: 36px;
}
#plus_timed_promotion_description .cart-button .add-to-cart-product {
  background: #005791;
}
#plus_timed_promotion_description .add-to-cart-product {
  padding-left: 32px;
}
.newsletter_popup .float-left.left-part {
  text-align: center;
  margin-top: 20px;
}
.newsletter_popup .cm-required.cm-email {
  display: none;
}
.newsletter_popup .float-left.right-part {
  text-align: center;
  margin-top: 12px;
}
.newsletter_popup .discount-coupon {
  color: #fe737b;
  font-size: 18px;
  font-weight: 600;
}
.newsletter_popup h4 {
  color: #000000;
  font-size: 15px;
  margin-bottom: 0;
}
.newsletter_popup .intro-text {
  font-size: 17px !important;
  font-weight: 300;
  margin-bottom: 9px;
  margin-top: 9px;
  color: #666666 !important;
}
.newsletter_popup .intro-text > strong {
  font-weight: 500;
}
.leftcarts_popup .cart-message .left-pop-up-title > h2 {
  color: #666666;
  font-weight: 300;
  margin-bottom: 0;
}
.newsletter_popup p {
  color: #000000;
}
.newsletter_popup .ty-input-text {
  background: #ffffff none repeat scroll 0 0 !important;
  color: #808080;
  height: 39px !important;
  padding: 0 60px !important;
  width: 339px !important;
  border: 1px solid #ededed !important;
  font-size: 15px;
  text-align: center;
}
.newsletter_popup .button.white.withborder {
  float: none !important;
}
.newsletter_popup .button.white.withborder:last-child {
  background: #000000 none repeat scroll 0 0;
  border: medium none;
  color: #ffffff;
  font-size: 17px;
  padding: 8px 37px;
  margin-left: 9px;
}
.fb-like-newsletter-popup {
  background: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/popup_news_bottom-bg.jpg?1753621501');
  text-align: center;
}
.float-left.right-part.main-content-popup {
  padding-top: 5px;
}
.fb-like-newsletter-popup {
  padding: 17px 0;
}
.plus_popup.newsletter_popup .float-left.right-part.main-content-popup {
  background: #ededed none repeat scroll 0 0;
}
.newsletter_popup .button.white.withborder:last-child:hover {
  background: #fe737b none repeat scroll 0 0;
}
.newsletter_popup .button.white.withborder:first-child:hover {
  background: #000000 none repeat scroll 0 0;
}
.newsletter_popup .button.white.withborder:first-child {
  background: #fe737b none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 17px;
  padding: 8px 37px;
}
.newsletter_popup h4 {
  margin-bottom: 8px;
}
.newsletter_popup .inner-pop-up {
  margin-top: 6px;
}
.beware-notice {
  font-size: 11px !important;
}
.newsletter_popup .second-popup {
  padding-top: 0;
}
.newsletter_popup .pop-fb-like {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 300;
}
.newsletter_popup_content .beware-notice {
  padding-bottom: 15px;
  color: #666666 !important;
}
.newsletter_popup .popup-line4 {
  margin-bottom: 3px;
}
#bio_ep .logo-image {
  padding-top: 19px;
}
#bio_ep .inner-pop-up > .button.white.withborder {
  padding: 8px 37px;
}
#bio_ep .logo-image,
#bio_ep .main-content-popup {
  background: #ededed none repeat scroll 0 0 !important;
}
#bio_ep .inner-pop-up > .button.white.withborder:last-child:hover {
  background-color: #fe737b;
}
#bio_ep .inner-pop-up > .button.white.withborder:last-child {
  background-color: #000;
  margin-left: 6px;
}
#bio_ep .intro-text > .discount-coupon {
  color: #fe737b;
  font-size: 22px;
  font-weight: bold;
}
#bio_ep > #fancybox-close {
  font-size: 25px !important;
  color: #ffffff !important;
  right: 25px !important;
  top: 16px !important;
}
.new_subscriber_added .float-left.right-part.new_subscriber_info > p:first-child {
  padding: 16px 0 !important;
}
.new_subscriber_info .coupon-row {
  margin-bottom: 9px !important;
}
.new_subscriber_added .float-left.right-part.new_subscriber_info > p {
  font-size: 19px !important;
  color: #666 !important;
  line-height: 1.1 !important;
}
#bio_ep .simple-list-wishlist {
  display: none;
}
#fancybox-close.newsletter_popup_content_new_subscriber {
  font-size: 23px !important;
}
#bio_ep .logo-image > .intro-text > strong {
  font-weight: 500;
}
#bio_ep .logo-image > p {
  font-size: 17px !important;
  font-weight: 300;
}
#bio_ep .ty-scroller-list__item {
  padding-top: 0;
}
#bio_ep .inner-pop-up > .button.white.withborder:first-child:hover {
  background-color: #000;
}
#bio_ep .inner-pop-up > .button.white.withborder:first-child {
  background-color: #fe737b;
}
.popup-logo {
  text-align: center;
}
.leftcarts_popup #inline2  hr {
  border-top: 1px solid #e5e5e5;
}
#bio_ep > #fancybox-close:hover:before {
  color: #808080;
}
#bio_ep > #fancybox-close:before {
  content: "";
  font-family: "glyphs";
}
#bio_ep > #fancybox-close {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
  color: #ffffff;
  height: 13px;
  right: 5px;
  top: 5px;
  width: 13px;
}
#bio_ep .bestprice-image > img {
  width: 39px;
}
#bio_ep .best-sell-img > .bestseller {
  width: 39px;
}
#bio_ep {
  height: auto !important;
}
#bio_ep .float-left.right-part p,
#bio_ep .float-left.right-part h4 {
  color: #ffffff;
}
#bio_ep .ty-footer-form-block__form .inner-pop-up {
  margin-top: 3px;
}
#bio_ep .float-left.right-part h4 {
  font-weight: 400;
  margin-bottom: 7px;
  padding-top: 7px;
}
#bio_ep .popup-logo {
  padding-top: 7px;
}
#cookie-bar.fixed.bottom p {
  position: relative;
}
#cookie-bar.fixed.bottom p::before {
  background: rgba(0,0,0,0) url("../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/cookies-bottom.png?1495551807") no-repeat scroll 0 0;
  content: " ";
  height: 37px;
  left: 73px;
  position: absolute;
  top: 11px;
  width: 36px;
}
#bio_ep .button.white.withborder {
  border: medium none;
  color: #ffffff;
  font-size: 17px;
  margin-top: 4px;
  padding: 8px 33px;
}
#bio_ep .ty-mainbox-title.styled > span:hover {
  color: #4d4d4d !important;
}
.notification-body-extended .ty-mainbox-container > .ty-mainbox-title.styled > span:hover {
  color: #4d4d4d !important;
}
#bio_ep .ty-mainbox-title.styled > span {
  font-size: 22px !important;
  padding: 0 !important;
  color: #4d4d4d !important;
}
#bio_ep #subscr_email.ty-input-text {
  border: 1px solid #ededed;
  height: 38px;
  width: 335px !important;
  text-align: center;
}
#bio_ep .float-left.right-part .intro-text {
  font-size: 14px !important;
  font-weight: 300;
  margin-bottom: 7px;
}
#bio_ep .float-left.right-part h4 {
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-top: 7px;
}
#bio_ep .beware-notice {
  padding-bottom: 15px;
}
#bio_ep .float-left.right-part .intro-text strong {
  font-weight: 500;
}
#bio_ep .float-left.right-part .intro-text span {
  font-weight: 500;
}
#bio_ep .float-left.right-part {
  background: #fff none repeat scroll 0 0;
  text-align: center;
}
.leftcarts_popup .maintable:last-child {
  border-bottom: none !important;
}
#bio_ep .ty-footer-form-block__form.ty-control-group.ty-input-append .inner-pop-up > button {
  float: none !important;
}
.plus_popup .lower-part {
  padding: 0 16px;
}
.plus_popup .left-pop-up-title {
  padding: 0 16px;
}
.plus_popup .cart-message {
  margin-bottom: 7px;
  padding-bottom: 19px;
  background: #ededed;
}
.plus_popup .maintable .ty-pict {
  padding: 4px;
}
.left-pop-up-title > p {
  color: #4d4d4f;
}
.left-pop-up-title > h1 {
  color: #4d4d4f;
  margin-bottom: 3px;
  margin-top: 5px;
  text-align: center;
  font-size: 21px;
}
.left-pop-up-title {
  color: #4d4d4f;
}
.plus_popup .maintable .product-name {
  color: #4d4d4f !important;
  font-size: 16px !important;
}
.plus_popup .maintable > td:last-child {
  font-weight: bold;
  text-align: right;
}
.diagonismos-view
.brands-homepage-images .ty-mainbox-body > a {
  font-weight: 600;
}
.index-blog-articles .more-articles > a:hover {
  text-decoration: underline;
}
.index-blog-articles .more-articles > a {
  font-weight: 500;
}
.index-blog-articles .more-articles {
  text-align: center;
}
.profile-controls .ty-account-info__buttons .order_track.ty-btn.ty-btn__primary {
  font-weight: 500;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col.mitem_1665 > div > a {
  font-weight: 700 !important;
}
.popup-cart-unser-products .right {
  float: right;
  font-weight: bold;
}
.lower-part {
  margin-bottom: 2px;
}
.plus_popup .add-to-cart-product:before {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/add-to-cart.png?1753621501') no-repeat scroll 0 0;
  content: "";
  display: block;
  height: 25px;
  left: 2px;
  position: absolute;
  top: 8px;
  width: 36px;
}
.plus_popup .add-to-cart-product {
  padding: 9px 0;
  width: 276px;
}
.plus_popup .add-to-cart-product a:before {
  border-color: transparent transparent transparent #005791;
  border-style: solid;
  border-width: 20px 0 18px 20px;
  content: "";
  height: 0;
  left: 34px;
  position: absolute;
  top: 0;
  width: 0;
}
.leftcarts_popup .plus_popup #cart_pop_btn.button.orange.float-right {
  padding: 0 !important;
}
#fancybox-close.newsletter_popup_content:hover::after {
  color: #666666 !important;
}
.plus_popup .button.orange.float-right {
  padding: 9px 29px;
}
.leftcarts_popup .free-shipping-estimation .free-ship-text {
  color: #fe737b;
  font-weight: 400;
}
.notification-content-extended h1 span:hover::before {
  color: #5e5f5b;
}
#fancybox-close.left_carts_popup_content:hover:before {
  color: #5e5f5b !important;
}
#fancybox-close.left_carts_popup_content:before {
  content: "";
  font-family: "glyphs";
}
#fancybox-close.left_carts_popup_content {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
  color: #ffffff !important;
  height: 13px;
  right: 23px;
  top: 13px;
  font-size: 23px !important;
  width: 11px;
}
.leftcarts_popup .button-leftcarts {
  margin-bottom: 14px;
  margin-top: 24px !important;
}
.left-pop-up-title > p:last-child {
  padding-top: 0;
}
.maintable > td:last-child {
  padding-right: 0;
}
.free-shipping-estimation {
  color: red;
  font-weight: bold;
}
.button.white.withborder:hover {
  background: #1FA1F2 none repeat scroll 0 0;
}
.page-62 .ty-grid-list__item-name,
.page-116 .ty-grid-list__item-name {
  height: 45px;
}
.left-pop-up-title {
  text-align: center !important;
}
.skroutz .list-price-label {
  display: none !important;
}
.skroutz .ty-control-group__item.avail {
  margin-left: 0;
}
.product_block_right .ty-template-small__item.clearfix {
  list-style-type: none;
}
.product_block_right .ty-template-small {
  padding-left: 0;
}
.product_block_right [id^="add_to_cart_update_"] {
  margin-top: 5px;
}
.rating-wish-grid-row.ty-template-small__item > div {
  width: 50%;
}
.ty-template-small__item-list-wishlist a {
  position: relative;
}
.rating-wish-grid-row.ty-template-small__item .fa.fa-heart-o {
  color: #fe737b;
  margin-right: 0;
  font-size: 17px;
  font-weight: bold;
}
.rating-wish-grid-row.ty-template-small__item .fa.fa-heart-o:hover {
  color: #000000;
}
.ty-template-small__item-list-wishlist .add_to_wishlist_para {
  text-align: right;
}
.rating-wish-grid-row.ty-template-small__item .ty-template-small__item-list-wishlist a {
  position: relative;
  right: 0;
  top: 0;
  height: auto !important;
  width: auto !important;
  line-height: 0 !important;
}
.product_block_right .owl-carousel {
  display: block !important;
}
.rating-wish-grid-row.ty-template-small__item {
  margin: 0 auto;
  padding-bottom: 0;
  padding-top: 4px;
}
.checkout-cart .list-price-label {
  display: none !important;
}
.product_block_right {
  box-sizing: border-box;
  display: table-cell;
  padding: 0 0 10px;
  vertical-align: top;
  width: 229px !important;
}
.ty-product-block .product_block_right .ty-sidebox {
  padding: 0 0 10px !important;
}
.checkout-checkout .checkout-summary .float-right > span {
  float: none !important;
}
.checkout-summary .float-right > span {
  float: right;
  text-align: right !important;
}
.profiles-add .subscribe-page.smartphone {
  display: none !important;
}
.ty-product-thumbnails {
  width: 100% !important;
}
.skroutz .under-tile {
  display: block;
}
.skroutz .lang-side_bar_text {
  display: block;
}
.skroutz.smartphone .ty-sidebox__title-wrapper.hidden-phone {
  color: #1f1d1e;
  font-size: 19px;
}
.skroutz .lang-see-them-all-div {
  display: block !important;
  margin: 6px 10px 3px 0;
}
.skroutz .lang-see-them-all-div span a {
  color: #4d4d4f !important;
  font-weight: 600 !important;
}
.ty-scroller-list__item .bestprice-image {
  position: absolute;
  top: 0;
}
.ty-sidebox.skroutz.smartphone {
  border: 1px solid red;
}
.ty-sidebox.skroutz.smartphone h2 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.skroutz.smartphone {
  display: none;
}
.ty-sidebox.skroutz.smartphone {
  margin-top: 26px;
}
.skroutz .lang-side_bar_text {
  text-align: center;
}
.ty-mainbox-container.clearfix.skroutz.smartphone {
  border: 1px solid red;
  margin-top: 18px;
}
.skroutz .ty-mainbox-title {
  margin-bottom: 0;
}
#content_product_tab_12 > div > .owl-theme {
  display: block;
}
#content_product_tab_12 > div > .ty-scroller-list {
  display: inline-block !important;
}
#content_product_tab_12 .ty-scroller-list__item .ty-pict {
  display: block !important;
}
.skroutz .ty-mainbox-title > span {
  text-transform: uppercase;
}
#content_product_tab_12 .ty-mainbox-title {
  display: none;
}
.tab_bar_product > a img,
.tab_bar_product > a div {
  float: left;
}
.tab_bar_descr {
  font-size: 18px !important;
  margin-top: 10px;
  width: 683px;
  color: #000;
}
.tab_bar_w .whenfixed > div {
  display: inline-block;
}
.tab_bar_add_to_cart.clearfix {
  float: right;
  margin-top: 24px;
}
.tab_bar_w .add-to-cart-product {
  margin-top: 0;
}
.owl-next {
  right: 2px;
  position: absolute;
  top: 75px;
  z-index: 50;
}
.owl-prev {
  left: -13px;
  position: absolute;
  top: 75px;
  z-index: 50;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(11):hover > .ty-menu__submenu .ty-top-mine__submenu-col {
  width: 257px;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(11):hover > .ty-menu__submenu {
  top: -180px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:nth-child(11):hover > .ty-menu__submenu {
  top: -176px;
}
.button-add-to-the-cart .add_to_wishlist_para > .ty-btn {
  z-index: 0;
}
.float-left.right-part.new_subscriber_info > h4 {
  font-weight: 300;
  margin-top: 33px;
}
.newsletter_popup_content_new_subscriber .plus_popup.newsletter_popup h4,
.newsletter_popup_content_new_subscriber .plus_popup.newsletter_popup p {
  color: #ffffff;
}
.mitem_1550 .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col .ty-menu__submenu-item-header {
  position: relative;
}
.mitem_1550 .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col .ty-menu__submenu-item-header::before {
  bottom: -2px;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 13px;
  z-index: 3;
  left: -5px;
}
.mitem_1550 .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col .ty-menu__submenu-item-header::after {
  bottom: -2px;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 13px;
  z-index: 3;
  right: -5px;
}
.new_subscriber_info_fb_prom .pop-fb-like {
  color: #000000 !important;
  font-weight: 300;
}
#fancybox-close.newsletter_popup_content_new_subscriber:hover:after {
  color: #808080 !important;
}
#fancybox-close.newsletter_popup_content_new_subscriber:after {
  content: "";
  font-family: "glyphs";
  color: #ededed !important;
}
#fancybox-close.newsletter_popup_content_new_subscriber {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
}
.newsletter_popup_content_new_subscriber .plus_popup.newsletter_popup {
  overflow: visible !important;
  background: #fff;
}
.newsletter_popup_content_new_subscriber .float-left.new_subscriber_info > .coupon-row {
  font-size: 21px !important;
  width: 223px !important;
}
.newsletter_popup_content_new_subscriber .coupon-row {
  background: #fe737b none repeat scroll 0 0;
  padding: 10px;
  width: 100% !important;
}
.new_subscriber_added .float-left.right-part.new_subscriber_info > .coupon-row {
  color: #ffffff !important;
}
.float-left.right-part.new_subscriber_info > h4 {
  margin-top: 31px;
}
.skroutz.smartphone .ty-mainbox-body {
  position: relative;
}
.skroutz .owl-theme.ty-owl-controls {
  position: unset;
}
.products-view .product-after-details .add-to-cart-product {
  width: 198px;
}
.smartphone {
  display: none !important;
}
.blog-carousel .owl-theme.ty-owl-controls {
  display: none;
}
.ty-blog__read-more .ty-btn.ty-btn__secondary {
  background: #000000 none repeat scroll 0 0;
}
.ty-blog__read-more .ty-btn.ty-btn__secondary:hover {
  background: #fe737b none repeat scroll 0 0;
  color: #fff !important;
}
.touch .ty-value-changer__increase,
.touch .ty-value-changer__decrease {
  position: relative !important;
  float: right !important;
  width: 14px !important;
  height: 14px !important;
  border: 1px solid #c2c9d0 !important;
  color: #c2c9d0 !important;
  font-size: 16px !important;
  line-height: 14px !important;
  background: #fff !important;
}
.touch .ty-value-changer__input {
  float: left !important;
}
.touch .ty-center.ty-value-changer.cm-value-changer {
  height: 33px !important;
  width: 53px !important;
}
.ty-simple-list .ty-discount-label::before {
  background: none !important;
}
.ty-simple-list .ty-discount-label::after {
  background: none !important;
}
.checkout-cart .ty-scroller-list .product-title {
  height: 62px;
}
.notification-content-extended .free-shipping-estimation:empty {
  display: none;
}
.notification-content-extended .ty-mainbox-container h1 {
  border-bottom: none !important;
  border-top: 1px solid #d9d9d9 !important;
  margin: 0 auto !important;
  width: 94%;
}
.notification-body-extended .ty-mainbox-title {
  height: unset !important;
}
.notification-content-extended h1 span:hover {
  color: #acacac !important;
}
.safari .notification-content-extended h1:hover {
  color: #acacac !important;
}
.safari .notification-content-extended h1 {
  overflow: visible !important;
}
.float-left.right-part.new_subscriber_info {
  background-color: #fff;
  margin-bottom: 15px;
  margin-top: 30px !important;
}
#fancybox-close.newsletter_popup_content::after {
  color: #ffffff;
  content: "";
  font-family: 'glyphs';
}
#fancybox-close.newsletter_popup_content:hover::after {
  color: #808080;
}
#fancybox-close.newsletter_popup_content {
  background: none !important;
  font-size: 20px !important;
  height: 16px;
  width: 16px;
}
.plus_popup.newsletter_popup .logo-image {
  text-align: center;
  padding: 19px 0 17px;
}
#fancybox-close {
  background: transparent url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/close-button.png?1753621501') no-repeat scroll 0 0 !important;
  right: 0;
}
.header-info .phone {
  font-size: 14px;
  margin-left: 5px;
}
.header-info .free-ship {
  color: red;
  font-weight: 600;
}
.tygh-top-panel.clearfix {
  background: #ededed;
}
.header-info {
  margin: 7px 0;
}
.ty-menu__items {
  background: #fff !important;
}
.span16.logo-row {
  padding: 3px 0;
}
.tygh-header > div {
  padding-top: 0px !important;
}
.tygh-header .container-fluid .row-fluid:first-child {
  margin-bottom: 0;
}
.number-of-products-and-brands {
  padding-top: 30px;
  font-size: 15px !important;
}
.free-shipping-header-promo {
  margin-left: 15px;
  text-align: center;
  position: relative;
}
.top-cart-content .cm-popup-box.ty-dropdown-box__content:before {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #ffffff;
  border-style: solid;
  border-width: 0 15px 11px;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: -11px;
  z-index: 602;
}
.top-cart-content .cm-popup-box.ty-dropdown-box__content:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #FE7A81;
  border-style: solid;
  border-width: 0 15px 11px;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: -14px;
  z-index: 601;
}
.everyday_products .ty-scroller-list__description > .ty-simple-list .product-title {
  height: 60px;
}
.top-menu .ty-menu__submenu-items.level-2.alphabeta-index .level-3.ty-menu__submenu-list > li .texti {
  color: #000;
}
.page-199 .ty-features-all .ty-subheader {
  color: #666666;
}
.page-199 .ty-features-all {
  margin-top: 21px;
}
.half-page-banner-text .ty-pict.ty-banner__image {
  transition: all 1s ease 0.1s;
}
.half-page-banner-text .ty-banner__image-wrapper:hover img {
  transform: scale(1.1);
  transition: all 1s ease 0.1s;
}
.free_sample_icon {
  transition: all 0.2s ease 0.1s;
}
.exeggya {
  text-align: center;
}
.cart-content-info-message .work-hours span {
  color: #000000;
  font-weight: 300;
}
.ty-cart-items__list-item-desc > span {
  display: block;
}
.search-header {
  margin-top: 1.8%;
}
.top-account .ty-mainbox-simple-title {
  text-align: center;
}
.top-account > .ty-mainbox-simple-container.top-my-account {
  padding-top: 6px;
}
.span3.top-account {
  margin-left: 0px;
}
.ty-grid-list__control .add_to_wishlist_para {
  display: none;
}
.search-header .ty-search-block__input.cm-hint {
  height: 38px;
}
.newsletter .ty-input-text .cm-hint {
  height: 36px !important;
}
.search-header .ty-search-block__input.cm-hint-focused {
  height: 38px;
}
.main-above-exxegya-banners .left,
.main-above-exxegya-banners .right {
  width: 598px !important;
}
.main-above-exxegya-banners .right {
  margin-left: 4px !important;
}
.our-brands-grid {
  margin-bottom: 0 !important;
}
.main-above-exxegya-banners .left .ty-pict.ty-banner__image:hover,
.main-above-exxegya-banners .right .ty-pict.ty-banner__image:hover {
  transform: scale(1.05);
  transition: all 0.8s ease 0.1s;
}
.main-above-exxegya-banners .left .ty-pict.ty-banner__image,
.main-above-exxegya-banners .right .ty-pict.ty-banner__image {
  transition: all 1s ease 0.1s;
}
.exeggya-under-slider .exeggya > .item-exeggya {
  position: relative;
}
.header-exeggya .tooltip-message {
  bottom: -64px !important;
}
.exeggya-under-slider .exeggya .tooltip-message,
.header-exeggya .tooltip-message {
  background: rgba(102,102,102,0.9) none repeat scroll 0 0;
  bottom: -56px;
  left: 43px;
  padding: 12px;
  position: absolute;
  z-index: 1;
}
.header-exeggya > .item-exeggya > a > div {
  display: inline-block;
}
.header-exeggya > .item-exeggya > a > div > img {
  left: -3px;
  position: relative;
  top: -12px;
}
.exeggya-under-slider .exeggya .tooltip-message::after,
.header-exeggya .tooltip-message::after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(102,102,102,0.9);
  border-style: solid;
  border-width: 0 15px 11px;
  content: "";
  display: block;
  left: 45%;
  position: absolute;
  top: -11px;
  z-index: 602;
}
.exeggya-under-slider .exeggya > .item-exeggya:hover .tooltip-message,
.header-exeggya > .item-exeggya:hover .tooltip-message {
  display: block !important;
}
.exeggya-under-slider .exeggya .tooltip-message a:hover,
.header-exeggya .tooltip-message a:hover {
  color: #fe737b !important;
}
.exeggya-under-slider .exeggya .tooltip-message span,
.exeggya-under-slider .exeggya .tooltip-message a,
.header-exeggya .tooltip-message span,
.header-exeggya .tooltip-message a {
  color: #fff !important;
}
.exeggya-under-slider .exeggya .tooltip-message,
.header-exeggya .tooltip-message {
  display: none !important;
  position: absolute;
}
.header-exeggya .tooltip-message {
  left: 101px !important;
}
.header-exeggya > .item-exeggya:nth-child(2) > .exeggya-text > span:first-child {
  font-weight: 600;
}
.exeggya-under-slider .exeggya .tooltip-message,
.header-exeggya .tooltip-message {
  display: none;
}
.exeggya-under-slider .exeggya-text > span {
  font-size: 17px;
}
.products-view .ty-product-block__left h1 {
  font-size: 18px;
  color: #000000;
  font-weight: 400;
}
.relative.clearfix.descr_main_col {
  font-weight: 600;
  color: #666;
}
.ty-discussion__rating-wrapper .ty-discussion__review-write.cm-dialog-opener.cm-dialog-auto-size {
  color: #000000 !important;
  text-decoration: underline;
  text-decoration-style: dotted;
}
.ty-product-block__left .brand > .ty-features-list {
  color: #000000 !important;
}
.ty-product-block__sku > .ty-sku-item label,
.ty-product-block__sku > .ty-sku-item span {
  font-size: 14px;
  color: #000000;
}
.ty-product-block__left .ty-list-price > .list-price-label {
  color: #000000;
}
.ty-product-prices [id^="old_price_update_"] span {
  font-size: 15px !important;
}
.ty-product-block__left .relative.clearfix p,
.ty-product-block__left .relative.clearfix li {
  color: #666;
}
.ty-search-block .cm-quick-search.ty-search-block__input.cm-hint {
  padding: 7px 30px 0px 0px !important;
}
.ty-search-block .cm-quick-search.ty-search-block__input.cm-hint {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #000;
}
.ty-search-block .cm-quick-search.ty-search-block__input.cm-hint-focused {
  border-top: 1px solid #fff !important;
  border-left: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #000;
}
.exeggya-under-slider .exxegy-footer-inner {
  box-shadow: none !important;
}
.exeggya-under-slider .item-exeggya {
  display: inline-block;
  text-align: center;
  width: 24%;
}
.top-cart-content .ty-dropdown-box {
  float: right;
}
.ty-search-magnifier {
  border: medium none;
  color: #c2c9d0;
  cursor: pointer;
  font-size: 170% !important;
  height: 35px;
  padding: 0;
  position: absolute;
  right: -31px;
  top: 2px;
  width: 55px;
}
.all-categories-header-toolbar .cats-title > span {
  font-size: 24px;
}
.all-categories-header-toolbar .cats-title i {
  font-size: 25px;
  margin-right: 6px;
}
.all-categories-header-toolbar .cats-title {
  color: #ffffff;
}
.all-categories-header-toolbar-outer {
  background: #ededed none repeat scroll 0 0;
}
.all-categories-header-toolbar {
  margin-top: 13px;
  text-align: center;
}
.sneak-peak-cart > p,
.sneak-peak-cart > a {
  display: inline;
}
.top-cart-content .cart-price {
  font-size: 21px;
  color: #000 !important;
}
.sneak-peak-cart > .cart-price {
  color: #ffffff;
}
.span3.top-account {
  margin-top: 2.1%;
}
.ty-search-block .ty-search-magnifier .ty-icon-search::before {
  color: #BF087F;
}
.ty-dropdown-box__title {
  padding-top: 1px;
}
.free-shipping-header-promo > div {
  display: inline-block;
}
.text-free-shipping {
  position: relative;
  top: 7px;
}
.free-shipping-header-promo .inside-second-row {
  font-weight: 600;
}
.text-free-shipping .first-row {
  font-weight: 600;
}
.span6.shipping-promo {
  margin-top: 1.7%;
}
.top-cart-content.ty-float-right {
  float: none;
  text-align: center;
}
.top-menu > .ty-menu__items > .ty-menu__item:nth-child(9):hover a {
  border-color: #ffffff !important;
}
.top-menu > .ty-menu__items > .ty-menu__item:nth-child(9):hover {
  background: #EA0202 !important;
}
.top-menu > .ty-menu__items > .ty-menu__item:nth-child(9):hover a {
  border-color: #ffffff !important;
}
.top-links-grid .logo-box.ty-float-right {
  margin-right: 24px;
}
.top-menu > .ty-menu__items > li.ty-menu__item > {
  padding: 0 !important;
}
.top-menu > .ty-menu__items > li.ty-menu__item > a.ty-menu__item-link {
  padding: 13px 8px !important;
}
.top-menu > .ty-menu__items > li.ty-menu__item:hover > a > span {
  color: #fff;
  position: relative;
  z-index: 3;
}
.top-menu > .ty-menu__items > .ty-menu__item {
  padding: 0;
  width: 20%;
  text-align: center;
}
.top-menu > .ty-menu__items > .ty-menu__item:nth-child(2) a {
  border-left: medium none !important;
}
.cm-quick-search.ty-search-block__input.csc_no_transition.cm-hint-focused {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.main-menu-para .ty-menu__items .ty-menu__item {
  position: unset;
  position: relative;
}
.main-menu-para .ty-menu__item-link {
  transition: unset !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items {
  border: none !important;
  width: unset !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:hover .ty-menu__submenu {
  padding: 0 !important;
  width: 269px !important;
  top: -1px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:hover > .ty-menu__submenu-item-header.no-children::after {
  border: none !important;
}
.main-menu-para .ty-menu__submenu-items .ty-menu__submenu-link:hover {
  font-weight: 400;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > .ty-menu__submenu-item:hover {
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #ED7DC6;
  background: #ED7DC6;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > .ty-menu__submenu-item {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header {
  min-height: unset !important;
  position: relative;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:hover > div > a {
  color: #ffffff !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > div > a {
  font-weight: 400 !important;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col {
  padding: 12px 0px 11px 40px !important;
}
.top-menu .ty-menu__item.cm-menu-item-responsive.hovered > .ty-menu__submenu {
  z-index: 101;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col {
  background: #ffffff;
  padding: 11px 0px 10px 40px !important;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  min-width: unset !important;
  position: relative;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:hover > a {
  color: #ffffff !important;
  position: relative;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:last-child:hover > a::after {
  border: medium none;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:hover {
  background: #bf087f !important;
  border-bottom: 1px solid #f1f1f1;
  border-top: 1px solid #bf087f;
  color: #ffffff;
}
.sitemap-view a:hover {
  text-decoration: underline;
}
.ty-blog__item {
  border-bottom: 1px solid #edeff1;
}
.brands-in-search-toolbar .see-all-brands {
  display: block;
}
.chrome .main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > .ty-menu__submenu-item {
  padding: 13px 0 12px 40px !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > .ty-menu__submenu-item {
  padding: 12px 0 11px 40px !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > .ty-menu__submenu-item:hover > .ty-menu__submenu-link {
  color: #ffffff !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > .ty-menu__submenu-item > .ty-menu__submenu-link {
  font-size: 15px !important;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:last-child:hover > a::after {
  background: none !important;
  border-color: unset !important;
}
.social-footer .ty-wysiwyg-content > ul {
  text-align: center;
  margin: 7px 0 12px;
}
.span3.cart-content-grid {
  margin-left: 14px !important;
}
.profile-controls .ty-float-right .ty-btn.ty-btn__secondary {
  margin-left: 0 !important;
}
#tygh_footer .span16.map-footer {
  max-width: unset !important;
}
.cart-content-grid .top-cart-content .ty-dropdown-box__title {
  padding-bottom: 0;
  padding-top: 7px;
  width: 100%;
}
#tygh_footer .ty-footer-grid__full-width > .row-fluid > .map-footer {
  -moz-box-shadow: inset 0 0 10px #000000;
  -webkit-box-shadow: inset 0 0 10px #000000;
  box-shadow: inset 0 0 10px #000000;
}
.sneak-peak-cart > p {
  padding: 0;
}
.cart-content-grid .top-cart-content > .ty-dropdown-box {
  width: 100% !important;
}
.social-footer {
  margin-bottom: 6px !important;
}
.social-footer .ty-wysiwyg-content > ul li {
  display: inline-block;
  margin-right: 8px;
}
.span5.number-of-products-header {
  margin-left: 0 !important;
}
.ty-logo-container {
  text-align: left;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:hover > .ty-menu__submenu-item-header::after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #BF087F;
  border-style: solid;
  border-width: 21px 0 22px 24px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: -24px;
  top: -12px;
  width: 0;
  z-index: 1000;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:hover > a::after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #7F135E;
  border-style: solid;
  border-width: 21px 0 22px 24px;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: -24px;
  top: 0;
  width: 0;
  z-index: 1000;
}
.main-menu-para > .ty-menu__items > .ty-menu__item:hover {
  background: #7F135E;
}
.main-menu-para .ty-menu__submenu {
  position: absolute;
  right: 0;
  top: 0;
}
.ty-menu__item.cm-menu-item-responsive.prosfores {
  position: relative;
}
.ty-menu__item.cm-menu-item-responsive.prosfores:after {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/Veli_DIAFANH.png?1753621501') no-repeat scroll 0 0;
  position: absolute;
  display: block;
  content: "";
  width: 55px;
  height: 44px;
  right: 19px;
  top: 0;
}
.ty-menu__item.cm-menu-item-responsive.prosfores a {
  color: #ffffff !important;
  font-weight: 600 !important;
}
.ty-menu__item.cm-menu-item-responsive.prosfores:hover {
  background: #82BC3C none repeat scroll 0 0 !important;
}
.ty-menu__item.cm-menu-item-responsive.prosfores {
  background: #7bac40 none repeat scroll 0 0 !important;
}
.no-touch .top-menu .ty-menu__item:hover .ty-menu__item-link,
.top-menu .is-hover-menu .ty-menu__item-link,
.top-menu .is-hover-menu.ty-menu__item-active .ty-menu__item-link {
  color: #fff !important;
}
.span16.index-top-banners-under-menu {
  margin-top: 9px;
}
.top-menu .ty-menu__items .ty-menu__item .ty-menu__item-link {
  padding: 2px 10px !important;
  min-height: 15px;
  color: #000000 !important;
}
.main-menu-para .ty-menu__item:hover .hover {
  display: inline-block;
}
.main-menu-para .ty-menu__item:hover .neutral {
  display: none;
}
.main-menu-para .ty-menu__item-link .hover {
  display: none;
}
.main-menu-para > .ty-menu__items > .ty-menu__item .ty-menu__item-link {
  font-weight: 400;
}
.top-menu .ty-menu__item {
  padding: 10px 0;
}
.top-menu > .ty-menu__items > .ty-menu__item > a:hover::before {
  height: 100%;
  z-index: 1;
}
.top-menu > .ty-menu__items > .ty-menu__item > a::before {
  background-color: #fe737b;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 0;
  left: 0px;
  position: absolute;
  transition: height 0.3s ease-out 0s, background-color 0.3s ease-out 0s;
  width: 100%;
  z-index: -1;
}
.ty-menu__items .ty-menu__item .ty-menu__item-link {
  margin: 0 0px;
  padding: 4px 10px !important;
  font-weight: 600;
  margin-right: 0;
}
.ty-menu__item a.ty-menu__item-link {
  font-size: 17px !important;
  color: #000;
  font-weight: normal !important;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu {
  background: unset !important;
}
.ty-menu__submenu-items.cm-responsive-menu-submenu {
  background: #ededed none repeat scroll 0 0;
}
.ty-menu__submenu-items.level-2 {
  border: none !important;
}
.main-menu-para .ty-menu__submenu-item-header {
  border-bottom: medium none;
}
.top-menu .ty-menu__submenu > .ty-menu__submenu-list > li {
  padding-left: 6px;
}
.ty-menu__submenu-item-header a {
  font-size: 15px !important;
  font-weight: 600 !important;
}
.top-menu .ty-menu__submenu-list.level-3 > li.ty-menu__submenu-item {
  display: inline-block;
  float: left;
}
.top-menu .ty-menu__submenu-items.level-2 > .ty-top-mine__submenu-col > .ty-menu__submenu {
  position: absolute;
  left: 0;
  right: 0;
  box-shadow: -5px 3px 9px rgba(120,120,120,0.082), 5px 3px 9px rgba(120,120,120,0.082);
}
.top-menu > .ty-menu__items > .ty-menu__item > a.ty-menu__item-link > span {
  text-transform: uppercase;
}
.ty-search-magnifier:hover {
  background: none;
}
.top-my-account i {
  color: #5F5F5F;
  top: 0;
}
.top-my-account i.ty-icon-up-open {
  display: none;
}
.top-menu .ty-menu__submenu-items {
  background: unset !important;
}
.top-my-account.open i.ty-icon-down-open {
  display: none;
}
.top-my-account.open i.ty-icon-up-open {
  display: block;
}
.top-menu-grid .ty-search-magnifier:hover .ty-icon-search::before {
  color: #541343;
}
.three-banners .ty-pict {
  transition: all 1s ease 0.1s;
}
.three-banners .ty-pict:hover {
  transform: scale(1.1);
}
.ty-top-mine__submenu-col {
  margin-bottom: 17px !important;
}
.top-menu .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col:first-child {
  margin-left: 0px !important;
}
.top-menu .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col {
  margin-left: 6px !important;
}
.index-top-banners-under-menu .ty-banner__image-wrapper {
  display: inline;
}
.index-top-banners-under-menu div:last-child {
  margin-left: 6px;
}
.ty-menu__item.cm-menu-item-responsive.ty-menu__item-active .ty-menu__item-link > .hover {
  display: inline-block;
}
.ty-menu__item.cm-menu-item-responsive.ty-menu__item-active .ty-menu__item-link > .neutral {
  display: none;
}
.ty-menu__item.cm-menu-item-responsive.ty-menu__item-active a span {
  color: #fff;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__item-link {
  transition: none 0s ease 0s !important;
}
.ty-product-block__left .add-to-cart-product-button .ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.ty-btn {
  width: 100%;
  font-size: 16px;
  transition: none !important;
}
.our-brands-grid .newsletter {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/images/newsletter_bg_mypharmacy.png?1753621501') no-repeat scroll center center;
  height: 226px;
}
.ty-menu__item-active .ty-menu__item-link {
  background: none !important;
  color: #ffffff !important;
}
.ty-dropdown-box__title:hover {
  background-color: #fff;
}
.ty-dropdown-box__title a {
  color: #000;
}
.cart-wishlist span {
  color: #000000;
}
.cart-content-grid .ty-dropdown-box__title:hover {
  background: #BF087F !important;
}
.cart-content-grid .ty-dropdown-box__title:hover {
  border-top: 1px solid #BF087F !important;
  border-bottom: 1px solid #BF087F !important;
}
.tygh-top-panel .ty-account-info__buttons.buttons-container a {
  display: inline-block !important;
  width: auto;
  color: #000;
}
.tygh-top-panel .ty-account-info__buttons.buttons-container {
  padding: 0 !important;
}
.logo-box.ty-float-left {
  float: none;
  padding-right: 19px;
}
.ty-menu__submenu-items .ty-menu__submenu-link {
  transition: width 2s ease 0s;
}
.top-menu .ty-menu__submenu-items .ty-menu__submenu-item:hover > .ty-menu__submenu-link {
  color: #fe737b !important;
  display: block;
}
.top-menu .ty-menu__item .ty-menu__submenu-items.alphabeta-index > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header > .ty-menu__submenu-link:hover {
  text-decoration: none;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > li > a {
  font-weight: bold;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > li:hover::after {
  background: #fe737b none repeat scroll 0 0;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: relative;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.ty-menu__submenu-items-simple:hover:after {
  height: 0px;
}
.top-menu > .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items:hover:after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: #d7d7d7;
  position: absolute;
  bottom: 0;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > li:hover::after {
  background: #fe737b none repeat scroll 0 0;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > li:hover {
  border-bottom: none;
}
.top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > li {
  background: #ededed;
  min-width: 135px;
  padding: 0 !important;
  border-bottom: 2px solid #ededed;
}
.brands-in-search-toolbar .see-all-brands:hover {
  background: #000;
}
.brands-in-search-toolbar .ty-product-filters .ty-product-filters__search-icon.ty-icon-cancel-circle {
  right: 7px;
  top: 13px;
}
.brands-in-search-toolbar .ty-product-filters__wrapper .ty-product-filters {
  margin-bottom: 5px;
}
.brands-home-page .ty-product-filters__group {
  padding-left: 7px;
}
.brands-home-page .ty-product-filters__block i.ty-product-filters__switch-right {
  display: none;
}
.ty-product-filters__switch-right,
.ty-product-filters__switch-down {
  color: #000000 !important;
}
.brands-home-page > .cm-product-filters {
  margin-top: 18px;
}
.brands-home-page .ty-product-filters__title {
  color: #ffffff;
  font-size: 19px;
  font-weight: bold;
}
.brands-homepage-inner .ty-product-filters__wrapper {
  background: none !important;
}
.brands-homepage-inner {
  background: none !important;
}
.brands-home-page .squaredTwo {
  float: none;
}
.brands-homepage-inner li {
  margin: 0;
}
.brands-in-search-toolbar .see-all-brands {
  background: #fe737b none repeat scroll 0 0;
  text-align: center;
  padding: 4px 0;
}
.brands-in-search-toolbar .see-all-brands > a {
  color: #ffffff !important;
  display: block;
}
.brands-home-page .ty-product-filters__title {
  color: #4d4d4f !important;
}
.brands-home-page .see-all-brands {
  background: #fe737b none repeat scroll 0 0;
  text-align: center;
}
.brands-in-search-toolbar .brands-homepage-inner {
  height: 467px;
}
.brands-homepage-inner {
  height: 398px;
  margin-top: 25px;
  border-radius: 7px;
}
.brands-homepage-inner .ty-product-filters__variants.cm-filter-table {
  max-height: 24em !important;
}
.brands-homepage-inner .ty-product-filters__switch {
  border-bottom: none !important;
}
.cm-autocomplete-off.ty-input-text-medium {
  height: 40px;
}
.brands-homepage-inner .ty-product-filters__item-more li {
  border-bottom: 1px dotted #000;
}
.brands-homepage-inner .squaredTwo {
  border: medium none !important;
  padding: 5px 0;
  width: 100% !important;
  padding-bottom: 0;
}
.categories-view .ty-product-filters__search {
  padding: 10px 0 0;
}
.brands-in-search-toolbar .squaredTwo:hover a {
  color: #fe737b !important;
}
.brands-homepage-inner .ty-product-filters__item-more li {
  margin-right: 9px;
}
.ty-sidebox.skroutz .ty-template-small .form-field.product-list-field,
.ty-sidebox.skroutz .ty-template-small .ty-nowrap.ty-stars {
  display: inline-block;
}
.ty-product-filters__search .ty-product-filters__search-icon.ty-icon-cancel-circle {
  top: 23px;
}
.brands-homepage-inner .ty-product-filters__search {
  padding: 10px 6px 0 0;
}
.best-price > img,
.online_seal img {
  border: medium none !important;
}
.brands-homepage-inner .ty-product-filters__block .ty-product-filters__switch {
  padding-bottom: 0;
  padding-top: 0;
}
.brands-home-page .ty-product-filters__group .squaredTwo a {
  color: #000000 !important;
}
.three-banners div:first-child {
  margin-left: 0;
}
.three-banners div {
  display: inline-block;
  margin-left: 15px;
}
.ty-menu__submenu-items.cm-responsive-menu-submenu {
  left: 0;
}
.ty-product-block__left .relative.clearfix li {
  list-style: inside;
}
.Everyday .under-title {
  display: block;
}
.Everyday .owl-theme.ty-owl-controls {
  position: inherit !important;
}
.Everyday .ty-mainbox-body {
  position: relative !important;
}
.info-field-body > table {
  margin-bottom: 9px;
}
.Everyday .owl-prev {
  top: 150px;
}
.Everyday .owl-next {
  top: 150px;
}
.everyday_products .ty-scroller-list__item {
  border: 1px solid #fff;
}
.everyday_products .ty-scroller-list__item:hover {
  border: 1px solid #d3d3d3 !important;
}
.everyday_products .ty-simple-list__price [id^="price_update"].ty-price-update {
  margin-right: 0 !important;
}
.everyday_products .ty-simple-list__price [id^="price_update"].ty-price-update span {
  color: #fe737b !important;
}
.everyday_products .ty-simple-list__price [id^="old_price_update"] {
  margin-left: 4px;
}
.checkout-checkout .ty-caret-info .ty-caret-outer {
  border-bottom: 7px solid #ededed !important;
}
.checkout-cart .ty-caret-info .ty-caret-outer {
  border-bottom: 7px solid rgba(128,128,128,0.24) !important;
}
.checkout-cart .buttons-container.ty-cart-content__bottom-buttons {
  padding-right: 0;
}
.checkout-cart .buttons-container.ty-cart-content__top-buttons {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.inner-left-cart_total .ty-coupons__list.ty-discount-info {
  box-shadow: 0 1px 3px rgba(128,128,128,0.12), 0 1px 3px rgba(128,128,128,0.24) !important;
  border: 1px solid rgba(128,128,128,0.24) !important;
}
.ty-product-block__sku .ty-control-group__label {
  margin-right: 5px !important;
}
.product_block_right .ty-sidebox__title,
#fixme .ty-sidebox__title {
  border-bottom: none !important;
}
.product_block_right .ty-template-small__item,
#fixme .ty-template-small__item {
  border-bottom: none !important;
}
.everyday_products .list-price-label {
  display: none !important;
}
.everyday_products [id^="sku_update_"] {
  display: none !important;
}
.everyday_products h2 {
  text-align: center;
}
.everyday_products hr.under-tile {
  display: block !important;
}
.everyday_products .ty-owl-controls {
  position: initial !important;
}
.everyday_products {
  position: relative;
}
.everyday_products .owl-prev {
  top: 215px;
}
.everyday_products .owl-next {
  top: 215px;
}
.everyday_products .ty-discount-label {
  display: none;
}
#fixme .list-price-label {
  display: none;
}
.ty-breadcrumbs__a > span {
  color: #808080;
}
.ty-breadcrumbs > span:last-child span {
  font-weight: 600;
}
#sorting_placeholder .fa.fa-angle-down,
#sorting_placeholder > div > a {
  color: #808080 !important;
}
.product_block_right .ty-list-price.ty-save-price.ty-nowrap,
#fixme .ty-list-price.ty-save-price.ty-nowrap {
  font-size: 14px;
}
.product_block_right .list-price-label {
  display: none !important;
}
.list_discount_block {
  margin-top: 0px;
}
.everyday_products .owl-item {
  margin-bottom: 1px;
}
.product_block_right .product-list-field .ty-control-group__item.avail {
  margin-left: 0 !important;
}
.product_block_right .ty-template-small .ty-nowrap.ty-stars {
  margin-right: 0;
}
.ty-template-small__item-price .ty-price > span {
  font-size: 20px;
}
.products-view .ty-template-small__item-description .ty-nowrap.ty-stars,
.products-view .ty-template-small__item-description .form-field.product-list-field {
  display: inline-block !important;
}
.everyday_products .list_discount_block span,
#fixme .list_discount_block span,
.product_block_right .list_discount_block span {
  color: #000 !important;
  font-weight: 400;
}
.list_discount_block .ty-save-price > .other_col > [id^="prc_discount_value_"] {
  color: #fe737b !important;
}
.ty-billing-zip-code,
.ty-shipping-zip-code {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.profiles-add .ty-profile-field__buttons.buttons-container {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.page-61 .ty-form-builder__buttons.buttons-container {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.page-30 .ty-form-builder__buttons.buttons-container {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.buttons-container.login-recovery {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.payment-methods-product .ty-wysiwyg-content ul li {
  list-style-type: none !important;
  font-size: 13px !important;
}
.payment-methods-product td.second .ty-control-group__item .tracking-link-product-info:hover {
  color: #f3737b !important;
  text-decoration: none !important;
}
.second #go_to_payments {
  color: #666 !important;
  font-size: 11px !important;
  font-weight: 300;
}
.payment-methods-product .ty-control-group__item > #return-shipp-product {
  font-size: 11px !important;
}
.payment-methods-product .ty-control-group__item > #ship_at_product_page {
  font-size: 11px !important;
}
.payment-methods-product .ty-wysiwyg-content ul {
  padding-left: 0 !important;
  text-align: left;
}
#content_product_tab_12 .list-price-label {
  display: none;
}
#content_product_tab_12 .list_discount_block span,
.grid-list .list_discount_block span {
  color: #000 !important;
}
.grid-list .list-price-label {
  display: none;
}
.product-list-wishlist .fa.fa-heart-o {
  color: #000000;
}
.product-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  position: inherit;
}
.product-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button:hover i {
  color: #ffffff;
}
.product-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button:hover {
  background: #fe737b none repeat scroll 0 0;
}
.product-list-wishlist .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  border-radius: 50%;
}
.product-list-wishlist .fa.fa-heart-o {
  color: #000000;
  left: 2px;
  position: relative;
}
.grid-list .ty-grid-list__item-name {
  overflow: hidden;
}
.chrome .grid-list .ty-grid-list__item-name .prod-amount {
  margin-top: 3px;
  margin-bottom: 3px;
}
.grid-list .ty-grid-list__item-name .prod-amount {
  margin-top: 2px;
  margin-bottom: 1px;
}
.grid-list .ty-grid-list__price {
  height: 42px;
  margin-top: 1px !important;
}
.grid-list .add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big {
  padding: 6px 50px;
}
.ty-product-list .ty-product-list__price .list_discount_block span {
  color: #000000 !important;
}
.ty-product-list .product-list-field .ty-control-group__item.avail {
  margin-left: 1px !important;
}
.notification-body-extended .ty-simple-list__price .list-price-label {
  display: none !important;
}
.notification-body-extended .ty-simple-list__price .list_discount_block {
  display: none !important;
}
.incognito-oroi-xrisis {
  display: none;
}
.checkout-checkout .incognito-oroi-xrisis {
  display: block;
  margin-top: 0;
}
.checkout-checkout .ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front {
  max-height: 730px;
}
.product_block_right .ty-btn.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart.cm-form-dialog-closer.cm-submit.text-button {
  padding: 2px 24px;
}
#fixme .add-to-cart-product {
  text-align: unset !important;
  width: 100% !important;
}
.categories-view .ty-grid-list__control,
.product_features-view .ty-grid-list__control {
  margin-bottom: 10px;
}
.categories-view .ty-control-group__item.avail {
  margin-left: 0;
}
.ty-table tbody tr:nth-child(2n) {
  background: #fff !important;
}
.ty-cart-statistic__total-value-saved {
  float: right;
}
.ty-cart-statistic__item.ty-cart-statistic__total_saved span {
  color: #fe737b;
  font-weight: 400;
  font-size: 15px;
}
.ty-cart-statistic__total .ty-cart-statistic__total-title {
  margin-right: 20px;
}
.ty-cart-statistic__total_saved .ty-cart-statistic__total-title-saved {
  float: left;
  margin-right: 20px;
}
.ty-payments-list__description {
  font-size: 12px !important;
}
.span5.like-top-button {
  margin-top: 6px;
}
ul.ty-cart-statistic li > span:last-child {
  float: right;
}
.ty-product-list .ty-discount-label {
  display: none;
}
.ty-product-list .ty-price span {
  font-size: 30px;
}
.ty-price-update .ty-price span {
  color: #4d4d4f;
}
.blog-carousel h1 {
  text-align: center !important;
}
.ty-cart-statistic__item.ty-cart-statistic__total_saved {
  margin-top: 3px;
}
.ty-cart-statistic__total-value-saved span {
  font-size: 16px !important;
}
.ty-product-list__description ul {
  display: none;
}
.prices-container [id^="line_discount_update_"] span {
  color: #fe737b !important;
  font-weight: 400;
  font-size: 15px;
}
.ty-product-block__left .ty-product-prices > [id^="clean_price_update_"] {
  display: none;
}
.ty-product-block__left [id^="old_price_update_"] {
  margin-bottom: 0 !important;
}
.ty-product-block__left [id^="line_discount_update_"] {
  margin-top: 0 !important;
}
.ty-discussion-post__buttons.buttons-container {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.ty-sidebox.skroutz {
  margin-top: 24px;
}
.cart-content-grid .ty-dropdown-box__content {
  border-color: #c2c9d0;
  top: 59px;
  right: -13px;
}
.tooltip {
  background: rgba(0,0,0,0.9) none repeat scroll 0 0 !important;
  border-radius: 0 !important;
  text-align: center;
}
.inner-shipping.for-free {
  text-align: center;
}
.top-account .buttons-container {
  background: #fff !important;
}
.ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item-active a {
  background: none;
  color: #006EC6 !important;
  padding: 0 !important;
}
.ty-dropdown-box__title.open {
  background: #ffffff !important;
}
.cart-content-grid .ty-dropdown-box__title.open {
  background: #BF087F !important;
}
.ty-dropdown-box__title.open .inner span {
  color: #5e5f5b !important;
}
.ty-menu__submenu .ty-menu__submenu {
  min-height: unset;
}
.ty-menu__submenu-items.cm-responsive-menu-submenu.ty-menu__items-show {
  border: medium none;
  box-shadow: none;
}
.ty-payments-list__instruction {
  display: none;
}
.ty-product-notification__content.clearfix {
  margin-top: 22px;
}
.grid-list .add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big {
  padding: 2px 0;
  width: 80%;
}
.ty-cart-statistic__total_saved .ty-cart-statistic__total-value-saved {
  width: 140px;
}
.ty-cart-statistic__total .ty-cart-statistic__total-title {
  float: left;
}
.ty-cart-statistic__total-value-saved {
  text-align: right;
}
.ty-discussion__review-write.cm-dialog-opener.cm-dialog-auto-size:hover {
  text-decoration: underline;
}
.tab_bar_descr {
  margin-left: 10px;
  margin-top: 34px;
}
.tab_bar_product > a img {
  margin-top: 10px;
}
.qsearch-result.border.cm-popup-box {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #ececec;
  border-image: none;
  border-left: 1px solid #ececec;
  border-right: 1px solid #ececec;
  left: 0 !important;
  position: absolute;
  top: 42px !important;
  z-index: 100;
}
.quick-search .cm-search-row .ty-pict {
  float: left;
}
.skroutz.smartphone .ty-mainbox-title > span {
  color: red;
}
.sign-out.ty-btn.ty-btn__primary {
  position: relative;
}
.footer-acount-info .ty-account-info__item.ty-dropdown-box__item {
  display: none;
}
.pages-view .ty-social-buttons {
  display: none;
}
.ty-blog-grid .ty-social-buttons.clearfix {
  display: block;
}
.ty-account-info__item.ty-dropdown-box__item {
  text-align: center;
}
.ty-account-info__item.ty-dropdown-box__item a {
  padding-left: 0 !important;
}
.checkout-checkout .ui-dialog .ui-dialog-titlebar {
  border-color: #BF087F !important;
}
.index-index .all-categories-header-toolbar-outer:hover {
  background: #ededed none repeat scroll 0 0 !important;
}
#tygh_footer a:hover img {
  background: #ffffff none repeat scroll 0 0;
}
.checkout-checkout .ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front {
  height: auto !important;
}
.hidden-title-terms_of_use {
  margin-top: 8px !important;
}
.ty-blog-sidebox__item > a:hover {
  text-decoration: underline;
}
.ty-blog-grid {
  text-align: justify;
}
.ty-blog__description {
  text-align: justify;
}
.ty-sidebox.blog-recent-inner h2 {
  margin-bottom: 0;
}
.span3.blog-recent h2 {
  margin-bottom: 0;
}
.quick-search.sortable > tbody {
  text-align: left !important;
}
.checkout-checkout .ui-dialog .ui-dialog-titlebar-close {
  top: -4px;
  right: 2px;
  outline: 0 !important;
}
.checkout-checkout .ui-button-icon-primary.ui-icon.ui-icon-closethick {
  color: #fff;
}
.ty-payments-list__item.paypal {
  position: relative;
}
.ty-customer-notes__title {
  font-weight: normal !important;
}
#review_body tr.maintable td:first-child {
  width: 56%;
}
#review_body .colapsed th:last-child {
  text-align: right;
}
.checkout-checkout .paypal::before {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/paypal-checkout.png?1753621501') no-repeat scroll 0 0;
  content: "";
  display: block;
  height: 44px;
  left: 17px;
  position: absolute;
  top: 22px;
  width: 119px;
}
#average_rating_product a:hover {
  text-decoration: underline;
}
.ty-cart-content .ty-product-options.ty-group-block {
  display: none !important;
}
.ty-cart-statistic__item.ty-statistic-list-discount {
  display: none !important;
}
.ty-cart-statistic__item.ty-statistic-list-subtotal-discount span {
  color: green;
}
.products-search .ty-mainbox-title__right {
  display: none;
}
.products-search .ty-sidebox h2 {
  display: none;
}
.ty-saved-money.ty-cart-content__product-elem.ty-cart-content__price {
  color: #fe737b;
}
.checkout-checkout .ty-control-group.ty-profile-field__item {
  margin-bottom: 0;
}
.checkout-checkout .ty-payments-list__item {
  padding-bottom: 2px;
}
.checkout-checkout .ty-payments-list__item {
  padding-bottom: 14px;
}
.checkout-checkout .ty-payments-list__description {
  display: none;
}
.hidden-title-terms_of_use {
  display: none;
}
.checkout-checkout .hidden-title-terms_of_use {
  display: block;
}
.ty-payments-list__item:first-child .ty-payments-list__description {
  display: inline !important;
}
#review_body .checkout-summary td {
  color: #4d4d4d !important;
}
#review_body a {
  color: #4d4d4d !important;
}
.ty-checkout__terms .cm-check-agreement {
  color: #666666 !important;
}
.checkout-checkout .ty-checkout-summary__item  .ty-coupons__list.ty-discount-info {
  margin-left: 0;
  border: 1px solid #ededed !important;
}
.checkout-checkout .ty-checkout-summary__item > .ty-coupons__list.ty-discount-info .ty-caret-outer {
  border-bottom-color: #ededed !important;
}
.checkout-checkout .ty-checkout-summary__item > .ty-coupons__list.ty-discount-info span {
  font-size: 15px;
}
.ty-checkout-summary__item .ty-discount-info #applied_promotions li {
  font-size: 15px !important;
}
#review_body .oroi-xrisis.cm-dialog-opener.cm-fixed-size:hover {
  color: #fe737b !important;
}
.ty-control-group.ty-profile-field__item.ty-timologio,
.ty-control-group.ty-profile-field__item.ty-sex {
  width: 100% !important;
}
#tygh_shipping_method li {
  padding-left: 12px;
}
.checkout-checkout .checkout-checkout-title {
  color: #000000;
  font-size: 32px;
  font-weight: 300;
}
.products-search .ty-column4,
.product_features-view .ty-column4 {
  border: 1px solid #fff;
}
.checkout__block .ty-control-group.ty-profile-field__item {
  display: inline-block;
  width: 47%;
}
.ty-control-group.ty-profile-field__item.ty-billing-city {
  margin-left: 5.5%;
}
.products-search .ty-column4:hover,
.product_features-view .ty-column4:hover {
  border: 1px solid #d3d3d3 !important;
}
.products-search .ty-grid-list__control {
  margin-bottom: 10px;
}
.secure-transaction {
  border: 2px solid #fff;
  border-radius: 3px;
  margin-bottom: 0;
  margin-top: 14px;
  padding: 13px 0;
  text-align: center;
}
.ty-product-list__content .brand-name-grid-list {
  text-align: left;
}
.secure-transaction-inner-promo > h2 {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 27px;
  font-weight: 600;
  color: #fe737b;
}
.side-grid .ty-order-summary .ty-checkout-summary__block {
  margin-top: 6px;
}
.side-grid .ty-product-filters__tools > .ty-product-filters__reset-button:hover {
  color: #000000 !important;
}
.side-grid .ty-product-filters__tools > .ty-product-filters__reset-button > i {
  left: 0px;
  position: relative;
  top: 3px;
}
.checkout-checkout .ty-gift-certificate-coupon .ty-btn-go:hover {
  background: #000 !important;
}
.checkout-checkout .ty-reward-points__info.clearfix {
  display: none !important;
}
.checkout-checkout .ty-checkout-summary__item .ty-reward-points__info.clearfix {
  display: none;
}
.cart-wishlist .fa.fa-heart-o {
  color: #fe737b;
  font-size: 16px;
  font-weight: bold;
  margin-left: 3px;
}
.checkout-checkout .ty-checkout-summary__total > div {
  color: #000 !important;
  font-weight: bold;
}
.checkout-checkout li.ty-order-products__item > .ty-order-products__a {
  color: #666 !important;
}
.checkout-checkout .ty-order-products__item .ty-order-products__price {
  color: #808080;
}
.checkout-checkout .ty-gift-certificate-coupon .ty-btn-go {
  width: auto !important;
  right: 0 !important;
  padding: 0 6px;
  background: #666 !important;
  color: #ffffff !important;
}
.checkout-checkout .side-grid .ty-sidebox__title.cm-combination {
  text-align: left !important;
}
.inner-secure .lock.span2 .fa.fa-expeditedssl {
  font-size: 66px;
}
.sign-in-checkout .cm-dialog-opener.cm-dialog-auto-size.ty-btn.ty-btn__secondary {
  background: rgba(136,188,68,0.3) none repeat scroll 0 0;
  border: 3px solid #cecece;
  color: #5e5f5b !important;
  transition: all 0.5s ease 0s;
}
.sign-in-checkout {
  margin-left: 20px;
}
.sign-in-checkout .cm-dialog-opener.cm-dialog-auto-size.ty-btn.ty-btn__secondary:hover {
  background: #88BC44 none repeat scroll 0 0;
  border-color: #5e5f5b;
  transition: all 0.5s ease 0s;
}
.secure-transaction-inner-promo.span8 > p {
  color: #888888;
}
.lock {
  margin-top: 6px;
}
.secure-transaction-inner-promo.span8 {
  margin-left: 0;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: none !important;
  -webkit-tap-highlight-color: #fff !important;
}
.ui-dialog .ui-dialog-titlebar-close {
  width: 10px;
}
#review_step > div td {
  font-size: 13px !important;
}
.ty-account-info__buttons.buttons-container {
  background: #ededed none repeat scroll 0 0;
  color: #444444;
}
.phone-icon img {
  margin-top: -6px !important;
}
.ty-mainbox-simple-container.clearfix.top-my-account.ty-float-right {
  line-height: 12px;
}
.shipping-promo .free {
  color: #96CA21;
  font-size: 20px;
  font-weight: bold;
  margin-right: 6px;
}
.shipping-promo .free-price {
  color: #96CA21;
  font-size: 15px;
  font-weight: bold;
  margin-left: 6px;
}
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0 !important;
}
.free-return > h3 {
  color: #0076C4;
  font-size: 22px !important;
  font-weight: bolder !important;
  margin-bottom: 0;
  margin-top: 7px;
}
.free-return > span {
  font-size: 14px;
}
.basket {
  position: relative;
  text-align: right;
}
.number {
  color: #fe737b !important;
  left: 0px;
  position: relative;
  top: 0px;
  z-index: 2;
  font-weight: 600;
}
.brands-title span {
  color: #ffffff;
  font-size: 20px;
}
.chrome .brands-title {
  margin-top: 11px;
}
.ty-control-group.ty-profile-field__item.ty-shipping-phone {
  margin-left: 0 !important;
  width: 100%;
}
.checkout-checkout #login_block3 .ty-login {
  margin-top: 0 !important;
}
.chrome .checkout-checkout #login_block3 .ty-login {
  margin-top: 0 !important;
  min-height: 198px;
}
.checkout-checkout .ty-payments-list__item-title {
  font-weight: 500;
  color: #666666;
}
.checkout-checkout .ty-control-group.ty-checkout__terms {
  width: 45%;
}
.ty-checkout-buttons__submit-order .ty-btn__big.ty-btn__primary.cm-checkout-place-order.ty-btn:hover {
  background: #000000 none repeat scroll 0 0;
}
.checkout-checkout .ty-order-info .ty-order-info__title {
  color: #666666;
}
.checkout-checkout .side-grid .ty-sidebox__title > .ty-sidebox__title-wrapper {
  color: #000000;
}
.ty-checkout-buttons__submit-order .ty-btn__big.ty-btn__primary.cm-checkout-place-order.ty-btn {
  background: #fe737b none repeat scroll 0 0;
  font-size: 17px;
}
.chrome .checkout-checkout .ty-helper-container > .tygh-content > .container-fluid {
  padding-bottom: 3px;
}
.brands-title {
  background: #fe737b none repeat scroll 0 0;
  padding: 13px 0;
  text-align: center;
}
.checkout-checkout .ty-customer-notes__text {
  width: auto;
}
.free-shipping-promo-header > div {
  display: inline-block;
  float: right;
}
.all-brands-header-toolbar i.ty-product-filters__switch-down {
  color: #ffffff !important;
  font-size: 19px;
  left: -16px;
  top: 5px;
}
.main-above-exxegya-banners .ty-banner__image-wrapper {
  margin-bottom: 0px;
  margin-top: 20px;
}
.brands-title.active {
  background: #E06370;
}
.brands-in-search-toolbar .mCSB_inside > .mCSB_container {
  margin-right: 0px !important;
}
.brands-in-search-toolbar .brands-homepage-inner .ty-product-filters__search {
  padding: 0 !important;
}
.brands-in-search-toolbar .brands-homepage-inner {
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.brands-in-search-toolbar .brands-homepage-inner .ty-product-filters__variants.cm-filter-table {
  max-height: 25em !important;
}
.brands-in-search-toolbar .ty-product-filters {
  margin-left: 0;
}
.brands-in-search-toolbar .squaredTwo {
  float: none;
}
.brands-in-search-toolbar .ty-product-filters {
  width: 241px !important;
  height: 423px;
}
.ty-product-block .prices-container .ty-product-block__price-actual .ty-price > .ty-price-num {
  color: #fe737b !important;
}
.products-view .breadcrumbs-grid {
  border-bottom: 2px solid #ededed;
}
.go-to-reviews {
  text-align: right;
}
.page-194 .buttons-container.clearfix,
.page-195 .buttons-container.clearfix {
  padding-left: 0;
}
.text-call-us-now > span {
  font-size: 11px;
}
.main-menu-para .ty-menu__items .ty-menu__item:nth-child(2) img {
  height: 35px !important;
}
.homepage-sidebanners .ty-banner__image-wrapper:hover img {
  transform: scale(1.1);
  transition: all 1s ease 0.1s;
}
.homepage-sidebanners .ty-banner__image-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
}
.homepage-sidebanners .ty-banner__image-wrapper img {
  transition: all 1s ease 0.1s;
}
.middle-banners-homepage-banners .ty-banner__image-wrapper:hover img {
  transform: scale(1.1);
  transition: all 1s ease 0.1s;
}
.middle-banners-homepage-banners .ty-banner__image-wrapper img {
  transition: all 1s ease 0.1s;
}
.brands-in-search-toolbar.open .brands-homepage-inner {
  background: #ffffff none repeat scroll 0 0 !important;
  border-radius: 0;
  padding: 0 7px;
  position: absolute;
  z-index: 100;
}
.brands-in-search-toolbar .brands-homepage-inner {
  margin-top: 0;
}
.brands-in-search-toolbar .brands-homepage-inner .ty-product-filters__block .ty-product-filters__switch {
  display: none;
}
.brands-in-search-toolbar.open {
  display: block;
}
.brands-in-search-toolbar {
  display: none;
}
.top-cart-content .ty-dropdown-box__title > div {
  display: inline-block;
  width: 36%;
  text-align: center;
}
.top-cart-content .ty-dropdown-box__title > div.basket {
  width: 20%;
}
.top-cart-content .ty-dropdown-box__title .ty-minicart-title {
  padding-left: 0;
}
.top-cart-content .ty-dropdown-box__title {
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
  width: 300px;
}
.top-cart-content .cart-price {
  font-size: 21px;
  font-weight: bold;
}
.total-product-number {
  color: #4d4d4f;
  position: relative;
}
.ty-search-block {
  text-align: center;
}
.sneak-peak-cart img {
  position: relative;
  top: -4px;
}
.total-product-number-place {
  margin-top: 3px;
  margin-bottom: 6px;
}
.popular-searches .ty-text-links__a:hover {
  text-decoration: underline;
}
.mainbox-body.popular-searches {
  position: relative;
  z-index: 300;
}
.header-grid > .row-fluid:first-child {
  margin-bottom: 0 !important;
}
.ty-icon-search::before {
  font-size: 30px;
  color: #ffffff;
  position: relative;
  top: 2px;
  left: 2px;
}
.side-grid .ty-menu__items .ty-menu__item .ty-menu__item-link {
  color: #000 !important;
  font-size: 15px !important;
  font-weight: normal !important;
  padding: 8px 0 !important;
}
.side-grid .ty-menu__submenu .ty-menu__submenu-item > .ty-menu__submenu-link {
  font-size: 15px !important;
}
.inner-secure.clearfix {
  margin: 0 auto;
  width: 1000px;
}
.secure-transaction-inner-promo.span8 {
  width: 76%;
}
.lock,
.secure-icon {
  width: 12% !important;
}
.secure-transaction .inner-secure {
  border: 3px solid #bf087f;
  border-radius: 3px;
}
.top-my-account .ty-mainbox-simple-title {
  margin-bottom: 2px !important;
  margin-top: 0px !important;
}
.page-62 .grid-list .ty-grid-list__item,
.page-116 .grid-list .ty-grid-list__item {
  margin-bottom: 10px !important;
}
#mce-EMAIL:focus {
  color: #5e5f5b;
}
#mce-EMAIL {
  border: 1px solid #c2c9d0;
  width: 100%;
  height: 32px;
  padding: 0;
  color: #c5c5c5;
}
.buttons-newsletter div input {
  background: #0072c0 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  padding: 8px 12px;
}
#fancybox-content .buttons-newsletter div input:hover {
  padding: 8px 51px;
}
#fancybox-content .buttons-newsletter div input {
  background: #005593 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  font-size: 17px;
  padding: 8px 51px;
}
.buttons-newsletter div input:hover {
  background: #1FA1F2 none repeat scroll 0 0 !important;
  border: medium none;
  color: #fff;
  padding: 8px 12px;
}
.buttons-newsletter > div {
  display: inline;
}
.buttons-newsletter {
  margin-top: 5px;
}
.man-button .btn.btn-default.button.button-small {
  margin-left: 5px;
}
.newsletter .buttons-newsletter {
  margin-left: 37px;
}
.top-cart-content .ty-cart-content__buttons {
  padding: 15px 6px;
}
.ty-cart-content__buttons .ty-btn.ty-btn__secondary:hover,
.ty-cart-content__buttons .ty-btn.ty-btn__primary:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}
.top-cart-content .ty-cart-content__buttons > div {
  float: none;
}
.top-cart-content .ty-cart-content__buttons > div a {
  margin-top: 5px;
  padding: 7px 0;
  width: 100%;
  font-weight: 500;
  font-size: 16px !important;
}
.ty-cart-items__list  .ty-cart-items__list-item-desc .item-desc > a {
  font-weight: 400;
}
.amount_price__list_item span.item-price {
  float: right;
}
.amount_price__list_item span {
  display: inline-block;
}
.top-cart-content .ty-cart-content__buttons > div:first-child a:hover {
  background: #000000 none repeat scroll 0 0;
}
.top-cart-content .ty-cart-content__buttons > div:first-child a {
  margin-top: 0;
  background: #fe737b none repeat scroll 0 0;
}
.top-cart-content .ty-dropdown-box__content {
  border: 3px solid #FE7A81 !important;
}
.cm-cart-content a:hover {
  text-decoration: underline !important;
}
.ty-menu__item.ty-menu__menu-btn.visible-phone:hover {
  background: rgba(0,0,0,0) none repeat scroll 0 0 !important;
}
.Everyday.Products .owl-wrapper {
  padding-bottom: 2px;
}
.blog-carousel .list-price-label {
  display: none !important;
}
.blog-carousel .product-title > p {
  height: 30px;
}
.checkout-complete .complete-title {
  margin-top: 11px;
}
.blog-carousel {
  margin-top: 50px;
}
.top-my-account .ty-account-info__title-txt {
  color: #000000 !important;
  margin-right: 5px;
}
.cart-content-grid .ty-btn.ty-btn__primary {
  background: #bf077f none repeat scroll 0 0;
}
.cart-content-grid .ty-btn.ty-btn__primary:hover {
  background: #681857 none repeat scroll 0 0 !important;
}
.ty-menu__submenu-link {
  text-transform: none;
}
.ty-grid-list__item-name {
  border-color: #00a5ff !important;
}
.qsearch-result.border.cm-popup-box {
  display: none;
}
.ty-sidebox__body .ty-product-filters__title {
  font-size: 17px;
}
.category-categories .ty-mainbox-simple-title {
  font-size: 17px !important;
}
.side-grid .ty-menu__item {
  width: 100%;
}
.ty-mainbox-simple-body .ty-menu__submenu-item-header .ty-menu__item-link {
  font-size: 13px !important;
  font-weight: normal !important;
  padding-bottom: 9px !important;
  padding-top: 3px !important;
}
.checkout-checkout .span4.all-categories-header-toolbar-outer {
  background: #ededed;
}
.checkout-checkout.page- > a {
  display: none;
}
.checkout-checkout .span4.all-categories-header-toolbar-outer:hover {
  background: #ededed !important;
}
.checkout-checkout .span4.all-categories-header-toolbar-outer > .all-categories-header-toolbar {
  display: none !important;
}
.help-call {
  margin-top: 20px;
}
.newsletter-buttons button:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.newsletter_popup .inner-pop-up button:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.total-category.products-pagination {
  color: #808080 !important;
}
.ty-column4:hover {
  position: relative;
  z-index: 1;
}
.side-grid .ty-mainbox-simple-title i {
  color: #fff;
}
.side-grid .ty-menu__item .ty-menu__item-link:hover {
  color: #000 !important;
  font-weight: 400 !important;
  text-decoration: underline;
  transition: none 0s ease 0s !important;
}
.side-grid .ty-menu__items.cm-responsive-menu {
  border-bottom: none;
}
.checkout-cart .ty-mainbox-container.clearfix.Everyday.Products {
  margin-top: 15px;
}
.blog-carousel .product-list-field .ty-control-group__item.avail {
  margin-left: 0 !important;
}
.ty-social-link {
  margin-right: 0 !important;
}
.ty-social-link-block > div {
  display: inline-block;
}
.socialzed-links {
  position: relative;
  top: 7px;
}
.newsletter-div .ty-social-link__title {
  color: #444444 !important;
  font-size: 19px;
  font-weight: 600;
}
.ty-social-link-block .ty-social-link__title {
  position: relative;
  top: -6px;
}
.touch .ty-grid-list__control {
  display: block !important;
}
.checkout-cart .buttons-container.ty-cart-content__top-buttons.clearfix {
  background: #fff none repeat scroll 0 0 !important;
}
.checkout-cart .buttons-container.ty-cart-content__bottom-buttons.clearfix {
  background: #fff none repeat scroll 0 0 !important;
}
.product_features-view_single_brand .ty-mainbox-body a:hover {
  text-decoration: underline;
}
.header-info-single-brands h2,
.header-info-single-brands span {
  display: inline;
}
.header-info-single-brands > span {
  font-size: 16px;
}
.single-brand-view {
  margin-top: 18px;
}
.page-109 .ty-features-all__group > .ty-subheader > a {
  margin-left: 19px;
}
.ty-features-all .ty-subheader > a:hover {
  text-decoration: underline;
  color: #fe737b !important;
}
.ty-features-all__list .ty-features-all__list-item .ty-features-all__list-a:hover {
  text-decoration: underline;
  color: #fe737b !important;
}
.ty-features-all .ty-subheader > a {
  font-size: 18px !important;
  font-weight: bold;
}
.alpha-beta__index li {
  display: inline;
  margin-right: 9px;
}
.alpha-beta__index .stop {
  color: #999;
  font-size: 26px;
  line-height: 3px;
  position: relative;
  right: 3px;
  top: -2px;
}
.alpha-beta__index {
  border-bottom: 1px solid #ececec;
  margin-top: 15px;
  padding-bottom: 3px;
}
.alpha-beta__index .stop:last-child {
  display: none;
}
.alpha-beta__index .all_brands {
  margin-right: 26px;
}
.alpha-beta__index li a:hover {
  text-decoration: underline;
}
.alpha-beta__index li {
  display: inline;
  margin-right: 8px;
  padding: 0 4px;
}
.header-info-single-brands a {
  color: #fe737b !important;
  font-size: 18px !important;
  font-weight: 900;
}
.wishlist-view .ty-product-empty {
  display: none;
}
.wishlist-view .grid-list .ty-column4 {
  margin-bottom: 25px;
}
.friendsinvite-view .table > tbody > tr > td,
.friendsinvite-view .table > tbody > tr > th,
.friendsinvite-view .table > tfoot > tr > td,
.friendsinvite-view .table > tfoot > tr > th,
.friendsinvite-view .table > thead > tr > td,
.friendsinvite-view .table > thead > tr > th {
  border-top: 1px solid #dddddd;
  line-height: 1.42857;
  padding: 8px;
  vertical-align: top;
}
.header-info-single-brands a:hover {
  text-decoration: underline;
}
.single-brand-view > ul {
  margin-top: 17px;
}
.brands-title-companies > .ty-wysiwyg-content > h1.ty-mainbox-title span {
  font-weight: 500 !important;
  color: #000 !important;
}
.alpha-beta__index a {
  color: #808080 !important;
  font-size: 16px !important;
}
.alpha-beta__index a:hover {
  color: #fe737b !important;
}
.header-info-single-brands > h2 {
  font-size: 18px;
}
.checkout-checkout .alpha-beta__index {
  display: none;
}
.alpha-beta__index > ul {
  text-align: center;
}
.home-side-menu .ty-text-links__item.ty-level-0 > a {
  font-weight: bold;
  font-size: 15px !important;
}
.span3.like-top-button {
  margin-top: 6px;
}
.home-side-menu .ty-level-1 > .ty-text-links__a {
  color: #000000 !important;
}
.home-side-menu .ty-text-links__item.ty-level-1 {
  margin-left: 0;
}
.home-side-menu {
  margin-top: 25px;
}
.home-side-menu a:hover {
  text-decoration: underline;
}
.home-side-menu a {
  color: #666 !important;
}
.home-side-menu .ty-text-links__item.ty-level-1 {
  list-style-type: none;
  margin-left: 5px !important;
  text-align: left;
}
.home-side-menu .ty-text-links__item.ty-level-0 a:hover {
  color: #000 !important;
  text-decoration: underline !important;
}
.home-side-menu .ty-text-links__item.ty-level-0 a {
  font-weight: 400;
  color: #666666 !important;
}
.home-side-menu .ty-text-links {
  padding-left: 24px;
}
.home-side-menu .ty-text-links__item.ty-level-0 {
  text-align: left;
  padding: 4px 0;
}
.home-side-menu .ty-level-0 > .ty-text-links__a:hover {
  text-decoration: none !important;
}
.span12.home-slider-index {
  margin-left: 13px !important;
  width: 930px !important;
}
.ty-footer-general__header > span {
  border-bottom: 1px solid #666666;
  color: #666666 !important;
  font-weight: 400;
  padding-bottom: 7px;
}
.ty-footer-menu__header,
.ty-footer-general__header {
  padding-top: 57px;
  font-size: 16px;
  cursor: default !important;
}
.ty-footer-grid__full-width .ty-footer-general__body {
  margin-top: 14px;
}
.footer-communication .ty-footer-general__body .com-box span {
  display: block;
  color: #666;
}
.footer-communication .ty-footer-general__body .ty-wysiwyg-content {
  text-align: center;
}
.ty-footer.footer-acount-info li {
  text-align: center;
}
.button.white.withborder.raphar {
  background: #fe737b none repeat scroll 0 0;
}
.footer-communication .ty-footer-general__header > span::before {
  content: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/communication-footer.png?1753621501');
  left: 86px;
  position: absolute;
  top: 22px;
}
.info-footer .ty-footer-general__header::before {
  content: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/info-footer.png?1753621501');
  left: 85px;
  position: absolute;
  top: 26px;
}
.help-footer .ty-footer .ty-footer-general__header::before {
  content: url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/help-footer.png?1753621501');
  left: 88px;
  position: absolute;
  top: 16px;
}
.brands-title-companies {
  margin-top: 17px !important;
}
.page-199 .ty-features-all__group > .ty-subheader > a {
  margin-left: 19px;
}
.brands-home-page .ty-product-filters__group .squaredTwo a {
  font-size: 14px !important;
}
.brands-homepage-inner .ty-product-filters__item-more li {
  border-bottom: 1px solid rgba(0,0,0,0.11) !important;
}
.span16.header-exeggya-outer {
  width: 1200px !important;
  margin: 0 auto !important;
  float: none !important;
}
.header-exeggya {
  display: flex;
}
.span16.header-exxegya-inner {
  margin-top: 20px;
}
.header-exeggya > .item-exeggya:last-child {
  margin-right: 0px;
}
.header-exeggya > .item-exeggya {
  width: 33.3%;
  position: relative;
  text-align: center;
  border: 2px solid #ededed;
  margin-right: 9px;
  height: 55px;
}
.header-exeggya .item-exeggya > a .exeggya-text {
  margin-top: 9px;
}
.home-side-menu {
  background: #EDEDED none repeat scroll 0 0;
  padding: 0 5px;
  height: 470px;
}
.span4.ontop-slider-brand-searcher {
  width: 257px;
}
.span12.ontop-slider-banner {
  width: 930px !important;
  margin-left: 13px !important;
}
.homepage-banners.homeslider-banners {
  overflow: hidden;
}
.homepage-banners {
  margin-top: 13px !important;
}
.home-slider-index .owl-controls.clickable {
  margin-top: 0;
  top: -42px;
  width: 100%;
}
.banner-above-header .ty-banner__image-wrapper {
  margin-bottom: 0;
}
.banner-above-header {
  margin-top: 13px;
}
.home-slider-index .owl-controls.clickable {
  position: relative;
}
.presentation-banner h1 {
  color: #ffffff;
  font-weight: 300;
  left: -31px;
  position: relative;
  top: 37px;
}
.home-slider-index .owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #fe737b !important;
}
.csc_live_search_navigation {
  background: #ededed !important;
}
.csc_snize-arrow-inner {
  border-bottom: 15px solid #ededed !important;
}
.home-slider-index .owl-theme .owl-controls .owl-page span {
  background: #fff !important;
  border: 2px solid #b0b0b0 !important;
  height: 15px;
  width: 15px;
}
.tabbed-homepage-product-list .ty-wysiwyg-content li {
  display: inline-block;
  cursor: pointer;
}
.tabbed-homepage-product-list .ty-wysiwyg-content ul {
  padding-left: 0;
}
.presentation-text.clearfix {
  padding: 8px 24px 9px;
}
.chrome .presentation-text.clearfix {
  padding: 16px 35px 13px;
}
.free-shipping-header-promo .fa.fa-truck {
  color: #4d4d4f !important;
  font-size: 40px;
  position: relative;
  top: 9px;
}
.phone-number-header-promo .fa.fa-phone {
  font-size: 40px;
  position: relative;
  right: -5px;
  top: 5px;
}
.text-free-shipping-athens {
  display: block !important;
}
.text-call-us-now {
  display: block !important;
}
.presentation-text .left-side {
  margin-left: 0;
}
.search-header .ty-search-block {
  float: none;
  width: 340px;
  margin: 0 auto;
}
.span3.brand-search-header {
  margin-left: 9px !important;
  width: 199px;
}
.csc_live_search_css {
  right: -83px !important;
}
.csc_live_search_css .csc_snize-dropdown-arrow {
  right: 47% !important;
}
.search-header .ty-search-block .cm-quick-search.ty-search-block__input.cm-hint {
  font-family: "RobotoCondensed";
  font-size: 15px;
  text-align: center;
  color: #fe737b !important;
}
.tabbed-homepage-product-list .ty-wysiwyg-content li:first-child {
  border-left: none !important;
}
.tabbed-homepage-product-list .ty-wysiwyg-content li.active {
  background: #bf077f none repeat scroll 0 0;
}
.tabbed-homepage-product-list .ty-wysiwyg-content ul {
  border-bottom: 3px solid #bf077f;
  padding-left: 0;
}
.tabbed-list-title-above h4 {
  font-size: 28px;
  font-weight: 200;
  text-align: center;
  color: #000;
}
.tabbed-homepage-product-list .ty-wysiwyg-content li {
  background: #000000 none repeat scroll 0 0;
  display: inline-block;
  padding: 16px 0;
  width: 16.66%;
  text-align: center;
  border-left: 2px solid #333333;
  box-sizing: border-box;
}
.tabbed-homepage-product-list .ty-wysiwyg-content li > span {
  color: #ffffff;
  font-size: 17px;
  font-weight: 300;
  margin-left: 9px;
  position: relative;
  top: 4px;
}
.products-frontpage.active {
  display: block;
}
.products-frontpage {
  position: relative !important;
}
.products-frontpage {
  display: none;
}
.presentation-text h1 {
  font-weight: 100 !important;
  margin-top: 0 !important;
  color: #000;
}
.solo-item {
  float: left;
}
.span8.presentation-text {
  border: 2px solid #f6f6f6;
  padding: 11px;
}
.presentation-parapharmacie {
  background: #eaeaea none repeat scroll 0 0;
  padding: 2px;
}
.presentation-banner {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/ONLINE_FARMAKEIO-02.png?1753621501') no-repeat scroll center center;
  height: 130px;
  text-align: center;
}
.description-banners-pickers > div {
  display: inline-block;
}
.description-banners-pickers {
  width: 100%;
}
.solo-nav {
  display: none;
}
.description-banners-pickers .picker-item {
  width: 24%;
}
.picker-item.item-1.active:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #BF087F transparent;
  display: block;
  position: absolute;
  content: "";
  right: 61px;
  top: -20px;
}
.picker-item.item-2.active:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #7F135E transparent;
  display: block;
  position: absolute;
  content: "";
  right: 61px;
  top: -20px;
}
.picker-item.item-3.active:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #541343 transparent;
  display: block;
  position: absolute;
  content: "";
  right: 61px;
  top: -20px;
}
.picker-item.item-4.active:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #3A0F31 transparent;
  display: block;
  position: absolute;
  content: "";
  right: 61px;
  top: -20px;
}
.picker-item h4 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
  text-align: center;
}
.picker-item p {
  color: #ffffff;
}
.picker-item.item-1 {
  background: #bf087f none repeat scroll 0 0;
}
.picker-item.item-2 {
  background: #7f135e none repeat scroll 0 0;
}
.picker-item.item-3 {
  background: #541343 none repeat scroll 0 0;
}
.picker-item.item-4 {
  background: #3a0f31 none repeat scroll 0 0;
}
.span3.brands-home-page {
  width: 234px !important;
}
.span10.home-slider-index {
  width: 710px !important;
}
.ty-footer-general__body .ty-text-links__a {
  color: #666 !important;
}
.tygh-footer > div {
  background-color: #fff !important;
  background-image: none !important;
}
.ty-footer-general__body .ty-footer-menu__item > a {
  color: #666 !important;
  font-size: 15px !important;
}
.footer-communication p span {
  font-size: 15px;
}
span.ty-pagination__selected {
  font-size: 15px !important;
}
.bottom-copyright {
  color: #fff !important;
  margin-top: 0 !important;
}
#tygh_footer .bottom-copyright a.bottom-copyright:hover {
  color: #fff !important;
}
.bottom-copyright a.bottom-copyright {
  color: #fff !important;
}
.ty-footer-grid__full-width .ty-social-link-block {
  background: #F8F8F8 none repeat scroll 0 0;
  margin-right: 0;
}
.span16.payment-icons {
  background: #ededed none repeat scroll 0 0;
}
.span4.all-categories-header-toolbar-outer:hover {
  background: #000000 none repeat scroll 0 0;
}
.ty-footer-grid__full-width .ty-social-link__title {
  color: #4d4d4f !important;
}
.index-index #tygh_main_container > .tygh-content > .container-fluid.content-grid {
  padding-bottom: 0;
}
.keywords-homepage-title h2 {
  color: #ffffff;
  font-weight: 200;
  border-bottom: 1px solid #ffffff;
  position: relative;
}
.frontpage-urls .ty-wysiwyg-content > h4 a {
  color: #ffffff !important;
  font-weight: 500;
}
.keywords-homepage-title h2::before {
  border-color: #808080 rgba(0,0,0,0) rgba(0,0,0,0);
  border-style: solid;
  border-width: 11px 14px 0;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 50%;
  top: 37px;
  width: 0;
  z-index: 2;
}
.keywords-homepage-title h2::after {
  border-color: #ffffff rgba(0,0,0,0) rgba(0,0,0,0);
  border-style: solid;
  border-width: 11px 14px 0;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 50%;
  top: 38px;
  width: 0;
  z-index: 1;
}
.keywords-homepage-container a:hover {
  text-decoration: underline !important;
}
.span16.keywords-homepage-container {
  margin-top: 12px;
}
.frontpage-urls ul.ty-text-links > .ty-text-links__item {
  color: #ffffff;
  display: inline;
  margin-right: 0;
}
.frontpage-urls .ty-wysiwyg-content > h4 {
  margin-bottom: 0;
}
.frontpage-urls .ty-text-links__a {
  color: #ffffff !important;
}
.keywords-homepage-title {
  text-align: center;
}
.frontpage-urls .span2 {
  width: 18.2% !important;
}
.keywords-homepage-outer {
  background: #808080 none repeat scroll 0 0;
}
.ty-payment-icons.billos {
  margin: 0;
}
#tygh_footer .copyright-bottom .bottom-copyright {
  padding: 10px 0;
}
.socialzed-links .ty-social-link span {
  display: none;
}
.ty-social-link.facebook span {
  color: #3c5b9b;
  font-size: 17px;
  font-weight: bold;
  margin-left: 3px;
}
.ty-social-link.twitter span {
  color: #2daae1;
  font-size: 17px;
  font-weight: bold;
  margin-left: 3px;
}
.ty-social-link.googleplus span {
  color: #F8614F;
  font-size: 17px;
  font-weight: bold;
  margin-left: 3px;
}
.ty-social-link.instagram span {
  color: #517FA4;
  font-size: 17px;
  font-weight: bold;
  margin-left: 3px;
}
.ty-payment-icons__item {
  height: auto;
}
.ty-payment-icons__item {
  background: none !important;
  width: auto;
}
.ty-footer .ty-text-links-btn.cm-combination.visible-phone {
  display: none !important;
}
.ty-footer-menu__icon-open,
.ty-footer-menu__icon-hide {
  color: #fff;
  cursor: pointer;
  font-size: 37px;
  font-weight: normal !important;
  position: absolute;
  right: 0;
  top: 14px;
}
.page-62 .category-name,
.page-116 .category-name {
  margin-bottom: 13px;
}
.newsletter-title {
  color: #005096;
}
.ty-footer.newsletter {
  background: #fff none repeat scroll 0 0;
}
.newsletter .ty-footer-general__header.cm-combination span {
  color: #005096;
}
.ty-footer.newsletter {
  background: #fff none repeat scroll 0 0;
  margin: 0 -25px !important;
  padding: 7px 32px;
}
.span4.newsletter-div {
  margin-left: 0;
  width: 29% !important;
}
#tygh_footer .ty-footer-grid__full-width .span4 {
  width: 22.204%;
}
.button.white.withborder.woman {
  background: #fe737b none repeat scroll 0 0;
}
.button.white.withborder.man:hover {
  background: #fe737b none repeat scroll 0 0 !important;
}
.button.white.withborder.man {
  background: #000 none repeat scroll 0 0;
}
.button.white.withborder.woman:hover {
  background: #000 none repeat scroll 0 0;
}
.button.white.withborder.man:hover {
  background: #000 none repeat scroll 0 0;
}
.ty-search-block  .cm-hint {
  color: #e06370 !important;
}
.newsletter .ty-input-text.cm-hint,
.newsletter .ty-input-text.cm-hint-focused {
  background: #ffffff none repeat scroll 0 0;
  height: 38px;
}
.input-newsletter-homepage {
  width: 65% !important;
}
.span3.footer-info {
  margin-left: 0 !important;
}
.span4.newsletter-footer {
  margin-left: 0 !important;
  width: 27% !important;
}
.under-newletter-text {
  color: #005096;
  font-size: 11px !important;
  text-align: center;
}
.ty-payment-icons__item.visa-ifarm img {
  border: 1px solid #fff !important;
  border-radius: 3px;
}
.sitemap-view .ty-mainbox-title {
  margin-top: 15px;
}
.tygh-footer .ty-payment-icons__item img {
  border-radius: 3px;
}
.tygh-footer .ty-payment-icons__item:first-child img {
  border: none !important;
}
.ty-payment-icons > a {
  position: relative;
  top: -6px;
}
.bottom-copyright:hover a {
  text-decoration: underline;
}
.under-newletter-text {
  display: none;
}
.ty-simple-list .ty-simple-list__price.clearfix span {
  display: inline;
}
.products-frontpage .product-title > p {
  color: #676767;
  font-size: 18px !important;
  font-weight: 400;
}
.plus_popup .maintable .product-name {
  color: #4d4d4f;
}
.left-pop-up-title p,
.left-pop-up-title h1 {
  color: #4d4d4f;
}
.top-menu .ty-menu__item.cm-menu-item-responsive.prosfores a {
  font-weight: 700 !important;
}
.main-prods .under-title {
  display: block;
}
.main-prods .list-price-label {
  display: none !important;
}
.index-index .ty-mainbox-container.clearfix.skroutz {
  margin-top: 28px;
}
.index-index .main-prods .skroutz .ty-mainbox-title > span {
  color: #3b90d5;
}
.ty-mainbox-container.clearfix.popular-home {
  margin-top: 35px;
}
.span16.home-middle-banners {
  margin-top: 12px;
}
.middle-banners-homepage .block-title-custom > .ty-wysiwyg-content > h2 {
  margin-top: 30px;
  margin-bottom: 22px;
}
.span16.middle-banners-homepage {
  margin-bottom: 24px;
}
.home-left div {
  text-align: left !important;
}
.home-right div {
  text-align: right !important;
}
.index-index .main-prods .owl-item .ty-scroller-list__item {
  border: 1px solid #fff;
}
.index-index .main-prods .owl-item .ty-scroller-list__item:hover {
  border: 1px solid #e7e7e8 !important;
}
.index-index .main-prods .owl-item:hover {
  position: relative;
  z-index: 1;
}
.popular-home .owl-wrapper-outer {
  padding-bottom: 1px;
}
.popular-home .ty-mainbox-title > span {
  color: #3b90d5;
}
.group_tags li {
  border-bottom: 1px solid #d7d7d7;
  display: inline-block;
  list-style-type: none !important;
  margin-right: 15px;
  padding-bottom: 1px;
  padding-top: 8px;
  width: 23%;
}
.group_tags ul {
  padding-left: 0;
  width: 100%;
}
.categories-view .ty-icon-down-micro.ty-account-info__user-arrow {
  display: block;
  float: right;
  left: -21px;
  top: -16px;
}
.side-grid .ty-account-info__user-arrow {
  width: unset;
}
.side-grid .ty-menu__item:hover .ty-menu__submenu-items {
  display: none;
}
.side-grid .ty-menu__submenu-items {
  background: #fff none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  padding: 0;
  position: relative;
  top: 0;
  width: 96% !important;
}
.side-grid .ty-menu__submenu-item {
  padding-left: 6px;
}
.side-grid .fa.fa-plus.ty-account-info__user-arrow {
  font-size: 16px !important;
}
.side-grid .ty-icon-up-micro {
  display: block;
  float: right;
  right: 21px;
  top: -16px;
}
.side-grid .ty-menu__item.cm-menu-item-responsive .ty-icon-up-micro {
  display: none;
}
.side-grid .ty-menu__item.cm-menu-item-responsive.expand .ty-icon-up-micro {
  display: block;
}
.side-grid .ty-menu__item.cm-menu-item-responsive.expand .ty-icon-down-micro {
  display: none;
}
.side-grid .ty-menu__item.ty-menu__item-nodrop i {
  display: none !important;
}
.side-grid .ty-menu__submenu-link {
  color: #000 !important;
}
.side-grid .ty-menu__submenu-link:hover {
  color: #000 !important;
}
#content_product_tab_12 .owl-wrapper {
  padding-bottom: 2px;
}
.page-30 .ty-form-builder__description > p {
  padding-top: 0;
}
.ty-login-info__txt > a:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.ty-menu__submenu-items .ty-menu__submenu-item {
  margin-bottom: 0px;
}
.gm-style-iw > div {
  max-height: unset !important;
}
.brands-homepage-images .ty-mainbox-body > a:hover {
  text-decoration: underline;
}
.free-shipping-header-promo:hover .tooltip-message:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0.9);
  border-style: solid;
  border-width: 0 15px 11px;
  content: "";
  display: block;
  left: 45%;
  position: absolute;
  top: -11px;
  z-index: 602;
}
.phone-number-header-promo:hover .tooltip-message:after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0.9);
  border-style: solid;
  border-width: 0 15px 11px;
  content: "";
  display: block;
  left: 45%;
  position: absolute;
  top: -11px;
  z-index: 602;
}
.free-shipping-header-promo:hover .tooltip-message {
  background: rgba(0,0,0,0.9) none repeat scroll 0 0;
  bottom: -20px;
  color: #ffffff;
  display: block;
  padding: 9px;
  position: absolute;
  width: 200px;
  z-index: 16;
}
.phone-number-header-promo:hover .tooltip-message {
  background: rgba(0,0,0,0.9) none repeat scroll 0 0;
  bottom: -20px;
  color: #ffffff;
  display: block;
  padding: 9px;
  position: absolute;
  width: 200px;
  z-index: 1;
}
.free-shipping-header-promo .tooltip-message {
  bottom: -86px !important;
  display: none;
  left: -7px;
}
.phone-number-header-promo .tooltip-message {
  display: none;
}
.tooltip-message a:hover {
  color: #BF087F !important;
}
.tooltip-message a {
  color: #ffffff !important;
  text-decoration: underline;
}
.side-grid .ty-menu__submenu-items.ty-menu__submenu-items-simple {
  z-index: 0;
}
.grid-list .ty-price-update.discounted span {
  font-size: 18px;
}
.side-grid .fa.fa-plus.ty-account-info__user-arrow {
  display: block;
  float: right;
  font-size: 12px;
  font-weight: 100;
  position: absolute;
  right: 4px;
  top: 7px;
}
.span4.side-grid .ty-menu__submenu-items .ty-menu__submenu-link:hover {
  font-weight: 400;
  text-decoration: underline;
}
.profile-controls .ty-account-info__user-arrow {
  color: #444444;
}
.main-prods .ty-mainbox-title h1 span,
.main-prods .ty-mainbox-title span {
  color: #4d4d4f !important;
}
.side-grid .expand .fa.fa-minus.ty-account-info__user-arrow {
  display: block !important;
  float: right;
  font-size: 12px;
  font-weight: 100;
  right: 17px;
  top: -17px;
}
.side-grid .ty-account-info__user-arrow {
  cursor: default;
  line-height: 0 !important;
}
.fa.ty-account-info__user-arrow {
  color: #4d4d4f;
  padding: 12px;
}
.side-grid .ty-menu__items.cm-responsive-menu {
  padding-left: 13px;
}
.side-grid .ty-menu__item-link {
  border-bottom: 1px solid #fff !important;
}
.side-grid .expand .ty-menu__item-link {
  border-bottom: 1px solid #d3d3d3 !important;
}
.side-grid .category-categories .ty-mainbox-simple-title .ty-product-filters__switch-down.ty-icon-down-open {
  display: none;
}
.grid-list .add-to-cart-product > .inner-add-to-cart-product > .ty-btn.ty-btn__primary.ty-btn__big.ty-btn__add-to-cart {
  transition: unset !important;
}
.fa-angle-down {
  font-size: 23px !important;
  padding-left: 10px;
  position: relative;
  top: 4px;
}
.side-grid .expand .fa.fa-plus {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transition: all 0.5s ease 0s;
}
.everyday_products .lang-side_bar_text {
  font-weight: 500 !important;
  color: #808080 !important;
  font-size: 12px !important;
}
.side-grid .fa.fa-plus {
  transition: all 0.5s ease 0s;
}
.products-view .tab_bar_w > .tab_bar a {
  color: #000000 !important;
}
.products-view .tab_bar_w > .tab_bar a.active {
  color: #ffffff !important;
}
.everyday_products > h2 {
  color: #000 !important;
  font-size: 37px;
  font-weight: 300;
}
.category-name > h1 {
  font-size: 30px !important;
  font-weight: 500 !important;
  color: #000000 !important;
}
.ty-menu__item > .fa.fa-plus.ty-account-info__user-arrow {
  cursor: pointer;
}
.ty-product-filters__tools > a:hover {
  color: #ededed !important;
}
#content_product_tab_41.tab_content .ty-scroller-list__item:hover {
  border: 1px solid #ededed;
}
#content_product_tab_41.tab_content .ty-scroller-list__item {
  border: 1px solid #ffffff;
  margin-bottom: 1px;
}
#content_product_tab_41 .owl-item:last-child .ty-scroller-list__item {
  margin-right: 1px;
}
.everyday_products .lang-side_bar_text {
  display: block;
  color: #4d4d4f;
}
.Everyday .ty-mainbox-title > span {
  color: #4d4d4f;
}
.Everyday .ty-wysiwyg-content > h2 {
  color: #4d4d4f;
  font-size: 22px;
  text-align: center;
}
.Everyday .lang-side_bar_text,
.Everyday .under-tile {
  display: block;
  font-size: 13px;
}
.Everyday > .under-title {
  display: none;
}
.Everyday h1.ty-mainbox-title {
  display: none;
}
.popular-home .lang-side_bar_text {
  display: block;
}
.popular-home .under-title {
  margin-bottom: 6px;
}
.popular-home h1 {
  margin-bottom: 0;
}
.main-prods .owl-wrapper {
  margin-bottom: 1px;
}
.home-side-menu > h3 {
  color: #009efd !important;
  font-size: 16px;
}
.main-prods .ty-mainbox-body {
  position: relative;
}
.main-prods .owl-prev {
  top: 141px;
}
.main-prods .owl-next {
  top: 141px;
}
.main-prods .owl-theme.ty-owl-controls {
  position: unset;
}
.home-side-menu .ty-text-links-btn.cm-combination.visible-phone {
  display: none !important;
}
.side-grid li.ty-menu__item.cm-menu-item-responsive.is-hover-menu.expand {
  z-index: 10;
}
.wishlist-view .grid-list .product-title > p {
  color: #000 !important;
}
.grid-list .product-title > p {
  color: #000 !important;
  font-weight: 500 !important;
}
.prod-amount .fa.fa-check-circle {
  color: #676767;
}
.side-list-buy-buttons .ty-list-price span {
  color: #000000;
}
.side-list-buy-buttons .form-field.product-list-field > i,
.side-list-buy-buttons .form-field.product-list-field > span {
  display: inline;
}
.ty-grid-list__price .ty-list-price > .ty-strike > span {
  color: #000;
  font-size: 15px;
}
.grid-list .list_discount_block span {
  font-size: 15px;
}
.side-grid .ty-menu__submenu-items {
  min-width: 0 !important;
  padding: 4px 0 0 !important;
}
.review a.author {
  color: #fe737b !important;
}
#tygh_footer .footer-info-grid {
  box-shadow: inset 0 8px 8px -10px #696868;
}
#elm_search_29_13,
#elm_search_29_14,
#elm_search_29_15,
#elm_search_29_16,
#elm_search_29_17,
#elm_search_29_18 {
  display: none;
}
.home-slider-index .owl-prev::after {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/bg_arows.png?1753621501') no-repeat scroll 0 0;
  content: " ";
  display: block;
  height: 15px;
  left: 5px;
  position: relative;
  top: 8px;
  width: 10px;
}
.home-slider-index .owl-prev {
  background: rgba(255,255,255,0.8) none repeat scroll 0 0 !important;
  border-radius: 0 !important;
  height: 30px;
  left: -5px;
  position: absolute;
  top: 185px;
  width: 22px;
}
.home-slider-index .owl-next {
  background: rgba(255,255,255,0.8) none repeat scroll 0 0 !important;
  border-radius: 0 !important;
  height: 30px;
  position: absolute;
  right: -5px;
  top: 185px;
  width: 22px;
}
.home-slider-index .owl-next::after {
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/bg_arows.png?1753621501') no-repeat scroll 100% 0;
  content: "";
  display: block;
  height: 15px;
  position: relative;
  right: -5px;
  top: 8px;
  width: 10px;
}
.brands-in-search-toolbar .mCSB_scrollTools {
  right: -4px;
}
.cart-content-grid .cart-wishlist {
  margin-top: 6px;
  margin-left: 6px;
}
.side-grid .ty-product-filters__switch {
  border-bottom: 2px solid #ededed;
}
.all-brands-header-toolbar .brands-title .ty-product-filters__switch-down.ty-icon-up-open {
  display: none;
}
.all-brands-header-toolbar .brands-title.active .ty-icon-up-open {
  display: block;
}
.all-brands-header-toolbar .brands-title.active .ty-icon-down-open {
  display: none;
}
.all-brands-header-toolbar .brands-title {
  cursor: pointer;
}
.mCSB_scrollTools.mCSB_1_scrollbar.mCS-white.mCSB_scrollTools_vertical {
  margin-bottom: 4px;
}
.mCSB_draggerContainer {
  border: 1px solid #C4C6C5 !important;
  border-radius: 16px;
}
.mCSB_scrollTools .mCSB_draggerRail {
  display: none;
}
.ty-product-filters__search input {
  font-size: 15px !important;
}
.search-header .ty-search-magnifier:hover > .nhovered {
  display: none;
}
.search-header .ty-search-magnifier:hover > .hovered {
  display: inline-block;
}
.search-header .ty-search-magnifier > .hovered {
  display: none;
}
.mCSB_scrollTools .mCSB_dragger_onDrag .mCSB_dragger_bar {
  border: 1px solid #C4C6C5;
  background: #C4C6C5;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px !important;
  border: 1px solid #C4C6C5;
  background: #C4C6C5;
}
.index-index .ty-product-filters__variants {
  overflow-y: hidden;
}
.mCSB_inside > .mCSB_container {
  margin-right: 17px !important;
}
.main-prods .ty-control-group__item.avail {
  margin-left: 0 !important;
}
.tracking-speedex {
  width: 100%;
}
.tracking-speedex .summary-head {
  background: #ccc none repeat scroll 0 0;
  height: 47px;
}
.tracking-speedex .summary-head th,
.tracking-speedex td {
  border: 1px solid darkgray;
  height: 25px;
  padding: 8px;
}
.tracking-speedex td {
  text-align: center;
}
.tracking-speedex .details-values:first-child td {
  font-weight: bold;
}
.brands-home-page .ty-product-filters__switch-down.ty-icon-down-open {
  display: none;
}
.brands-home-page .ty-product-filters.hidden {
  display: block;
}
.novalidclassnamehack {
  background: red;
}
.grid-list .ty-grid-list__price > [id^="old_price_update_"] > .ty-list-price {
  margin-left: 2px;
}
.ty-product-filters__wrapper {
  background: none !important;
}
.span4.side-grid {
  border-right: 2px solid #ededed;
  padding-right: 10px;
}
.side-grid .ty-product-filters li.ty-product-filters__group {
  color: #000000 !important;
  font-size: 15px !important;
}
.ty-product-filters__title {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
.rating-wish-grid-row > .grid-list-wishlist .fa-heart-o {
  font-size: 17px;
  margin-right: 0;
  font-weight: bold;
}
.side-grid .category-categories .ty-menu__item.cm-menu-item-responsive {
  position: relative;
}
.rating-wish-grid-row {
  margin: 0 auto;
  width: 80%;
}
.prices-container.price-wrap {
  margin-top: 14px;
}
.ty-product-block__left .prices-container > .ty-product-block__price-actual > .ty-price-update > .ty-price span {
  font-weight: 700 !important;
  font-size: 29px;
}
.ty-template-small__item-description .rating-wish-grid-row.ty-template-small__item {
  width: 66%;
}
.grid-list-wishlist {
  text-align: right;
}
.ty-column4:hover .grid-list-wishlist {
  display: block;
}
.grid-list-wishlist {
  display: none;
}
.add_to_wishlist_para .fa.fa-heart-o {
  font-size: 17px;
  font-weight: bold;
}
.grid-list-wishlist .add_to_wishlist_para .fa.fa-heart-o {
  position: absolute;
  top: 6px;
  right: 0px;
}
.simple-list-rating .ty-nowrap.ty-stars {
  margin-right: 0;
}
.grid-list-wishlist .ty-add-to-wish:hover {
  background: #fe737b;
  color: #fff !important;
}
.ty-add-to-wish {
  z-index: 80 !important;
}
.grid-list-wishlist .ty-add-to-wish {
  color: #000 !important;
  height: 26px;
  right: 10px;
  line-height: unset;
  position: absolute;
  top: 6px;
  width: 26px;
  background: #fff;
  border-radius: 50%;
}
.simple-list-wishlist .ty-add-to-wish:hover {
  background: #fe737b !important;
  color: #ffffff !important;
}
.checkout-cart #tygh_main_container > .tygh-content > .content-grid > .row-fluid > .span16 > .ty-mainbox-container.clearfix {
  margin-bottom: 40px;
}
.ty-scroller-list__item:hover .simple-list-wishlist .ty-add-to-wish {
  display: block;
}
.simple-list-wishlist .ty-add-to-wish {
  color: #000 !important;
  height: 26px;
  right: 7px;
  line-height: unset;
  position: absolute;
  top: 10px;
  width: 26px;
  display: none;
  border-radius: 50%;
  background: #fff !important;
}
.chrome .simple-list-wishlist .ty-add-to-wish i {
  right: -1px;
  top: 6px;
}
.chrome .grid-list-wishlist .add_to_wishlist_para .fa.fa-heart-o {
  right: -1px;
}
.simple-list-wishlist .ty-add-to-wish i {
  position: absolute;
  right: 0;
  top: 5px;
}
.ty-grid-list__image {
  border: 0;
}
.rating-wish-grid-row {
  display: flex;
  margin-bottom: 4px;
  margin-top: 5px;
}
.rating-wish-grid-row > .grid-list-wishlist .fa-heart-o:hover {
  color: #000000;
}
.rating-wish-grid-row > .grid-list__rating,
.rating-wish-grid-row > .grid-list-wishlist {
  width: 50%;
}
.rating-wish-grid-row > .simple-list__rating,
.rating-wish-grid-row > .simple-list-wishlist {
  width: 50%;
}
.ty-grid-list__item-name {
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  max-width: 100% !important;
  padding-right: 0;
}
.ty-grid-list__price {
  display: block !important;
  float: none !important;
  margin-top: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-align: left;
  vertical-align: top !important;
  word-break: break-all !important;
}
.no-absolute {
  position: relative;
}
.ty-simple-list__buttons .phone-help {
  display: none;
}
.ty-add-to-wish {
  font-family: glyphs;
  font-size: 18px;
  height: 25px;
  line-height: 25px;
  margin: 0;
  position: absolute;
  right: 30px;
  top: 18px;
  width: 25px;
  z-index: 999;
}
.ty-column3 {
  position: relative;
}
.ty-grid-list__image .ty-discount-label {
  left: 0;
  position: absolute;
  right: auto;
  top: 12px;
}
.ty-column3:hover .ty-add-to-wish {
  display: block;
}
.ty-quick-view-button {
  margin-top: -40px;
  padding-top: 5px;
  position: relative;
  text-align: center;
  visibility: hidden;
  z-index: 9999;
}
#sorting_placeholder {
  margin: 15px auto;
  padding: 5px;
  border-left: 0;
  border-right: 0;
}
.category-name {
  font-size: 22px;
}
.category-content h1.ty-mainbox-title {
  display: none;
}
.ty-pagination__bottom {
  border: 0;
}
.ty-pagination {
  border: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
  text-align: center;
}
.ty-range-slider .ui-slider-handle {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #444;
  border-radius: 50%;
  cursor: col-resize;
  height: 20px;
  margin-left: -8px;
  top: -9px;
  width: 20px;
}
.ty-price-slider {
  text-align: center;
}
.ty-sort-container {
  display: none;
}
.ty-product-list__qty {
  float: left;
  width: 185px;
}
.ty-product-list__control {
  float: left;
  height: 33px;
}
.ty-product-list__control .ty-btn {
  margin-bottom: 0;
  margin-right: 0;
  width: 100% !important;
}
#pagination_contents hr {
  background: #eee none repeat scroll 0 0 !important;
  height: 1px;
  margin: 0;
}
.products-view .ty-product-block__left .ty-product-block__price-actual .ty-price-num {
  font-weight: 600;
}
.ty-product-block__price-actual .ty-price-num {
  font-size: 30px;
  color: #ff6600;
}
.ty-product-thumbnails {
  text-align: center;
}
.ty-product-thumbnails__item {
  display: inline-block;
  float: none;
}
.ty-product-block__img-wrapper img {
  display: inline;
}
.product_block_right .ty-sidebox.skroutz .lang-side_bar_text {
  font-weight: 400 !important;
}
.products-view .ty-product-block__left {
  border-left: 1px solid #eeeeee;
  padding-left: 16px;
  padding-right: 16px;
  float: right;
}
[id^="old_price_update_"] {
  display: block;
}
[id^="line_discount_update_"] {
  display: block;
}
.ty-product-block__field-group {
  float: left;
}
.ty-product-block__button {
  display: inline-block;
  float: left;
  margin: 31px -57px;
  width: 302px;
}
.ty-sku-item {
  font-size: 12px !important;
}
.ty-control-group__label {
  width: 112px;
}
.ty-product-prices {
  margin: 0px;
  line-height: 6px;
}
.ty-product-prices > span {
  margin: 0 0 4px;
  line-height: 1;
}
.ty-product-block__option,
.ty-product-block__advanced-option,
.ty-product-block__field-group {
  margin-bottom: 0;
}
.ty-product-block__price-actual {
  margin: 3px 0 10px;
}
.ty-product-block-title {
  margin-bottom: 0;
}
.ty-discussion__rating-wrapper {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.ty-discussion__rating-wrapper {
  font-size: 13px;
}
.ty-qty-in-stock,
.ty-qty-out-of-stock {
  font-weight: normal;
}
.ty-product-block__field-group [for^="qty_count_"] {
  width: 75px;
}
.ty-product-block__button .ty-btn {
  min-width: 250px;
}
.ty-list-price {
  font-size: 14px;
}
.smallable .ty-control-group__label {
  width: 135px;
}
.clearfix.smallable {
  font-size: 12px;
}
.clearfix.smallable a {
  font-size: 10px;
}
.reversed {
  border: 1px solid #d9d9d9;
  padding: 10px;
  background: #fff;
  margin-top: 19px;
}
.otherbg {
  background: #FFF;
  border-top: 1px solid #ccc;
  position: relative;
  margin: 0;
}
#fixme.side-grid.reversed {
  margin-left: 19px;
  width: 287px !important;
  border: 1px solid #d9d9d9;
}
.half-page-banner-text > .half-page > .ty-mainbox-body > .half-page .text-description p {
  color: #4d4d4d !important;
}
.half-page-banner-text > .half-page >.ty-mainbox-body > .ty-mainbox-title span {
  color: #4d4d4d !important;
}
.ty-mainbox-container.brand-banner-right > .ty-mainbox-body > .ty-mainbox-title > span {
  color: #4d4d4d !important;
}
.tab_bar_w {
  left: 0;
  position: relative;
  right: 0;
  width: 100%;
}
.tab_bar_w.fixed {
  position: fixed;
  top: 0;
  z-index: 99999;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent, 0 0 0 0 transparent, 7px 10px 30px -17px #cccccc;
  padding-bottom: 0;
}
.tab_bar {
  margin: 0 auto;
  width: 1200px;
  border-top: 1px solid #ededed;
  background: #ededed;
}
.tygh-content > .tab_bar_w {
  padding-bottom: 0 !important;
}
.tab_bar a {
  display: inline-block;
  float: left;
  font-size: 17px !important;
  padding: 10px 30px;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  color: #000;
  border-bottom: 2px solid transparent;
}
.tab_bar a:hover,
.tab_bar a:focus {
  text-decoration: underline;
}
.tab_bar a.active {
  text-decoration: none;
  background: #000000;
  color: #ffffff !important;
}
.tab_content {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #d9d9d9;
  border-radius: 1px;
  margin: 19px 0;
  padding: 15px;
}
.otherbg .container-fluid.content-grid {
  background: transparent;
}
.whenfixed.clearfix {
  margin: 0 auto;
  width: 1200px;
  display: none;
}
.whenfixed.clearfix a {
  font-size: 26px;
}
.fixed .whenfixed {
  display: block;
}
.fakebtn {
  float: right;
  margin-top: 10px;
}
.ty-wysiwyg-content h3 {
  font-weight: normal;
  font-size: 26px;
}
.product_block_right {
  box-sizing: border-box;
  display: table-cell;
  padding: 0px 0 10px 10px;
  width: 228px;
  vertical-align: top;
}
.relative {
  position: relative;
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding: 10px 0;
}
.ty-product-block__left {
  max-width: 460px;
}
.ty-product-block__field-group {
  display: block;
  width: 45%;
}
.ty-product-options select {
  width: 150px;
  border: 1px solid #d4d4df;
}
.ty-product-options select:focus {
  border-color: #ff6600;
  outline: none;
}
.ty-product-options select:focus option {
  outline: 0;
}
a:focus {
  outline: none !important;
}
.ty-product-block__left {
  vertical-align: top;
}
.fear_factor {
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-sizing: border-box;
  display: block;
  margin: -20px auto 20px;
  padding: 5px 15px;
  text-align: center;
  width: 80%;
}
.discussion-block hr {
  background: #eeeeee none repeat scroll 0 0;
  height: 1px;
  margin: 20px 0 30px;
}
.ty-discussion-post__date {
  color: #4d4d4f;
  float: none;
  font-size: inherit;
  margin-left: 5px;
  margin-top: 1px;
  right: 0;
}
.discussion-block .ty-pagination {
  border: 0 none;
  display: inline-block;
  float: right;
  margin-bottom: 60px;
  margin-top: -60px;
}
.discussion-block .ty-pagination__bottom {
  float: right;
  margin-bottom: -65px;
  margin-top: 70px !important;
}
h3.qtabs {
  background: #f2f2f4 none repeat scroll 0 0;
  border: 1px solid #eeeeee;
  float: left;
  margin-right: 5px;
  padding: 2%;
  text-align: center;
  width: 156px;
  cursor: pointer;
  margin-bottom: -2px;
}
h3.qtabs:nth-child(2) {
  margin-right: 0;
}
.qtabs.active {
  background: #ffffff none repeat scroll 0 0;
  border-bottom: 0 none;
  position: relative;
  z-index: 2147483647;
  text-decoration: overline;
}
#item_selection,
#summary {
  border: 1px solid #eeeeee;
  padding: 15px;
  margin-top: 0px;
  width: 350px;
  box-sizing: border-box;
  min-height: 300px;
  max-height: 300px;
  height: 300px;
  position: relative;
  overflow: auto;
  background: #fff;
}
.ty-quick-view__wrapper .ty-product-block__left {
  width: 350px;
}
.ty-quick-view__wrapper .ty-product-block__field-group {
  width: auto;
}
.ty-quick-view__wrapper .ty-product-block__button {
  display: block;
  float: none;
  margin: 0;
  width: auto;
}
.ty-quick-view-tools {
  display: none;
}
#summary {
  display: none;
}
.ui-dialog .ui-dialog-titlebar {
  border-top: 15px solid #455560;
}
.ui-widget-header .ui-state-default {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
  border: 0 none;
  z-index: 9999;
}
.ui-dialog-titlebar.ui-widget-header.ui-corner-all.ui-helper-clearfix {
  border-bottom: 0 none;
  height: 0;
  padding: 0;
  text-indent: -99999px;
}
.ty-quick-view__wrapper {
  width: 700px;
  min-height: 750px;
}
div.ui-dialog .ui-dialog-title {
  padding-right: 0;
}
.ty-mainbox-title.styled {
  height: 20px;
  text-align: center;
  margin-bottom: 17px;
}
.brands-homepage-images .ty-mainbox-body > a {
  float: right;
  margin-top: 7px;
}
.index-index .ty-mainbox-title.styled > span {
  font-weight: 200;
}
.ty-mainbox-title.styled > span {
  background: #ffffff none repeat scroll 0 0;
  font-weight: 300;
  padding: 10px;
  font-size: 20px;
  line-height: 20px;
}
#product_quick_view .object-container {
  overflow: hidden;
}
#product_quick_view .ty-owl-controls {
  float: none;
  left: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 100;
}
#product_quick_view .owl-next {
  position: absolute;
  right: 20px;
  top: 45px;
}
#product_quick_view .owl-prev {
  left: 10px;
  position: absolute;
  top: 45px;
}
#product_quick_view .ty-discussion__review-write {
  display: none;
}
#product_quick_view .ty-product-img {
  border: 0;
}
.ty-quick-view-tools {
  position: absolute;
  right: 25px;
  width: 115px;
  display: block;
}
#product_quick_view
.ty-product-block-title {
  margin-bottom: 10px;
  margin-top: -10px;
}
.ui-widget-header .ui-icon-closethick {
  color: #666;
}
#product_quick_view .ty-product-block-title {
  margin-bottom: 10px;
  margin-top: -10px;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
  white-space: nowrap;
}
.squaredTwo input[type=checkbox] {
  visibility: hidden;
}
.ty-product-filters__group {
  line-height: 24px;
}
.squaredTwo {
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
  float: left;
  position: relative;
  border: 1px solid #ccc;
}
.squaredTwo label {
  cursor: pointer;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 4px;
  top: 4px;
  background: #fff;
}
.squaredTwo label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 14px;
  height: 5px;
  background: transparent;
  top: 2px;
  left: 0px;
  border: 3px solid #444;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.squaredTwo label:hover::after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.3;
}
.squaredTwo input[type=checkbox]:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}
.ui-widget-overlay {
  background-color: #666;
}
#content_product_tab_41 .ty-simple-list .rating-wish-grid-row {
  width: 68%;
}
.index-text-message {
  margin-top: 15px;
  text-align: justify;
}
#content_product_tab_41 .ty-simple-list .product-title > p {
  color: #000000 !important;
  padding: 0;
}
.ty-simple-list__price .list_discount_block .ty-list-price.ty-save-price.ty-nowrap {
  font-size: 15px;
}
.ty-simple-list__price [id^="old_price_update"] span {
  font-size: 15px;
}
#fixme .list_discount_block span[id^="prc_discount_value"] {
  color: #fe737b !important;
}
.order_track {
  text-align: center;
}
.page-41 .ty-wysiwyg-content > h2 {
  text-align: center;
}
.order_track .tracking-info-text > p {
  padding: 0;
}
.order-track {
  height: 40px !important;
  width: 400px;
}
.tracking-search {
  margin-top: 34px;
}
.speedex-tracking-search-button > button {
  background: #007b42 none repeat scroll 0 0;
  border: medium none;
  color: #ffffff;
  font-size: 15px;
  padding: 6px 56px;
}
.speedex-tracking-search-button > button:hover {
  background: #101884 none repeat scroll 0 0;
}
.speedex-tracking-search-button > button:active {
  box-shadow: 0 0 10px rgba(0,0,0,0.35) inset;
}
.order_track .image {
  margin-top: 25px;
}
.main-menu-para > .ty-menu__items > .ty-menu__item > .ty-menu__item-link > span {
  position: relative;
  top: 2px;
}
.speedex-tracking-search-button > button {
  margin-top: 29px;
}
.page-41 .ty-wysiwyg-content > h2 {
  font-size: 20px;
}
.home-middle-banners .ty-pict {
  transition: all 1s ease 0.1s;
}
.home-middle-banners .ty-pict:hover {
  transform: scale(1.1);
}
.middle-banners-homepage .ty-banner__image-wrapper:hover img {
  transition: all 1s ease 0.1s;
  transform: scale(1.1);
}
.middle-banners-homepage .ty-banner__image-wrapper img {
  transition: all 1s ease 0.1s;
}
.index-text-message .title {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 13px;
  text-decoration: underline;
}
.page-30 h1.ty-mainbox-title {
  margin-top: 0;
}
.profiles-add .ty-link-unlink-provider img {
  opacity: 1;
}
#hybrid_providers {
  margin-bottom: 20px;
}
.popup-line4 div {
  display: inline;
}
.popup-line4 .fb-like.fb_iframe_widget {
  margin-left: 6px;
}
.orders-details h1 {
  margin-top: 15px;
}
.orders-search h1 {
  margin-top: 15px;
}
.ty-orders-detail .ty-orders__actions a {
  color: #333333 !important;
}
.ty-orders-detail .ty-orders__actions a:hover {
  color: #00A5FF !important;
}
.page-62 .ty-column4:nth-child(4n+5)::before,
.page-116 .ty-column4:nth-child(4n+5)::before {
  border-bottom: none;
}
.page-59 .ty-form-builder__buttons.buttons-container {
  background: #ffffff none repeat scroll 0 0;
  padding-left: 0 !important;
}
.page-62 .ty-mainbox-title,
.page-116 .ty-mainbox-title {
  color: #4d4d4f;
  text-align: center !important;
}
.page-62 .lang-side_bar_text,
.page-62 .under-tile,
.page-116 .lang-side_bar_text,
.page-116 .under-tile {
  display: block;
  text-align: center;
}
.page-62 .under-tile,
.page-116 .under-tile {
  margin: 8px auto 0 !important;
}
.page-62 #pagination_contents > .ty-mainbox-title,
.page-116 #pagination_contents > .ty-mainbox-title {
  margin-bottom: 0;
}
.notification-body-extended .ty-simple-list .product-title {
  height: 55px !important;
}
.plus_popup .lower-part .maintable > td a {
  font-size: 15px !important;
}
.page-62 .grid-list,
.page-116 .grid-list {
  margin-top: 15px;
}
.page-62 .ty-column5,
.page-116 .ty-column5 {
  border: 1px solid #ffffff !important;
  position: relative;
  margin-bottom: 15px;
}
.page-62 .ty-column5:hover,
.page-116 .ty-column5:hover {
  border: 1px solid #e7e7e8 !important;
  z-index: 1;
}
#fixme .ty-sidebox__title.cm-combination {
  margin-bottom: 0;
}
.everyday_products .lang-side_bar_text {
  font-size: 13px !important;
}
.index-index .main-prods .ty-mainbox-title > span {
  font-size: 28px !important;
}
.main-prods .lang-side_bar_text {
  font-size: 13px !important;
}
.lock.span2 {
  width: 94px !important;
}
.secure-icon.span2 {
  margin: 15px 0 0 7px !important;
}
.ty-payment-icons__item {
  margin-left: 1px !important;
}
.ty-payment-icons__item.paypal-ifarm img {
  border: medium none !important;
}
.ty-reward-group .ty-control-group__label {
  width: auto !important;
  margin-right: 3px !important;
}
.page-62 #pagination_contents .lang-side_bar_text,
.page-116 #pagination_contents .lang-side_bar_text {
  font-size: 13px !important;
}
.page-62 #pagination_contents > h1 span,
.page-116 #pagination_contents > h1 span {
  font-size: 22px !important;
}
.ty-reward-group span {
  padding: 0;
}
.products-view .ty-product-block__advanced-option.clearfix {
  margin: 9px 0 !important;
}
.checkout-cart .ty-coupons__container .ty-reward-points__info.clearfix {
  display: none !important;
}
.phone-help {
  margin-top: 8px;
}
.phone-help > span {
  color: #000000;
  margin-left: 3px;
}
.payment-methods-product .second {
  text-align: left;
}
.ty-blog-recent-posts-scroller__item > .blog_content > .blog_content_inside {
  height: 67px;
}
.ty-blog-recent-posts-scroller__item .ty-blog__date {
  margin-top: 0;
  color: #666;
}
.ty-blog-recent-posts-scroller .blog_article_date .ty-blog__date {
  padding: 3px 4px 3px 0;
  text-align: right;
}
.ty-blog-recent-posts-scroller .got_to_url {
  margin: 0 auto;
  text-align: center;
  width: 164px;
  background: #ededed;
  padding: 3px 0;
}
.blog_article_preview {
  height: 52px;
  margin-bottom: 14px;
  margin-top: 12px;
}
.ty-blog-recent-posts-scroller .article-title {
  height: 74px;
}
.ty-blog-recent-posts-scroller .article-title {
  height: 74px;
  margin-bottom: 8px;
}
.ty-blog-recent-posts-scroller .got_to_url > a {
  display: block;
}
.blog_article_see_more {
  margin-top: 8px;
}
.blog_article_date {
  background: #ededed none repeat scroll 0 0;
}
.categories-view .subcategories .ty-subcategories__item:nth-child(4n) {
  margin-right: 0 !important;
}
.payment-methods-product .first {
  text-align: right;
  vertical-align: top;
}
.payment-methods-product .ty-wysiwyg-content td,
.payment-methods-product .ty-wysiwyg-content th {
  border-color: transparent;
  padding: 0;
}
.payment-methods-product .ty-wysiwyg-content ul li {
  display: inline;
}
.phone-help > img {
  position: relative;
  top: -2px;
}
.blog-carousel .everyday_products .ty-scroller-list__item {
  height: 404px;
}
.ty-reward-group .ty-control-group__item {
  color: #4d4d4f;
}
.ty-reward-points__info.clearfix {
  background: #4d4d4f none repeat scroll 0 0;
  color: #ffffff;
  font-size: 15px !important;
  margin-top: 32px;
  padding: 2px 10px;
}
.ty-pagination__item,
.ty-pagination__selected {
  padding: 4px 7px !important;
}
.ty-scroller-list__item .ty-reward-group {
  display: none;
}
.ty-coupons__container #point_payment .ty-discount-coupon__control-group .ty-btn-go:hover {
  background: #777777 none repeat scroll 0 0;
  border: 1px solid #777777;
}
.ty-coupons__container #point_payment .ty-discount-coupon__control-group .ty-btn-go {
  background: #666666 none repeat scroll 0 0;
  border: 1px solid #666666;
  color: #ffffff;
  font-weight: 600;
  height: 32px;
  margin-left: 0;
  position: relative;
  right: -2px !important;
  width: 111px;
}
#point_payment.discount-coupon {
  text-align: left;
}
#point_payment .ty-discount-info {
  text-align: center;
}
.ty-coupons__container .ty-discount-info > .ty-reward-points__txt-point {
  font-weight: 300;
  color: #fe737b;
  font-size: 18px;
}
.ty-coupons__container .ty-discount-info {
  margin: 10px 0 0 10px;
  width: 366px;
  border: 1px solid rgba(128,128,128,0.24);
  box-shadow: 0 1px 3px rgba(128,128,128,0.12), 0 1px 3px rgba(128,128,128,0.24);
}
.ty-coupons__container #point_payment .ty-discount-coupon__control-group input {
  padding-right: 0;
  position: relative;
  width: 300px !important;
}
.ty-reward-points__info.clearfix {
  margin-top: 33px;
}
.ty-discount-coupon__control-group .ty-input-text.ty-valign {
  color: #fe737b !important;
  font-size: 15px;
  font-style: italic;
}
.ty-cart-statistic__item .ty-cart-statistic__title {
  float: left !important;
}
.ty-coupons__container #point_payment .ty-discount-coupon__control-group .ty-btn-go:hover {
  background: #777777 none repeat scroll 0 0;
}
.inner-left-cart_total .ty-input-append .ty-input-text {
  padding-right: 0 !important;
}
.ty-text-links__item.ty-level-1 ul {
  display: none;
}
.ty-grid-list__image {
  position: unset !important;
}
.grid-list .ty-column4,
.grid-list .ty-column5 {
  position: relative;
}
.grid-list .ty-grid-list__image > img {
  position: absolute;
  right: 0;
  top: 0;
}
.grid-list .ty-column4 {
  margin-right: unset;
}
.home-side-menu .ty-text-links__item {
  margin-right: 0;
}
.products-view .ty-product-block .ty-product-block__img .best-sell-img {
  left: 1px;
  position: absolute;
  top: 1px;
}
.products-view .ty-product-block .ty-product-block__img .best-price-img {
  left: 1px;
  position: absolute;
  top: 1px;
}
.ty-product-list .ty-product-list__content {
  position: relative;
  overflow: unset;
}
.grid-list .bestprice-image {
  position: absolute;
  left: 0px;
  top: -1px;
}
.grid-list .bestprice-image.not-alone {
  top: 19px;
}
.grid-list .best-sell-img {
  left: 0px;
  position: absolute;
  top: -1px;
}
.products-frontpage .owl-item .ty-scroller-list__item .bestprice-image.not-alone {
  top: 23px !important;
}
.products-frontpage .owl-item .ty-scroller-list__item .bestprice-image {
  left: 7px;
  position: absolute;
  top: 0px;
}
.products-frontpage .owl-item .ty-scroller-list__item .best-sell-img {
  left: 7px;
  position: absolute;
  top: 0px;
}
.products-frontpage .owl-item:nth-child(4n+1) .ty-scroller-list__item .bestprice-image.not-alone {
  top: 23px !important;
}
.products-frontpage .owl-item:nth-child(4n+1) .ty-scroller-list__item .bestprice-image {
  position: absolute;
  left: 0px;
  top: 0px;
}
.products-frontpage .owl-item:nth-child(4n+1) .ty-scroller-list__item .best-sell-img {
  left: 0px;
  position: absolute;
  top: 0px;
}
.side-grid .ty-menu__submenu > .ty-menu__submenu-list > li {
  border-bottom: medium none;
}
.phone-number-header-promo:hover .tooltip-message:before {
  content: "";
  display: block;
  height: 40px;
  left: 0;
  position: absolute;
  top: -39px;
  width: 218px;
}
.free-shipping-header-promo:hover .tooltip-message::before {
  content: "";
  display: block;
  height: 40px;
  left: 0;
  position: absolute;
  top: -39px;
  width: 218px;
}
.side-grid div.ty-menu__submenu-item-header .ty-menu__submenu-link {
  color: #000000 !important;
  font-size: 15px !important;
  font-weight: normal !important;
}
.side-grid .ty-menu__submenu-item-header {
  margin-top: 4px;
  min-height: 24px;
}
.side-grid .ty-menu__submenu-item-header {
  border-bottom: medium none;
  margin-bottom: 0;
}
.side-grid .ty-top-mine__submenu-col {
  margin-bottom: 0 !important;
}
.side-grid .ty-menu__submenu-item-header {
  margin-top: 3px;
  min-height: 8px;
}
.product_block_right .bestseller,
#fixme .bestseller {
  position: absolute;
  top: 0;
  right: 0;
}
.notification-body-extended .ty-scroller-list__item .bestseller {
  width: 39px;
}
.ty-product-list__content .bestprice-image.alone {
  top: 24px;
}
.ty-product-list__content .best-sell-img {
  position: absolute;
  right: -76px;
  top: 4px;
}
.ty-product-list .bestprice-image {
  position: absolute;
  right: -76px;
  top: 4px;
}
.ty-rating {
  color: #808080;
}
.ty-cart-items {
  padding: 10px 8px 3px !important;
  width: 272px !important;
}
.ty-cart-items {
  max-height: 400px;
  overflow: auto;
  padding: 10px 22px;
  width: 320px;
}
#fixme .bestprice-image {
  position: absolute;
  left: 0;
  top: 0;
}
.top-cart-content .ty-cart-items__list-item:last-child {
  border-bottom: 1px solid #ecf0f1 !important;
}
.basket-value {
  text-align: right;
  margin-right: 11px;
}
.basket-value > div {
  display: inline;
}
.top-cart-content .ty-cart-items > hr {
  margin-bottom: 0;
}
.checkout-cart .Everyday .owl-prev,
.checkout-cart .Everyday .owl-next {
  top: 227px;
}
.notification-body-extended .bestprice-image > img {
  width: 39px;
}
.ty-scroller-list .bestprice-image.not-alone {
  position: absolute;
  top: 20px;
}
.ty-rating
.ty-product-notification__buttons.clearfix > .ty-float-left > .ty-btn__secondary {
  background: #fe737b none repeat scroll 0 0 !important;
}
.ty-product-notification__buttons.clearfix > .ty-float-left > .ty-btn__secondary:hover {
  background: #333 none repeat scroll 0 0 !important;
}
.ty-product-block__img-wrapper .ty-product-block__img .bestprice-image {
  position: absolute;
  left: 1px;
  top: 24px;
}
.products-view .ty-sidebox.skroutz .bestprice-image,
.checkout-cart .ty-sidebox.skroutz .bestprice-image {
  position: absolute;
  left: 0;
  top: 0;
}
#checkout_steps #step_two #subsciption_,
#checkout_steps #step_two .ty-subheader {
  display: none;
}
.side-grid .ty-menu__item.cm-menu-item-responsive.expand:hover .ty-menu__submenu-items {
  background: rgba(0,0,0,0) none repeat scroll 0 0;
}
.test {
  display: none !important;
}
.best-price_product-notification {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #999999;
  border-radius: 3px;
  box-shadow: 0 0 4px #777777;
  float: right;
  height: 56px;
  left: -62px;
  padding: 7px 4px 7px 7px;
  position: relative;
  text-align: left;
  top: -4px;
}
.best-price_product-notification span {
  color: #ffffff;
}
.best-price_product-notification > img {
  cursor: pointer;
  position: absolute;
  right: 2px;
  top: 2px;
}
.best-price_product-notification::before {
  border-color: rgba(0,0,0,0) #999999 rgba(0,0,0,0) rgba(0,0,0,0);
  border-style: solid;
  border-width: 10px 21px 10px 0;
  content: "";
  height: 0;
  left: -21px;
  position: absolute;
  top: 11px;
  width: 0;
}
.best-price_product-notification::after {
  border-color: rgba(0,0,0,0) #ffffff rgba(0,0,0,0) rgba(0,0,0,0);
  border-style: solid;
  border-width: 10px 21px 10px 0;
  content: "";
  left: -19px;
  position: absolute;
  top: 11px;
}
.best-price_product-notification span {
  display: block;
  color: #4d4d4f;
}
.best-price_product-notification .second {
  font-size: 10px;
}
.best-price_product-notification > div {
  text-align: center;
}
.best-price_product-notification .first {
  font-weight: bold !important;
}
.products-view .ty-product-block__left {
  position: relative;
}
.side-grid .ty-menu__item.cm-menu-item-responsive:hover .ty-menu__submenu-items {
  background: #fff !important;
}
.checkout-cart .owl-next {
  right: -15px;
}
.ty-simple-list__price .list-price-label {
  display: none !important;
}
.brands-homepage-images .squaredTwos:hover img {
  display: none;
}
.brands-homepage-images .squaredTwos:hover span {
  display: block;
}
.brands-homepage-images .squaredTwos:hover {
  background: #ededed none repeat scroll 0 0;
}
.brands-homepage-images > .ty-mainbox-body {
  width: 100% !important;
}
.brands-homepage-images .squaredTwos:nth-child(6n) {
  margin-right: 0 !important;
}
.brands-homepage-images .ty-mainbox-body > div {
  width: 100% !important;
}
.brands-homepage-images .squaredTwos:nth-child(6n) {
  border-right: 1px solid #eeeeee;
}
.brands-homepage-images .squaredTwos:nth-child(n + 7) {
  border-top: none !important;
}
.brands-homepage-images .squaredTwos {
  display: inline-block;
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  height: 73px;
  line-height: 73px;
  position: relative;
  text-align: center;
  transition: all 0.6s ease 0s !important;
  vertical-align: middle;
  width: 198px;
  float: left;
}
.brands-homepage-images .squaredTwos:nth-child(3):before {
  width: 0;
  height: 0;
  display: block;
  content: "";
  position: absolute;
  right: -16px;
  top: 0px;
  z-index: 1;
}
.brands-homepage-images .squaredTwos:nth-child(3):after {
  width: 0;
  height: 0;
  display: block;
  content: "";
  position: absolute;
  right: -15px;
  top: -1px;
  z-index: 2;
}
.header-exeggya .item-exeggya > a:hover span {
  text-decoration: underline;
}
.ty-dropdown-box__title.open + .cm-popup-box {
  display: block !important;
}
.all-categories-header-toolbar-outer .menu-homepage {
  display: none;
}
.all-categories-header-toolbar-outer {
  position: relative;
}
.menu-homepage.active .ty-menu__item {
  text-align: left;
}
.all-categories-header-toolbar-outer .menu-homepage.active {
  display: block;
  left: -5px !important;
  position: absolute;
  width: 100% !important;
  z-index: 5;
}
.ty-wish-list__buttons .ty-btn.ty-btn__secondary.text-button:hover {
  background: #000000 none repeat scroll 0 0;
}
.ty-wish-list__buttons .ty-btn.ty-btn__secondary.text-button {
  background: #fe737b none repeat scroll 0 0;
}
.brands-homepage-images .texti {
  display: none;
  font-size: 15px;
}
.brands-homepage-images .ty-mainbox-title.styled a:hover {
  color: #4C8342 !important;
}
.brands-homepage-images .ty-mainbox-title.styled a {
  font-size: 22px !important;
  color: #96ca21 !important;
}
.ty-mainbox-container.clearfix.brands-homepage-images {
  margin-top: 30px;
}
.ty-search-magnifier::after {
  background: none !important;
}
.shipping-promo {
  margin-top: -14px;
  text-align: center !important;
}
.mCSB_scrollTools .mCSB_draggerContainer {
  bottom: 0;
  height: auto;
  left: 4px !important;
  position: absolute;
  right: 4px !important;
  top: 0;
}
#tygh_footer .newsletter-outer .newsletter {
  padding: 0;
  background: rgba(0,0,0,0) url('../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/NLfooter-01.png?1753621501') no-repeat scroll center center;
  height: 229px;
  max-width: 1200px;
  padding: 55px 0 0;
  box-sizing: border-box;
  margin: 0 auto;
}
.span16.keywords-homepage-outer {
  margin-top: 24px;
}
#tygh_footer .newsletter-outer {
  background: rgba(0,0,0,0) url("../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/rest_news_bg.png?1481040301") repeat-x scroll 0 0;
}
.index-index #tygh_footer .newsletter-outer {
  background: rgba(0,0,0,0) url("../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/rest_news_bg.png?1481040301") repeat-x scroll 0 0;
}
.index-index.page- > iframe {
  display: none;
}
.ty-mb-lasd .ty-blog-recent-posts-scroller > div {
  display: inline-block;
  float: left;
  width: 234px;
}
.homepage-para-blog .blog-title > h2 {
  margin-bottom: 0;
}
.ty-blog-recent-posts-scroller__img-block {
  max-height: unset;
}
.ty-blog-recent-posts-scroller__img-block img {
  bottom: unset;
  display: block;
  height: auto;
  left: 0;
  margin: auto;
  max-width: 100%;
  position: relative;
  right: 0;
  top: unset;
  vertical-align: middle;
}
#tygh_footer .newsletter-outer .newsletter > div {
  display: inline-block;
  float: left;
  width: 34%;
}
#tygh_footer .newsletter-outer .newsletter-text {
  padding-left: 319px !important;
}
.span16.keywords-homepage {
  margin-bottom: 27px;
}
#content_tags_tab .tag-title > span {
  font-weight: 600;
}
.ty-simple-list .ty-btn.ty-btn__text.ty-add-to-compare {
  display: none;
}
.products-view .tag-title > span {
  font-size: 15px;
}
.tag-title span {
  font-size: 16px;
  font-weight: 500;
}
.ty-taged-list__a:hover {
  text-decoration: underline;
}
.multi_products_cats_part li > a:hover {
  text-decoration: underline;
}
.ty-footer-grid .newsletter-div {
  display: block;
}
.ty-footer.newsletter .ty-footer-menu__icon-hide.ty-icon-up-open {
  display: none;
}
.ty-footer-grid .newsletter-div > .newsletter {
  display: none;
}
.index-blog-articles .under-title {
  display: block;
  margin-bottom: 0;
}
.index-blog-articles .ty-mainbox-body {
  position: relative;
}
.index-blog-articles .ty-owl-controls {
  position: unset;
}
.exxegy-footer-inner .item-exeggya > div {
  display: inline-block;
}
.chrome .number::before {
  bottom: -2px;
}
.chrome .ty-grid-list__item-name p {
  height: 47px;
}
.span16.exxegy-footer .item-exeggya {
  display: inline-block;
  text-align: center;
  width: 24.7%;
  height: 67px;
}
.ty-footer .ty-text-links__item .ty-text-links__a {
  font-size: 15px !important;
}
.exeggya > .item-exeggya:nth-child(3) > .exeggya-text {
  margin-left: 1px;
}
.exeggya > .item-exeggya > .exeggya-text {
  margin-left: 5px;
  line-height: 1.1;
}
.item-exeggya > .exeggya-text {
  margin-top: 15px;
}
.exeggya > .item-exeggya > .exeggya-img {
  position: relative;
  top: -13px;
}
.social-footer-icons {
  text-align: center;
}
.social-footer-icons li {
  display: inline-block;
}
.social-footer-icons > span,
.social-footer-icons > ul {
  display: inline-block;
  padding-left: 6px !important;
}
.revs_inside.clearfix > h2 {
  font-size: 36px;
  font-weight: 100;
  margin-bottom: 0;
  margin-top: 13px;
  color: #000;
}
.revs_inside .real_reviews .review:last-child {
  margin-right: 0;
}
.revs_inside .real_reviews .review:first-child {
  margin-left: 0;
}
.social-footer .facebook:hover img {
  background: rgba(254,115,123,0.5) none repeat scroll 0 0 !important;
}
.social-footer .googleplus:hover img {
  background: rgba(254,115,123,0.5) none repeat scroll 0 0 !important;
}
.social-footer .pinterest:hover img {
  background: rgba(254,115,123,0.5) none repeat scroll 0 0 !important;
}
.social-footer .twitter:hover img {
  background: rgba(254,115,123,0.5) none repeat scroll 0 0 !important;
}
.exxegy-footer .exeggya-text > span {
  font-size: 17px;
}
.span16.exxegy-footer-inner {
  box-shadow: 0 8px 8px -10px #696868, 0 -8px 8px -10px #696868;
  position: relative;
}
.ty-list-price.ty-nowrap.ty-tax-include {
  display: none;
}
.top-my-account .ty-account-info li a:hover {
  text-decoration: underline;
}
.index-blog-articles .owl-prev {
  color: #96CA21 !important;
  font-size: 30px !important;
  left: -29px;
  top: 73px;
}
.index-blog-articles .owl-next {
  color: #96CA21 !important;
  font-size: 30px !important;
  right: -17px;
  top: 73px;
}
.index-blog-articles .ty-blog-recent-posts-scroller__img-block {
  margin-bottom: 0;
}
.index-blog-articles .ty-mb-l {
  margin-bottom: 0 !important;
}
.index-blog-articles.skroutz .ty-mainbox-title > span {
  font-size: 22px !important;
}
.index-blog-articles .lang-side_bar_text {
  font-size: 13px !important;
}
.ty-blog-recent-posts-scroller__item a:hover {
  text-decoration: underline;
}
.ty-blog-recent-posts-scroller__item {
  margin-top: 0;
}
.span16.homepage-para-blog {
  margin-bottom: 45px;
}
.social-footer-icons ul li {
  margin-right: 4px;
}
.span3.footer-communication {
  margin-left: 0 !important;
  width: 237px;
}
.home-middle-banners .span8.presentation-text p {
  text-align: justify;
}
.two-rows-block .banner-images {
  margin-left: 0 !important;
  width: 300px !important;
}
.two-rows-block > .row-fluid > .one-row > .row-fluid > .only-banner img {
  transition: all 1s ease 0.1s;
}
.two-rows-block > .row-fluid > .one-row:hover > .row-fluid > .only-banner img {
  transform: scale(1.1);
}
.ty-footer.footer-acount-info li.ty-footer-menu__item {
  padding: 1px 0;
}
.top-menu .ty-menu__item .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu-item-header > .ty-menu__submenu-link:hover {
  text-decoration: underline;
}
.homepage-para-blog .blog-title > h2 {
  background: #ffffff none repeat scroll 0 0;
  font-size: 37px;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 23px;
  color: #000;
}
.article-title > a {
  font-size: 23px !important;
  text-align: left !important;
  width: 100% !important;
  color: #000 !important;
  display: block;
  line-height: 24px;
}
.index-blog-articles .blog-title > h2 {
  text-align: center;
}
.homepage-para-blog .ty-mb-lasd .blog_content .article-title {
  height: 38px;
}
.homepage-para-blog .ty-mb-lasd .blog_content {
  background: #eaeaea none repeat scroll 0 0;
  padding: 9px;
}
.got_to_url {
  text-align: right;
}
.got_to_url i {
  font-size: 24px;
}
.homepage-para-blog .big_element_blog_content {
  background: #eaeaea none repeat scroll 0 0;
}
.homepage-para-blog .big-element .big_element_blog_content {
  padding: 13px;
}
.homepage-para-blog .big-element .ty-blog-recent-posts-scroller .blog-cat-name {
  background: #bf077f none repeat scroll 0 0;
  color: #ffffff;
  font-size: 21px !important;
  font-weight: 200;
  padding: 8px 0 8px 14px;
  text-align: left;
}
.homepage-para-blog .big-element .article-title > a {
  color: #4e4a47 !important;
  font-size: 18px !important;
  font-weight: 600;
}
.big-element .article-title {
  margin-bottom: 7px;
  height: 46px;
}
.frontpage-urls .ty-text-links__a {
  font-weight: 300;
  font-size: 11px !important;
}
.chrome .big-element .article-title {
  height: 51px;
}
#tygh_footer .keywords-homepage-outer {
  max-width: unset !important;
  width: 100% !important;
}
#tygh_footer .span16.keywords-homepage-container {
  margin-bottom: 14px;
  margin-top: 3px !important;
}
#tygh_footer .span16.keywords-homepage {
  float: none;
  margin: 0 auto;
  max-width: 1200px;
}
.ty-cart-content__product-elem.ty-cart-content__list_price {
  text-align: center;
}
.ty-cart-content__product-elem.ty-cart-content__price {
  text-align: center;
  color: #000000;
}
#tygh_footer .span16.keywords-homepage-outer {
  display: none !important;
}
.index-index #tygh_footer .span16.keywords-homepage-outer {
  display: block !important;
}
.ty-sitemap__tree.tags li {
  display: inline-block;
  width: 19%;
}
.ty-cart-content__product-elem.ty-cart-content__price > .ty-sub-price {
  font-weight: bold;
}
.ty-cart-content__product-elem.ty-cart-content__list_price span {
  text-decoration: line-through;
}
.group_tags li a:hover {
  color: #fe737b !important;
}
.got_to_url> a:hover > i {
  color: #fe737b;
}
.ty-qty-discount__table .ty-qty-discount__td {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.ty-table.ty-qty-discount__table > thead {
  border-bottom: 2px solid #f1f1f1;
}
.ty-product-block__left .ty-qty-discount__td.perc,
.ty-product-block__left .ty-qty-discount__td.price_margin {
  color: #fe737b;
}
.ty-product-block__left .discount-title .ty-qty-discount__label {
  text-align: center;
  height: 38px !important;
}
.ty-product-block__left .discount-title .ty-qty-discount__label {
  width: 100%;
  height: 38px;
  text-align: center;
}
.ty-product-block__left .ty-qty-discount {
  padding: 6px 11px !important;
}
.ty-product-block__left .ty-qty-discount {
  position: relative;
}
.ty-product-block__left .ty-qty-discount .discount-title .ty-qty-discount__label {
  box-sizing: border-box !important;
  padding-top: 3px;
  padding-left: 62px !important;
  font-weight: 500;
}
.order-search-index .left > img {
  width: 68px;
}
.ty-product-block__left .ty-qty-discount__label {
  padding-left: 62px;
}
.amountprice-image {
  position: absolute;
  top: 0;
  right: 13px;
}
.ty-qty-discount .discount-title img {
  position: absolute;
  left: 55px;
  top: 0px;
}
.ty-qty-discount .ty-qty-discount__label {
  padding-top: 9px;
  box-sizing: border-box;
}
.ty-product-block__left .ty-qty-discount__table tr > .ty-qty-discount__td:first-child {
  width: 25%;
  padding-right: 6px !important;
}
.ty-qty-discount__table .ty-qty-discount__td:last-child {
  border: none !important;
}
.ty-product-block__left .ty-qty-discount__table tr > .ty-qty-discount__td {
  text-align: right;
  border: none;
  padding-right: 6px !important;
}
.ty-product-block__left .ty-qty-discount {
  box-sizing: border-box;
  padding: 0 11px;
}
.ty-qty-discount__table tr > .ty-qty-discount__td:first-child {
  text-align: right;
}
.qty-discounts-img {
  position: absolute;
  top: 0;
  right: 0;
}
.ty-pagination__selected {
  font-size: 13px !important;
}
.friends-invite-view > .row:last-child td {
  text-align: center;
}
.products-frontpage .ty-scroller-list__item:hover {
  border: 1px solid #BF077F;
}
.ty-qty-discount .discount-title img,
.ty-qty-discount .discount-title div {
  display: inline-block;
}
.ty-qty-discount {
  border: 2px solid #ededed;
}
.products-frontpage .ty-scroller-list__item {
  border: 1px solid #ffffff;
}
.auth-recover_password .ty-wysiwyg-content ul li {
  list-style-type: decimal;
}
.auth-recover_password .tygh-content .container-fluid > .row-fluid .span8.pc {
  margin-top: 9px;
}
.homepage-para-blog .blog_content .article-title {
  margin-bottom: 8px;
}
.homepage-para-blog .blog_content .article-title > a {
  color: #4e4a47 !important;
  font-size: 15px !important;
  font-weight: 600;
}
.homepage-para-blog .ty-mb-lasd .ty-blog-recent-posts-scroller .ty-blog-recent-posts-scroller__item:last-child {
  margin-right: 0 !important;
}
.homepage-para-blog .ty-mb-lasd .ty-blog-recent-posts-scroller .ty-blog-recent-posts-scroller__item:hover {
  border: 1px solid #ededed;
}
.homepage-para-blog .ty-mb-lasd .ty-blog-recent-posts-scroller .ty-blog-recent-posts-scroller__item {
  border: 1px solid #fff;
  padding: 10px 18px;
}
.big-element .ty-blog-recent-posts-scroller {
  padding-left: 10px;
  padding-right: 10px;
}
.big-element .ty-blog-recent-posts-scroller__item:hover {
  border: 1px solid #BF077F;
}
.big-element .ty-blog-recent-posts-scroller__item {
  border: 1px solid #ffffff;
  width: 355px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.homepage-para-blog .ty-mb-lasd .blog-cat-name {
  background: #4d4d4d none repeat scroll 0 0;
  color: #ffffff;
  font-size: 18px !important;
  font-weight: 200;
  padding: 3px 0 3px 12px;
  text-align: left;
}
.homepage-para-blog .ty-mb-lasd .ty-blog-recent-posts-scroller {
  margin-right: 0;
  margin-left: 0;
  padding: 0 56px;
}
.homepage-para-blog .ty-mb-lasd .ty-blog-recent-posts-scroller .ty-blog-recent-posts-scroller__item:first-child {
  margin-left: 0;
}
.homepage-para-blog .ty-mb-lasd .ty-blog-recent-posts-scroller__item {
  padding-left: 0;
  padding-right: 0;
}
.page-199 .alpha-beta__index > ul > .all_brands {
  display: none;
}
.ty-menu__item:hover .ty-menu__submenu-items,
.is-hover-menu .ty-menu__submenu-items {
  min-height: 0 !important;
  top: 62px;
}
@media screen and (min-width: 1200px) {
  .top-menu > .ty-menu__items > .active.ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items {
    display: block;
  }
  .ty-menu__submenu-list.level-3 {
    display: none;
  }
  .span3.cart-content-grid {
    width: 221px !important;
  }
  .description-banners-pickers .picker-item {
    padding: 6px 0 6px 6.97px;
    position: relative;
  }
  .home-middle-banners .span11 {
    width: 796px !important;
  }
  .home-middle-banners .span5 {
    margin-left: 14px !important;
    width: 390px !important;
  }
  .ty-blog-recent-posts-scroller .owl-wrapper {
    transform: translate3d(0px,0px,0px) !important;
  }
  .index-blog-articles .owl-theme.ty-owl-controls {
    display: none;
  }
  .ty-blog-recent-posts-scroller .owl-wrapper {
    width: 101% !important;
  }
  .span4.all-categories-header-toolbar-outer {
    width: 253px !important;
  }
  .span4.menu-homepage {
    width: 253px !important;
  }
  .span9.home-slider-index {
    width: 696px !important;
  }
  .span9.home-slider-index {
    margin-left: 14px !important;
  }
  .homepage-sidebanners {
    margin-top: 14px !important;
    margin-left: 14px !important;
    width: 223px !important;
  }
}
@media screen and (max-width: 1291px) {
  .top-menu .ty-menu__item:nth-child(8) .ty-top-mine__submenu-col:hover .ty-menu__submenu {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: -5px -3px 5px #888888;
    display: block;
    left: -270px;
    padding: 10px 10px 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1239px) {
  .brands-homepage-images .ty-brand-filters__block {
    text-align: center;
  }
  .brands-homepage-images .squaredTwos:nth-child(6n) {
    margin-right: 22px !important;
  }
  .homepage-sidemenu {
    margin-left: 0 !important;
  }
  .three-banners .ty-pict {
    width: 100%;
  }
  .three-banners > div {
    width: 32%;
  }
  .span16.three-banners {
    text-align: center;
  }
  .index-top-banners-under-menu .ty-pict {
    width: 49%;
  }
  .home-side-menu > .ty-text-links-wrapper > .ty-text-links > .ty-text-links__item {
    margin-left: 7px;
  }
  .span3.homepage-sidemenu {
    width: 100%;
  }
  .home-side-menu {
    height: auto;
  }
  .ty-text-links__item.ty-level-0 {
    display: inline-block;
    vertical-align: top;
  }
  .homepage-sidemenu .ty-text-links {
    margin: 0;
  }
  .span10.home-slider-index {
    margin-left: 8%;
  }
  .index-index .main-prods .owl-item .ty-scroller-list__item {
    width: auto !important;
  }
  .ty-cart-statistic__total-value-saved {
    width: 140px !important;
  }
  .ty-cart-statistic__item.ty-cart-statistic__total_saved {
    text-align: right;
  }
  .checkout-cart .tygh-content > .container-fluid > .row-fluid > .span12 {
    width: 100%;
  }
  .checkout-cart .product_block_right {
    display: none;
  }
  .skroutz.smartphone {
    display: block !important;
  }
  .products-view .product_block_right {
    display: none !important;
  }
  .product_block_right .ty-template-small .ty-template-small__item {
    display: inline-block;
    width: 24%;
  }
  .product_block_right > .ty-sidebox > h2 > span {
    display: block;
  }
  .ty-template-small__item {
    border: none;
  }
  .product_block_right .ty-sidebox {
    margin-bottom: 0;
    margin-top: 28px;
  }
}
@media screen and (max-width: 1228px) {
  .newsletter-buttons .button {
    float: none !important;
  }
  .newsletter-buttons.clearfix {
    text-align: center;
  }
  .newsletter-buttons .button.white.withborder.woman {
    margin: 0 !important;
  }
  .newsletter-buttons .button.white.withborder.man {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1225px) {
  .span10.home-slider-index {
    margin-left: 4%;
  }
}
@media screen and (max-width: 1211px) {
  .top-menu .ty-menu__items .ty-menu__item .ty-menu__item-link {
    padding: 2px 7px !important;
  }
}
@media screen and (max-width: 1200px) {
  #content_product_tab_12 .add-to-cart-product {
    width: 212px;
  }
}
@media screen and (max-width: 1200px) {
  .tab_bar {
    width: 100% !important;
  }
  .whenfixed.clearfix {
    width: 100% !important;
  }
  .tab_bar_w .add-to-cart-product {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1171px) {
  .top-menu .ty-menu__items .ty-menu__item .ty-menu__item-link {
    padding: 2px 4px !important;
  }
}
@media screen and (max-width: 1129px) {
  .ty-simple-list .inner-add-to-cart-product a.ty-btn.ty-btn__primary.ty-btn__big {
    position: relative;
  }
  .products-view .product-after-details .add-to-cart-product {
    width: 168px;
  }
}
@media screen and (max-width: 1127px) {
  .top-menu .ty-menu__submenu-items {
    top: 42px;
  }
  .top-menu .ty-menu__items .ty-menu__item .ty-menu__item-link {
    padding: 2px 6px !important;
  }
  .ty-menu__item a.ty-menu__item-link {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 1183px) {
  .ty-column4:nth-child(4n+5)::before {
    border-bottom: none !important;
    content: "";
    left: 4px;
    margin-top: -15px;
    position: absolute;
    right: 0;
    width: 862px;
  }
}
@media screen and (max-width: 1167px) {
  .checkout-steps > .ty-step__container-active,
  .ty-like-step {
    width: 31% !important;
  }
}
@media screen and (max-width: 1162px) {
  .ty-logo-container__image {
    width: 100%;
  }
  .ty-logo-container {
    margin-top: 3.1% !important;
  }
}
@media screen and (max-width: 1108px) {
  #content_product_tab_12 .add-to-cart-product {
    width: 180px;
  }
}
@media screen and (max-width: 1104px) {
  .ty-checkout-complete__buttons-right {
    margin-top: 13px;
    width: 100%;
  }
}
@media screen and (max-width: 1096px) {
  .shipping-promo .free {
    font-size: 16px;
  }
  .ty-logo-container__image {
    width: 100% !important;
  }
  .search-header {
    margin-left: 2.128% !important;
  }
}
@media screen and (max-width: 1091px) {
  .ty-cart-statistic__title {
    margin-right: 0;
  }
}
@media screen and (max-width: 1069px) {
  .span10.home-slider-index {
    margin-left: 0;
  }
}
@media screen and (max-width: 1049px) {
  .top-menu .ty-menu__item:nth-child(7) .ty-top-mine__submenu-col:hover .ty-menu__submenu {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: -5px -3px 5px #888888;
    display: block;
    left: -270px;
    padding: 10px 10px 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1048px) {
  .ty-control-group__title.cm-profile-field {
    font-size: 12px;
  }
  .ty-social-link__title {
    text-align: center;
    width: 100%;
    margin-bottom: 7px !important;
  }
  .ty-social-link-block {
    text-align: center;
  }
  h3.ty-social-link__title {
    margin-top: 0;
  }
  .socialzed-links {
    top: 0;
  }
}
@media screen and (max-width: 1078px) {
  .blog-carousel .add-to-cart-product {
    width: 167px;
  }
}
@media screen and (max-width: 1037px) {
  .ty-cart-statistic__value {
    width: 105px;
  }
  .ty-cart-statistic__total-value {
    width: 95px;
  }
  .ty-cart-statistic__total_saved .ty-cart-statistic__total-value-saved {
    width: 95px !important;
  }
  .ty-cart-statistic__total-title-saved {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 1028px) {
  .secure-transaction .inner-secure div {
    width: 100% !important;
  }
  .lock.span2 {
    width: 100%;
  }
  .secure-transaction-inner-promo.span8 {
    padding: 0 4px;
  }
  .inner-secure .secure-icon.span2 {
    margin-bottom: 9px !important;
    margin-left: 0 !important;
    margin-top: 4px !important;
  }
  .secure-transaction > div > .span2 {
    display: none !important;
  }
  .inner-secure.clearfix {
    width: auto;
  }
}
@media screen and (max-width: 1026px) {
  .tab_bar_descr {
    width: 354px;
  }
}
@media screen and (max-width: 1024px) {
  .touchevents .top-menu li.ty-menu__item.cm-menu-item-responsive.is-hover-menu {
    background: #006EC6;
  }
  .top-menu .ty-menu__submenu-items.cm-responsive-menu-submenu {
    top: 43px;
    background: #006EC6;
  }
}
@media screen and (max-width: 1022px) {
  .side-list-buy-buttons .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big,
  .side-list-buy-buttons .inner-add-to-cart-product button {
    padding: 6px 18px;
  }
}
@media screen and (max-width: 1017px) {
  .top-menu .ty-menu__submenu-items {
    top: 42px !important;
  }
}
@media screen and (max-width: 1004px) {
  .span3.brands-home-page {
    display: none;
  }
  .home-slider-index {
    width: 100% !important;
  }
  .home-slider-index .owl-wrapper-outer .owl-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 992px) {
  .tab_bar a {
    padding: 10px 19px !important;
  }
}
@media screen and (max-width: 979px) {
  #content_product_tab_41 .ty-wysiwyg-content {
    position: relative;
  }
  .products-view #content_product_tab_41 .owl-theme.ty-owl-controls {
    position: unset;
  }
  .products-view #content_product_tab_41 .owl-theme.ty-owl-controls .owl-prev {
    left: -28px;
  }
  .products-view #content_product_tab_41 .owl-theme.ty-owl-controls .owl-next {
    right: -13px;
  }
  .products-view #content_product_tab_41 .owl-theme.ty-owl-controls .owl-buttons div {
    top: 200px;
  }
  .ty-account-info__buttons .ty-btn {
    margin-bottom: 0;
  }
  .logo-box.ty-float-left {
    padding-right: 0;
  }
  #content_product_tab_12 .add-to-cart-product {
    margin: 0 auto;
  }
}
@media screen and (max-width: 958px) {
  .ty-product-block__img-wrapper {
    width: unset !important;
  }
}
@media screen and (max-width: 940px) {
  .span3.top-account {
    margin-left: 4%;
  }
  .ty-cart-statistic__value {
    width: 133px !important;
  }
  .ty-cart-statistic__title {
    width: auto !important;
  }
  .inner-shipping {
    width: 100% !important;
  }
}
@media screen and (max-width: 934px) {
  .span6.profile-controls {
    width: 50% !important;
  }
}
@media screen and (max-width: 920px) {
  .ty-sort-container__views-icons {
    display: none !important;
  }
  .ty-product-block__img-wrapper {
    margin-right: 4px !important;
  }
}
@media screen and (max-width: 917px) {
  .ty-sidebox__body .ty-product-filters__title {
    font-size: 13px;
  }
}
@media screen and (max-width: 908px) {
  .ty-product-block__img-wrapper {
    text-align: center;
    width: 100% !important;
  }
  .ty-product-block__img-wrapper {
    text-align: center;
    width: 100% !important;
  }
  .ty-product-block__img-wrapper .ty-product-thumbnails.clearfix.ty-center.cm-image-gallery {
    margin: 7px auto 0;
  }
  .ty-product-block__img-wrapper {
    margin-right: 0 !important;
  }
  .products-view .ty-product-block__left {
    margin-right: 0 !important;
  }
  .products-view .ty-product-block__left {
    max-width: none !important;
    width: 100% !important;
  }
  .products-view .ty-control-group__label {
    float: none;
  }
  .ty-control-group__item {
    margin-right: 9px;
  }
  .product_block_right {
    padding: 0 !important;
  }
  .smallable-1 .ty-control-group__label {
    margin-right: 2px;
  }
}
@media screen and (max-width: 897px) {
  .top-menu .ty-menu__item:nth-child(6) .ty-top-mine__submenu-col:hover .ty-menu__submenu {
    background: #ffffff none repeat scroll 0 0;
    box-shadow: -5px -3px 5px #888888;
    display: block;
    left: -270px;
    padding: 10px 10px 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 883px) {
  #spyc {
    width: 100%;
  }
  #fixme {
    display: none;
  }
}
@media screen and (max-width: 880px) {
  .free-return h3 {
    font-size: 20px !important;
  }
  .free-return > span {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 853px) {
  #checkout_steps > .ty-like-step {
    padding: 0 !important;
  }
}
@media screen and (max-width: 838px) {
  .tab_bar a {
    padding: 10px 12px !important;
  }
}
@media screen and (max-width: 822px) {
  .span3.top-account {
    margin-left: 3%;
  }
  .span3.top-account {
    margin-top: 3.1%;
  }
}
@media screen and (max-width: 820px) {
  .free-return > span {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 815px) {
  .homepage-banners .banners.owl-carousel.owl-theme .owl-wrapper-outer .owl-wrapper .owl-item .ty-banner__image-item {
    height: auto;
  }
  .homepage-banners {
    height: auto;
  }
}
@media screen and (max-width: 790px) {
  .ty-simple-list .inner-add-to-cart-product a.ty-btn.ty-btn__primary.ty-btn__big {
    position: relative;
  }
  .products-view .product-after-details .add-to-cart-product {
    width: 162px;
  }
}
@media screen and (max-width: 789px) {
  .basket {
    width: 60px !important;
  }
}
@media screen and (max-width: 780px) {
  .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item,
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-item-header {
    border: none !important;
  }
  .ty-cart-statistic__total_saved .ty-cart-statistic__total-value-saved {
    width: 130px !important;
    float: left;
  }
  .ty-cart-statistic__total-title-saved {
    float: left;
    width: 50% !important;
  }
  .cart-content-grid .ty-dropdown-box__content {
    margin-top: -2px;
  }
  .ty-breadcrumbs.clearfix {
    margin-top: 14px;
  }
  .ty-menu__item .ty-menu__item-toggle-active {
    background: #f7f7f7 none repeat scroll 0 0;
  }
  .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__item-toggle-active {
    background: #f7f7f7 none repeat scroll 0 0;
  }
  .ty-menu__item-active .ty-menu__item-link {
    background: none !important;
    color: #005096 !important;
    box-shadow: none;
  }
  .top-menu .ty-menu__submenu-item-header {
    background: none;
  }
  .top-menu .ty-menu__items .ty-menu__item:last-child .ty-menu__item-link {
    background: none !important;
    box-shadow: none !important;
    color: #fff !important;
  }
  .top-menu .ty-menu__item:last-child .ty-menu__item-toggle-active {
    background: #F7F7F7;
  }
  .ty-menu__submenu-item-header {
    background: none;
  }
  .ty-top-mine__submenu-col {
    margin-bottom: 0 !important;
    width: auto;
  }
  .checkout-checkout .ty-mainbox-container {
    margin: 0 auto !important;
    width: 460px;
  }
  .checkout-steps > .ty-step__container-active,
  .ty-like-step {
    width: 100% !important;
  }
  #checkout_steps > .ty-like-step {
    border-left: none !important;
    border-right: none !important;
  }
  .checkout-title tr td {
    display: block;
    text-align: center;
    width: 100%;
  }
  .top-cart-content .ty-dropdown-box__title > div {
    display: inline-block;
    width: 45%;
  }
  .inner.empty-cart {
    margin-top: 0 !important;
  }
  .top-cart-content span.ty-minicart-title.empty-cart.ty-hand {
    font-size: 12px;
  }
  .top-menu .ty-menu__items .ty-menu__item .ty-menu__item-link {
    font-size: 13px !important;
  }
}
.inner_utl_tracker.clearfix button {
  float: none !important;
}
.ultimate_track_order {
  text-align: center;
}
.order_track_title_ultimate h2 {
  font-size: 23px !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.ty-blog-grid p {
  text-align: justify;
}
.ty-blog__description p {
  text-align: justify;
}
[id^="category_products_"] > .ty-wysiwyg-content.ty-mb-s > p {
  text-align: justify !important;
}
.everyday_products .ty-scroller-list__item {
  height: auto !important;
  margin-bottom: 20px;
}
.brand-name-grid-list > a:hover {
  color: #fe737b !important;
}
.ty-mainbox-container .ty-scroller-list__item .ty-simple-list > form > .ty-simple-list__buttons {
  margin-bottom: 10px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 5px !important;
}
.ty-discussion__review-write.cm-dialog-opener.cm-dialog-auto-size {
  margin-left: 25px;
}
.products-view .ty-sidebox.skroutz .ty-sidebox__title {
  padding-bottom: 0 !important;
}
.product_block_right .ty-sidebox.skroutz {
  margin-bottom: 0;
}
.ty-discussion__review-a.cm-external-click {
  margin-left: 30px;
  margin-right: 0 !important;
}
.text-rating {
  color: #5e5f5b;
}
.products-view .ty-product-block__left #average_rating_product .ty-nowrap.ty-stars {
  margin-right: 4px !important;
}
.ty-payments-list .info-field-body > p {
  text-align: justify;
}
.page-229 .ty-poll__header {
  font-size: 17px;
}
.buttons-container.ty-wish-list__buttons a:hover {
  color: #ffffff !important;
}
.ty-wish-list__buttons .ty-btn.ty-btn__secondary.text-button:hover {
  background: #000000 none repeat scroll 0 0;
}
.ty-wish-list__buttons .ty-btn.ty-btn__secondary.text-button {
  background: #fe737b none repeat scroll 0 0;
}
.ty-wish-list__buttons .ty-btn.ty-btn__tertiary:hover {
  background: #fe737b !important;
}
.wishlist-view .grid-list-wishlist > .add_to_wishlist_para {
  display: none;
}
.wishlist-view .ty-grid-list__item .add-to-cart-product {
  margin: 0 auto;
  width: 81%;
}
.wishlist-view .grid-list > .ty-column4:hover {
  border: none !important;
}
.wishlist-view .grid-list > .ty-column4 > .ty-quick-view-button__wrapper {
  border: 1px solid #ffffff;
}
.wishlist-view .ty-mainbox-title > span > .subtitle {
  font-size: 15px;
}
.wishlist-view .grid-list > .ty-column4 > .ty-quick-view-button__wrapper:hover {
  border: 1px solid #d3d3d3;
}
.wishlist-view .grid-list > .ty-column4 > .ty-quick-view-button__wrapper {
  border: 1px solid #ffffff;
  box-sizing: border-box;
  position: relative;
}
.side-grid .expand .fa.fa-plus.ty-account-info__user-arrow {
  right: 1px;
}
.wishlist-view .grid-list .ty-column4 .ty-grid-list__control {
  margin-bottom: 24px;
}
.ty-wish-list__buttons .ty-btn.ty-btn__tertiary {
  background: #000 none repeat scroll 0 0 !important;
}
.products-view .button-add-to-the-cart [id^="add_to_cart_update_"] .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button:active {
  box-shadow: none !important;
}
.products-view .button-add-to-the-cart [id^="add_to_cart_update_"] .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button:hover {
  color: #000000 !important;
  text-decoration: underline;
}
.products-view .button-add-to-the-cart [id^="add_to_cart_update_"] .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
  border: medium none;
  color: #000000 !important;
  font-family: Open Sans;
  position: relative;
  margin: 0 auto;
  text-align: left;
  top: 0;
  right: 0;
}
.payment-methods-product .ty-control-group__label {
  color: #666666;
}
.phone-help .fa.fa-phone {
  font-size: 14px;
  position: relative;
  top: 2px;
}
.add_to_wishlist_para .fa.fa-heart {
  font-size: 14px;
  position: relative;
  top: 2px;
}
.container-fluid.header-grid {
  padding-left: 0;
  padding-right: 0;
}
.span6.profile-controls {
  margin-top: 3px;
}
.all-categories-header-toolbar .span4.homepage-side-menu.menu-in-search-toolbar {
  display: none;
}
.number-of-products-and-brands {
  color: #000000 !important;
  text-align: right;
  font-weight: 300;
}
.ty-logo-container .total-product-number-place-logo {
  display: none;
}
.blog-carousel .ty-mainbox-container.clearfix.everyday_products .under-title {
  margin-bottom: 0;
}
.top-menu-grid {
  width: 1200px !important;
  padding-top: 0px;
}
.span16.top-menu-grid {
  float: none !important;
  margin: 0 auto !important;
}
.header-grid > .row-fluid:first-child {
  margin: 0 auto;
  width: 1200px;
}
.phone-number-shipping .first-row {
  font-weight: 600;
}
.phone-number-header-promo .phone-number-shipping:last-child {
  margin-right: 12px;
  text-align: center;
}
.phone-number-header-promo {
  margin-top: 6px;
  text-align: center;
  margin-right: 12px;
}
.page-109 .alpha-beta__index .all_brands {
  display: none;
}
.phone-number-header-promo > div:first-child {
  position: relative;
}
.phone-number-header-promo > div {
  display: inline-block;
}
.container-fluid.header-grid {
  max-width: none !important;
  width: 100% !important;
}
.number-of-products-and-brands .number-overview {
  color: #fe737b;
}
.span16.outer-header-grid {
  background: #ededed none repeat scroll 0 0;
  width: 100% !important;
  margin-top: 77px;
}
.product-qty-picker {
  vertical-align: top;
}
.ty-payments-list .info-field-body .form-field > select {
  position: relative !important;
  top: -2px;
}
.logo .total-product-number-place-logo {
  display: none;
}
.header-info > strong {
  color: #fe737b;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  top: 1px;
}
.header-info > img {
  position: relative;
  top: -2px;
}
.phone-call {
  font-weight: 600;
}
.half-page-banner-text .half-page {
  position: relative;
}
.block-title-custom .ty-wysiwyg-content > h2 {
  font-size: 37px;
  font-weight: normal;
  text-align: center;
  color: #000;
  font-weight: 300;
}
.middle-banners-homepage-banners .ty-banner__image-wrapper {
  display: inline-block;
  width: 32%;
}
@media screen and (min-width: 1025px) {
  .products-view .everyday_products .owl-wrapper {
    transform: translate3d(0px,0px,0px) !important;
    width: 100% !important;
  }
}
@media screen and (min-width: 769px) {
  .blog-carousel .owl-wrapper {
    transform: translate3d(0px,0px,0px) !important;
    width: 100% !important;
  }
  .hide-desktop.fa.fa-filter {
    display: none;
  }
  #tygh_main_container > .tygh-content > .content-grid > .row-fluid:nth-child(4) {
    max-width: unset;
  }
  .index-index .tygh-content .container-fluid.content-grid {
    padding-left: 0;
    padding-right: 0;
  }
  .index-index .tygh-content .container-fluid {
    max-width: unset;
  }
  .index-index .tygh-content .content-grid > .row-fluid:last-child {
    max-width: unset !important;
  }
  .index-index .tygh-content .container-fluid.content-grid .row-fluid > div > .row-fluid {
    margin: 0 auto;
    max-width: 1200px;
  }
  .index-index .tygh-content .container-fluid.content-grid .row-fluid {
    margin: 0 auto;
    max-width: unset;
  }
  .multi_products_outer_row.span16 {
    margin-left: 0 !important;
  }
  .span16.tabbed-homepage-product-list {
    background: #EDEDED none repeat scroll 0 0;
    float: none;
    margin: 0 auto !important;
    max-width: unset;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .middle-banners-homepage .ty-banner__image-wrapper:last-child {
    margin-right: 0;
  }
  .middle-banners-homepage .ty-banner__image-wrapper {
    margin-right: 1.73%;
  }
  .products-frontpage .owl-wrapper {
    transform: translate3d(0px,0px,0px) !important;
    width: 100% !important;
  }
  .products-frontpage .owl-item:nth-child(4n) .ty-scroller-list__item {
    margin-right: 0;
  }
  .products-frontpage .owl-item:nth-child(4n+1) .ty-scroller-list__item {
    margin-left: 0;
  }
  .products-frontpage .ty-scroller-list__item {
    background: #ffffff none repeat scroll 0 0;
  }
  .products-frontpage .ty-scroller-list__item {
    margin: 0 7px 13px;
  }
}
@media screen and (max-width: 780px) {
  .auth-recover_password .tygh-content .container-fluid > .row-fluid .span8.pc {
    margin-top: 25px;
  }
}
@media screen and (max-width: 320px) {
  .csc_live_search_navigation .csc_live_search_total {
    margin-top: -23px !important;
  }
}
body {
  visibility: visible !important;
}
.pickuppoint-accept_order .ty-logo-container a {
  bottom: 60px;
  display: block !important;
  height: 10px;
  left: 80px;
  position: fixed !important;
  visibility: visible;
  width: 165px;
}
body.pickuppoint-accept_order .tygh-header,
body.pickuppoint-accept_order #tygh_footer {
  height: 0 !important;
  position: fixed;
  visibility: hidden;
}
body.pickuppoint-accept_order .tygh-top-panel {
  display: none;
}
.pickuppoint-accept form {
  text-align: center;
}
.pickuppoint-accept form #query {
  font-size: 60px;
  height: 100px;
  text-align: center;
}
.pickuppoint-accept form .ty-btn-submit {
  background-color: #337ab7;
  border-color: #2e6da4;
  color: #fff;
  font-size: 18px;
}
.pickuppoint-accept table .ty-btn-search {
  background-color: #5cb85c;
  border-color: #4cae4c;
  color: #fff;
  padding: 15px;
  font-size: 18px;
}
.pickuppoint-accept table *:not(span) {
  border-bottom: 1px solid black;
  font-size: 18px;
  padding: 10px;
  text-align: left;
}
.pickuppoint-accept .no-items {
  background: #fcfcfc none repeat scroll 0 0;
  border: 1px solid #f2f2f2;
  border-radius: 6px;
  box-shadow: 0 0 100px 0 #f2f2f2 inset;
  color: #999;
  padding: 40px 0;
  text-align: center;
  font-size: 30px !important;
}
.sex-diagonismos select {
  border: 1px solid #000000;
  height: 40px;
}
.sex-diagonismos > label {
  margin-bottom: 3px;
}
.ty-product-block__img-wrapper {
  max-width: unset;
  width: 700px;
  text-align: center;
}
.checkout-checkout .span16.outer-header-grid,
.checkout-checkout .span16.header-exeggya-outer {
  display: none;
}
.checkout-checkout .ty-search-block {
  visibility: hidden;
}
#checkout_type_guest {
  visibility: hidden;
  position: absolute;
}
.cm-noscript {
  display: block !important;
}
.gold-club-table {
  margin: 30px 0;
}
.gold-club-table td {
  padding: 10px;
}
.gold-club-table tr:first-child td {
  background: goldenrod;
  width: 33%;
  color: #fff;
  padding: 10px;
}
.gold-club-table tr:first-child td:first-child {
  background: #fe737b;
  color: #fff;
}
.gold-club-table tr:first-child td:last-child {
  background: #eee;
  color: #333;
}
.gold-club-btn {
  display: inline-block;
  text-decoration: none !important;
  padding: 10px 15px;
  background: #fe737b;
  color: #fff !important;
  width: 100%;
  max-width: 320px;
  font-size: 20px !important;
}
.footerlinks {
  margin: 30px auto;
}
.footerlinks ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footerlinks svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.footerlinks li {
  width: 50%;
  display: block;
  margin-bottom: 20px;
}
.footerlinks a {
  display: flex;
  align-items: center;
}
.newsubform {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.newsubform h3,
.seals h3 {
  display: block;
  width: 100%;
  text-align: center;
  color: #fe737b;
  margin-bottom: 0;
}
.newsubform h6 {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: normal;
  font-size: 16px !important;
}
.newformsub ul {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 0;
  align-items: center;
}
.newformsub ul li {
  display: block;
  width: 20%;
}
.newformsub .ty-footer-form-block__form.ty-control-group.ty-input-append,
.newformsub form {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newformsub .ty-footer-form-block__form.ty-control-group.ty-input-append {
  padding: 20px;
}
.newformsub .ty-input-text {
  width: 60% !important;
}
.newsletter-buttons.clearfix button {
  border: 0;
  padding: 7px 15px;
  color: #fff;
}
.newformsub ul li a {
  color: #01a201 !important;
  font-weight: bold;
  margin-right: 10px;
  font-size: 18px !important;
}
.seals > div {
  display: flex;
  justify-content: center;
  width: 91%;
  margin: 10px auto;
  text-align: center;
  align-items: center;
}
.seals > div div {
  margin: 0 20px;
}
.newfooter .ty-text-links > .ty-text-links__item {
  text-align: left;
}
.newfooter .ty-footer-general__header {
  text-align: left;
}
.newfooter p.bottom-copyright {
  background: #fe737b;
  width: 100%;
  margin-top: 50px !important;
  text-align: center;
  padding: 20px;
  left: 0;
  right: 0;
  position: absolute;
  box-sizing: border-box;
}
.span16.newfooter.ty-footer-grid__full-width {
  border-top: 1px solid #ccc;
}
.seals > div div {
  margin: 0 15px;
  width: 120px;
}
.dapaym .seals > div {
  flex-wrap: wrap;
  margin-top: 20px;
}
.dapaym .seals > div div {
  width: 58px;
  margin: 0 10px 10px;
}
.span4.side-grid {
  position: relative;
  top: 0;
}
.phone-help {
  display: none;
}
.ty-discussion__review-write {
  font-weight: bold;
}
.returnpoltable td {
  width: 25%;
  border: 0;
}
.returnpoltable {
  border: 0;
  margin: 35px 0;
}
.returnpolbtn {
  display: block;
  text-decoration: none !important;
  text-align: center;
  margin: 10px auto;
  width: 320px;
  float: none;
  padding: 10px 15px;
  background: #fe737b;
  color: #fff !important;
  border-radius: 5px;
  font-size: 17px !important;
}
.page-69 h3 {
  color: #fe737b;
  font-size: 18px;
}
.pages-view .ty-mainbox-title > span {
  color: #fe737b;
}
.ty-btn__primary:hover {
  background: #fe737b;
  color: #fff;
}
.span16.tabbed-homepage-product-list-outer {
  background: #fff;
}
.ty-mainbox-container.clearfix.everyday_products {
  border-top: 0;
}
.span16.tabbed-homepage-product-list-outer h2,
.ty-mainbox-container.clearfix.everyday_products h2 {
  background: #eee !important;
}
.everyday_products.ty-mainbox-container .ty-mainbox-title > span {
  font-size: 30px !important;
}
.everyday_products .ty-scroller-list__item:hover {
  border: 2px solid #fe737b !important;
}
.everyday_products .ty-scroller-list__item {
  border: 2px solid transparent;
}
.owl-prev::before {
  content: "";
  background: url('../../../../../../../../design/themes/responsive/media/pre.png?1753621501');
  width: 24px;
  height: 24px;
  display: block;
  font-size: 30px;
  margin-left: -24px;
}
.owl-next::after {
  content: "";
  background: url('../../../../../../../../design/themes/responsive/media/nex.png?1753621501');
  width: 24px;
  height: 24px;
  display: block;
  font-size: 30px;
  margin-left: 15px;
}
.span16.exxegy-footer-inner {
  margin-top: 40px !important;
}
.exeggya-img svg {
  width: 288px;
  height: 163px;
  display: block;
}
.exeggya {
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.span16.exxegy-footer-inner {
  margin-top: 0 !important;
  margin-bottom: -65px !important;
}
.desperiss .ty-btn.ty-btn__primary {
  background: transparent;
  color: #666 !important;
  font-size: 15px !important;
}
.desperiss .ty-btn.ty-btn__primary:hover {
  text-decoration: underline;
}
.span16.presentation-text h1 {
  text-align: center;
}
.span16.presentation-text p {
  text-align: justify;
}
.profiles-update .ty-tabs__list {
  display: none;
}
.blog-title h2 {
  position: relative;
  text-align: center;
  font-weight: 300;
}
.blog-title h2::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #808080;
  position: absolute;
  top: 24px;
}
.blog-title h2 span {
  background: #fff;
  position: relative;
  padding: 0 20px;
  color: #808080;
}
.homepage-para-blog .blog-title > h2 {
  font-size: 30px;
}
.span16.newfooter.ty-footer-grid__full-width > .row-fluid > .span16 > .row-fluid::before {
  border-top: 1px solid #ccc;
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
.span16.newfooter.ty-footer-grid__full-width > .row-fluid > .span16 > .row-fluid:first-child::before {
  display: none;
}
.ty-footer-general__header {
  padding-top: 35px;
  font-size: 16px;
  cursor: default !important;
}
.newfooter p.bottom-copyright {
  background: #666;
}
.ty-checkout__register-methods-item:last-child {
  font-weight: 500;
  font-size: 17px !important;
  color: #333 !important;
  margin-top: 10px;
  position: relative;
  z-index: 100;
}
.ty-checkout__register-methods-item:last-child::before {
  content: "";
  display: block;
  position: absolute;
  background: #fcfcfc;
  height: 135px;
  width: 100%;
  z-index: -1;
  border-radius: 5px;
  margin-left: -15px;
  margin-top: -7px;
}
#anonymous_checkout button {
  position: relative;
  z-index: 100;
  background: #fe737b !important;
  width: 100%;
  border: 2px solid black;
  border-radius: 2px;
  color: black !important;
}
#anonymous_checkout button:hover {
  background: #000;
  color: white !important;
}
.layout_1 .tygh-top-panel.clearfix {
  position: relative;
}
.checkout-checkout .span16.newfooter.ty-footer-grid__full-width > div .row-fluid:not(:last-child),
.checkout-checkout .newfooter .ty-wysiwyg-content,
.checkout-checkout .container-fluid.top-grid,
.checkout-checkout .span7.search-header,
.checkout-checkout .span5.number-of-prods-promo {
  display: none;
}
.pinki-rewards-page * {
  box-sizing: border-box;
}
.pinki-rewards-page .small-container {
  max-width: 760px;
  margin: 0 auto;
}
.pinki-rewards-page .banner {
  min-height: 304px;
  background: url('../../../../../../../../design/themes/responsive/media/images/companies/4/pinki_rewards/pinki-jumping.jpg?1753621501') no-repeat;
  background-size: cover;
  background-position: center;
}
.pinki-rewards-page .card-on-left {
  position: relative;
  padding-left: 210px;
  padding-top: 25px;
  padding-bottom: 30px;
}
.pinki-rewards-page .pinki-card {
  position: absolute;
  top: 118px;
  left: -2px;
  transform: rotate(-6deg);
}
.pinki-rewards-page .privileges-box-img {
  float: left;
  margin-right: 10px;
}
.pinki-rewards-page .privileges-box {
  background: #fff;
  padding: 11px 8px;
}
.pinki-rewards-page .pinki-gray-bg {
  background: #e4e4e4;
}
.pinki-rewards-page .pinki-gray-bg .small-container {
  background: url('../../../../../../../../design/themes/responsive/media/images/companies/4/pinki_rewards/pinki-gray-bg.jpg?1753621501') no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  display: flex;
}
.pinki-rewards-page .pinki-darkgray-bg {
  background: #b0b0b0;
}
.pinki-rewards-page .pinki-darkgray-bg .small-container {
  background: url('../../../../../../../../design/themes/responsive/media/images/companies/4/pinki_rewards/pinki-darkgray-bg.jpg?1753621501') no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  display: flex;
}
.pinki-rewards-page .pinki-gold-bg {
  background: #e2d29f;
  background: linear-gradient(90deg,#ead89c 0%,#d2c092 100%);
}
.pinki-rewards-page .pinki-gold-bg .small-container {
  background: url('../../../../../../../../design/themes/responsive/media/images/companies/4/pinki_rewards/pinki-gold-bg.jpg?1753621501') no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  display: flex;
}
.pinki-rewards-page .pinki-pink-bg {
  background: #ffb8bc;
  background: linear-gradient(90deg,#ffb8bc,#ffc6c9);
}
.pinki-rewards-page .pinki-pink-bg .small-container {
  background: url('../../../../../../../../design/themes/responsive/media/images/companies/4/pinki_rewards/pinki-pink-bg.jpg?1753621501') no-repeat;
  background-size: 100% 100%;
  background-position: left top;
  display: flex;
}
.pinki-rewards-page .introduction {
  background: linear-gradient(180deg,#fff,#e4e4e4);
}
.pinki-rewards-page .introduction p {
  margin: 0;
  padding-top: 0;
}
.pinki-rewards-page .card-on-left p {
  margin: 0;
  color: #616161 !important;
  line-height: 22px;
}
.pinki-rewards-page .card-on-left p.pinki-amount {
  color: #e1727b !important;
  padding-bottom: 0;
  font-size: 18px !important;
  font-weight: bold;
}
.pinki-rewards-page .benefits-list {
  margin: 0;
  padding: 0;
  margin-bottom: 4px;
}
.pinki-rewards-page .benefits-list li {
  margin-bottom: -2px;
  color: #000 !important;
  list-style-type: none !important;
  font-size: 18px !important;
  font-weight: bold;
}
.pinki-rewards-page .disclaimer {
  background: #ffb8bc;
  background: linear-gradient(90deg,#ffb8bc,#ffc6c9);
  padding-bottom: 18px;
}
.pinki-rewards-page .disclaimer p {
  margin: 0;
  font-size: 14px !important;
  color: #000 !important;
}
.pinki-rewards-page .pinki-logo {
  margin-top: 13px;
  display: block;
}
.pinki-rewards-page p,
.pinki-rewards-page li,
.pinki-rewards-page body,
.pinki-rewards-page div {
  color: #606060 !important;
}
.pinki-rewards-page {
  text-align: left;
}
.pinki-rewards-page p {
  line-height: 25px;
  text-align: justify;
}
@media (max-width: 1199px) {
  .pinki-rewards-page .pinki-card {
    max-width: 200px;
    position: static;
    transform: unset;
    margin: 10px 0;
  }
  .pinki-rewards-page .card-on-left {
    padding-left: 0;
  }
  .pinki-rewards-page .pinki-gray-bg .small-container,
  .pinki-rewards-page .pinki-darkgray-bg .small-container,
  .pinki-rewards-page .pinki-gold-bg .small-container,
  .pinki-rewards-page .pinki-pink-bg .small-container {
    background: unset;
    flex-direction: column;
    align-items: center;
  }
  .pinki-rewards-page .card-on-left {
    padding-top: 0;
    padding-bottom: 0;
  }
  .pinki-rewards-page .disclaimer {
    padding: 0;
    background: unset;
  }
  .pinki-rewards-page .introduction {
    padding-bottom: 10px;
  }
  .pinki-rewards-page .privileges-box p br {
    display: none;
    width: 0;
    height: 0;
  }
  .pinki-rewards-page .disclaimer p {
    font-style: italic !important;
  }
  .pinki-rewards-page .privileges-box {
    padding: 0;
  }
  .pinki-rewards-page .pinki-gray-bg .card-on-left p.pinki-amount,
  .pinki-rewards-page .pinki-gray-bg .benefits-list li {
    background: #e4e4e4;
  }
  .pinki-rewards-page .pinki-darkgray-bg .card-on-left p.pinki-amount,
  .pinki-rewards-page .pinki-darkgray-bg .benefits-list li {
    background: #b0b0b0;
  }
  .pinki-rewards-page .pinki-gold-bg .card-on-left p.pinki-amount,
  .pinki-rewards-page .pinki-gold-bg .benefits-list li {
    background: #d6c494;
  }
  .pinki-rewards-page .pinki-pink-bg .card-on-left p.pinki-amount,
  .pinki-rewards-page .pinki-pink-bg .benefits-list li {
    background: #ffc4c7;
  }
}
.mamacorner-cta-grid {
  margin-top: 18px;
}
.mamacorner-cta-grid .ty-banner__image-wrapper,
.mamacorner-cta-grid-mobile .ty-banner__image-wrapper {
  margin-bottom: 0;
}
.checkout-cart .mamacorner-cta-grid,
.checkout-checkout .mamacorner-cta-grid {
  display: none;
}
.tygh-content.clearfix {
  margin-top: 0px !important;
}
.products-view .ty-product-block__img > .ty-product-block__left {
  display: none !important;
}
.products-view [id^="option_image_"].active {
  border: 3px solid #f0707c !important;
}
.products-view [id^="option_image_"].no_amount::before {
  position: absolute;
  content: "";
  left: -8px;
  top: 46%;
  right: 0;
  border-top: 2px solid;
  border-color: white;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 150%;
}
.products-view [id^="option_image_"].no_amount {
  opacity: 0.6;
}
.products-view [id^="option_"] .no_amount {
  opacity: 0.6;
  color: #aaa;
}
.mitem_2692.ty-menu__item.cm-menu-item-responsive {
  background: #969696;
}
.ty-checkout__register-methods-title {
  display: none;
}
#register_checkout {
  width: 100%;
  padding: 0px;
  margin-left: -10px;
  margin-top: 15px;
}
.ty-checkout__register-content {
  padding: 0px 35px;
}
.ty-checkout__register-methods-hint {
  padding-left: 0 !important;
  color: black;
  font-size: 14px;
  font-weight: normal;
  font-family: Roboto;
  line-height: 1.5;
}
.login_to_your_account {
  color: black !important;
  padding: 15px 0px;
  font-size: 16px !important;
}
.buttons-container.clearfix.checkout {
  display: flex;
  justify-content: space-between;
}
.buttons-container.clearfix.checkout:before,
.buttons-container.clearfix.checkout:after {
  display: none;
}
.buttons-container.clearfix.checkout .ty-login__remember-me-label {
  color: black;
}
.buttons-container.clearfix.checkout .ty-password-forgot__a {
  color: black !important;
}
.ty-login__filed-label.ty-control-group__label.cm-required {
  display: none;
}
.checkout-complete .ty-login__filed-label.ty-control-group__label.cm-required {
  display: block;
}
#login_checkout_login {
  margin-bottom: 11px;
}
#login_checkout_login,
#psw_checkout_login,
#login_main_login,
#psw_main_login {
  border: 2px solid #c4c4c4;
  border-radius: 2px;
  min-height: 40px;
  font-size: 16px;
}
#login_checkout_login::placeholder,
#psw_checkout_login::placeholder,
#login_main_login::placeholder,
#psw_main_login::placeholder {
  color: black;
  font-size: 16px;
  opacity: 1;
}
.auth-login_form .ty-login div.buttons-container.clearfix.checkout {
  margin: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.auth-login_form .ty-login {
  min-height: unset;
  padding-right: 70px;
  border-right: 2px solid;
}
.auth-login_form .login_button_checkout .ty-btn__login.ty-btn__secondary.ty-btn {
  background: #fe737b !important;
  color: black !important;
  font-size: 15px !important;
  font-family: Roboto;
  border: 2px solid black;
  border-radius: 2px;
  width: 100%;
  min-height: 45px;
}
.auth-login_form .login_button_checkout .ty-btn__login.ty-btn__secondary.ty-btn:hover {
  background: #000000 !important;
  color: white !important;
}
.auth-login_form .tygh-content .span8.main-content-grid > .ty-mainbox-container > h1 {
  display: none;
}
.auth-login_form .tygh-content .login_title {
  color: black !important;
  font-weight: bold;
  font-family: Roboto;
}
.auth_info_block .ty-login-info {
  margin-top: 33px;
}
.auth_info_block .ty-login-info h4 {
  color: black !important;
  font-weight: bold;
  font-family: Roboto;
}
.auth_info_block .ty-login-info p {
  color: black !important;
  font-family: Roboto;
}
.auth-login_form .ty-login-info__txt > a {
  width: calc(100% - 10px);
  text-align: center;
  min-height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth-information-grid .auth_info_block {
  padding-right: 195px;
}
.fb-like-icon {
  margin-left: 5px;
}
@media screen and (max-width: 1200px) {
  .country-languages {
    position: absolute;
    top: 10px;
    left: auto;
    width: 81px;
    z-index: 690;
    right: 90px;
  }
  .layout_1 .span6.number-of-products-header {
    width: 28% !important;
  }
  .layout_1 .top-menu-grid,
  .layout_1 .header-grid > .row-fluid:first-child {
    width: 100% !important;
  }
  .layout_1 .logo-row .row-fluid .span6 {
    width: 44.17%;
  }
  .layout_1
    .span6.search-header {
    margin-left: 15px !important;
    width: 415px !important;
  }
  .layout_1 .description-banners-pickers .picker-item {
    width: 25%;
    height: 102px;
    float: left;
    padding: 2px;
    box-sizing: border-box;
  }
  .layout_1 .brands-homepage-images .squaredTwos:nth-child(6n) {
    margin-right: 0;
  }
  .layout_6 .span6.number-of-products-header {
    width: 28% !important;
  }
  .layout_6 .top-menu-grid,
  .layout_6 .header-grid > .row-fluid:first-child {
    width: 100% !important;
  }
  .layout_6 .logo-row .row-fluid .span6 {
    width: 44.17%;
  }
  .layout_6
    .span6.search-header {
    margin-left: 15px !important;
    width: 415px !important;
  }
  .layout_6 .description-banners-pickers .picker-item {
    width: 25%;
    height: 102px;
    float: left;
    padding: 2px;
    box-sizing: border-box;
  }
  .layout_6 .brands-homepage-images .squaredTwos:nth-child(6n) {
    margin-right: 0;
  }
  .tygh-content.clearfix {
    margin-top: 50px !important;
  }
  .mamacorner-cta-grid-mobile {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .index-index .mamacorner-cta-grid-mobile {
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 1100px) {
  .layout_6 .span6.search-header {
    margin-left: 15px !important;
    width: 370px !important;
  }
  .layout_1 .span6.search-header {
    margin-left: 15px !important;
    width: 370px !important;
  }
}
@media screen and (min-width: 535px) {
  .layout_9 .big-element .ty-blog-recent-posts-scroller__item,
  .layout_9 .ty-blog-recent-posts-scroller__item {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .layout_9 .hover {
    display: none;
  }
  .layout_9 .neutral {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .exeggya {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .item-exeggya {
    width: 45%;
    margin: 2%;
  }
  .exeggya-img svg {
    max-width: 100%;
  }
  .layout_9 .ty-product-block__left .form-field.product-list-field {
    margin-top: 15px;
  }
  .layout_9 .icon_info {
    display: flex;
    align-items: center;
    padding: 0 15px 0 5px;
    width: 32px !important;
  }
  .layout_9 .show_promo_message {
    margin-bottom: 18px;
    margin-top: 10px;
    margin: 10px;
  }
  .layout_9 .secure-transaction {
    display: none !important;
  }
  .layout_9 body {
    max-width: 1024px;
    overflow-x: hidden;
  }
  .layout_9 .ty-blog-recent-posts-scroller {
    margin-left: 0;
    margin-right: 0;
  }
  .layout_9 .skroutz.smartphone .ty-mainbox-title > span {
    color: #4d4d4f;
    font-size: 26px !important;
  }
  .layout_9.products-search #togglefilters {
    display: none;
  }
  .layout_9 #cookie-bar.fixed.bottom p::before {
    left: -40px !important;
  }
  .layout_9 .notification-body-extended .free-shipping-estimation > span:last-child {
    display: block;
  }
  .layout_9 #cookie-bar p {
    line-height: 25px !important;
    width: 265px !important;
  }
  .layout_9 .blog_article_date {
    display: none;
  }
  .layout_9 .blog_article_preview > .blog_content_inside {
    padding: 0 20px;
  }
  .layout_9  .top-cart-content .cm-popup-box.ty-dropdown-box__content {
    display: none !important;
  }
  .layout_9 .span16.mob-banners {
    padding: 0 !important;
    margin-top: 8px;
  }
  .ipad .layout_9 .span16.mob-banners {
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 !important;
    width: 102%;
  }
  #map_canvas {
    margin-bottom: 15px;
  }
  .layout_9 .homelink-icon {
    height: 45px;
    position: absolute;
    right: auto;
    text-align: center;
    top: -2px;
    width: 115px;
    z-index: 690;
    left: 60px;
  }
  .layout_9 #tygh_footer .ty-footer-grid__full-width .span4 {
    float: left;
    width: 46%;
  }
  .layout_9 .top-menu-mobile > .ty-menu__items > .ty-menu__item > .ty-menu__item-link.icon-ham {
    background: transparent url('../../../../../../../../design/themes/responsive/media/images/mob/ham.svg?1753621501') no-repeat center !important;
    width: 29px;
    height: 23px;
    display: inline-block;
    margin-top: 1px;
  }
}
@media screen and (max-width: 1024px) {
  .layout_9 .ty-mainbox-container.clearfix.skroutz.smartphone {
    border-color: transparent;
  }
  .span16.mob-banners > .ty-banner__image-wrapper {
    margin-bottom: 0;
  }
  .layout_9 .span16.nomenu {
    margin-top: 8px;
  }
  #sw_sidebox_175 .ty-icon-down-open,
  #sw_sidebox_175 .ty-icon-up-open {
    display: none;
  }
  .layout_9 .product_block_right .ty-template-small .ty-template-small__item {
    display: inline-block;
    width: 100%;
  }
  .layout_9 .ty-pagination__items {
    text-align: center !important;
  }
  .layout_9 .ty-pagination__item.ty-pagination__btn.see-all-pagination {
    width: 50%;
    margin-top: 12px;
  }
  .layout_9 .ty-product-list .ty-product-list__price {
    padding: 3px 0 !important;
  }
  .layout_9 .ty-pagination {
    border: none !important;
  }
  .layout_9 .ty-sidebox__title-wrapper.visible-phone {
    display: none !important;
  }
  .layout_9 .ty-sidebox__title-wrapper.hidden-phone {
    display: block !important;
  }
  .layout_9 .ty-sidebox.skroutz.smartphone {
    border: 1px solid rgba(0,0,0,0);
  }
  .layout_9 .ty-mainbox-container.clearfix.order-complete-poll {
    margin-top: 20px !important;
  }
  .layout_9 .ty-checkout-complete__buttons-left a {
    float: none;
  }
  .layout_9 .ty-checkout-complete__create-account {
    width: 100% !important;
  }
  .layout_9 .ty-btn.ty-btn__secondary {
    max-width: 310px !important;
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .layout_9 .ty-search-block .cm-quick-search.ty-search-block__input.cm-hint {
    border-color: #ffffff !important;
  }
  .layout_9 .top-grid .number {
    color: #ffffff !important;
  }
  .layout_9 .ty-search-block .cm-quick-search.ty-search-block__input.cm-hint {
    padding: 0 30px 0 8px !important;
  }
  .ty-search-magnifier > img.hovered {
    display: none;
  }
  .layout_9 .ty-checkout-complete__buttons-left {
    width: 100%;
  }
  .layout_9 .ty-checkout-complete__buttons-left {
    float: none;
  }
  .layout_9 .ty-checkout-complete__buttons-right {
    float: right;
  }
  .layout_9    .ty-checkout-complete__buttons-right {
    margin-top: 0px;
    width: 100%;
  }
  .layout_9 .ty-checkout-complete__create-account .buttons-container .ty-btn {
    max-width: 340px;
    width: 100%;
  }
  .layout_9 h1.ty-mainbox-title > span > span.ty-mainbox-title__left {
    margin-left: 10px !important;
  }
  .layout_9.categories-view .span12.main-content-grid {
    padding: 0;
  }
  .layout_9 .category-title-with-socials  .category-name > h1 {
    margin-left: 10px;
  }
  .layout_9.page-78 .tygh-content > .container {
    padding: 0;
  }
  .layout_9 .span5.blog_sidebox {
    padding: 0 10px;
  }
  .layout_9.checkout-checkout .span16.main-content-grid .ty-mainbox-container.clearfix {
    padding: 0;
  }
  .layout_9.page-68 .tygh-content > .container {
    padding: 0 !important;
  }
  .ty-checkout-complete__buttons-right .ty-btn.ty-btn__secondary.text-button {
    float: none;
  }
  .layout_9 .cm-image-previewer {
    cursor: inherit;
    pointer-events: none;
  }
  .layout_9 .nomenu .ty-menu__item.ty-menu__menu-btn.visible-phone {
    display: none !important;
  }
  .layout_9 .nomenu .ty-menu__item.cm-menu-item-responsive {
    display: block;
    border-bottom: 1px solid #000;
  }
  .layout_9 .ty-grid-list__control .add_to_wishlist_para {
    display: none;
  }
  .layout_9 .wishlist-view .ty-mainbox-title .subtitle {
    margin-top: 11px;
  }
  .wishlist-view .ty-mainbox-container.clearfix > .ty-mainbox-title {
    margin-top: 13px;
  }
  .layout_9 .nomenu li.ty-menu__item.ty-menu__item-nodrop {
    display: block;
    border-color: #cccccc;
  }
  .layout_9 .side-list-buy-buttons .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big,
  .layout_9 .side-list-buy-buttons .inner-add-to-cart-product button {
    padding: 6px 40px 6px 50px;
  }
  .layout_9 .side-list-buy-buttons {
    padding-top: 0 !important;
  }
  .layout_9 .nomenu .ty-menu__item-link > span {
    position: relative;
    top: 8px;
  }
  .layout_9 .top-menu-mobile .ty-menu__items .ty-menu__item .ty-menu__item-link span {
    position: relative;
    top: 10px;
  }
  .layout_9 .ty-menu__item:hover .ty-menu__submenu-items,
  .layout_9 .is-hover-menu .ty-menu__submenu-items {
    background: #F7F7F7 !important;
  }
  .layout_9 .ty-top-mine__submenu-col:hover .ty-menu__submenu {
    box-shadow: none !important;
  }
  .layout_9 .nomenu .ty-menu__item a.ty-menu__item-link {
    font-size: 18px !important;
  }
  .layout_9 .main-padding {
    padding: 0 10px;
  }
  .layout_9.page-68 .ty-form-builder__buttons.buttons-container {
    text-align: center;
    margin-bottom: 11px !important;
  }
  .layout_9 .ty-form-builder__buttons.buttons-container {
    text-align: center;
  }
  .layout_9 .grid-list__rating {
    min-height: 17px;
  }
  .layout_9 .ty-search-block {
    background: #ededed;
    left: -10px;
    padding: 10px;
    position: relative !important;
    right: -10px;
    width: 100%;
    top: 50px;
    z-index: 100;
  }
  .layout_9 .ty-logo-container {
    margin: 10px 0 0;
    text-align: center;
  }
  .layout_9 .dwreanmetaf p span:first-child {
    color: #808080;
    font-size: 14px !important;
  }
  .layout_9 .dwreanmetaf p span:last-child {
    font-size: 12px !important;
  }
  .layout_9 .dwreanmetaf {
    margin-bottom: 11px;
    margin-top: -5px;
  }
  .layout_9 .top-menu-mobile .ty-menu__submenu-items.cm-responsive-menu-submenu {
    background: #F7F7F7 !important;
    text-align: center;
  }
  .layout_9 .visible-phone {
    display: inherit !important;
  }
  .layout_9 .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-item-header,
  .layout_9 .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item {
    border: 0 !important;
  }
  .layout_9 .ty-menu__submenu .ty-top-mine__submenu-col .ty-menu__submenu-item {
    padding-left: 0;
  }
  .layout_9 .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > li.ty-menu__submenu-item {
    border-bottom: 1px solid #d8d8d8 !important;
  }
  .layout_9 .ty-menu__submenu-items .ty-top-mine__submenu-col,
  .layout_9 .ty-top-mine__submenu-col:hover {
    background: #f7f7f7 !important;
    border-bottom: 1px solid #d8d8d8;
  }
  .layout_9 .ty-top-mine__submenu-col:hover .ty-menu__submenu {
    display: inherit !important;
    position: relative;
    left: 0;
    background: #f7f7f7 !important;
    padding: 0;
  }
  .layout_9 .ty-menu__submenu-item-header a {
    font-size: 15px !important;
  }
  .layout_9 .top-grid .top-menu-mobile .ty-menu__menu-btn {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .layout_9 .nomenu .ty-menu__items .ty-menu__item .ty-menu__item-link {
    padding: 4px 10px 4px 12px !important;
  }
  .olalink {
    display: block;
    margin: 10px;
    text-align: right;
    color: #BF087F !important;
  }
  .layout_9 .top-menu-mobile .ty-menu__items .ty-menu__item .ty-menu__item-link,
  .layout_9 .ty-menu__item a.ty-menu__item-link {
    font-size: 15px !important;
    font-weight: normal;
  }
  .layout_9 .top-grid .ty-menu__item.cm-menu-item-responsive,
  .layout_9 .top-grid .ty-menu__item.ty-menu__item-nodrop {
    background: #ffc6c9 !important;
  }
  .layout_9 ul.ty-menu__submenu-items.cm-responsive-menu-submenu.level-2 > .ty-top-mine__submenu-col:last-child {
    border-bottom: none !important;
  }
  .layout_9 ul.ty-menu__submenu-list.cm-responsive-menu-submenu.level-3 > .ty-menu__submenu-item:last-child {
    border-bottom: none !important;
  }
  .layout_9 ul.ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2.ty-menu__items-show > .ty-menu__submenu-item:last-child {
    border-bottom: none !important;
  }
  .layout_9 ul.ty-menu__items.cm-responsive-menu.level-1 > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.alphabeta-index > li.ty-top-mine__submenu-col:first-child > .ty-menu__submenu-item-header {
    padding: 13px 27px !important;
    font-size: 15px !important;
    text-align: center;
  }
  .layout_9 .nomenu ul.ty-menu__items.level-1 > .ty-menu__item > .ty-menu__item-link > span {
    font-size: 17px !important;
  }
  .layout_9 .nomenu .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__submenu-link {
    font-size: 16px !important;
  }
  .layout_9 .nomenu li.ty-menu__submenu-item > a {
    font-size: 16px !important;
  }
  .layout_9 .ty-menu__items > .ty-menu__item:nth-child(3) > .ty-menu__submenu > .ty-menu__submenu-items.level-2 .ty-top-mine__submenu-col {
    min-width: unset !important;
  }
  .layout_9 .ty-menu__items > .ty-menu__item:nth-child(3) > .ty-menu__submenu > .ty-menu__submenu-items.level-2 .ty-top-mine__submenu-col > .ty-menu__submenu-item-header {
    min-height: unset;
    background: #f7f7f7 !important;
  }
  .layout_9 ul.ty-menu__items.cm-responsive-menu.level-1 > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.alphabeta-index > li.ty-top-mine__submenu-col > .ty-menu__submenu-item-header > a {
    text-align: center;
    font-weight: 600 !important;
    padding: 5px !important;
    font-size: 17px !important;
  }
  .layout_9 ul.ty-menu__items.cm-responsive-menu.level-1 > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.alphabeta-index > li:first-child {
    display: block;
    width: 100%;
  }
  .layout_9 ul.ty-menu__items.cm-responsive-menu.level-1 > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.alphabeta-index > li:last-child {
    border-bottom: 1px solid #d8d8d8;
  }
  .layout_9 ul.ty-menu__items.cm-responsive-menu.level-1 > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items.alphabeta-index > li {
    display: inline-block;
    width: 10.6%;
  }
  .layout_9 .span16.nomenu .ty-menu-items > .ty-menu__item {
    padding: 0 !important;
  }
  .layout_9 ul.ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2.ty-menu__items-show > .ty-menu__submenu-item {
    border-bottom: 1px solid #d8d8d8 !important;
  }
  .layout_9 ul.ty-menu__submenu-items.ty-menu__submenu-items-simple.level-2.ty-menu__items-show > .ty-menu__submenu-item > a.ty-menu__submenu-link {
    padding-left: 27px !important;
  }
  .layout_9 .ty-search-block .cm-quick-search.ty-search-block__input.cm-hint-focused {
    border-color: #fff !important;
  }
  .layout_9 .ty-menu__item-link > span:hover {
    text-decoration: underline;
  }
  .layout_9 .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__submenu-link {
    padding: 13px 25px !important;
  }
  .layout_9 .ty-product-list.clearfix > form {
    display: block !important;
  }
  .layout_9 .ty-mainbox-title-mobile {
    background: #ffffff none repeat scroll 0 0;
    color: #000000;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 25px;
    padding: 10px;
    position: relative;
    text-align: center;
  }
  .layout_9 .ty-footer-menu__header,
  .layout_9 .ty-footer-general__header {
    font-size: 18px;
  }
  .layout_9 .ty-footer .ty-text-links__item .ty-text-links__a {
    font-size: 17px;
  }
  .layout_9 .span16.nomenu {
    box-sizing: unset;
    position: relative;
    border-top: 1px solid #000;
  }
  .layout_9 .ty-mainbox-body-mobile {
    position: relative;
  }
  .layout_9 .ty-menu__submenu .ty-menu__submenu {
    display: inherit !important;
  }
  .layout_9 .ty-menu__item-toggle-active .ty-menu__submenu .ty-menu__submenu {
    display: block !important;
  }
  .no-touch .top-menu-mobile .ty-menu__item:hover .ty-menu__item-link,
  .top-menu-mobile .is-hover-menu .ty-menu__item-link,
  .top-menu-mobile .is-hover-menu.ty-menu__item-active .ty-menu__item-link {
    color: #444 !important;
  }
  .layout_9 .ty-menu__item:hover .ty-menu__submenu-items,
  .is-hover-menu .ty-menu__submenu-items {
    width: auto;
    min-height: auto;
    text-align: center;
  }
  .layout_9 .sneak-peak-cart,
  .layout_9 .border-cart {
    display: none !important;
  }
  .layout_9 #tygh_footer .ty-footer-grid__full-width .span4 {
    width: 100%;
  }
  .layout_9 .ty-logo-container .ty-logo-container__image {
    margin-left: 0px;
    max-width: 100%;
    width: auto !important;
  }
  .layout_9 .top-cart-content .cart-price {
    display: none;
  }
  .layout_9 .top-cart-content .text {
    display: none !important;
  }
  .layout_9 .top-grid .ty-menu__menu-btn {
    display: block !important;
    margin-top: 5px;
    margin-bottom: 5px !important;
  }
  .layout_9 .ty-menu__item {
    border-color: #000000;
  }
  .layout_9 .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item {
    border-bottom: 1px solid transparent !important;
  }
  .top-grid .top-menu-mobile {
    left: 0px;
    margin-top: 0 !important;
    position: absolute;
    top: 0px;
    width: 100% !important;
    z-index: 600;
  }
  .layout_9 .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__submenu-link {
    font-size: 15px !important;
    font-weight: normal !important;
    padding: 13px 27px !important;
    text-transform: uppercase;
  }
  .layout_9 li.active.ty-menu__item.cm-menu-item-responsive.ty-menu__item-active > .ty-menu__item-link > span {
    text-transform: uppercase;
  }
  .layout_9 #fancybox-content .plus_popup.newsletter_popup img.ty-logo-container__image {
    width: unset !important;
  }
  .layout_9 #fancybox-content .plus_popup.newsletter_popup p {
    padding-left: 15px;
    padding-right: 15px;
  }
  .layout_9 .nomenu .ty-menu__submenu .ty-menu__submenu-item-header .ty-menu__submenu-link {
    padding: 13px 27px !important;
  }
  .layout_9 .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item .ty-menu__submenu-link {
    padding: 12px 30px 12px 50px !important;
  }
  .layout_9 .ty-menu__items > .ty-menu__item > .ty-menu__submenu > .ty-menu__submenu-items > .ty-top-mine__submenu-col > .ty-menu__submenu > .ty-menu__submenu-list > li.ty-menu__submenu-item > .ty-menu__submenu > .ty-menu__submenu-list >
    .ty-menu__submenu-item {
    padding-left: 24px;
  }
  .layout_9 ul.ty-menu__items.level-1 > .ty-menu__item > .ty-menu__item-link > span {
    font-size: 16px !important;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
  }
  .categories-view.page-.layout_9.com_4 .main-content-grid .ty-mainbox-container {
    padding: 1rem;
  }
  .layout_9.pages-view .span12.main-content-grid > .ty-mainbox-container > h1.ty-mainbox-title {
    margin-top: 9px;
  }
  .layout_9 .span16.ty-footer-grid__full-width {
    box-shadow: 0 8px 8px -10px #696868 inset;
  }
  .layout_9.cityfast-get_history .span16.ty-footer-grid__full-width {
    margin-top: 12px !important;
  }
  .layout_9 .pages-view .span12.main-content-grid > .ty-mainbox-container
    > h1.ty-mainbox-title {
    margin-top: 10px;
  }
  .layout_9 li.active.ty-menu__item.cm-menu-item-responsive.ty-menu__item-active > .ty-menu__item-link > span {
    color: #000000;
  }
  .layout_9 .top-menu-mobile .ty-menu__items .ty-menu__item .ty-menu__item-link {
    padding: 5px 6px 5px 13px !important;
  }
  .layout_9 .neutral,
  .layout_9 .hover {
    height: 31px;
    width: 31px;
  }
  .layout_9 .ty-footer.footer-acount-info li {
    text-align: left;
  }
  .layout_9 .ty-search-block  .cm-hint {
    color: #cccccc !important;
  }
  .layout_9 .cart-wishlist,
  .layout_9 .basket {
    float: right;
    width: 32px !important;
    margin: 0 8px !important;
    position: relative;
  }
  .layout_9 .article-title > a {
    text-align: center !important;
  }
  .layout_9 .top-cart-content {
    background: rgba(0,0,0,0) none repeat scroll 0 0;
    height: 32px;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    right: 10px;
    top: 9px;
    width: 100px !important;
    z-index: 601;
  }
  .top-grid .top-menu-mobile .ty-menu__items,
  .top-menu-mobile > .ty-menu__items > .ty-menu__item > .ty-menu__item-link {
    background: transparent !important;
  }
  .layout_9.checkout-checkout .top-grid .top-menu-mobile .ty-menu__items,
  .top-menu-mobile > .ty-menu__items > .ty-menu__item > .ty-menu__item-link {
    background: #fff !important;
  }
  .ty-menu__item.ty-menu__menu-btn.visible-phone {
    line-height: 1;
    width: 32px;
    margin-bottom: 0px;
    left: 10px;
  }
  .layout_9 .top-menu-mobile .ty-menu__items .ty-menu__item .ty-menu__item-link {
    border: 0 !important;
  }
  .top-menu-mobile .ty-menu__items.cm-responsive-menu {
    border: 0 !important;
  }
  .top-menu-mobile > .ty-menu__items > .ty-menu__item.ty-menu__menu-btn > .ty-menu__item-link {
    padding: 0 !important;
  }
  .ty-menu__item.cm-menu-item-responsive {
    width: 100% !important;
  }
  .top-cart-content {
    background: transparent none repeat scroll 0 0;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    right: 10px;
    top: 4px;
    width: 32px;
    height: 32px;
  }
  .layout_9 .container.top-grid {
    background: #ededed none repeat scroll 0 0;
  }
  .top-grid .ty-dropdown-box__title {
    padding: 0 !important;
  }
  .text.empty-cart {
    display: none !important;
  }
  .top-grid .basket {
    width: 32px !important;
  }
  .top-grid .basket-inner {
    right: 0 !important;
  }
  .top-grid .number:before {
    content: "";
    display: none !important;
  }
  .top-grid .basket-inner {
    right: 10px !important;
  }
  .top-grid .number {
    background: #fe737b none repeat scroll 0 0 !important;
    border: 1px solid #ededed;
    border-radius: 50%;
    bottom: auto;
    display: block;
    height: 16px;
    left: auto;
    line-height: 1.5;
    padding: 0 !important;
    position: absolute;
    right: -7px;
    text-align: center;
    top: -3px;
    width: 16px;
    font-size: 11px !important;
  }
  .top-menu-mobile > .ty-menu__items > .ty-menu__item:hover {
    background: #F7F7F7 !important;
  }
  .top-menu-mobile .ty-menu__item.ty-menu__menu-btn.visible-phone:hover {
    background: transparent !important;
  }
  .layout_9 .ty-dropdown-box.mymobaccount {
    height: 45px;
    position: absolute;
    right: 52px;
    text-align: center;
    width: 32px;
    top: 2px;
    z-index: 690;
  }
  .layout_9.checkout-cart .ty-mainbox-container > .ty-mainbox-body > p.ty-no-items {
    margin-top: 39px;
  }
  .layout_9 .mymobaccount .ty-icon-up-open {
    display: none !important;
  }
  .layout_9 .ty-search-magnifier {
    height: 20px;
    right: 4px !important;
    top: 5px !important;
    width: 20px;
    font-size: 100% !important;
  }
  .layout_9 .ty-sidebox__body .ty-product-filters__title {
    font-size: 15px;
  }
  .layout_9 .ty-menu__item.cm-menu-item-responsive.prosfores {
    background: #82bc3c none repeat scroll 0 0 !important;
    height: auto;
  }
  .layout_9 .ty-menu__item.cm-menu-item-responsive.prosfores a span {
    color: #fff !important;
  }
  .layout_9 .top-menu-mobile .ty-menu__items > .ty-menu__item:last-child {
    margin-left: 0 !important;
  }
  .layout_9 .top-menu-mobile .ty-menu__items > .ty-menu__item:last-child:hover > a {
    border: 0 !important;
  }
  .layout_9 .ty-text-links__item.ty-level-0 {
    display: block;
  }
  .layout_9 .ty-footer-menu__items,
  .layout_9 .ty-footer-general__body {
    display: none;
  }
  .ty-menu__menu-btn .ty-menu__item-link > span {
    display: none;
  }
  .layout_9 .ty-menu__item.cm-menu-item-responsive.prosfores::after {
    background: rgba(0,0,0,0) url("../../../../../../../../design/themes/responsive/media/design/themes/responsive/media/images/Veli_DIAFANH.png?1481279454") no-repeat scroll 0 8px;
    content: "";
    display: block;
    height: 60px;
    position: absolute;
    right: 19px;
    top: 0;
    width: 55px;
  }
  .layout_9 .prosfores .ty-menu__item-link > img {
    margin-right: 0px;
  }
  .layout_9 .brands-homepage-images .squaredTwos:nth-child(3)::before,
  .layout_9 .brands-homepage-images .squaredTwos:nth-child(3)::after {
    display: none;
  }
  .layout_9 .brands-homepage-images .squaredTwos {
    border: 1px solid #d8d8d8 !important;
    display: inline-block;
    float: left;
    margin: 5px !important;
  }
  .top-grid .ty-icon-short-list {
    color: #ffffff;
    font-size: 24px;
    padding: 0 !important;
  }
  .top-grid .ty-menu__item.cm-menu-item-responsive,
  .top-grid .ty-menu__item.ty-menu__item-nodrop {
    background: #f7f7f7 none repeat scroll 0 0 !important;
    z-index: 999;
  }
  .top-menu-mobile .ty-menu__items .ty-menu__item:last-child .ty-menu__item-link {
    margin-top: 0;
  }
  .top-grid .ty-dropdown-box__title:hover,
  .top-grid .ty-dropdown-box__title.open {
    background: transparent !important;
  }
  .top-grid .ty-dropdown-box__content {
    margin-top: 14px;
  }
  .layout_9 .top-grid .mymobaccount .ty-icon-down-open::before {
    content: "\f007";
    display: none !important;
    font-family: FontAwesome;
    font-size: 33px;
    position: relative;
    top: -10px !important;
    color: #808080 !important;
  }
  .layout_9 .top-grid .mymobaccount .ty-icon-down-open {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/user.svg?1753621501');
    width: 15px;
    height: 20px;
  }
  .top-cart-content .basket a img {
    display: none;
  }
  .top-cart-content .basket a {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/cart.svg?1753621501');
    width: 22px;
    height: 27px;
    display: inline-block;
    margin-top: 4px;
  }
  .layout_9 .checkout_free_ship_notification_box.cm-notification-content.notification-content.cm-auto-hide.alert-success {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }
  .layout_9 .top-menu-mobile > .ty-menu__items > .ty-menu__item:nth-child(9):hover a,
  .layout_9 .top-menu-mobile > .ty-menu__items > .ty-menu__item:nth-child(9) a {
    border: 0 !important;
    color: #5e5f5b !important;
  }
  .layout_9 .programm-promos div {
    display: block;
    float: none;
    margin: 15px 0 !important;
    text-align: center;
    width: 100%;
  }
  .layout_9 .top-menu-mobile > .ty-menu__items > .ty-menu__item:nth-child(9):hover,
  .layout_9 .top-menu-mobile > .ty-menu__items > .ty-menu__item:nth-child(9) {
    background: #fff !important;
    padding: 7px 0 !important;
  }
  .layout_9 .top-menu-mobile .ty-menu__items > .ty-menu__item:nth-child(9) > a.cm-responsive-menu-toggle {
    padding: 0 !important;
  }
  .layout_9 .top-cart-content .cart-wishlist {
    margin-top: -1px !important;
    display: none;
  }
  .layout_9 .top-cart-content .basket {
    margin-top: -2px !important;
  }
  .layout_9 .ty-menu__item .ty-menu__item-toggle-active {
    background: transparent !important;
    color: #5e5f5b !important;
  }
  .layout_9 img.hover {
    visibility: hidden !important;
  }
  .layout_9 img.neutral {
    display: inline-block !important;
  }
  .layout_9 .top-cart-content .cm-popup-box.ty-dropdown-box__content::before {
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) #ffffff;
    border-style: solid;
    border-width: 0 15px 11px;
    content: "";
    display: block;
    left: auto;
    position: absolute;
    right: 5px;
    top: -8px;
    z-index: 602;
  }
  .layout_9 .top-cart-content .cm-popup-box.ty-dropdown-box__content::after {
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) #a50c73;
    border-style: solid;
    border-width: 0 15px 11px;
    content: "";
    display: block;
    left: auto;
    position: absolute;
    right: 5px;
    top: -11px;
    z-index: 601;
  }
  .layout_9 .top-cart-content .cm-popup-box.ty-dropdown-box__content {
    margin-top: 2px;
    z-index: 660;
  }
  .layout_9 .products-view .ty-simple-list .product-title p {
    height: 27px;
  }
  .layout_9 .top-grid .inner {
    margin-top: -6px;
  }
  .top-grid .ty-account-info__item.ty-dropdown-box__item {
    text-align: left;
  }
  .bottom-copyright,
  .bottom-copyright a.bottom-copyright,
  .gemy .ty-wysiwyg-content > p {
    display: block;
  }
  .layout_9.profiles-update .ty-control-group.ty-profile-field__item {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .layout_9 .mymobaccount .ty-dropdown-box__content {
    margin-top: 4px !important;
    min-width: 200px !important;
    position: absolute;
    right: -102px !important;
    border: 2px solid #fe737b !important;
  }
  .layout_9 .ty-scroller-list__item .ty-simple-list .product-title > p {
    color: #000000 !important;
  }
  .layout_9 #togglefilters {
    display: inline-block;
    float: right;
    font-size: 18px;
    margin: 10px;
    cursor: pointer;
    color: #5e5f5b;
  }
  .layout_9 .tygh-content.clearfix > .container > .row > .main-content-grid > .ty-mainbox-container > .ty-mainbox-title {
    margin-top: 8px;
  }
  .layout_9 .ty-menu__submenu .ty-menu__submenu-items .ty-menu__submenu-item-active > a {
    color: #666 !important;
    font-weight: bold;
  }
  .layout_9 .span16.main-content-grid .ty-mainbox-container.clearfix {
    padding: 0 10px;
  }
  .layout_9 .ty-profile-field__buttons.buttons-container {
    padding: 0 !important;
    text-align: center;
  }
  .layout_9 #togglefilters:after {
    content: attr(title);
    font-size: 15px;
    color: #808080;
    display: inline-block;
    margin-left: 10px;
    font-family: "RobotoCondensed";
  }
  .layout_9 .category-title-with-socials {
    margin-bottom: 0;
  }
  .layout_9 .category-name > h1 {
    margin: 5px 0;
  }
  .layout_9 .categories-view .group_tags {
    display: none;
  }
  .layout_9 .category-content .grid-list {
    margin-top: 0;
  }
  .layout_9 .notification-body-extended .ty-mainbox-container {
    display: none;
  }
  .layout_9 .total-category.products-pagination {
    display: none !important;
  }
  .layout_9 .rss-feed.cm-no-ajax {
    display: none;
  }
  .layout_9 .ty-sort-dropdown {
    display: inline-block;
    float: left;
    padding: 0;
    position: relative;
  }
  .layout_9 .side-grid .category-categories .ty-text-links > li.ty-text-links__item {
    text-align: left;
  }
  .layout_9 #elm_sort_fields {
    border-top: 2px solid #ededed !important;
    left: 0 !important;
    min-width: 320px;
    position: absolute;
    right: 0 !important;
    width: 100% !important;
  }
  .layout_9 .items-per-page {
    display: none !important;
  }
  .layout_9 .ty-sort-container__views-a {
    padding: 10px 5px;
    margin: 1px 5px 0;
  }
  .layout_9 .category-categories {
    display: block;
  }
  .layout_9 .category-categories .ty-mainbox-simple-title {
    font-size: 15px !important;
    cursor: pointer;
    padding-right: 10px;
  }
  .layout_9 .everyday_products .ty-scroller-list__item:hover {
    border-color: transparent;
  }
  .layout_9 .side-grid .ty-mainbox-simple-title i {
    color: #ccc;
  }
  .layout_9 .ty-sort-container__views-icons {
    display: block !important;
  }
  .layout_9 .side-grid {
    display: none;
  }
  .layout_9 .ty-sort-container__views-a {
    display: none;
  }
  .layout_9 .container-fluid {
    min-width: 320px;
  }
  .layout_9 .middle-banners-homepage-banners .ty-banner__image-wrapper {
    width: 100%;
  }
  .layout_9 .ty-footer-grid__full-width {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .layout_9 .ty-menu__item-toggle {
    top: 2px;
  }
  .layout_9 .mymobaccount .ty-dropdown-box__content::before {
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) #ffffff;
    border-style: solid;
    border-width: 0 15px 11px;
    content: "";
    display: block;
    left: 65px;
    position: absolute;
    top: -8px;
    z-index: 602;
  }
  .layout_9 .top-cart-content .ty-btn__primary {
    background: #fe737b;
  }
  .layout_9 .mymobaccount .ty-dropdown-box__content::after {
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) #fe737b;
    border-style: solid;
    border-width: 0 15px 11px;
    content: "";
    display: block;
    left: 65px;
    position: absolute;
    top: -11px;
    z-index: 601;
  }
  .layout_9 .ty-product-block__left .prices-container.price-wrap {
    margin-top: 0;
  }
  .layout_9 #totop {
    display: none !important;
  }
  .layout_9 .categories-view .ty-icon-down-micro.ty-account-info__user-arrow {
    left: 0 !important;
    top: 8px !important;
  }
  .layout_9 #sorter {
    display: none;
  }
  .layout_9 .ty-pagination__item {
    padding: 3px 7px !important;
  }
  .layout_9 .ty-social-buttons {
    display: none;
  }
  .layout_9 .lang-see-them-all-div {
    text-align: center;
  }
  .layout_9 .ty-mainbox-title > span {
    display: block;
    text-align: left;
  }
  .layout_9.page-196 .ty-mainbox-title > span {
    text-align: center;
    margin: 7px 0;
    font-size: 22px;
  }
  .layout_9.page-196 .grid-list .ty-column5.line::before {
    content: "";
    display: none;
  }
  .layout_9.page-196 #pagination_contents .lang-side_bar_text {
    font-weight: normal !important;
  }
  .layout_9 .tab-urls .first_li {
    display: block;
    width: 100%;
    text-align: center;
  }
  .layout_9 .checkout-cart .ty-gift-certificate-coupon .ty-btn-go {
    background: #899BCF none repeat scroll 0 0 !important;
    color: #ffffff;
    float: left;
    font-weight: 600;
    height: 32px;
    position: relative !important;
    right: 0;
    top: 0 !important;
    transition: background 200ms ease 0s;
    width: 85px !important;
  }
  .layout_9 #point_payment .ty-discount-info {
    right: 0;
  }
  .layout_9 .inner-right-cart_total.span6 {
    margin-left: 0 !important;
  }
  .layout_9 .checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__primary {
    padding: 20px;
    font-size: 15px !important;
  }
  .layout_9 .inner-shipping {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .snowflake {
    display: none !important;
  }
  .layout_9 .ty-coupons__list.ty-discount-info {
    margin: 10px 0 0 !important;
    width: 100% !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .layout_9  .checkout-title {
    background: #ffffff none repeat scroll 0 0 !important;
    border: 1px dotted #BF087F !important;
    margin-left: 0;
    padding: 10px 0;
  }
  .layout_9 .checkout-checkout .ty-checkout__title {
    font-size: 9.5px !important;
    font-weight: 600;
    color: #BF087F;
  }
  .layout_9 .inner-secure.clearfix {
    width: 100%;
  }
  .layout_9 .ty-step__container-active,
  .ty-like-step {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0 !important;
    padding: 5px !important;
    width: 100% !important;
  }
  .layout_9 .ty-step__title,
  .ty-step__title-active,
  .ty-step__title-complete {
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #eee !important;
  }
  .layout_9 .ty-step__title-active.clearfix {
    border-bottom: 1px solid #eee !important;
  }
  .layout_9 .checkout-checkout .ty-step__title-txt {
    font-size: 14px !important;
  }
  .layout_9 .checkout__block,
  .ty-checkout__billing-options.ty-notab {
    padding: 0 5px;
  }
  .layout_9 .radio,
  .checkbox,
  input[type="radio"],
  input[type="checkbox"] {
    margin: 0 10px 0 0;
    padding: 0;
    vertical-align: middle;
  }
  .layout_9 .ty-billing-first-name + .ty-billing-last-name,
  .ty-billing-country + .ty-billing-state,
  .ty-shipping-first-name + .ty-shipping-last-name,
  .shipping-country + .ty-shipping-state,
  .ty-first-name + .ty-last-name,
  .ty-control-group.ty-profile-field__item.ty-billing-country,
  .ty-billing-city,
  .ty-shipping-city,
  .ty-billing-zip-code,
  .ty-shipping-zip-code,
  .ty-billing-email,
  .ty-shipping-email,
  .ty-billing-phone,
  .ty-shipping-phone,
  .checkout-checkout .ty-control-group.ty-profile-field__item.ty-billing-phone,
  .ty-control-group.ty-profile-field__item.ty-shipping-country,
  .profiles-update .ty-control-group.ty-profile-field__item.ty-billing-state {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .layout_9 .ty-payments-list {
    float: left;
    margin: 0;
    padding-right: 0;
    width: 100%;
  }
  .layout_9 .checkout-checkout .ty-payments-list__item {
    padding-bottom: 0;
  }
  .layout_9 .ty-other-pay.clearfix {
    margin: 10px 0;
  }
  .layout_9 .checkout-checkout .credit::before {
    display: none;
  }
  .layout_9 .ty-payments-list__item.credit,
  .ty-payments-list__item {
    margin: 15px 0;
  }
  .layout_9 .ty-other-pay .ty-payments-list__item {
    margin: 20px 0 0;
  }
  .layout_9 .ty-step__body-active .ty-address-switch {
    margin: 30px 5px;
  }
  .layout_9 .ty-step__container-active.ty-step-three {
    padding: 0 !important;
  }
  .layout_9 #review_body .btn.btn-success {
    padding: 20px;
  }
  .layout_9 .checkout-checkout .lock.span2 {
    display: block;
    font-size: 50px !important;
    width: 100% !important;
  }
  .layout_9 .secure-transaction-inner-promo.span8 {
    width: 100%;
  }
  .layout_9 .secure-icon.span2 {
    display: block;
    margin: 0 !important;
    text-align: center;
    width: 100% !important;
  }
  .layout_9 .buttons-container.ty-cart-content__top-buttons.clearfix,
  .layout_9 .buttons-container.ty-cart-content__bottom-buttons.clearfix {
    padding: 17px 20px !important;
  }
  .layout_9 .secure-transaction-inner-promo > h2 {
    color: #707072;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
  }
  .layout_9 .secure-transaction {
    border: 0;
  }
  .layout_9 .secure-transaction .inner-secure {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0 !important;
  }
  .layout_9 .secure-transaction-inner-promo.span8 > p {
    max-width: 97%;
  }
  .layout_9 .top-menu-mobile {
    display: block !important;
  }
  .layout_9 .social-footer .hovered {
    display: none !important;
  }
  .show-smobile .best-sell-img {
    display: none;
  }
  .show-smobile .sku-product-list {
    display: none;
  }
  .show-smobile .ty-product-list__ratin {
    display: none;
  }
  .show-smobile .ty-product-list__option {
    display: none;
  }
  .show-smobile .ty-product-list__description {
    display: none;
  }
  .show-smobile .ty-product-list__item-name .product-title {
    font-size: 15px !important;
  }
  .show-smobile .side-list-buy-buttons {
    float: left;
    width: 180px;
  }
  .show-smobile [id^="old_price_update_"] {
    display: block !important;
  }
  .show-smobile .list-price-label {
    display: none;
  }
  .show-smobile .ty-strike {
    display: block;
    margin-left: 10px;
    margin-top: 0px;
  }
  .layout_9.checkout-checkout .ty-search-block {
    display: none !important;
  }
  .show-smobile .ty-product-list__price > * {
    float: none;
  }
  .show-smobile .side-list-buy-buttons .ty-product-list__control {
    float: none;
  }
  .show-smobile .prod-amount {
    display: block;
  }
  .show-smobile .ty-product-list .ty-price span {
    display: inline-block;
    font-size: 23px;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .layout_9 .ty-product-list__content .brand-name-grid-list {
    display: none;
  }
  .span16.show-smobile  hr {
    clear: both;
  }
  .show-smobile .ty-product-list {
    padding: 15px 0;
  }
  .show-smobile .ty-product-list__image {
    margin-right: 10px;
    margin-left: 10px;
    float: left;
  }
  .show-smobile .ty-product-list__control {
    width: 100%;
  }
  .show-smobile .ty-btn__add-to-cart {
    float: left !important;
    margin-left: 0 !important;
  }
  .show-smobile .ty-product-list.clearfix {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .show-smobile .ty-product-list__content {
    height: 52px;
    overflow: hidden !important;
  }
  .ty-mainbox-body-mobile .ty-banner__image-wrapper {
    margin: 0;
  }
  .show-smobile .ty-product-list.clearfix {
    float: left;
    width: 50%;
  }
  .exegrow {
    clear: both;
    display: block;
    padding: 0 4%;
    width: 92%;
    margin: 20px 0;
  }
  .exeicon {
    display: inline-block;
    float: left;
    width: 20%;
    margin-right: 2%;
  }
  .exetext {
    float: left;
    width: 65%;
  }
  .mobile_wrap.noborder .ty-mainbox-simple-title {
    border-bottom: 0 none;
    font-size: 27px;
    font-weight: 100 !important;
    padding: 10px 25px !important;
    text-align: left;
  }
  .mobile_wrap_body .ty-wysiwyg-content {
    border-bottom: 1px solid #888888;
    padding-bottom: 0px;
  }
  .layout_9 .skroutz .ty-mainbox-title > span {
    text-transform: none;
  }
  .layout_9 .skroutz .lang-side_bar_text,
  .everyday_products .lang-side_bar_text {
    font-weight: normal !important;
    font-size: 13px !important;
  }
  .layout_9 .wishlist-view h1 {
    margin-top: 20px;
  }
  .layout_9 #review_step .secure-icon {
    display: none;
  }
  .layout_9 .ty-cart-content__qty .ty-table__responsive-header {
    height: 50px;
    line-height: 50px;
  }
  h1 .subtitle {
    display: block;
    font-size: 13px;
    font-weight: normal;
    margin-top: 12px;
  }
  .layout_9 .blog-cat-name {
    display: none;
  }
  .layout_9 .article-title a {
    font-weight: bold;
  }
  .mobile_wrap.clearfix {
    margin-top: 0px;
    border-top: 1px solid #666;
  }
  .exetext > strong {
    color: #4e4e4e;
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 2px;
  }
  .exetext > span {
    color: #4e4e4e;
    font-size: 12px;
    line-height: 15px;
    display: block;
  }
  .exegrow:before,
  .exegrow:after,
  ty-pagination:before,
  .ty-pagination:after {
    content: "";
    display: block;
    zoom: 1;
    clear: both;
  }
  .icon-agores {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/par/truckclock.png?1753621501') no-repeat;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }
  .icon-metaforika {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/par/truck.png?1753621501') no-repeat;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }
  .icon-pistotiki {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/par/wallet.png?1753621501') no-repeat;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }
  .icon-support {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/par/call.png?1753621501') no-repeat;
    display: block;
    width: 41px;
    height: 40px;
    margin: 0 auto;
  }
  .icon-asfalia {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/par/lock.png?1753621501') no-repeat;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }
  .icon-epistrofi {
    background: url('../../../../../../../../design/themes/responsive/media/images/mob/par/14.png?1753621501') no-repeat;
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto;
  }
  .layout_9 .newsletter {
    padding: 5px;
    position: relative;
    background: #ededed;
    box-sizing: border-box;
    margin-top: 15px;
  }
  .layout_9 .top-menu-mobile > .ty-menu__items > .ty-menu__item > a::before {
    background: none !important;
  }
  .layout_9 .ty-cart-content__right-buttons .update-cart-wrapper > i.ty-icon-cw {
    display: none !important;
  }
  .layout_9 .ty-cart-content__right-buttons .update-cart-wrapper > button#button_cart {
    float: none !important;
    margin: 0 auto;
  }
  .layout_9 .index-blog-articles .ty-mainbox-title span {
    color: #000000 !important;
    text-align: center !important;
    font-weight: 500;
  }
  .layout_9 .ty-blog-recent-posts-scroller .article-title {
    height: auto;
    margin-top: 25px;
  }
  .layout_9 .notification-body-extended .ty-product-notification__buttons > div.ty-float-right {
    float: right !important;
  }
  .layout_9 .top-menu-mobile > ul.ty-menu__items.cm-responsive-menu {
    top: 0;
  }
  .layout_9 .ty-blog-recent-posts-scroller .article-title a {
    font-size: 18px !important;
    font-weight: 500;
  }
  .layout_9 .index-blog-articles .more-articles {
    margin-top: 23px;
  }
  .ty-blog-recent-posts-scroller .article-title
    .layout_9.categories-view .newsletter {
    margin-bottom: -15px !important;
  }
  .layout_9 .side-list-buy-buttons div {
    text-align: left !important;
  }
  .layout_9.products-view .newsletter {
    padding: 5px 0;
    position: relative;
    background: #ededed;
  }
  .layout_9 .newsletter .newsletter-title > h3 {
    font-size: 42px;
  }
  .layout_9 .newsletter .ty-footer-form-block {
    margin-top: 10px;
  }
  .layout_9 .newsletter-title {
    padding-top: 6px;
  }
  .layout_9 .inner-right-cart_total.span6 {
    padding: 0 6px !important;
  }
  .layout_9 .ty-footer-menu__icon-open,
  .ty-footer-menu__icon-hide {
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: normal !important;
    position: absolute;
    right: 10px;
    top: 17px;
  }
  .layout_9 .ty-payment-icons__item {
    margin: 5px !important;
    height: auto;
  }
  .layout_9 .newsletter .ty-footer-form-block .ty-input-text.cm-hint,
  .layout_9 .newsletter .ty-footer-form-block .ty-input-text.cm-hint-focused {
    width: 325px !important;
    max-width: 100%;
  }
  .layout_9.products-view .ty-product-block__left {
    border-left: 0px solid #eeeeee !important;
    border-right: 0px solid #eeeeee !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .layout_9 td.product-qty-picker .ty-product-block__field-group {
    display: none;
  }
  .layout_9 table.add-to-cart-product-button {
    width: 100%;
  }
  .layout_9 .add-to-cart-product-button {
    margin-top: 11px;
  }
  .layout_9
    .add-to-cart-product-button td {
    display: block;
    height: 34px;
    width: 100%;
  }
  .layout_9 .product-qty-picker {
    height: 0 !important;
  }
  .layout_9
    .ty-product-block__button {
    clear: both;
    display: block;
    float: none;
    margin: 0 auto !important;
    width: 300px;
  }
  .layout_9 table.add-to-cart-product-button {
    clear: both;
    height: 95px;
    width: 100%;
  }
  .layout_9 .smallable-1 td {
    display: block;
    text-align: left !important;
  }
  .layout_9 .smallable-1 label {
    font-weight: bold;
  }
  .layout_9 .tab_bar_descr {
    width: 235px;
  }
  .layout_9 .ty-product-block__img-wrapper {
    width: 100% !important;
  }
  .layout_9 .ty-product-block__left {
    max-width: 100% !important;
    width: 100%;
  }
  .layout_9 .ty-text-links__item {
    border-bottom: 1px solid #ededed;
    margin-right: 0 !important;
    padding: 10px 0;
  }
  .layout_9 .ty-text-links .ty-level-0,
  .layout_9  .ty-footer-menu__item {
    margin-left: 20px;
  }
  .layout_9 .ty-footer-menu__item {
    padding: 10px 0 !important;
    border-color: #ededed;
  }
  .layout_9 .ty-footer-menu__header,
  .layout_9 .ty-footer-general__header {
    border-color: #ededed !important;
  }
  .layout_9 .buttons-container.login-recovery {
    text-align: center;
    padding: 0;
    padding-top: 13px;
    padding-bottom: 15px;
  }
  .layout_9 .side-grid .category-categories .ty-text-links > li.ty-text-links__item.ty-level-2 {
    margin-left: 26px;
  }
  .layout_9 .notification-body-extended .ty-product-notification__buttons > .ty-float-left {
    float: left !important;
  }
  .layout_9 .cm-notification-content.cm-notification-content-extended.notification-content-extended.cm-auto-hide > h1 {
    font-size: 18px !important;
  }
  .layout_9 .notification-content-extended h1 span {
    right: 5px !important;
    color: #666 !important;
    font-size: 20px !important;
    top: 3px;
  }
  .layout_9 .checkout-checkout .ty-step__title-txt {
    font-size: 16px !important;
  }
  .layout_9 .checkout-checkout .ty-step__title-active.clearfix span {
    font-size: 17px !important;
  }
  .layout_9 .alphabeta-index .ty-top-mine__submenu-col > .ty-menu__submenu {
    display: none !important;
  }
  .layout_9 #tygh_footer .copyright-bottom .bottom-copyright {
    margin: 0;
    padding: 5px;
  }
  .layout_9 .ty-step__title-complete .ty-step__title-txt {
    margin-left: 25px !important;
  }
  .layout_9 .ty-step__container-active .ty-step__title-txt {
    margin-left: 25px !important;
  }
  .layout_9 .ty-step__title .ty-step__title-txt {
    margin-left: 25px !important;
  }
  .layout_9 .ty-step__title-icon {
    top: 12px;
  }
  .layout_9 .checkout__block .ty-control-group.ty-profile-field__item {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .layout_9 .ty-step__title-complete .ty-step__title-right .ty-btn {
    top: 4px !important;
  }
  .layout_9 .checkout-checkout .ty-step__title-left {
    background: transparent;
  }
  .layout_9 table.add-to-cart-product-button {
    width: 100%;
  }
  .layout_9 .ty-product-block__button {
    width: 100%;
  }
  .layout_9  #content_product_tab_12 .ty-scroller-list__item .ty-pict {
    margin: 0 auto;
  }
  .layout_9 .ty-scroller-list__img-block > a {
    display: block;
    text-align: center;
    width: 100%;
  }
  .layout_9 .owl-theme.ty-owl-controls {
    display: none !important;
  }
  .layout_9 .ty-gift-certificate-coupon .ty-input-text.cm-hint {
    max-width: 315px;
    margin-left: 5px;
  }
  .layout_9 .ty-coupons__container #point_payment .ty-discount-coupon__control-group input {
    float: left;
    left: 5px !important;
    padding-right: 0;
    position: relative;
    width: 80% !important;
  }
  .layout_9 .ty-coupons__container #point_payment .ty-discount-coupon__control-group .ty-btn-go {
    right: 0;
  }
  .layout_9 .ty-gift-certificate-coupon .ty-input-text.cm-hint {
    float: left;
    padding-right: 5px;
    width: 71% !important;
  }
  .layout_9 .checkout-cart .ty-gift-certificate-coupon .ty-btn-go {
    background: #899BCF none repeat scroll 0 0 !important;
    color: #ffffff;
    float: left;
    font-weight: 600;
    height: 32px;
    position: relative !important;
    right: 0;
    top: 0 !important;
    transition: background 200ms ease 0s;
    width: 85px !important;
  }
  .layout_9 #point_payment .ty-discount-info {
    right: 0;
  }
  .layout_9 .inner-right-cart_total.span6 {
    margin-left: 0 !important;
  }
  .layout_9 .checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__primary {
    padding: 20px;
    font-size: 15px !important;
  }
  .layout_9 .inner-shipping {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .layout_9 .ty-coupons__list.ty-discount-info {
    margin: 10px 0 0 !important;
    width: 100% !important;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .layout_9 .checkout-title {
    background: #ffffff none repeat scroll 0 0 !important;
    border: 1px dotted #BF087F !important;
    margin-left: 0;
    padding: 10px 0;
  }
  .layout_9 .checkout-title tr td {
    display: table-cell !important;
    text-align: left !important;
    width: auto !important;
  }
  .layout_9 .checkout-checkout .ty-checkout__title {
    font-size: 9.5px !important;
    font-weight: 600;
  }
  .layout_9 .inner-secure.clearfix {
    width: 100%;
  }
  .layout_9 .ty-step__container-active,
  .layout_9  .ty-like-step {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0 !important;
    padding: 5px !important;
    width: 100% !important;
  }
  .layout_9 .ty-coupons__container #point_payment .ty-discount-coupon__control-group input {
    width: 71% !important;
  }
  .layout_9 .ty-coupons__container .ty-discount-info {
    width: unset;
    margin-left: 0;
  }
  .layout_9 .ty-step__title,
  .ty-step__title-active,
  .layout_9  .ty-step__title-complete {
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid #eee !important;
  }
  .layout_9 .ty-step__title-active.clearfix {
    border-bottom: 1px solid #eee !important;
  }
  .layout_9 .checkout-checkout .ty-step__title-txt {
    font-size: 14px !important;
  }
  .layout_9 .checkout__block,
  .layout_9 .ty-checkout__billing-options.ty-notab {
    padding: 0 5px;
  }
  .layout_9 .radio,
  .layout_9  .checkbox,
  .layout_9 input[type="radio"],
  .layout_9  input[type="checkbox"] {
    margin: 0 10px 0 0;
    padding: 0;
    vertical-align: middle;
  }
  .layout_9 .ty-billing-first-name + .ty-billing-last-name,
  .layout_9  .ty-billing-country + .ty-billing-state,
  .layout_9  .ty-shipping-first-name + .ty-shipping-last-name,
  .layout_9  .shipping-country + .ty-shipping-state,
  .layout_9  .ty-first-name + .ty-last-name,
  .layout_9 .ty-control-group.ty-profile-field__item.ty-billing-country,
  .layout_9 .ty-billing-city,
  .layout_9  .ty-shipping-city,
  .layout_9  .ty-billing-zip-code,
  .layout_9  .ty-shipping-zip-code,
  .layout_9  .ty-billing-email,
  .layout_9  .ty-shipping-email,
  .layout_9  .ty-billing-phone,
  .layout_9  .ty-shipping-phone,
  .layout_9 .checkout-checkout .ty-control-group.ty-profile-field__item.ty-billing-phone,
  .layout_9 .ty-control-group.ty-profile-field__item.ty-shipping-country,
  .layout_9 .profiles-update .ty-control-group.ty-profile-field__item.ty-billing-state {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .layout_9 .ty-payments-list {
    float: left;
    margin: 0;
    padding-right: 0;
    width: 100%;
  }
  .layout_9 .checkout-checkout .ty-payments-list__item {
    padding-bottom: 0;
  }
  .layout_9 .ty-other-pay.clearfix {
    margin: 10px 0;
  }
  .layout_9 .checkout-checkout .credit::before {
    display: none;
  }
  .layout_9 .ty-payments-list__item.credit,
  .layout_9  .ty-payments-list__item {
    margin: 15px 0;
  }
  .layout_9 .ty-other-pay .ty-payments-list__item {
    margin: 20px 0 0;
  }
  .layout_9 .ty-step__body-active .ty-address-switch {
    margin: 30px 5px;
  }
  .layout_9 .ty-step__container-active.ty-step-three {
    padding: 0 !important;
  }
  .layout_9 #review_body .btn.btn-success {
    padding: 20px;
  }
  .layout_9 .checkout-checkout .lock.span2 {
    display: block;
    font-size: 50px !important;
    width: 100% !important;
  }
  .layout_9 .secure-transaction-inner-promo.span8 {
    width: 100%;
  }
  .layout_9 .secure-icon.span2 {
    display: block;
    margin: 0 !important;
    text-align: center;
    width: 100% !important;
  }
  .layout_9 .secure-transaction-inner-promo > h2 {
    color: #707072;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
  }
  .layout_9 .secure-transaction {
    border: 0;
  }
  .layout_9 .secure-transaction .inner-secure {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 0 !important;
  }
  .layout_9 .secure-transaction-inner-promo.span8 > p {
    max-width: 97%;
  }
  .layout_9 .checkout-checkout-title {
    margin-left: 0;
  }
  .layout_9.checkout-checkout .ty-mainbox-container {
    width: 100%;
  }
  .layout_9.checkout-cart .ty-cart-content__right-buttons .ty-btn.ty-btn__primary {
    font-size: 20px !important;
    padding: 20px;
  }
  .layout_9 #step_one_register .ty-checkout-buttons.clearfix > .ty-checkout__register-cancel:hover {
    background: #fe737b;
  }
  .layout_9 .ty-discussion-post-popup > .object-container {
    width: 100%;
  }
  .layout_9 .ty-buy-together-price .cm-ty-buy-together-submit {
    text-align: center;
  }
  .layout_9.product_features-view .ty-feature {
    margin-left: 10px;
  }
  .layout_9 .span12.main-content-grid,
  .layout_9 .ty-blog {
    padding: 5px 10px;
  }
  .layout_9.products-search .span16.main-content-grid .ty-mainbox-container.clearfix {
    padding: 0;
  }
  .layout_9 #step_one_register .ty-checkout-buttons.clearfix > .ty-checkout__register-cancel {
    margin-left: 0 !important;
    margin-top: 5px !important;
    background: #000;
  }
  .layout_9 #step_one_register .ty-checkout-buttons.clearfix {
    text-align: center;
  }
  .layout_9 .content-grid .buttons-container {
    margin: auto !important;
  }
  .layout_9 .ty-product-block__left .product-list-field .ty-control-group__item.avail {
    font-size: 13px !important;
  }
  .layout_9 .ty-cart-content__right-buttons .update-cart-wrapper a.ty-btn.ty-btn__secondary.cm-external-click {
    float: none !important;
    margin: 0 auto;
  }
  .layout_9.checkout-cart .ty-cart-content__right-buttons a.ty-btn.ty-btn__secondary {
    max-width: 100% !important;
  }
  .layout_9 .ty-cart-statistic__total-list span.ty-cart-statistic__total-value {
    width: auto !important;
    float: right !important;
  }
  .layout_9 .checkout-steps span.ty-step__title-right > .ty-btn__secondary {
    width: unset !important;
  }
  .layout_9 .ty-step__title-icon {
    left: 4px;
  }
  .layout_9 .ty-checkout__login .buttons-container button.ty-btn__login.ty-btn__secondary.ty-btn {
    width: 100%;
  }
  .layout_9.checkout-cart .ty-cart-statistic.ty-statistic-list {
    width: 100% !important;
  }
  .layout_9 .ty-cart-statistic__total-list span.ty-cart-statistic__total-title {
    width: auto !important;
  }
  .layout_9 .inner-right-cart_total .ty-cart-statistic__total-list {
    width: 100% !important;
  }
  .layout_9 [id^="price_"] .ty-table__responsive-header,
  .layout_9  [id^="price_"] .ty-table__responsive-content,
  .layout_9  .ty-cart-content__qty .ty-table__responsive-content,
  .layout_9  .ty-cart-content__qty .ty-table__responsive-header {
    display: inline-block;
    float: left !important;
    width: 40% !important;
  }
  .layout_9 .ty-saved-money .ty-table__responsive-content,
  .layout_9 .ty-saved-money .ty-table__responsive-content * {
    color: #fe737b;
  }
  .layout_9.checkout-cart .product_block_right {
    display: block !important;
    width: 100% !important;
  }
  .layout_9 .ty-gift-certificate-coupon .ty-input-text.cm-hint-focused {
    width: 71% !important;
    float: left;
  }
  .layout_9 .ty-gift-certificate-coupon .ty-input-text.cm-hint {
    border-color: #EDEDED;
  }
  .layout_9 .ty-cart-statistic__total-title {
    text-align: left;
  }
  .layout_9 .ty-cart-statistic__total-value {
    text-align: right;
    width: 50%;
  }
  .layout_9 .ty-cart-statistic__total-title-saved {
    text-align: left;
  }
  .layout_9 .ty-cart-statistic__total_saved .ty-cart-statistic__total-value-saved {
    width: 50%;
    text-align: right;
    float: right;
  }
  .layout_9 .notification-body-extended .ty-btn.ty-btn__secondary,
  .layout_9 .cm-check-changes .ty-btn.ty-btn__secondary {
    width: auto !important;
  }
  .layout_9 .ty-cart-content__top-buttons .ty-btn,
  .ty-cart-content__bottom-buttons .ty-btn {
    width: 100% !important;
    max-width: 100% !important;
  }
  .layout_9 .ty-cart-content__product-elem.ty-cart-content__qty div {
    margin-top: 0 !important;
  }
  .layout_9.checkout-cart .ty-gift-certificate-coupon .ty-btn-go:hover {
    background: #777 none repeat scroll 0 0 !important;
  }
  .layout_9 .ty-coupons__container #point_payment .ty-discount-coupon__control-group .ty-btn-go {
    width: 85px !important;
  }
  .layout_9 .ty-coupons__container #point_payment .ty-discount-coupon__control-group input {
    width: 71%;
  }
  .layout_9.checkout-cart .ty-gift-certificate-coupon .ty-btn-go {
    background: #666 none repeat scroll 0 0 !important;
    color: #ffffff;
    float: left;
    font-weight: 600;
    height: 32px;
    position: relative !important;
    right: 0;
    top: 0 !important;
    transition: background 200ms ease 0s;
    width: 85px !important;
  }
  .index-index.layout_9 .tygh-footer.clearfix {
    margin-top: 0px !important;
  }
  .layout_9 .ty-login-info {
    margin-bottom: 10px;
  }
  .layout_9 #free_samples .ty-simple-list .ty-simple-list__buttons {
    display: none;
  }
  .layout_9 .span16.mob-banners img {
    width: 100% !important;
  }
  .layout_9 #free_samples .ty-scroller-list__item {
    height: 270px !important;
  }
  .layout_9 #free_samples .ty-scroller-list__item.clicked > .free_samples_list_overlay {
    background: rgba(237,237,237,0.6);
  }
  .layout_9 #free_samples .ty-scroller-list__item.clicked .free_sample_icon {
    top: 5px !important;
  }
  .layout_9 #free_samples .free_sample_icon   .fa.fa-gift {
    font-size: 22px;
    position: relative;
    top: 4px;
  }
  .layout_9 #free_samples .free_sample_icon {
    display: block !important;
    top: 3px !important;
    right: 4px !important;
    left: unset;
    width: 31px;
    height: 31px;
  }
  .layout_9.auth-recover_password .dwreanmetaf p {
    text-align: center !important;
  }
  .ty-wysiwyg-content iframe {
    height: auto;
    max-width: 100%;
  }
  .span12.main-content-grid,
  .ty-blog {
    padding: 5px;
  }
  .ty-blog .ty-blog__post-title,
  .ty-blog-grid .ty-blog__post-title {
    font-size: 18px;
  }
  .ty-blog__item {
    border-bottom: 1px solid #edeff1;
    margin: 0 0 30px;
    padding-bottom: 10px;
  }
  .blog_sidebox .ty-blog-text-links__item > div {
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 20%;
  }
  .ty-blog-text-links__item {
    display: block;
    margin: 10px 0 !important;
  }
  .ty-blog-text-links__item:after,
  .ty-blog-text-links__item:before {
    content: "";
    display: table;
    clear: both;
  }
  .ty-blog-recent-posts-scroller__content-block__blog {
    width: 75% !important;
  }
  .span11.ty-blog-grid,
  .pages-view .span8,
  .span8.main-content-grid,
  .span8.profile-information-grid.pc,
  .ty-login-info__txt,
  .orders-details #content_general,
  .orders-details #content_shipment_info {
    padding: 10px;
  }
  .layout_9 .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .layout_9 .ty-blog-recent-posts-scroller__item {
    width: 50% !important;
    margin: 0;
    padding: 0;
  }
  .layout_9 .container,
  .layout_9 .navbar-static-top .container,
  .layout_9 .navbar-fixed-top .container,
  .layout_9 .navbar-fixed-bottom .container,
  .layout_9 .span16 {
    width: 100%;
    box-sizing: border-box;
  }
  .layout_9 .big-element .ty-blog-recent-posts-scroller__img-block {
    float: left;
    padding: 10px;
  }
  .layout_9 .blog-title {
    display: none;
  }
  .big-element .ty-blog-recent-posts-scroller__item:hover {
    border: 1px solid transparent !important;
  }
  .layout_9
    .ty-product-block.ty-product-detail {
    margin-top: 10px;
  }
  .layout_9 .ty-menu__item-active .ty-menu__item-link {
    color: #0d0d0d !important;
  }
  .layout_9 #content_product_tab_41.tab_content .ty-scroller-list__item:hover {
    border-color: transparent;
  }
  .layout_9 .lang-see-them-all-div {
    text-align: right;
  }
  .layout_9 .skroutz .lang-see-them-all-div span a {
    color: #bf087f !important;
    font-weight: 600 !important;
  }
  .layout_9
    .ty-scroller-list .bestprice-image.not-alone {
    position: absolute;
    top: 23px;
  }
  .layout_9 .csc_live_search_css {
    width: 95%;
    max-width: 95%;
  }
  .layout_9 .ty-subcategories__item {
    display: inline-block;
    float: left;
    margin: 5px 7px 5px 0;
    width: 49%;
  }
  .layout_9 .ty-subcategories-img {
    width: 100%;
  }
  .layout_9.pages-view .ty-btn__login.ty-btn__secondary.ty-btn {
    display: inline-block;
    float: left;
    width: 49%;
  }
  .layout_9.pages-view .ty-wysiwyg-content .buttons-container .ty-float-left {
    width: 100%;
  }
  .layout_9 .mitem_1665 a i {
    display: none;
  }
  .layout_9 .top-menu-mobile .ty-menu__items .ty-menu__item:last-child .ty-menu__item-link {
    color: #444 !important;
  }
  hr.visihr {
    border-top: 1px solid #cccccc;
  }
  .phone-help {
    display: none;
  }
  .layout_9 .add-to-cart-product-button td {
    display: table-cell;
    height: auto !important;
    width: 100%;
  }
  .layout_9 td.product-qty-picker .ty-product-block__field-group {
    display: block;
  }
  .cm-increase.ty-value-changer__increase,
  .cm-decrease.ty-value-changer__decrease {
    background: #ededed none repeat scroll 0 0 !important;
    color: #888888 !important;
    float: left !important;
    font-size: 22px !important;
    height: 34px !important;
    line-height: 34px !important;
    width: 34px !important;
    border: 0 !important;
  }
  .touch .ty-center.ty-value-changer.cm-value-changer {
    width: auto !important;
    height: auto !important;
  }
  .ty-value-changer__input.cm-amount {
    float: left !important;
    height: 34px;
    padding: 0 !important;
    text-align: center;
    width: 34px;
  }
  .show-smobile .ty-product-list.clearfix {
    width: 50%;
  }
  .layout_9 .ty-product-list__content {
    width: 52.4%;
  }
  .layout_9 .ty-footer-menu__header,
  .layout_9 .ty-footer-general__header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    text-align: left;
  }
  .layout_9 .ty-footer-general__header > span {
    border-bottom: none;
  }
  .layout_9 .footer-acount-info .ty-footer-general__header::before {
    content: none !important;
  }
  .layout_9 .ty-menu__item-toggle .ty-icon-up-open:before,
  .layout_9 .ty-footer-menu__icon-hide.ty-icon-up-open:before {
    color: #808080;
  }
  .layout_9 .ty-menu__item-toggle .ty-icon-down-open:before,
  .layout_9 .ty-footer-menu__icon-open.ty-icon-down-open:before {
    color: #808080;
  }
  .layout_9 .ty-footer .ty-text-links .ty-level-0 {
    text-align: left !important;
  }
  .layout_9 .span16.ty-footer-grid__full-width {
    padding: 0 !important;
  }
  .layout_9 .footer-block-padding {
    padding: 0 15px !important;
  }
  .layout_9 .ty-footer-general__body .com-box span {
    display: block;
  }
  .layout_9 .ty-footer-grid__full-width .ty-footer-general__body {
    margin-top: 0 !important;
  }
  .layout_9 .info-footer-div p,
  .layout_9 .info-footer-div h4 {
    color: #808080 !important;
  }
  .show-smobile .ty-product-list__item-name .product-title {
    display: block;
    font-size: 15px !important;
    height: 46px;
    overflow: hidden;
    letter-spacing: -0.3px;
  }
  .product-qty-picker .ty-product-block__field-group {
    width: 100%;
  }
  .ty-value-changer {
    width: auto;
  }
  .button-add-to-the-cart {
    vertical-align: top;
  }
  .product-qty-picker {
    min-width: 105px;
    width: 105px !important;
  }
  .ty-product-block__button .ty-btn {
    min-width: 195px;
    width: 100%;
  }
  .add_to_wishlist_para .fa.fa-heart {
    display: none;
  }
  .ty-btn.ty-btn__text.ty-add-to-wish.cm-submit.text-button {
    border: 1px solid #fe737b !important;
    box-sizing: border-box;
    display: block;
    height: auto;
    margin: 10px 0 !important;
    padding: 5px 10px;
    text-align: center !important;
  }
  .layout_9 .ty-social-buttons {
    display: block;
  }
  .ty-social-buttons__inline {
    display: block;
    float: left;
    width: 33%;
    overflow: hidden;
  }
  .layout_9.products-view .ty-product-block__left.mepad,
  .mepad {
    padding: 10px !important;
    box-sizing: border-box;
  }
  .layout_9 .simple-title .ty-mainbox-title-mobile {
    background: rgba(0,0,0,0) none repeat scroll 0 0;
    border: 0 none;
    color: #333;
    padding: 0 10px;
    text-align: left;
    margin-top: 0;
  }
  .products-view .everyday_products {
    margin-top: 0;
  }
  .payment-keimena {
    background: #f2f2f2 none repeat scroll 0 0;
    border: 1px solid #cccccc;
    padding: 5px 10px;
    margin-top: 20px;
  }
  .payment-keimena .ty-wysiwyg-content > p {
    display: none;
  }
  .payment-keimena .ty-wysiwyg-content  ul {
    padding: 0;
  }
  .payment-keimena .ty-wysiwyg-content td,
  .ty-wysiwyg-content th {
    padding: 0;
    border: 0;
    position: relative;
  }
  .payment-keimena .ty-wysiwyg-content td.second::after {
    content: "›";
    font-size: 33px;
    position: absolute;
    right: 0;
    top: 0%;
  }
  .payment-keimena .ty-wysiwyg-content tr:nth-child(2n) td.second::after {
    content: "›";
    font-size: 33px;
    position: absolute;
    right: 0;
    top: -15px;
  }
  .payment-keimena .second li {
    display: inline-block;
  }
  .payment-keimena .ty-wysiwyg-content td.first {
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  .payment-keimena .ty-wysiwyg-content tr:first-child td.first {
    border: 0;
  }
  .everyday_products .ty-scroller-list__item {
    border: 1px solid #9b9b9b !important;
    height: 370px !important;
    margin: 15px;
  }
  .ty-discussion__review-write.cm-dialog-opener.cm-dialog-auto-size {
    float: right;
    margin: 0;
  }
  .mepad .ty-product-block-title {
    font-size: 20px;
  }
  .brand .ty-features-list > a {
    color: #fe737b !important;
    font-size: 18px !important;
    font-weight: bold;
  }
  .theselectbox select {
    background: url('../../../../../../../../design/themes/responsive/media/buymore4.png?1753621501') no-repeat;
    width: 102px;
    height: 35px;
    margin-top: 10px;
    text-indent: -9999px;
  }
  .deftero .ty-product-block__price-actual .ty-price-num {
    color: #7f135e !important;
    font-size: 33px !important;
    font-weight: bold !important;
  }
  .deftero .list-price-label {
    visibility: hidden;
    display: none;
  }
  .layout_9 .deftero .ty-product-prices > span {
    display: block;
    float: none;
  }
  .deftero .ty-list-price .ty-strike::before {
    content: "από ";
    margin-left: -31px;
    position: absolute;
    text-decoration: none !important;
    color: #808080;
    font-size: 17px;
  }
  .deftero .ty-list-price .ty-strike {
    margin-left: 34px;
  }
  .layout_9 .prices-container [id^="line_discount_update_"] span[id^="prc_discount_value_"] {
    color: #fe737b !important;
  }
  .layout_9 .prices-container [id^="line_discount_update_"] span {
    color: #000 !important;
  }
  .deftero .ty-list-price .ty-strike * {
    color: #808080;
    font-size: 17px !important;
  }
  .deftero .ty-list-price.ty-save-price {
    font-size: 16px;
    display: block;
  }
  .deftero .product-list-field .ty-control-group__item.avail,
  .free-shipping .icon-free-shipp,
  .free-shipping {
    color: #808080;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
  }
  .ty-cart-content__product-elem.ty-cart-content__qty div {
    width: auto;
  }
  .ty-cart-content__qty .ty-table__responsive-header {
    text-align: center;
  }
  .deftero .free-shipping .icon-free-shipp,
  .free-shipping {
    letter-spacing: -0.35px;
  }
  .simple-title.show-smobile .prod-amount {
    margin-top: 0px;
  }
  .layout_9 [id^="old_price_update_"] {
    display: inline-block !important;
  }
  .simple-title.show-smobile .list_discount_block {
    margin-top: 0px !important;
  }
  .layout_9 .products-view .product-title > p {
    color: #000000;
  }
  .layout_9 .ty-scroller-list__item  .simple-list-wishlist > .add_to_wishlist_para {
    display: none !important;
  }
  .simple-title.show-smobile .ty-product-list__price > * {
    margin-top: 6px;
  }
  .layout_9 .simple-title .side-list-buy-buttons .ty-product-list__control {
    margin-top: -6px !important;
  }
  .layout_9 .prices-container.price-wrap > .ty-product-block__price-actual,
  .layout_9 .prices-container.price-wrap > .old_price {
    display: inline-block;
  }
  .products-view .ty-product-block__advanced-option.clearfix {
    margin: 0 !important;
  }
  .clearfix.smallable-1 > table {
    height: 250px;
    width: 100%;
  }
  .categories-view .socials-product {
    display: none !important;
  }
  .products-view .show-smobile .ty-product-list .ty-price span {
    margin-bottom: 5px;
  }
  .layout_9.products-view .ty-product-block__wrapper.clearfix {
    padding: 1rem;
  }
  .layout_9 .ty-discussion__review-write.cm-dialog-opener.cm-dialog-auto-size {
    display: none;
  }
  .layout_9 #average_rating_product {
    padding-bottom: 15px;
  }
  .layout_9 .ty-product-block__left .product-list-field .ty-control-group__item.avail {
    font-size: 18px !important;
  }
  .layout_9 .add-to-cart-product-button td {
    display: block;
  }
  .layout_9 .add-to-cart-product-button td:first-child {
    margin-bottom: 25px;
  }
  .layout_9 td.product-qty-picker .ty-product-block__field-group {
    display: contents;
  }
  .layout_9 td.product-qty-picker .ty-product-block__field-group > span {
    display: inline-block !important;
    margin-right: 10px;
  }
  .layout_9 td.product-qty-picker .ty-product-block__field-group > div {
    display: inline-block;
  }
  .checkout-cart.layout_9 #cart_items {
    padding: 1rem;
    padding-bottom: 0px;
  }
  .checkout-cart.layout_9 #cart_items > table {
    margin-bottom: 0px;
  }
  .checkout-cart.layout_9 .ty-cart-content__product-delete.ty-delete-big {
    font-size: 14px !important;
    margin-top: 1rem;
  }
  .checkout-cart.layout_9 .free-shipping-estimation .inner-shipping {
    text-align: center;
  }
  .checkout-cart.layout_9 #checkout_totals .ty-coupons__container .clearfix .ty-gift-certificate-coupon {
    margin-top: 0px;
  }
  .layout_9.checkout-cart .ty-cart-statistic.ty-statistic-list {
    margin-top: 0px;
    padding-top: 0px;
  }
  .layout_9.checkout-cart .ty-cart-statistic__item.ty-statistic-list-subtotal {
    padding-bottom: 5px;
  }
  .layout_9.checkout-cart .ty-cart-statistic__item.ty-cart-statistic__total_saved {
    padding-bottom: 0px;
  }
  .layout_9.checkout-cart .ty-cart-total__wrapper {
    padding-bottom: 0px;
  }
  .layout_9 .simple-title .ty-mainbox-title-mobile {
    text-align: center;
    padding: 1rem;
  }
  .layout_9 .owl-theme .owl-controls-outside .owl-buttons div:first-child {
    left: 15px;
  }
  .layout_9 .owl-theme .owl-controls-outside .owl-buttons div:last-child {
    right: 15px;
  }
  .layout_9.checkout-checkout .content-grid .buttons-container > div:first-child {
    float: unset;
  }
  .layout_9.checkout-checkout .content-grid .buttons-container > div:first-child > button {
    max-width: unset !important;
  }
  .layout_9 #anonymous_checkout .ty-checkout-buttons > .ty-btn__primary.ty-btn {
    width: 100%;
  }
  .layout_9 .ty-checkout__register-methods-item:last-child::before {
    display: none;
  }
  .layout_9.checkout-checkout .help-inline p {
    color: red !important;
    font-size: 13px !important;
  }
  .layout_9.checkout-checkout input.cm-failed-field[type="text"],
  .layout_9.checkout-checkout input.cm-failed-field[type="password"],
  .layout_9.checkout-checkout textarea.cm-failed-field,
  .layout_9.checkout-checkout .cm-field-container.cm-failed-field input[type="text"] {
    border-color: red !important;
    border: 2px solid red !important;
  }
  .layout_9.checkout-checkout .ty-step-one .ty-checkout-buttons {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .layout_9 #register_checkout {
    display: block;
    width: 100%;
  }
  .layout_9 #register_checkout > a {
    display: block;
    width: auto;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    -o-user-select: text;
    z-index: 200;
    position: relative;
  }
  .layout_9 #step_one_register .ty-checkout-buttons.clearfix > .ty-checkout__register-cancel {
    width: 100%;
    max-width: 280px !important;
    margin-top: 10px !important;
    height: 22px;
  }
  .pages-view.page-296.layout_9 .content-grid img {
    width: 100% !important;
    height: unset !important;
  }
}
@media screen and (max-width: 840px) {
  .layout_9 .top-menu-mobile .ty-menu__items > .ty-menu__item:last-child {
    background: #ffc6c9 !important;
  }
  .show-smobile .ty-product-list.clearfix {
    width: 375px;
  }
  .layout_9 .ty-product-list .bestprice-image {
    position: relative;
    right: 175px;
    top: -20px;
  }
  .layout_9 .ty-product-list__content .bestprice-image.alone {
    top: -35px;
  }
  .layout_9 .ty-product-list__content .best-sell-img {
    position: relative;
    right: 175px;
    top: -25px;
  }
  .layout_9 .ty-product-list__info {
    position: absolute;
    top: 0;
  }
  .layout_9 .side-list-buy-buttons .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big,
  .layout_9 .side-list-buy-buttons .inner-add-to-cart-product button {
    margin-left: 0;
    min-width: 150px !important;
    padding: 4px 0;
  }
}
@media screen and (max-width: 680px) {
  .layout_9 .ty-product-list__content {
    width: 30%;
  }
  .side-list-buy-buttons {
    width: 31%;
  }
}
@media screen and (max-width: 768px) {
  .layout_9 .everyday_products.ty-mainbox-container .ty-mainbox-title > span {
    font-size: 24px !important;
    text-align: left !important;
    padding-left: 11px;
  }
  .layout_9 .free-samples.ty-mainbox-container.clearfix.everyday_products span {
    text-align: left !important;
    padding-left: 20px;
  }
  .layout_9 .free-samples.everyday_products.ty-mainbox-container.clearfix h2.ty-mainbox-title > .lang-side_bar_text {
    text-align: left;
  }
  .layout_9 .ty-scroller-list__item {
    margin: 15px 15px 27px 15px;
    border: 1px solid #9b9b9b !important;
    height: 500px !important;
  }
  .layout_9 .ty-subcategories__item {
    display: inline-block;
    float: left;
    margin: 5px 5px 5px 0;
    width: 49%;
  }
  .ipad .layout_9 .span16.mob-banners {
    margin-left: -10px;
    padding: 0 !important;
    width: 102.7%;
  }
  .layout_9.products-view    #scroll_list_22212222222 .inner-add-to-cart-product {
    display: none !important;
  }
  .layout_9 .ty-wish-list__buttons .ty-btn__secondary {
    max-width: 100% !important;
    width: 100%;
  }
  .layout_9.products-view    #scroll_list_22212222222 .ty-pict {
    width: 100px;
  }
  .layout_9 .tab_bar {
    display: none !important;
  }
  .layout_9 .whenfixed.clearfix {
    display: none !important;
  }
  .layout_9 .container,
  .layout_9 .navbar-static-top .container,
  .layout_9 .navbar-fixed-top .container,
  .layout_9 .navbar-fixed-bottom .container,
  .layout_9 .span16 {
    width: 100%;
    box-sizing: border-box;
  }
  .layout_9 .big-element .ty-blog-recent-posts-scroller__img-block {
    float: none;
    padding: 10px;
  }
  .show-smobile .ty-product-list.clearfix {
    width: 370px;
    float: left;
  }
  .checkout-checkout .ty-checkout__title {
    font-size: 12.5px !important;
    color: #BF087F;
  }
  .layout_9 .csc_live_search_css {
    left: 2% !important;
    margin-top: 53px !important;
    max-width: 95% !important;
    width: 95% !important;
  }
  .layout_9 .csc_live_search_navigation .csc_live_search_total {
    width: 76%;
  }
  .layout_9 .csc_live_search_navigation .csc_live_search_next {
    position: relative;
    top: 2px;
  }
  .layout_9 .csc_live_search_navigation .csc_live_search_pre,
  .layout_9 .csc_live_search_navigation .csc_live_search_next {
    width: 40px !important;
    margin: 3px 0;
  }
  .layout_9 .span16.copyright-bottom {
    position: relative;
  }
  .layout_9 .side-list-buy-buttons .ty-product-list__control {
    margin-top: 1px !important;
  }
  .layout_9 .big-element .ty-blog-recent-posts-scroller__item {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .layout_9 .ty-mb-lasd .ty-blog-recent-posts-scroller__item > .blog_content {
    padding: 0 20px;
  }
  .ty-blog-recent-posts-scroller__item > .blog_content > .blog_content_inside {
    height: auto;
  }
  .layout_9 .page-217 .add-to-cart-product {
    display: none;
  }
  .layout_9 .ty-simple-list .ty-simple-list__buttons {
    padding-top: 5px !important;
  }
  .layout_9 .blog-carousel .add-to-cart-product {
    width: 100%;
  }
  .span16.show-smobile hr {
    display: none;
  }
}
@media screen and (max-width: 720px) {
  .show-smobile .ty-product-list.clearfix {
    width: 200px;
  }
  .layout_9 .ty-product-list__content {
    width: 100%;
  }
  .iphone body {
    max-width: 100%;
  }
  .iphone .span16.show-smobile,
  .ipad .span16.show-smobile {
    max-width: 100%;
    overflow-x: hidden;
  }
  .ty-mainbox-body-mobile {
    box-sizing: border-box;
  }
  .iphone .layout_9 .span16.mob-banners {
    margin-left: 0;
  }
  .layout_9 .ty-footer-grid__full-width > .row {
    width: 100% !important;
  }
  .layout_9 #pagination_contents hr {
    clear: both;
  }
}
@media screen and (max-width: 599px) {
  .span16.show-smobile hr {
    display: block;
  }
  .layout_9 .side-list-buy-buttons .inner-add-to-cart-product .ty-btn.ty-btn__primary.ty-btn__big,
  .layout_9 .side-list-buy-buttons .inner-add-to-cart-product button {
    margin-left: 0;
    min-width: 150px !important;
    width: 100% !important;
    padding: 6px 0;
  }
  .layout_9 .ty-product-list__content {
    width: 50%;
  }
  .best-price_product-notification {
    left: 0;
  }
  .show-smobile .ty-product-list.clearfix {
    width: 352px;
    max-width: 100%;
    float: left;
  }
}
@media screen and (min-width: 461px) {
  .best-price_product-notification {
    float: left;
    height: 56px;
    left: 240px !important;
    position: absolute;
    top: 120px;
  }
}
@media screen and (max-width: 534px) {
  .layout_9 .ty-blog-recent-posts-scroller__item {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }
  .layout_9 .ty-subcategories__item {
    display: block;
    margin: 5px !important;
    width: 100%;
  }
  .layout_9.pages-view .ty-wysiwyg-content .buttons-container .ty-float-left .ty-btn__login.ty-btn__secondary.ty-btn {
    display: inline-block;
    float: left;
    margin: 5px 0;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .layout_9.pages-view .ty-wysiwyg-content .buttons-container {
    padding: 5px !important;
  }
}
@media screen and (max-width: 500px) {
  .container.content-grid {
    padding: 0 !important;
  }
  .layout_9.product_features-view .ty-product-list__image,
  .layout_9.categories-view .ty-product-list__image {
    width: 150px;
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
}
@media screen and (max-width: 440px) {
  .layout_9 .brands-homepage-images .squaredTwos {
    width: 95%;
  }
  .layout_9 .ty-product-block__left .form-field.product-list-field {
    margin-top: 8px;
  }
  .show-smobile .ty-product-list__item-name .product-title {
    display: block;
    font-size: 15px !important;
    height: 52px;
    overflow: hidden;
    letter-spacing: -0.3px;
  }
}
@media screen and (max-width: 359px) {
  .layout_9 .ty-product-list__image {
    margin-left: 5px !important;
    margin-right: 5px !important;
    width: 125px;
  }
  .layout_9.categories-view .ty-product-list__image {
    width: 95px;
  }
}
@media screen and (min-width: 361px) {
  .layout_9.checkout-checkout .ty-checkout__title {
    font-size: 10.5px !important;
    color: #BF087F;
  }
}
@media screen and (max-width: 360px) {
  .ty-mb-lasd .ty-blog-recent-posts-scroller__item > .ty-blog-recent-posts-scroller__img-block {
    width: 100% !important;
    margin-left: 0;
  }
  .ty-mb-lasd .ty-blog-recent-posts-scroller__item > .blog_content {
    width: 100% !important;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .big_element_blog_content {
    padding: 0 8px;
    box-sizing: border-box;
  }
  .ty-mb-lasd .ty-blog-recent-posts-scroller__item > .ty-blog-recent-posts-scroller__img-block {
    margin-right: 0;
  }
  .layout_9 .ty-mb-lasd .ty-blog-recent-posts-scroller__item .ty-pict {
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    width: 100%;
  }
  .layout_9.checkout-checkout .ty-checkout__title {
    font-size: 9.5px !important;
    color: #BF087F;
  }
}
@media screen and (min-width: 420px) {
  .layout_9.checkout-checkout .ty-checkout__title {
    font-size: 12.5px !important;
    color: #BF087F;
  }
}
@media screen and (max-width: 380px) {
  .layout_9 .show-smobile .side-list-buy-buttons {
    float: left;
    width: 167px;
  }
  .layout_9 .ty-product-list__image {
    margin-left: 0 !important;
  }
}
.layout_9 .span16.nomenu {
  border-top: 0 !important;
}
.layout_9 .ty-scroller-list__item {
  border: 1px solid transparent !important;
}
.layout_9 .newsubform h3,
.layout_9 .seals h3 {
  display: none;
}
.layout_9 .seals > div {
  width: 100%;
}
.layout_9 .seals > div div {
  margin: 5px 5px 15px;
  width: 120px;
}
.layout_9 .owl-item .ty-scroller-list__item {
  width: 300px;
  margin: 0 auto;
}
.layout_9 .ty-blog-recent-posts-scroller__item {
  display: none !important;
}
.layout_9 .ty-blog-recent-posts-scroller__item:first-child {
  display: inline-block !important;
}
.layout_9 .more-articles {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 20px;
}
.layout_9 .owl-theme.ty-owl-controls {
  display: block !important;
}
.layout_9 .owl-prev::before {
  content: "";
  background: url('../../../../../../../../design/themes/responsive/media/pre.png?1753621501');
  width: 24px;
  height: 24px;
  display: block;
  font-size: 30px;
  margin-left: 0px;
}
.layout_9 .owl-next::after {
  content: "";
  background: url('../../../../../../../../design/themes/responsive/media/nex.png?1753621501');
  width: 24px;
  height: 24px;
  display: block;
  font-size: 30px;
  margin-left: -10px;
}
.layout_9 .ty-mb-lasd.span16 {
  margin-top: 30px;
}
.layout_9 .blog-title h2 {
  background: #eee !important;
  text-align: left;
  padding-left: 10px;
  color: #000;
  font-size: 24px !important;
}
.layout_9 .blog-title {
  display: block !important;
}
.profiles-update .ty-tabs__list {
  display: none;
}
.tygh-top-panel.clearfix {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #fff;
  height: auto;
}
.tygh-content.clearfix {
  margin-top: 50px;
}
.blog-title h2::before {
  content: "";
  display: none;
}
.blog-title h2 span {
  background: transparent;
  padding: 0;
}
.owl-next {
  right: 25px;
  position: absolute;
  top: 75px;
  z-index: 50;
}
.owl-prev {
  left: 10px;
  position: absolute;
  z-index: 50;
}
.ty-blog-recent-posts-scroller .got_to_url {
  margin: 0 auto;
  text-align: center;
  width: 164px;
  background: transparent;
  padding: 3px 0;
  text-decoration: underline;
  font-weight: bold;
}
.desperiss .ty-btn.ty-btn__primary {
  background: transparent;
  color: #666 !important;
  font-size: 15px !important;
  text-decoration: underline;
}
.span11.ty-blog-grid img {
  max-width: 100%;
  height: auto !important;
}
@media screen and (min-width: 700px) and (max-width: 1200px) {
  .layout_9 .ty-product-list.clearfix > form {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .layout_9 .ty-product-list.clearfix > form .ty-product-list__info {
    position: unset;
  }
  .layout_9 .ty-product-list.clearfix > form .ty-product-list__image {
    width: 20%;
  }
  .layout_9 .ty-product-list.clearfix > form .ty-product-list__content {
    width: 50%;
  }
  .layout_9 .ty-product-list.clearfix > form .side-list-buy-buttons {
    width: 25%;
    margin-left: 10px;
  }
  .layout_9 .ty-product-list.clearfix > form .side-list-buy-buttons .ty-product-list__control {
    float: unset;
  }
  .layout_9.products-view .tab_bar_product  .tab_bar_descr {
    width: calc(100% - 130px);
    margin-bottom: 10px;
  }
  .layout_9.products-view .tab_bar_product {
    width: calc(100% - 380px);
  }
  .layout_9 .span16.mamacorner-cta-grid-mobile > div > a img {
    width: 100%;
  }
  .layout_9 .everyday_products .ty-mb-lasd.span16 .ty-blog-recent-posts-scroller.clearfix > div:nth-child(2) {
    display: block !important;
  }
  .layout_9.products-view .ty-product-block__wrapper .ty-product-block__img-wrapper {
    width: 50% !important;
    display: inline-block;
  }
  .layout_9.products-view .ty-product-block__wrapper .ty-product-block__left {
    width: 50% !important;
  }
  .layout_9.index-index .owl-carousel .owl-item {
    min-height: 500px;
  }
}
.layout_9 .ty-checkout__register-content {
  padding: 0px 10px;
}
.layout_9 .ty-checkout__login .ty-btn__login.ty-btn__secondary.ty-btn {
  margin: 0px 0px 10px 0px;
  min-width: 100%;
}
.layout_9.auth-login_form .ty-login {
  padding-right: 0px;
  border: unset;
}
.layout_9.auth-login_form .login_button_checkout .ty-btn__login.ty-btn__secondary.ty-btn {
  min-width: 100%;
}
.layout_9.auth-login_form .ty-login-info__txt > a {
  width: unset;
}
.layout_9 .ty-checkout-buttons {
  text-align: center;
}
.layout_9.checkout-checkout .ty-control-group.ty-checkout__terms {
  width: 100%;
  box-sizing: border-box;
}
.layout_9.checkout-complete .ty-checkout-complete__buttons.buttons-container.ty-mt-s {
  text-align: center;
}
.layout_9 .ty-checkout-complete__buttons-right .ty-btn.ty-btn__secondary.text-button {
  float: none;
}
.layout_9.checkout-complete .ty-polls__buttons.buttons-container {
  padding-left: 20px;
}
.box_now_display_twos {
  width: 48%;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
.box_now_display_twos:nth-child(1),
.box_now_display_twos:nth-child(2) {
  border-bottom: 1px solid #dedede;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.layout_9 .box_now_display_twos {
  width: 100%;
  border-bottom: 1px solid #dedede;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.boxnow_refund_btn {
  background-color: #fe737b;
  text-decoration: unset !important;
}
.boxnow_refund_btn:hover {
  background-color: black;
}
.mitem_blog.ty-menu__item.ty-menu__itemty-menu__item-nodrop {
  background-color: #F58023 !important;
}
[id^="acs_store_"].acs_store_select {
  border: 1px solid #fe737b !important;
  text-align: center;
}
#acs_store_msg {
  border-radius: 12px;
  padding: 15px;
  color: red !important;
  font-size: 16px !important;
  font-weight: bold;
  margin-bottom: 18px;
}
[id^="akis_store_"].akis_store_select {
  border: 1px solid #fe737b !important;
  text-align: center;
}
#akis_store_msg {
  border-radius: 12px;
  padding: 15px;
  color: red !important;
  font-size: 16px !important;
  font-weight: bold;
  margin-bottom: 18px;
}
.ty-shipping-options__method {
  border-bottom: 1px solid #fe737b;
  padding: 10px 0px;
  margin: 5px 0px;
  margin-top: 0px;
}
.shop_and_win_cart {
  background-color: #e2d9f2;
  padding: 15px 15px;
  margin-top: 25px;
}
.shop_and_win_title {
  color: #EE5A92 !important;
  font-size: 28px !important;
  font-weight: bold;
  margin-right: 10px;
  text-align: center;
}
.shop_and_win_msg {
  font-size: 16px !important;
  color: black !important;
  text-align: center;
}
.shop_and_win_msg .remaining_total {
  color: #EE5A92 !important;
  font-size: 17px !important;
  font-style: italic;
  font-weight: bold;
}
.shop_and_win_msg .gift {
  color: #EE5A92 !important;
  font-size: 17px !important;
  font-style: italic;
  font-weight: bold;
}
.layout_1 .hide_on_desktop {
  display: none;
}
.layout_9 .hide_on_mobile {
  display: none;
}
.layout_9 .top-menu-mobile > ul.ty-menu__items.cm-responsive-menu {
  max-height: 100vh;
  overflow: scroll;
}
