body {
	background: #f7f7f7;
	font: 400 13px/18px "Mulish", Helvetica, sans-serif;
	letter-spacing: 1px;
	color: #555555;
	height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Mulish", Helvetica, sans-serif;
	color: #333333;
}

/* default font size */

.fa {
	font-size: 14px;
	vertical-align: baseline;
}

/* Override the bootstrap defaults */

h1 {
	font-size: 33px;
}

h2 {
	font-size: 27px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 15px;
}

h5 {
	font-size: 12px;
}

h6 {
	font-size: 10.2px;
}

a {
	color: #555555;
}

a:hover, a:focus, #column-left .checkbox>label:hover {
	color: #ffde01;
}

a:hover {
	text-decoration: none;
}

legend {
	font-size: 16px;
	padding: 7px 0px;
	font-weight: 600;
}

small, .small {
	font-size: 12px;
}

label {
	font-size: 13px;
	font-weight: 500;
}

select.form-control {
	appearance: none;
	-o-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}

.form-control {
	background: #ffffff;
	color: #666;
	border: 1px solid #e5e5e5;
	margin: 0 0 5px;
	height: auto;
	padding: 10px 12px;
	word-break: break-all;
}

.category-filter .hidden-xs {
	display: block !important;
}

.filter-sort-by .form-control, .filter-show .filter-selection .form-control {
	background-color: #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	padding: 8px 12px;
	margin: 0;
}

.select-wrapper {
	position: relative;
}

.select-wrapper::after {
	font-family: 'Material Icons';
	content: '\e313';
	font-size: 17px;
	position: absolute;
	right: 7px;
	top: 10px;
	pointer-events: none;
}

select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 13px;
	letter-spacing: 1px;
	outline: none;
}

button, input, select, textarea {
	outline: none;
}

.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 12px;
}

.input-group .input-group-addon {
	font-size: 12px;
	height: 30px;
}

.tt-home {
	width: 100%;
	float: left;
}

/* ------------------------------- Product Rollover CSS Start ----------------------- */

.product-thumb .image img.image_thumb {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: all 500ms ease-in-out 0s;
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
}

.product-thumb .image img.image_thumb_swap {
	left: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 500ms ease-in-out 0s;
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
}

.product-thumb:hover .image img.image_thumb_swap {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

/* ------------------------------- Product Rollover CSS End ----------------------- */

/*----------------------fade effect-------------------*/

.product-thumb .image img.image_thumb_swap.fade {
	left: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 500ms ease-in-out 0s;
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
}

.product-thumb:hover .image img.image_thumb_swap.fade {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

/*----------------------End of fade effect-------------------*/

/*----------------------zoom effect-------------------*/

.product-thumb .image img.image_thumb_swap.zoom {
	left: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
}

.product-thumb:hover .image img.image_thumb_swap.zoom {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
}

/*----------------------End of zoom effect-------------------*/

/*----------------------horizontal scrolling left to right effect-------------------*/

.product-thumb .image img.image_thumb_swap.horizontal_scrolling_left_to_right {
	position: absolute;
	top: 0;
	left: -100%;
	right: auto;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: left 0.5s ease 0s;
	-moz-transition: left 0.5s ease 0s;
	-webkit-transition: left 0.5s ease 0s;
	-o-transition: left 0.5s ease 0s;
}

.product-thumb:hover .image img.image_thumb_swap.horizontal_scrolling_left_to_right {
	left: 0;
}

/*----------------------End of horizontal scrolling left to right effect-------------------*/

/*----------------------horizontal scrolling right to left effect-------------------*/

.product-thumb .image img.image_thumb_swap.horizontal_scrolling_right_to_left {
	position: absolute;
	top: 0;
	right: -100%;
	left: auto;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: right 0.5s ease 0s;
	-moz-transition: right 0.5s ease 0s;
	-webkit-transition: right 0.5s ease 0s;
	-o-transition: right 0.5s ease 0s;
}

.product-thumb:hover .image img.image_thumb_swap.horizontal_scrolling_right_to_left {
	right: 0;
}

/*----------------------End of horizontal scrolling right to left effect-------------------*/

/*----------------------vertical scrolling top to bottom effect-------------------*/

.product-thumb .image img.image_thumb_swap.vertical_scrolling_top_to_bottom {
	position: absolute;
	top: -100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: top 0.5s ease 0s;
	-moz-transition: top 0.5s ease 0s;
	-webkit-transition: top 0.5s ease 0s;
	-o-transition: top 0.5s ease 0s;
}

.product-thumb:hover .image img.image_thumb_swap.vertical_scrolling_top_to_bottom {
	top: 0;
}

/*----------------------End of vertical scrolling top to bottom effect-------------------*/

/*----------------------vertical scrolling bottom to top effect-------------------*/

.product-thumb .image img.image_thumb_swap.vertical_scrolling_bottom_to_top {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: top 0.5s ease 0s;
	-moz-transition: top 0.5s ease 0s;
	-webkit-transition: top 0.5s ease 0s;
	-o-transition: top 0.5s ease 0s;
}

.product-thumb:hover .image img.image_thumb_swap.vertical_scrolling_bottom_to_top {
	top: 0;
}

/*----------------------End of vertical scrolling bottom to top effect-------------------*/

/* ---------------------------- Static Menu CSS Start ----------------------------- */

.header-bottom-block {
	background: #f7f7f7;
	float: left;
	width: 100%;
	text-align: center;
}

.header-bottom {
	float: left;
	width: 100%;
}

.full-bottom {
	background: #fff;
	border-top: 1px solid rgba(255,255,255,.2);
	box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
	-moz-box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
	-webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.1);
	float: left;
	position: relative;
	text-align: center;
	width: 100%;
}

.common-home #tttoplink_block {
	float: none;
	position: relative;
	width: auto;
	display: inline-block;
	vertical-align: top;
}

#tttoplink_block {
	float: left;
	position: relative;
	padding: 0 15px;
	width: auto;
}

#tttoplink_block ul.block_content li a {
	color: #111;
	display: block;
	float: left;
	font: 400 14px/24px "Mulish", Helvetica, sans-serif;
	overflow: hidden;
	position: relative;
	padding: 24px 13px;
	z-index: 1;
	margin: 0 5px;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

#tttoplink_block ul.block_content>li:hover>a {
	color: #ffffff;
}

#tttoplink_block ul.block_content>li>a::after {
	content: "";
	width: 0;
	height: 50px;
	left: 0;
	right: auto;
	top: auto;
	bottom: 11px;
	margin: auto;
	position: absolute;
	background: #2f4a74;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	z-index: -1;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

#tttoplink_block ul.block_content>li:hover>a::after {
	width: 100%;
}

#tttoplink_block .block_content ul li {
	width: 100%;
	padding: 0;
}

#tttoplink_block ul.block_content li.more_menu>a::before {
	content: "\e5cc";
	font-family: "Material Icons";
	font-size: 18px;
	line-height: 23px;
	position: relative;
	padding-left: 2px;
	float: right;
	font-weight: 500;
}

#tttoplink_block .block_content li {
	float: left;
	list-style: none;
	position: relative;
}

.header-top-block {
	float: left;
	width: 100%;
	display: none;
}

@media (max-width: 1199px) {
	#tttoplink_block ul.block_content li a {
		padding: 24px 9px;
		font-size: 13px;
	}
	#tttoplink_block {
		padding: 0;
	}
}
@media (max-width: 991px) {
	.header-bottom #tttoplink_block {
		margin: 0;
	}
	#tttoplink_block .block_content {
		background: #FFF;
		float: left;
		width: 100%;
		padding: 10px 10px 0 10px;
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		bottom: auto;
		border: 1px solid #e5e5e5;
		list-style: none;
		z-index: 99;
	}
	#tttoplink_block {
		position: relative;
		float: left;
		width: 100%;
		display: none;
		border: none;
		padding: 0;
		background: none;
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		-khtml-border-radius: 0;
	}
	#tttoplink_block ul.block_content li.tthome>a {
		float: left;
		width: 100%;
		height: auto;
		background: none;
		font-size: 14px;
		padding: 3px 10px;
	}
	#tttoplink_block .block_content li {
		float: left;
		margin: 0 8px;
		position: relative;
		z-index: 1;
		list-style: none;
	}
	#tttoplink_block ul.block_content li a {
		color: #1d1f1f;
		font-size: 14px;
		line-height: 25px;
		padding: 3px 10px;
		float: left;
		width: 100%;
	}
	#tttoplink_block ul.block_content li a:hover {
		color: #1d1f1f;
		background: #f5f5f5;
	}
	#tttoplink_block ul.block_content li a::before {
		border: none;
	}
}

/*-----------------------More Menu CSS Start -------------------------------*/

#tt_toplink li.more_menu ul li a {
	color: #666;
	padding: 2px 20px;
	text-align: left;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
}

#tt_toplink li.more_menu ul li:hover>a {
	color: #111;
}

#tt_toplink .top-link {
	float: left;
	width: 100%;
	margin: 0;
	position: absolute;
	top: 100%;
	min-width: 200px;
	background: #fff;
	text-align: left;
	border: 1px solid #e5e5e5;
	z-index: 10;
	padding: 8px 0;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	transform-origin: center top 0;
	display: block !important;
	right: 0;
	left: auto;
}

#tttoplink_block .block_content li:hover .top-link {
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

#tt_toplink ul li.more_menu {
	position: relative;
}

#tt_toplink .top-link.shown-link {
	display: block;
}

#tt_toplink {
	display: inline-block;
	float: none;
	margin: 0 5px;
	padding: 0;
	vertical-align: top;
}

@media (max-width: 991px) {
	.menu-category .block_content .more_menu.tttoplink>a {
		display: none;
	}
	.menu-category .block_content .more_menu>ul>li {
		display: block !important;
	}
	#tt_toplink .top-link {
		display: block;
		position: static;
		border: none;
		padding: 0;
	}
	#tt_toplink li.more_menu ul li a {
		padding: 3px 10px;
	}
}

/*-----------------------More Menu CSS End -------------------------------*/

/* ---------------------------- Static Menu CSS End ----------------------------- */

/* -------------- Homepage bestseller Product Start ----------------------------*/

.TTcategory-tab.products-carousel.owl-carousel.owl-theme .owl-wrapper-outer {
	padding: 0 0 20px;
}

.TTProduct-Tab .nav.nav-tabs {
	border: none;
	float: left;
	width: 100%;
}

.related-carousel.products-list .owl-wrapper-outer {
	padding: 0 0 20px;
}

.bestseller-carousel.list-products {
	z-index: 1;
}

#content .bestseller-carousel .product-thumb:hover {
	overflow: visible;
}

.common-home .bestseller-carousel .progress {
	background: #f5f5f5 none repeat scroll 0 0;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	-khtml-border-radius: 25px;
	float: left;
	height: 10px;
	margin: 2px 0 0;
	width: 100%;
}

.common-home .bestseller-carousel .ttqtyprogress {
	color: #111;
	float: left;
	font-size: 13px;
	line-height: normal;
	text-align: left;
	width: 100%;
	margin: 13px 0 0;
	padding: 0 15px;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.common-home .bestseller-carousel .progress-bar {
	background-color: #62ac01;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	-khtml-border-radius: 25px;
	height: 10px;
	width: 0;
}

/* -------------- Homepage bestseller Product End ----------------------------*/

/* Fix some bootstrap issues */

a, a:focus, a:active, a:hover, select, input[type=radio], input[type=checkbox] {
	outline: 0 none !important;
}

.owl-carousel .owl-wrapper-outer {
	direction: ltr !important;
}

input[type="radio"], input[type="checkbox"] {
	margin-top: 0px;
	cursor: pointer;
}

.nav-tabs {
	border-bottom: 1px solid #e5e5e5;
	text-align: left;
}

.tab-content {
	padding: 15px 0;
	width: 100%;
	float: left;
	margin-bottom: 0;
}

.tab-content ul, .tab-content ol {
	padding: 0 0 0 15px;
}

.table.table-striped.table-bordered {
	border: 1px solid #e5e5e5;
}

#page {
	float: left;
	width: 100%;
	position: relative;
}

/*--------------------------- title css start--------------------------------*/

.tt-titletab {
	float: left;
	margin: 0 0 20px;
	width: 100%;
}

.box-heading>h3, .title_block .ttblock-heading {
	color: #111;
	display: inline-block;
	float: none;
	font: 700 22px/50px "Mulish",Helvetica,sans-serif;
	margin: 0;
	position: relative;
	width: auto;
	letter-spacing: 1px;
	z-index: 1;
}

.box-heading {
	border-bottom: 1px solid #e5e5e5;
	float: left;
	width: 100%;
	margin: 0 0 20px;
}

.box-heading>h3::after {
	border-bottom: 3px solid #2f4a74;
	bottom: -2px;
	content: "";
	left: 0;
	position: absolute;
	right: auto;
	width: 100px;
}

.TTProduct-Tab .box-heading {
	background: none;
	padding: 0;
	width: auto;
	margin: 0;
}

@media (max-width: 1199px) {
	.box-heading>h3, .title_block .ttblock-heading {
		font-size: 18px;
	}
	.tt-latest-product .box-heading>h3 {
		text-overflow: ellipsis;
		overflow: hidden;
		float: left;
		width: 60%;
		white-space: nowrap;
	}
}

/*--------------------------- title css end--------------------------------*/

/* -------------- Homepage Recent Product start ----------------------------*/

.ttrecent-view {
	float: left;
	width: 100%;
	margin: 20px 0;
	background: #f7f7f7;
	padding: 40px 40px 20px;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
}

.ttrecent-view .products-carousel.owl-carousel .owl-nav {
	right: 13px;
}

/* -------------- Homepage Recent Product End ----------------------------*/

/* TTproduct tab*/

.ttproduct-main {
	float: right;
	padding: 0;
	margin: 0 0 30px;
	width: 100%;
}

.ttproduct-main .owl-wrapper-outer {
	padding: 0 0 10px;
}

.TTProduct-Tab .tab-content {
	padding: 0;
}

.TTProduct-Tab .nav.nav-tabs li {
	float: left;
	position: relative;
	margin: 5px;
	overflow: hidden;
	z-index: 1;
}

.TTProduct-Tab .nav-tabs>li:hover>a {
	color: #111;
	border: none;
	background: none;
}

.TTProduct-Tab .nav-tabs>li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #b8e3f0;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	z-index: -1;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

.TTProduct-Tab .nav-tabs>li:focus::before, .TTProduct-Tab .nav-tabs>li:hover::before, .TTProduct-Tab .nav-tabs>li.active::before {
	top: auto;
	bottom: 0;
	height: 100%;
}

.TTProduct-Tab .nav-tabs>li>a {
	color: #111;
	font: 600 16px/18px "Mulish", Helvetica, sans-serif;
	margin: 0;
	outline: medium none;
	padding: 11px 20px;
	position: relative;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
	transform: perspective(1px) translateZ(0);
	-webkit-transform: perspective(1px) translateZ(0);
	background: none;
	border: none;
}

.TTProduct-Tab .nav-tabs>li.active>a, .TTProduct-Tab .nav-tabs>li:focus>a {
	color: #fff;
	background: none;
	border: none;
}

.nav-tabs>li {
	float: left;
	position: relative;
}

.TTProduct-Tab .tab-box-heading {
	float: right;
	width: auto;
	display: inline-block;
	vertical-align: top;
	margin-right: 85px;
}

.TTProduct-Tab .nav.nav-tabs {
	display: table;
	float: left;
}

.TTProduct-Tab .tthometab {
	border-bottom: 1px solid #e5e5e5;
	margin: 0 0 20px;
	float: left;
	width: 100%;
}

.ttcat-main {
	float: left;
	width: 100%;
	position: relative;
	text-align: center;
}

.bestseller-carousel.products-list {
	float: left;
	width: 100%;
}

/*--------------------------------- Next-Prev Button CSS Start -------------------------*/

.products-carousel.owl-carousel .owl-nav button, .tt-carousel.owl-carousel .owl-nav button {
	float: left;
	vertical-align: top;
	text-shadow: none;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	height: 31px;
	width: 31px;
	margin: 0;
	padding: 0;
	font-size: 0;
	float: left;
	position: relative;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border: 1px solid #e5e5e5;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.products-carousel.owl-carousel .owl-nav button.owl-prev, .tt-carousel.owl-carousel .owl-nav button.owl-prev {
	margin: 0 4px 0 0;
}

.products-carousel.owl-carousel .owl-nav button:hover, .tt-carousel.owl-carousel .owl-nav button:hover {
	background: #111;
	border-color: #111;
}

.products-carousel.owl-carousel .owl-nav, .tt-carousel.owl-carousel .owl-nav {
	position: absolute;
	z-index: 1;
	float: right;
	top: 10px;
	bottom: auto;
	display: inline-block;
	vertical-align: top;
	width: auto;
	text-align: center;
	right: 0;
	left: auto;
	margin: 0;
}

.products-carousel.owl-carousel .owl-nav button.owl-prev::after, .tt-carousel.owl-carousel .owl-nav button.owl-prev::after {
	content: "\e314";
}

.products-carousel.owl-carousel .owl-nav button.owl-next::after, .tt-carousel.owl-carousel .owl-nav button.owl-next::after {
	content: "\e315";
}

.products-carousel.owl-carousel .owl-nav button.owl-prev:hover::after, .tt-carousel.owl-carousel .owl-nav button.owl-prev:hover::after {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	left: -17px;
	right: auto;
}

.products-carousel.owl-carousel .owl-nav button.owl-next:hover::after, .tt-carousel.owl-carousel .owl-nav button.owl-next:hover::after {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	left: auto;
	right: -17px;
}

.products-carousel.owl-carousel .owl-nav button::after, .tt-carousel.owl-carousel .owl-nav button::after, .products-carousel.owl-carousel .owl-nav button::before, .tt-carousel.owl-carousel .owl-nav button::before {
	position: absolute;
	font-size: 18px;
	line-height: 30px;
	font-family: "Material Icons";
	height: 30px;
	width: 30px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #555555;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
	font-weight: 400;
}

.products-carousel.owl-carousel .owl-nav button.owl-prev::before, .tt-carousel.owl-carousel .owl-nav button.owl-prev::before {
	content: "\e314";
	left: 10px;
	right: auto;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	color: #ffffff;
}

.products-carousel.owl-carousel .owl-nav button.owl-prev:hover::before, .tt-carousel.owl-carousel .owl-nav button.owl-prev:hover::before {
	left: 0;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
}

.products-carousel.owl-carousel .owl-nav button.owl-next::before, .tt-carousel.owl-carousel .owl-nav button.owl-next::before {
	content: "\e315";
	left: auto;
	right: 10px;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	color: #ffffff;
}

.products-carousel.owl-carousel .owl-nav button.owl-next:hover::before, .tt-carousel.owl-carousel .owl-nav button.owl-next:hover::before {
	right: 0;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
}

#column-left .products-carousel.owl-carousel .owl-nav button, 
#column-left .tt-carousel.owl-carousel .owl-nav button,
#column-right .products-carousel.owl-carousel .owl-nav button, 
#column-right .tt-carousel.owl-carousel .owl-nav button {
	width: 25px;
	height: 25px;
	border: none;
	background: none;
	margin: 0;
}
#column-left .products-carousel.owl-carousel .owl-nav button::after, 
#column-left .tt-carousel.owl-carousel .owl-nav button::after,
#column-right .products-carousel.owl-carousel .owl-nav button::after, 
#column-right .tt-carousel.owl-carousel .owl-nav button::after {
	color: #666666;
	font-size: 24px;
	width: 25px;
	height: 25px;
}

#column-left .products-carousel.owl-carousel .owl-nav button.owl-prev::before, 
#column-left .tt-carousel.owl-carousel .owl-nav button.owl-prev::before,
#column-left .products-carousel.owl-carousel .owl-nav button.owl-next::before, 
#column-left .tt-carousel.owl-carousel .owl-nav button.owl-next::before,
#column-right .products-carousel.owl-carousel .owl-nav button.owl-prev::before, 
#column-right .tt-carousel.owl-carousel .owl-nav button.owl-prev::before,
#column-right .products-carousel.owl-carousel .owl-nav button.owl-next::before, 
#column-right .tt-carousel.owl-carousel .owl-nav button.owl-next::before {
	color: #111;
	font-size: 22px;
	width: 25px;
	height: 25px;
}

.related-items.products-carousel.owl-carousel .owl-nav {
	display: none;
}

@media (max-width: 543px) {
	.TTProduct-Tab .products-carousel.owl-carousel .owl-nav {
		display: inline-block;
		float: none;
		left: 0;
		margin: 0 auto;
		right: 0;
		text-align: center;
		top: -50px;
		width: 70px;
	}
}

/*--------------------------------- Next-Prev Button CSS End ---------------------------------------*/

/*------------------------------------- additional-images Owl Button CSS End ------------------------------------------*/

.additional-images .owl-nav button.owl-prev, .additional-images .owl-nav button.owl-next {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	direction: ltr;
	bottom: 0;
	font-size: 0;
	height: 30px;
	margin: auto;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	padding: 0;
	position: absolute;
	text-shadow: none;
	top: 0;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	width: 30px;
}

.additional-images .owl-nav button.owl-prev:hover, .additional-images .owl-nav button.owl-next:hover {
	background: #b8e3f0;
	border-color: #b8e3f0;
}

.additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-prev {
	left: -40px;
	right: auto;
}

.additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-next {
	right: -40px;
	left: auto;
}

.additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-prev::before, .additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-next::before {
	background: none;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #111;
	padding: 0;
	content: "\e408";
	font-family: "Material Icons";
}

.additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-next::before {
	content: "\e409";
	padding: 0;
}

.additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-prev:hover::before, .additional-images-container .additional-images.owl-carousel .owl-nav>button.owl-next:hover::before {
	color: #111;
}

/*------------------------------------- additional-images Owl Button CSS End ------------------------------------------*/

div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}

.page-title-wrapper {
	background: #efefef;
	float: left;
	margin: 23px 0 30px;
	padding: 20px 0;
	width: 100%;
}

.breadcrumb-wrapper {
	width: 100%;
	float: left;
	background: #f5f5f5;
}

.page-title-wrapper .page-title {
	color: #111;
	float: left;
	font: 700 14px/24px "Mulish", Helvetica, sans-serif;
	margin: 0;
}

.page-title {
	color: #fff;
	font-size: 16px;
}

.account-order-info h2, .account-address-edit h2 {
	color: #111;
	font: 600 16px/20px "Mulish", Helvetica, sans-serif;
	margin: 0;
	float: left;
	width: auto;
	text-align: center;
}

a:hover, a:focus {
	color: #333333;
}

.product-category h1 {
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	margin: 5px 0 15px;
	color: #111;
}

/* Gradent to all drop down menus */

.dropdown-menu li>a:hover, .dropdown-menu li>a:focus {
	background: none;
	text-decoration: none;
	color: #111;
}

span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

/* top */

.header {
	float: left;
	position: relative;
	width: 100%;
}

#top {
	float: left;
	width: 100%;
	position: relative;
	background: #fff;
	z-index: 4;
	border-bottom: 1px solid #eee;
}

.header-top-left {
	float: left;
	padding: 0;
}

.header-top-right {
	float: right;
	padding: 0;
	width: auto;
}

.header-top-right>div {
	float: left;
	width: auto;
}

.header-right-cms {
	float: left;
	width: auto;
}

.contact-link {
	float: left;
}

#top-links>ul>li {
	float: left;
	padding: 17px 0 17px 10px;
	position: relative;
}

.contact-link span {
	color: #111;
	padding: 0 0 0 20px;
	position: relative;
}

.contact-link li a span {
	padding: 0;
}

.ttlanguage .pull-left, .ttcurrency .pull-left {
	width: 100%;
	margin: 10px 0 0;
}

#form-language .btn-group>.btn-link, #form-currency .btn-group>.btn-link {
	color: #111;
	display: block !important;
	float: left;
	font-weight: 600;
	text-align: left;
	width: 100%;
	border-bottom: 1px solid #f4f4f4;
	padding: 0 0 10px;
	font-size: 13px;
	line-height: 18px;
}

#form-language .btn-link span, #form-currency .btn-link span {
	color: #111;
	font-size: 14px;
	font-weight: 600;
	display: inline-block !important;
}

.ttlanguage .btn-group>ul, .ttcurrency .btn-group>ul {
	clear: both;
	list-style: none;
	float: left;
	padding: 5px 0 0;
	text-align: left;
	width: 100%;
}

#form-currency .btn-link, #form-language .btn-link {
	color: #666;
	display: block;
	float: left;
	font: 400 13px/24px "Mulish", Helvetica, sans-serif;
	padding: 0;
	position: relative;
	text-align: left;
	text-decoration: none;
	width: 100%;
	border: none;
	letter-spacing: 1px;
}

#form-language .language-select>img {
	margin: 0 2px 0 0;
}

#currency .btn.dropdown-toggle, #language .btn.dropdown-toggle {
	padding: 10px 0;
	margin-right: 15px;
}

#top #currency .currency-select, #top #language .language-toggle a {
	padding: 3px 10px;
	color: #888888;
	font-size: 14px;
	text-align: left;
	height: auto;
}

#top-links .contact-link li {
	float: left;
	padding: 14px 10px;
}

#top #currency .currency-select:hover, #top #language .language-toggle a:hover {
	background-color: #111;
	color: #FFFFFF;
}

#top .btn-link, #top-links li, #top-links a {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	color: #777777;
	font-size: 13px;
	font-weight: 400;
	line-height: 24px;
	padding: 0;
	text-align: left;
	text-decoration: none;
	border: none;
}

#top-links>ul>li.header-mail i {
	font-size: 20px;
	line-height: 17px;
	display: none;
	vertical-align: top;
}

#top-links>ul>li.header-mail {
	padding: 19px 5px 17px 35px;
	cursor: pointer;
}

#top-links>ul>li.header-mail::after {
	color: #fff;
	content: '\e61d';
	font-family: "Material Icons";
	font-size: 18px;
	left: 0;
	padding: 19px 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
}

#top-links>ul>li.header-mail:hover::after {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	color: #b8e3f0;
}

#top-links>ul>li.header-mail>a>span {
	text-transform: none;
}

#top-links>ul>li.header-mail span:hover {
	color: #b8e3f0;
}

#top-links li .dropdown .dropdown-toggle {
	padding: 8px 0 7px;
}

#top-links .header_user_info .fa-caret-down.ttuserinfo {
	display: none;
}

#top-links .dropdown .dropdown-toggle>span::after {
	font-family: 'Material Icons';
	content: '\e5cf';
	font-size: 18px;
	margin: 0 0 0 3px;
}

#top ul.dropdown-menu .btn-link {
	padding: 0px;
	line-height: 24px;
	color: #777;
}

#top-links .header_user_info ul.dropdown-menu {
	border: 1px solid #e5e5e5;
	padding: 10px;
	min-width: 150px;
	position: absolute;
	top: 40px;
	right: 0;
	background: #FFF;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	margin: 0;
}

#top #form-currency .currency-select:hover, #top ul>li>.language-select:hover {
	color: #111;
}

#top .btn-link strong {
	color: #111;
	font-size: 13px;
	line-height: 14px;
	font-weight: 500;
}

#top-links>ul {
	float: left;
	margin: 0;
}

#top-links>ul>li:last-child {
	padding-right: 0;
}

#top-links .dropdown-menu a {
	padding: 2px 10px;
}

#top-links .account-link-toggle a i.fa {
	padding: 0 2px
}

.header-phone {
	position: relative;
	float: right !important;
	padding: 0 15px;
}

.header-phone.pull-left span {
	color: #444444;
	float: right;
	font: 500 17px/22px "Mulish", Helvetica, sans-serif;
	width: 100%;
}

.contact-title {
	color: #777777;
	font: 500 13px/22px "Mulish", Helvetica, sans-serif;
	text-align: left;
}

#top-links .dropdown-menu a:hover, #top-links .dropdown-menu a:focus {
	color: #111;
	background: none;
}

.header-phone i.fa-phone {
	display: none;
}

.header-phone a {
	border: 2px solid #eeeeee;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	float: right;
	padding: 6px 30px 6px 80px;
	position: relative;
}

.header-phone a::before {
	background: rgba(0, 0, 0, 0) url("TemplateTrip/images/sprite.png") no-repeat scroll -33px -425px;
	content: "";
	transition: all 900ms ease-in-out 0s;
	-webkit-transition: all 900ms ease-in-out 0s;
	-moz-transition: all 900ms ease-in-out 0s;
	-o-transition: all 900ms ease-in-out 0s;
	-ms-transition: all 900ms ease-in-out 0s;
	margin: auto;
	right: auto;
	float: left;
	height: 40px;
	width: 40px;
	position: absolute;
	left: 30px;
	top: 0;
	bottom: 0;
}

.header-phone:hover a::before {
	transform: rotateY(360deg);
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
}

.header-top-right .dropdown .dropdown-toggle>i::before, .header-top-right #wishlist-total i::before {
	content: "";
}

.header-top-right .dropdown .dropdown-toggle>i {
	display: none;
}

.header-right {
	float: right;
	width: auto;
}

.right-block {
	float: right;
}

.header-right .whishlist.pull-left {
	float: left;
	width: 40px;
	height: 40px;
	position: relative;
}

.header-right .whishlist.pull-left .material-icons {
	height: 40px;
	position: absolute;
	left: 0px;
	margin: 0 auto;
	width: 40px;
	bottom: 0;
	cursor: pointer;
	float: left;
	top: 1px;
	color: #333;
	line-height: 40px;
	font-size: 24px;
	font-weight: 400;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
}

.header-right .whishlist.pull-left:hover .material-icons {
	color: #83a900;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.header-right .whishlist.pull-left .hidden-xs.hidden-sm.hidden-md {
	display: none;
}

/*----------------------- userinfo ----------------------------------- */

.user-info {
	float: left;
	width: auto;
	margin: 0;
	position: relative;
	padding: 37px 32px;
}

.user-info::before {
	content: "";
	border-right: 1px solid;
	position: absolute;
	top: 0;
	left: auto;
	right: 17px;
	width: 0;
	bottom: 0;
	color: rgba(255, 255, 255, .2);
	height: 40px;
	margin: auto;
}

.user-info::after {
	content: "";
	border-right: 1px solid;
	position: absolute;
	top: 0;
	right: auto;
	left: 17px;
	width: 0;
	bottom: 0;
	color: rgba(255, 255, 255, .2);
	height: 40px;
	margin: auto;
}

.user-info .dropdown {
	cursor: pointer;
	float: right;
	position: relative;
	height: auto;
	width: auto;
	z-index: 4;
}

.user-info .dropdown>a {
	float: left;
	position: relative;
	width: auto;
}

.user-info .dropdown>a>.user {
	color: #111;
	float: left;
	font-size: 25px;
	height: 55px;
	line-height: 55px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	width: 55px;
	text-align: center;
	position: relative;
	margin: auto;
	z-index: 1;
}

.user-info .dropdown>a:hover>.user, .user-info .dropdown.open>a>.user {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

.user-info .dropdown>a::after {
	background: rgba(255, 255, 255);
	bottom: 0;
	content: "";
	cursor: pointer;
	float: left;
	height: 40px;
	left: 7px;
	position: absolute;
	width: 40px;
	border-radius: 50px;
	top: 8px;
	right: auto;
	margin: 0;
	transition: all 600ms ease-in-out 0s;
	-webkit-transition: all 600ms ease-in-out 0s;
	-moz-transition: all 600ms ease-in-out 0s;
	-o-transition: all 600ms ease-in-out 0s;
	-ms-transition: all 600ms ease-in-out 0s;
}

.user-info .dropdown .material-icons.expand-more {
	display: none;
}

.user-info .dropdown-menu.dropdown-menu-right.account-link-toggle {
	border: 1px solid #e5e5e5;
	top: 93px;
	padding: 15px;
	min-width: 170px;
}

.user-info .dropdown-menu.dropdown-menu-right.account-link-toggle::before {
	color: #fff;
	content: "\E5C7";
	font-family: "Material Icons";
	font-size: 36px;
	left: auto;
	margin: 0 auto;
	position: absolute;
	right: 10px;
	text-align: left;
	top: -12px;
}

.ttuserheading {
	color: #222;
	font: 500 14px/20px "Mulish", Helvetica, sans-serif;
	display: none;
	float: none;
	vertical-align: top;
	width: auto;
}

.user-info:hover .ttuserheading {
	color: #111;
}

.user-info .dropdown.open .ttuserheading {
	color: #111;
}

.user-info .dropdown-menu>li>a {
	color: #222;
	line-height: 22px;
	padding: 0;
	font-size: 13px;
	letter-spacing: 1px;
}

.user-info ul.dropdown-menu li>a>i {
	float: left;
	font-size: 18px;
	padding: 0 5px 0 0;
	line-height: 24px;
}

.user-info .dropdown-menu>li>a:hover {
	color: #111;
}

@media (max-width: 991px) {
	.user-info .dropdown ul {
		top: 51px;
	}
	.ttuserheading {
		display: none;
	}
}

@media (max-width: 480px) {
	.user-info .dropdown ul {
		top: 47px;
	}
}

/*----------------------- userinfo ----------------------------------- */

/* cart */

.cart {
	float: right;
	width: auto;
	margin: 43px 0;
	padding: 0 10px;
}

#cart {
	float: right;
	z-index: 2;
}

#cart.open>.btn {
	color: #666666;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	text-shadow: none;
}

#cart button.btn {
	background: none;
	border: medium none;
	float: left;
	width: auto;
	text-align: left;
	height: auto;
	position: relative;
	padding: 0;
}

#cart>button>i.shopping-cart {
	color: #1f1e1e;
	float: left;
	font-size: 28px;
	height: 35px;
	line-height: 35px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	width: 26px;
	text-align: center;
	margin: 0 auto;
}

#cart>button:hover>i.shopping-cart, #cart>button:active>i.shopping-cart, #cart.open>button>i.shopping-cart {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

#cart .cart-heading {
	color: #ffffff;
	float: right;
	font: 600 14px/22px "Mulish", Helvetica, sans-serif;
	padding: 7px 5px;
	width: auto;
}

#cart #cart-total {
	background: #b8e3f0;
	color: #111;
	float: left;
	height: 16px;
	z-index: 2;
	text-align: center;
	/*width: 16px;*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	position: absolute;
	font: 700 11px/16px 'Mulish', helvetica, sans-serif;
	left: auto;
	right: 0 !important;
	top: -13px !important;
	bottom: auto;
	padding: 0 5px;
}

#cart.open>.btn:hover {
	color: #444444;
}

#cart .dropdown-menu {
	border: 1px solid #e5e5e5;
	min-width: 300px;
	padding: 10px;
	top: 60px;
	left: auto;
	z-index: 1001;
	display: none;
	right: 0;
}

#cart .dropdown-menu::before {
	color: #fff;
	content: "\E5C7";
	font-family: "Material Icons";
	font-size: 36px;
	left: auto;
	margin: 0 auto;
	position: absolute;
	right: 15px;
	text-align: left;
	top: -12px;
}

#cart .dropdown-menu .btn.btn-danger i.fa-times {
	font-size: 12px;
	padding: 4px;
}

#cart .dropdown-menu table {
	margin-bottom: 10px;
}

#cart .dropdown-menu li>div {
	padding: 0 10px;
}

#cart .dropdown-menu li p {
	float: left;
	width: 100%;
	color: #777;
	padding: 6px 0;
	margin: 0;
}

#cart .dropdown-menu li p a strong {
	font-weight: 500;
}

#cart .dropdown-menu li p a strong i.fa {
	padding: 0 3px 0 0;
}

#cart .header-cart-toggle .btn-danger {
	background-color: #ffffff;
	border: medium none;
	color: #222;
	height: auto;
	padding: 0;
	width: auto;
}

.cart .dropdown-menu .btn>i.close-clear {
	font-size: 16px;
	line-height: 22px;
}

#cart .header-cart-toggle .text-right>strong {
	color: #666;
	font-size: 13px;
	font-weight: 500;
}

#cart .dropdown-menu li p a:first-child {
	background: #2f4a74;
	border: none;
	color: #fff;
	margin: 0;
}

#cart .dropdown-menu li p a {
	background: #b8e3f0;
	border: none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	color: #111;
	float: left;
	font: 500 13px/18px "Mulish", Helvetica, sans-serif;
	padding: 10px 15px;
	letter-spacing: 1px;
	margin: 0 0 0 5px;
	width: 49%;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	position: relative;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

#cart .dropdown-menu li p a:hover, #cart .dropdown-menu li p a:focus {
	background: #b8e3f0;
	border-color: #b8e3f0;
	color: #ffffff;
}

#cart .dropdown-menu li p a::after {
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #2f4a74;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#cart .dropdown-menu li p a:hover::after, #cart .dropdown-menu li p a:focus::after {
	bottom: 0%;
	top: auto;
	height: 100%;
}

#cart .dropdown-menu li p a:hover:first-child, #cart .dropdown-menu li p a:focus:first-child {
	background: #b8e3f0;
	border-color: #b8e3f0;
	color: #111;
}

#cart .dropdown-menu li p a:first-child::after {
	background: #b8e3f0;
	border-color: #b8e3f0;
}

.header-cart-toggle .table-striped>tbody>tr:nth-child(2n+1)>td, .header-cart-toggle .table-striped>tbody>tr:nth-child(2n+1)>th {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	padding: 10px 4px;
}

.header-cart-toggle .table.table-bordered tr:first-child td {
	padding-top: 10px !important;
}

.header-cart-toggle .table.table-bordered tr:last-child td {
	padding-bottom: 10px !important;
}

#cart .table-bordered>thead>tr>th, #cart .table-bordered>tbody>tr>th, #cart .table-bordered>tfoot>tr>th, #cart .table-bordered>thead>tr>td, #cart .table-bordered>tbody>tr>td, #cart .table-bordered>tfoot>tr>td {
	border: medium none;
	padding: 1px 0;
	text-align: left;
}

#cart .header-cart-toggle .table>tbody>tr>td.image, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
	padding: 10px 8px;
}

#cart .header-cart-toggle .text-left.name>a {
	color: #666;
	font-size: 13px;
}

#cart .header-cart-toggle .text-right.amount {
	color: #111;
	font: 600 13px/20px "Mulish", Helvetica, sans-serif;
	text-align: left;
}

.header-cart-toggle .table .text-center img {
	max-width: none;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	border: 1px solid #e5e5e5;
}

#cart .header-cart-toggle .text-right.price-total {
	color: #333;
	text-align: right;
	font: 600 13px/22px "Mulish", Helvetica, sans-serif;
	white-space: nowrap;
}

.cart-form .table-bordered tbody td.text-right.total-price {
	color: #111;
	font: 600 15px/20px "Mulish", Helvetica, sans-serif;
}

.cart-form .table-bordered td.text-right.unit-price {
	color: #111;
	font: 600 15px/20px "Mulish", Helvetica, sans-serif;
}

.cart-form .cart_input_block .input-group-btn .btn-primary {
	padding: 10px 14px;
	height: 40px;
}

.cart-form .input-group-btn button i {
	font-size: 18px;
	vertical-align: top;
}

.cart-form .cart_input_block .input-group-btn .btn.btn-danger {
	padding: 9px 12px;
}

.cart-form .cart_input_block.input-group {
	display: inline-block;
	width: auto;
}

#cart .header-cart-toggle .table.table-bordered {
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-color: #eaeaea -moz-use-text-color;
	border-image: none;
	border-style: solid none;
	border-width: 1px medium;
	padding: 10px 0;
}

#cart .header-cart-toggle li:first-child tr:first-child td {
	border: 0 none;
}

#cart .dropdown-menu .btn.btn-danger i.fa-times {
	font-size: 14px;
	padding: 4px;
	color: #777;
}

#cart .dropdown-menu .btn.btn-danger:hover i.fa-times {
	color: #9c9b9b;
}

#cart .table.table-striped tr {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

#cart .dropdown-menu .table .text-center.image>a {
	padding: 0;
}

.account-order-info .table-bordered .text-right .btn i.material-icons.fa-reply::before {
	display: none;
}

.account-order-info .table-bordered .text-right .btn.btn-primary {
	padding: 9px 15px;
}

.account-order-info .table-bordered .text-right .material-icons.shopping-cart {
	line-height: 21px;
	vertical-align: top;
}

.account-order-info .table-bordered .text-right .btn i.material-icons.fa-reply {
	vertical-align: top;
}

/* full-header css */

header .full-header {
	float: left;
	position: relative;
	text-align: center;
	width: 100%;
	background: #fff;
	z-index: 3;
}

/* ------------------------------------ search CSS Start -----------------------------------*/

.search {
	text-align: center;
	margin: 42px 0;
	background: #ffffff;
	border: 2px solid #f0f0f0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	float: none;
	display: inline-block;
	padding: 0;
	width: auto;
	vertical-align: top;
	z-index: 2;
}

#header-search {
	float: left;
	position: relative;
	width: 100%;
	padding: 0 125px 0 0;
}

#header-search .select-wrapper {
	position: relative;
	width: 150px;
	float: left;
}

#search .input-lg {
	float: right;
}

#search .input-lg, #header-search .input-lg {
	padding: 0.5rem 1rem;
	width: 664px;
}

#header-search .form-control {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: medium none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	color: #666666;
	display: block;
	float: left;
	font-family: Mulish;
	font-size: 13px;
	height: 42px;
	line-height: 18px;
	margin-left: 0;
	margin-right: 0;
	padding: 10px 15px;
	letter-spacing: 1px;
	width: 375px;
}

#header-search .select-wrapper::after {
	padding: 0 2px;
	content: "\e5cf";
	font-family: "Material Icons";
	font-size: 15px;
	pointer-events: none;
	position: absolute;
	left: auto;
	z-index: 9;
	right: 5px;
	top: 13px;
	color: #777;
}

#header-search .select-wrapper::before {
	border-right: 1px solid #cfcfcf;
	content: "";
	height: 22px;
	position: absolute;
	right: 0;
	left: auto;
	top: 11px;
}

#header-search span.input-group-btn {
	display: inline-block;
	vertical-align: top;
	width: auto;
	position: absolute;
	right: 1px;
	left: auto;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 40px;
	margin: 0;
	z-index: 1;
}

#header-search .form-control.innner-search {
	width: 150px;
	float: right;
	padding: 5px 10px;
	letter-spacing: 1px;
}

.fa.fa-search {
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	vertical-align: top;
	margin: 0px 2px;
}

#header-search .btn-default {
	background: #111;
	border: 1px solid #ffffff;
	color: #fff;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 11px 33px;
	height: 42px;
	line-height: 16px;
	float: left;
	width: auto;
	margin: 0;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border: medium none;
	position: relative;
	font-weight: 600;
	transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-khtml-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
}

.search .icon-search {
	font-size: 20px;
	line-height: 16px;
	text-align: center;
	font-weight: 600;
	display: none;
}

#header-search .btn-default::after {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #2f4a74;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#header-search .btn-default:hover::after, 
#header-search .btn-default:active::after, 
#header-search .btn-default:focus::after {
	bottom: 0%;
	top: auto;
	height: 100%;
}

@media (min-width: 1300px) and (max-width: 1650px) {
	#search .input-lg, #header-search .input-lg {
		width: 290px;
	}
}

@media (max-width: 1299px) {
	#search .input-lg, #header-search .input-lg {
		width: 250px;
	}
	#header-search .form-control.innner-search {
		width: 150px;
	}
	#header-search .select-wrapper {
		width: 150px;
	}
}

@media (max-width: 1199px) {
	#header-search .btn-default {
		padding: 12px 15px;
	}
	.search .icon-search {
		display: block;
	}
	#header-search {
		padding: 0 55px 0 0;
	}
	#header-search span.input-group-btn span {
		display: none;
	}
	#search .input-lg, #header-search .input-lg {
		width: 200px;
	}
	#header-search .select-wrapper {
		width: 130px;
	}
	#header-search .form-control.innner-search {
		width: 130px;
	}
	#header-search .form-control {
		padding: 10px;
	}
}

@media (max-width: 991px) {
	.search {
		margin: 0px auto 15px;
		float: left;
		width: 100%;
		z-index: 0;
	}
	.header{
		min-height: auto;	
	}
	#header-search .btn-default {
		padding: 4px 12px;
	}
	#header-search .header-search-btn .fa.fa-search {
		display: block;
		font-size: 16px;
		padding: 10px 0;
	}
	#header-search .form-control {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.search {
		margin: 0 auto 10px;
	}
	#header-search .form-control.innner-search {
		width: 85px;
		padding: 5px;
		font-size: 10px;
	}
	#header-search .select-wrapper {
		width: 85px;
	}
	#search .input-lg, #header-search .input-lg {
		width: 142px;
	}
	#header-search .select-wrapper::after {
		right: 0;
	}
}

/*------------------------------------------------ search CSS end ------------------------------------------ */

/* ------------------------------------ ajex search CSS Start -----------------------------------*/

.live-search {
	width: 100%;
	position: absolute;
	z-index: 1000;
	background-color: #FFF;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	left: 0;
	display: none;
	top: 44px;
	padding: 15px;
}

.live-search .loading {
	display: block;
	margin-left: auto;
	text-align: center;
	margin-right: auto;
	position: absolute;
	left: 0;
	right: 0;
}

.live-search ul {
	float: left;
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.live-search ul li {
	background-color: #ffffff;
	cursor: pointer;
	float: left;
	width: 50%;
}

.live-search ul li:hover a {
	background-color: #f5f5f5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

.live-search ul li a {
	display: block;
	float: left;
	padding: 12px;
	text-decoration: none;
	width: 100%;
	margin: 0 0 5px 0;
}

.live-search ul li .product-image {
	float: left;
	padding: 0;
}

.live-search ul li .product-name p {
	color: #555555;
	font-size: 12px;
	font-weight: normal;
	margin: 0;
	padding: 10px 0 0;
}

.live-search ul li .search-description {
	float: left;
	text-align: left;
}

.live-search ul li .product-name {
	color: #666;
	font: 500 13px/18px "Mulish", Helvetica, sans-serif;
	text-decoration: none;
	margin: 2px 0 8px;
}

.live-search ul li:hover .product-name {
	color: #111;
}

.live-search ul li .product-price {
	float: left;
	font: 500 14px/18px "Mulish", Helvetica, sans-serif;
	color: #2f4a74;
	margin-bottom: 10px;
	width: 100%;
}

.live-search ul li .product-price .price {
	display: block;
	font: 600 14px/18px "Mulish", Helvetica, sans-serif;
	color: #2f4a74;
	float: left;
}

.live-search ul li .product-price .special {
	color: #666;
	text-decoration: line-through;
	display: block;
	font: 400 13px/18px "Mulish", Helvetica, sans-serif;
	float: left;
	margin: 0 0 0 5px;
}

.live-search .result-text {
	float: left;
	font-size: 13px;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
	padding: 8px 0;
	width: 100%;
	letter-spacing: 1px;
}

.live-search .view-all-results:hover {
	color: #111;
}

.live-search .view-all-results {
	color: #333;
	float: left;
	width: 100%;
}

.live-search .result-text:hover {
	background-color: #f5f5f5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

.live-search .product-image img {
	max-width: 100%;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border: 1px solid #e5e5e5;
}

@media (max-width: 1501px) {
	.live-search ul li .search-description {
		padding: 0 10px;
	}
}

@media (min-width: 1201px) and (max-width: 1501px) {
	.live-search ul li .product-image {
		width: 25%;
	}
}

@media (max-width: 991px) {
	.live-search {
		top: 42px;
	}
	.live-search ul li .product-image {
		width: 25%;
	}
}

@media (max-width: 480px) {
	.live-search ul li {
		width: 100%;
	}
	.live-search ul li a {
		padding: 10px;
		margin: 0;
	}
	.live-search {
		padding: 10px;
	}
	.live-search ul li .product-image {
		width: 25%;
	}
	.live-search ul li .search-description {
		width: 70%;
	}
}

/* ------------------------------------ ajex search CSS Start -----------------------------------*/

.page-bg>.row {
	margin: 0;
	clear: both;
}

.page-bg {
	background: #ffffff;
	padding: 15px 30px 20px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	float: left;
	width: 100%;
}

.common-home .page-bg {
	padding: 30px;
}

#top-links .list-inline>li.account-nav>a {
	color: #888888;
	line-height: 24px;
	text-decoration: none;
	margin: 0px;
	background: none;
}

#top-links ul li.ttlanguage {
	float: left;
}

#top-links ul li.ttcurrency {
	float: right;
}

#form-currency .btn-group button.btn-link:hover, #form-currency .btn-group.open button.btn-link span, #form-currency button:hover span, #form-currency .btn-group .btn-link:hover>strong, #form-currency .btn-group.open .btn-link strong, #form-language .btn-group button.btn-link:hover, #form-language .btn-group:hover .fa-caret-down::before, #form-currency .btn-group:hover .fa-caret-down::before, #form-currency .btn-group.open .fa-caret-down::before, #form-language .btn-group.open .fa-caret-down::before, #form-language .btn-group.open .dropdown-toggle {
	color: #111;
}

#form-currency .btn-group ul.dropdown-menu.currency-toggle, #form-language .btn-group ul.dropdown-menu.language-toggle, #top-links .dropdown .dropdown-menu {
	border: 1px solid #e5e5e5;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: auto;
	margin: 0;
	min-width: 160px;
	padding: 10px 15px;
	position: absolute;
	right: 0;
	top: 33px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	border-radius: 8px;
}

#form-currency .btn-group .dropdown-menu.currency-toggle li button, #form-language .btn-group .dropdown-menu.language-toggle li button, #top-links .dropdown-menu a {
	border: medium none;
	color: #666;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
	padding: 0;
	text-align: left;
	letter-spacing: 1px;
}

#form-language .language-select>img, #form-language .btn-link>img {
	margin: 0 2px 0 0;
}

#form-currency .btn-group .dropdown-menu.currency-toggle li:hover button, #form-language .btn-group .dropdown-menu.language-toggle li:hover button {
	color: #111;
}

#form-language .dropdown-toggle>img, .header-top-right #form-currency .dropdown-toggle>strong {
	margin: 0 2px;
}

#form-currency i, #form-language i {
	display: inline-block;
	vertical-align: top;
	line-height: 10px;
}

#form-currency:hover i::before, #form-language:hover i::before {
	color: #111;
}

.header_user_info .ttuserheading {
	background: transparent url("TemplateTrip/images/sprite.png") no-repeat scroll -5px -317px;
	cursor: pointer;
	float: left;
	font-size: 0;
	height: 40px;
	margin: 0;
	width: 40px;
}
.header_user_info .ttuserheading:hover, .header_user_info.open .ttuserheading {
	background-position: -65px -317px;
}
.header_user_info>a>i, .header_user_info>a>.fa-user {
	display: none;
}
/* header user info End*/
/* logo */
.header-left {
	float: left;
	width: auto;
}
header {
	float: left;
	width: 100%;
}
#logo {
	float: left;
	margin: 15px 0;
	padding: 0;
	position: relative;
	text-align: left;
	width: auto;
}
#logo .img-responsive{
	max-width: 220px;
	max-height: 60px;
	height: auto;
	width: auto;
}
#mobile-logo img {
	max-width: 150px;
	height: auto;
	width: auto;
}
#mobile-logo {
	display: none;
}

/* menu */

/* Mega Menu Stylesheet START */

#menu.mega-menu ul.nav ul.list-unstyled li {
	display: table;
}

#menu.mega-menu ul.nav li ul.list-unstyled>li.dropdown .dropdown-menu {
	position: static;
	display: block;
}

/* Mega Menu Stylesheet START */

#menu .dropdown-inner ul.mega-dropdown-menu.childs_1>li>a {
	color: #777;
}

.menu-container {
	background: #111;
	clear: both;
	position: relative;
	padding-left: 26%;
	float: left;
	width: 100%;
}

#menu {
	margin: 0 auto;
	min-height: auto;
	text-align: center;
	width: 100%;
}

#menu div.navbar-header {
	cursor: pointer;
	display: block;
	overflow: hidden;
}

#menu .list-unstyled.childs_1.mega-dropdown-menu .dropdown>a {
	color: #414141;
	font: 400 14px/22px "Mulish", Helvetica, sans-serif;
	padding: 0;
	width: 100%;
	text-align: left;
}

#menu .dropdown-inner .list-unstyled.childs_2.single-dropdown-menu a {
	padding: 0 0 0 20px;
}

#menu .dropdown-inner ul.mega-dropdown-menu.childs_1>li>a:hover, #menu .dropdown-inner li a:hover, #menu .dropdown-inner li a:focus {
	color: #111;
}

#menu .list-unstyled.childs_1.mega-dropdown-menu .list-unstyled.childs_2 a:hover, #menu .dropdown-inner .list-unstyled.childs_1.single-dropdown-menu a:hover {
	color: #111;
}

#menu ul.nav ul.list-unstyled.single-dropdown-menu li.dropdown>a::after {
	display: none;
}

#menu .nav>li>span {
	cursor: pointer;
}

#menu .nav>li>a, #menu .nav>li>span {
	color: #414141;
	display: block;
	font: 400 15px/22px "Mulish", Helvetica, sans-serif;
	padding: 20px;
	background: none;
}

#menu .list-unstyled.childs_2 {
	padding: 5px 0;
}

#menu .dropdown-inner {
	display: table;
}

#menu .dropdown-inner ul {
	display: table-cell;
	padding: 20px 0;
}

#menu .navbar-nav li.dropdown .dropdown-menu .dropdown-inner ul.mega-dropdown-menu {
	padding: 20px;
}

#menu .navbar-nav li.dropdown .dropdown-menu .dropdown-inner ul.mega-dropdown-menu:first-child {
	padding: 20px 0 20px 20px;
}

#menu .dropdown-inner a {
	color: #414141;
	display: block;
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 13px;
	line-height: 26px;
	min-width: 160px;
	padding: 0;
	text-align: left;
}

#menu .see-all {
	display: block;
	margin-top: 0.5em;
	border-top: 1px solid #DDD;
	padding: 3px 20px;
	font-size: 12px;
}

#menu .see-all:hover, #menu .see-all:focus {
	text-decoration: none;
	color: #ffffff;
	background-color: #777;
}

#menu #category {
	color: #111;
	float: left;
	font: 700 14px/40px "Mulish", Helvetica, sans-serif;
}

#menu #category:hover {
	color: #111;
}

#menu .btn-navbar {
	font-size: 15px;
	font-stretch: expanded;
	color: #FFF;
	padding: 2px 18px;
	float: right;
	background-color: #777;
}

#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
	color: #ffffff;
	background-color: #777;
}

#menu .navbar-nav>li {
	display: inline-block;
	float: none;
}

#menu .navbar-nav {
	float: none;
}

#menu ul.nav ul.list-unstyled li.dropdown>a::after {
	border-top: 1px solid #eeeeee;
	bottom: -4px;
	content: "";
	float: left;
	height: 1px;
	left: 0;
	position: absolute;
	width: 20%;
}

#menu .dropdown-inner .list-unstyled.childs_1.single-dropdown-menu a, #menu .more-menu .list-unstyled.childs_1 a {
	padding: 0 20px;
	color: #414141;
}

#menu .nav>li>a:hover, #menu .nav.navbar-nav>li:hover>a, #menu li:hover>span, #menu .nav>li.dropdown:hover::after, #menu .nav>li.dropdown:focus::after, #menu .nav>li>a:focus, #menu .nav>li>a:active, #menu li.more-menu .dropdown-menu ul li a:hover, #menu li.more-menu .dropdown-menu ul li span:hover, #menu li.more-menu .dropdown-menu ul li a:focus, #menu li.more-menu .dropdown-menu ul li span:focus, #menu li.more-menu .dropdown-menu ul li a:active, #menu li.more-menu .dropdown-menu ul li span:active {
	color: #111;
}

/* 2 Level Sub Categories START */

#menu ul.nav ul.list-unstyled li {
	min-width: 160px;
}

#menu ul.nav li ul.list-unstyled.mega-dropdown-menu>li.dropdown .dropdown-menu {
	border: 0;
	position: static;
	display: block;
	width: 150px;
}

#menu ul.nav li ul.list-unstyled.single-dropdown-menu>li.dropdown .dropdown-menu {
	left: 160px;
	top: 0;
	position: absolute;
	display: none;
	border-color: #eaeaea;
}

#menu ul.nav li ul.list-unstyled>li.dropdown:hover>.dropdown-menu {
	display: block;
}

#menu .nav>li.dropdown::after {
	bottom: auto;
	color: #414141;
	font-family: 'Material Icons';
	content: '\e5cf';
	font-size: 18px;
	left: auto;
	position: absolute;
	top: 19px;
	right: 5px;
}

#menu .nav.navbar-nav>li:hover>a, #menu .dropdown-inner ul.mega-dropdown-menu.childs_1>li>a:hover, #menu .nav.navbar-nav>li:hover>span {
	color: #111;
}

#menu .nav>li.dropdown:hover::after {
	color: #414141;
	content: '\e5ce';
}

#menu ul.nav ul.list-unstyled.single-dropdown-menu li.dropdown::after {
	font-family: 'Material Icons';
	content: '\e5cc';
	font-size: 18px;
	position: absolute;
	right: 15px;
	top: 0;
}

/* 2 Level Sub Categories END */

/* content */

#content {
	min-height: 600px;
}

.content-bottom {
	float: left;
	width: 100%;
}

/* Slideshow Slider Stylesheet */

.common-home>.row {
	margin: 0;
}

/*---------------------------------------------- Slideshow Slider Stylesheet start-------------------------------*/

.swiper-wrapper {
	direction: ltr !important;
}

.content-top {
	float: left;
	position: relative;
	margin: 0 0 30px;
	width: 100%;
}

.top-column {
	margin: 0 0 60px;
}

.slider-banner {
	background: #fff;
	padding: 30px;
	box-shadow: 0 0 5px 1px #e5e5e5;
	-moz-box-shadow: 0 0 5px 1px #e5e5e5;
	-webkit-box-shadow: 0 0 5px 1px #e5e5e5;
	margin: 23px 0 30px;
	float: right;
	width: 100%;
}

.slideshow-panel {
	float: left;
}

.slideshow-panel .swiper-viewport {
	border: medium none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	overflow: hidden;
	margin: 0;
	float: left;
}

.slideshow-panel .swiper-container {
	width: 100%;
}

.slideshow-panel .ttloader {
	background: #fff url("TemplateTrip/images/ajax-loader.gif") no-repeat scroll center center;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99999;
}

.slideshow-panel img {
	height: auto;
	width: 100%;
}

.slideshow-panel .swiper-container .swiper-pagination {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	top: auto;
	display: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px 0 0;
}

.swiper-pagination-bullet {
	width: 12px !important;
	height: 12px !important;
	background: #fff !important;
	border-radius: 50px !important;
	-moz-border-radius: 50px !important;
	-webkit-border-radius: 50px !important;
	-khtml-border-radius: 50px !important;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	margin: 0;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
}

.swiper-pagination-bullet-active {
	background: #b8e3f0 !important;
}

.swiper-pagination-bullet:hover {
	background: #b8e3f0 !important;
}

.slideshow-panel .swiper-container .swiper-pager {
	position: static;
	line-height: normal;
}

.slideshow-panel .swiper-container .swiper-pager div {
	background: #fff !important;
	background: no-repeat;
	border: 2px solid #fff;
	font-size: 0;
	height: 50px;
	width: 50px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	transition: all 400ms ease-in-out 0s;
	z-index: 1;
}

.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-prev {
	left: 30px;
}

.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-next {
	right: 30px;
}

.slideshow-panel .swiper-container:hover .swiper-pager div {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.slideshow-panel .swiper-container .swiper-pager div:hover {
	background: #b8e3f0 !important;
	border-color: #b8e3f0;
}

.slideshow-panel .swiper-pager .swiper-button-prev::before {
	bottom: 0;
	color: #111;
	content: "\e5cb";
	font-family: "Material Icons";
	font-size: 26px;
	left: 0;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 50px;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
}

.slideshow-panel .swiper-pager .swiper-button-next::before {
	bottom: 0;
	color: #111;
	content: "\e5cc";
	font-family: "Material Icons";
	font-size: 26px;
	left: 2px;
	margin: 0 auto;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 50px;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
}

.slideshow-panel .swiper-pager .swiper-button-prev:hover::before, .slideshow-panel .swiper-pager .swiper-button-next:hover::before {
	color: #111;
}

@media (max-width: 1199px) {
	.slider-banner {
		padding: 15px;
	}
	.slider-banner .row {
		margin: 0 -10px;
	}
	.slideshow-panel {
		padding: 0 10px;
	}
}
@media (max-width: 991px) {
	.top-column {
		width: 100%;
		text-align: center;
	}
	.content-top {
		margin: 0 0 20px;
	}
	.slider-banner {
		margin: 20px 0;
	}
	.slideshow-panel .swiper-container .swiper-pager div {
		height: 40px;
		width: 40px;
	}
	.slideshow-panel .swiper-pager .swiper-button-prev::before, .slideshow-panel .swiper-pager .swiper-button-next::before {
		line-height: 40px;
		left: 0;
	}
	.slideshow-panel .swiper-container .swiper-pager .swiper-button-prev {
		left: 0;
	}
	.slideshow-panel .swiper-container .swiper-pager .swiper-button-next {
		right: 0;
	}
	.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-prev {
		left: 30px;
	}
	.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-next {
		right: 30px;
	}
	.slideshow-panel .swiper-pager .swiper-button-prev::before, 
	.slideshow-panel .swiper-pager .swiper-button-next::before {
		font-size: 24px;
		line-height: 38px;
	}
}

@media (max-width: 767px) {
	.slideshow-panel .swiper-container .swiper-pager div, .slideshow-panel .swiper-container .swiper-pager div:hover {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
	.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-prev,
	.slideshow-panel .swiper-container .swiper-pager .swiper-button-prev {
		left: 30px;
	}
	.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-next,
	.slideshow-panel .swiper-container .swiper-pager .swiper-button-next {
		right: 30px;
	}
}

@media (max-width: 543px) {
	.slideshow-panel .swiper-container .swiper-pagination {
		bottom: 20px;
	}
	.content-top {
		margin: 0 0 10px;
	}
}

@media (max-width: 480px) {
	.slideshow-panel {
		margin: 0 0 15px;
		width: 100%;
	}
	.slideshow-panel .swiper-container .swiper-pager div {
		height: 25px;
		width: 25px;
	}
	.slideshow-panel .swiper-container .swiper-pagination {
		bottom: 10px;
	}
	.slideshow-panel .swiper-pager .swiper-button-prev::before,
	.slideshow-panel .swiper-pager .swiper-button-next::before {
		color: #ffffff;
		font-size: 22px;
		line-height: 25px;
		height: 25px;
		width: 25px;
	}
	.slideshow-panel .swiper-pager .swiper-button-prev:hover::before,
	.slideshow-panel .swiper-pager .swiper-button-next:hover::before {
		color: #b8e3f0;
	}
	.slideshow-panel .swiper-container .swiper-pager div, 
	.slideshow-panel .swiper-container .swiper-pager div:hover {
		background: none !important;
		border: none !important;
	}
	.slideshow-panel .swiper-container .swiper-pager .swiper-button-prev {
		left: 10px;
		top: 55%;
	}
	.slideshow-panel .swiper-container .swiper-pager .swiper-button-next {
		right: 10px;
		top: 55%;
	}
	.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-prev {
		left: 10px;
	}
	.slideshow-panel .swiper-container:hover .swiper-pager .swiper-button-next {
		right: 10px;
	}
}

/*---------------------------------------------- Slideshow Slider Stylesheet end-------------------------------*/

/*------------------------ CustomNavigation Button CSS Start -----------------------------------*/

.customNavigation {
	left: auto;
	padding: 0 0;
	bottom: auto;
	width: auto;
	margin: 0;
	position: absolute;
	text-align: center;
	direction: ltr;
	right: 10px;
	top: 10px;
	z-index: 1;
	float: right;
}

.customNavigation a {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	height: 31px;
	width: 31px;
	font-size: 0;
	float: left;
	padding: 0;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	position: relative;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.customNavigation a.prev {
	margin: 0 7px 0 0;
}

.customNavigation a:hover {
	background: #b8e3f0;
	border-color: #b8e3f0;
}

.customNavigation a::after, .customNavigation a::before {
	position: absolute;
	font-size: 18px;
	line-height: 30px;
	font-family: "Material Icons";
	height: 30px;
	width: 30px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #777;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
	font-weight: 400;
}

.customNavigation a.prev::before {
	content: "\e314";
	left: 10px;
	right: auto;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	top: 0;
	color: #111;
}

.customNavigation a.prev::after {
	font-family: "Material Icons";
	content: "\e314";
	position: absolute;
	right: 0;
	top: 0;
	font-weight: 300;
	color: #666;
	left: auto;
}

.customNavigation a.prev:hover::before {
	left: 0;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

.customNavigation a.next::after {
	font-family: "Material Icons";
	content: "\e315";
	position: absolute;
	right: 0;
	top: 2px;
	font-weight: 300;
	color: #555;
	left: auto;
}

.customNavigation a.next::before {
	content: "\e315";
	right: 10px;
	left: auto;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	top: 2px;
	color: #111;
}

.customNavigation a.next:hover::before {
	right: 0;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

.customNavigation a.prev:hover::after, .customNavigation a.next:hover::after {
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

/*------------------------ CustomNavigation Button CSS End -----------------------------------*/

/* Category Page */

#page>.container {
	clear: both;
	position: relative;
}

#content h2.category-name {
	margin-top: 0;
}

#column-left .left-right-inner>div, #column-right .left-right-inner>div {
	background: #ffffff;
	border: none;
	border-bottom: 1px solid #e5e5e5;
	float: left;
	margin: 0;
	padding: 20px;
	width: 100%;
}
#column-left .left-right-inner > div:last-child, #column-right .left-right-inner > div:last-child {
	border-bottom: none;
}

#column-left .left-right-inner>div.swiper-viewport, #column-right .left-right-inner>div.swiper-viewport {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border-bottom: 1px solid #e5e5e5;
}

#column-left .swiper-wrapper, #column-right .swiper-wrapper {
	height: auto;
}

.category-list ul {
	padding: 0;
}

.category-list ul li {
	display: inline-block;
	list-style: none;
	margin-right: 15px;
	text-align: center;
	width: 100px;
}

.subcategory-image {
	clear: both;
	padding: 0 0 8px;
}

.subcategory-image>a {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	display: block;
	padding: 6px;
}

.category-list li:hover .subcategory-image>a {
	border: 2px solid #333;
	padding: 5px;
}

.subcategory-image img {
	max-width: 100%;
}

.category-list h5 {
	float: left;
	text-align: center;
	width: 100%;
	margin: 0 0 10px;
}

.category-list h5 a {
	color: #666;
	font: 400 13px/20px "Mulish", Helvetica, sans-serif;
}

.category-list li:hover h5 a, .category-list li:focus h5 a {
	color: #333;
}

.category-filter label {
	color: #222;
	font: 500 13px/20px "Mulish", Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	white-space: nowrap;
	background: none;
	border: none;
	width: auto;
}

.category-compare {
	margin: 0;
	float: left;
	width: 100%;
}

.category-products {
	float: left;
	margin: 30px 0 0;
	width: 100%;
}

.category-treeview ul {
	margin: 0px;
}

.category-treeview li {
	position: relative;
	list-style: none;
}

.category-treeview li.category-li .list-tree::before {
	content: "\e5cf";
	font-family: "Material Icons";
	font-size: 16px;
	font-weight: normal;
	color: #888888;
	position: absolute;
	cursor: pointer;
	padding: 6px 0;
	right: 0px;
	top: 0px;
	z-index: 2;
}

.category-treeview li.category-li.active .list-tree::before {
	content: "\e5ce";
}

.category-treeview li.category-li:hover .list-tree:before, .category-treeview li.category-li.active .list-tree:before {
	color: #111;
}

.product-thumb .caption .description {
	display: none;
}

.rating span.fa-stack, #review span.fa-stack {
	width: 13px;
	height: 13px;
	display: inline-block;
	float: none;
	vertical-align: baseline;
}

.rating .fa-stack i, #review i {
	color: #ffbf34;
	font-size: 16px;
	width: 18px;
	float: left;
}

.rating .fa-stack i.star_on, #review i.star_on {
	color: #ffbf34;
}

.featured-carousel.products-list {
	margin: 0 0 15px;
}

.products-list, .list-products {
	position: relative;
	width: 100%;
	float: left;
}

.product-thumb {
	position: relative;
	text-align: center;
	float: left;
	width: 100%;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	margin: 0 0 30px;
}

.related-carousel.products-list .product-thumb:hover {
	overflow: visible;
}

.product-list .product-thumb .caption .description {
	display: block;
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 22px;
}

.product-thumb .sale-icon, .product-sale-icon {
	color: #111;
	font-size: 13px;
	line-height: 18px;
	float: left;
	position: absolute;
	left: 15px;
	top: 15px;
	right: auto;
	bottom: auto;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	z-index: 1;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

#product-product .product-sale-icon {
	left: auto;
	right: 15px;
}

.product-thumb:hover .sale-icon, .product-sale-icon {
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	left: 20px;
}

.product-thumb .percent, .product-percent {
	font-size: 13px;
	right: 15px;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	position: absolute;
	width: auto;
	vertical-align: middle;
	left: auto;
	top: 15px;
	z-index: 1;
	color: #F00;
	font-weight: 500;
	text-align: center;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
}

.product-thumb:hover .percent {
	right: 20px;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

.product-percent {
	left: 15px;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	right: auto;
}

.header-content-title {
	width: 100%;
	float: left;
}

/* Column Left - Right Product List */

#content .page-main {
	float: left;
	background: #fff;
	box-shadow: 0 0 5px 1px #e5e5e5;
	-moz-box-shadow: 0 0 5px 1px #e5e5e5;
	-webkit-box-shadow: 0 0 5px 1px #e5e5e5;
	padding: 30px;
	width: 100%;
}

#column-left {
	clear: left;
}

#column-left > div,
#column-right > div {
	float: left;
	background: #fff;
	box-shadow: 0 0 5px 1px #e5e5e5;
	-moz-box-shadow: 0 0 5px 1px #e5e5e5;
	-webkit-box-shadow: 0 0 5px 1px #e5e5e5;
	width: 100%;
}

#column-left .panel-default>.list-group, #column-right .panel-default>.list-group {
	float: left;
	margin: 0 0 10px;
	padding: 0 15px;
	width: 100%;
}

#column-left .products-carousel, #column-right .products-carousel {
	float: left;
	margin: 0;
	width: 100%;
}

#column-left .product-thumb:hover, #column-right .product-thumb:hover, #header-left .product-thumb:hover, #header-right .product-thumb:hover, #footer-left .product-thumb:hover, #footer-right .product-thumb:hover {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

#column-left .product-thumb, #column-right .product-thumb, #header-left .product-thumb, #header-right .product-thumb, #footer-left .product-thumb, #footer-right .product-thumb {
	padding: 15px 0;
	border: none;
	border-bottom: 1px solid #e5e5e5;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	margin: 0;
}

#column-left .product-thumb:first-child, #column-right .product-thumb:first-child {
	padding-top: 5px;
}

#column-left .product-thumb:last-child, #column-right .product-thumb:last-child, #header-left .product-thumb:last-child, #header-right .product-thumb:last-child, #footer-left .product-thumb:last-child, #footer-right .product-thumb:last-child {
	border: 0;
}

#column-left .product-thumb .image, #column-right .product-thumb .image, 
#header-left .product-thumb .image, #header-right .product-thumb .image, 
#footer-left .product-thumb .image, #footer-right .product-thumb .image {
	float: left;
	margin: 0;
	padding: 0;
	width: 70px;
}

#column-left .product-thumb .sale-icon, #column-right .product-thumb .sale-icon, #column-left .product-thumb .percent, #column-right .product-thumb .percent {
	left: 0;
	right: auto;
	display: none;
}

#column-left .product-thumb .price-tax, #column-right .product-thumb .price-tax, #header-left .product-thumb .price-tax, #header-right .product-thumb .price-tax, #footer-left .product-thumb .price-tax, #footer-right .product-thumb .price-tax {
	display: none;
}

#column-left .product-thumb .rating, #column-right .product-thumb .rating, #header-left .product-thumb .rating, #header-right .product-thumb .rating, #footer-left .product-thumb .rating, #footer-right .product-thumb .rating {
	display: block;
	margin: 0 0 4px;
	position: static;
	text-align: left;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	display: none;
}

#column-left .product-thumb .caption .sale-icon, #column-right .product-thumb .caption .sale-icon, #header-left .product-thumb .caption .sale-icon, #header-right .product-thumb .caption .sale-icon, #footer-left .product-thumb .caption .sale-icon, #footer-right .product-thumb .caption .sale-icon {
	font-size: 11px;
	padding: 0 5px;
	left: 0;
	right: auto;
}

#column-left .product-thumb .button-group, #column-right .product-thumb .button-group, #header-left .product-thumb .button-group, #header-right .product-thumb .button-group, #footer-left .product-thumb .button-group, #footer-right .product-thumb .button-group, #column-left .product-thumb .btn-outofcart.disabled, #column-right .product-thumb .btn-outofcart.disabled {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	border: 0 none;
	float: left;
	padding: 0;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transform: none;
	-webkit-transform: none;
	-ms-transform: none;
	-o-transform: none;
	position: static;
	transition: none 0s ease 0s;
	-webkit-transition: none 0s ease 0s;
	-moz-transition: none 0s ease 0s;
	-o-transition: none 0s ease 0s;
	-ms-transition: none 0s ease 0s;
	visibility: visible;
	margin: 0;
	display: none;
}

#column-left .product-thumb .button-group button, #column-left .product-thumb .button-group button.btn-cart i, #column-right .product-thumb .button-group button, #column-right .product-thumb .button-group button.btn-cart i, #header-left .product-thumb .button-group button, #header-left .product-thumb .button-group button.btn-cart i, #header-right .product-thumb .button-group button, #header-right .product-thumb .button-group button.btn-cart i, #footer-left .product-thumb .button-group button, #footer-left .product-thumb .button-group button.btn-cart i, #footer-right .product-thumb .button-group button, #footer-right .product-thumb .button-group button.btn-cart i {
	display: none;
}

#column-left .product-thumb .button-group button.btn-cart, #column-right .product-thumb .button-group button.btn-cart, #header-left .product-thumb .button-group button.btn-cart, #header-right .product-thumb .button-group button.btn-cart, #footer-left .product-thumb .button-group button.btn-cart, #footer-right .product-thumb .button-group button.btn-cart {
	background: none;
	border: none;
	color: #666666;
	padding: 0;
	margin: 0;
	line-height: normal;
	text-align: left;
	font-weight: normal;
	display: block;
	width: auto;
	height: auto;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	position: static;
}

.product-list .product-thumb:hover h4 a {
	color: #111;
}

/* Column Left Right - Product Option Filter Style */

#column-left .list-group-item, #column-right .list-group-item, #column-left .panel-heading, #column-right .panel-heading {
	border: medium none;
}

#column-left .list-group category-li a.active:hover, #column-left .list-group a:hover {
	background: none;
	color: #111;
}

#column-left .category-treeview .category-li.active .list-group-item.active, #column-right .category-treeview .category-li.active .list-group-item.active {
	color: #111;
}

#column-left .category-treeview.panel-default, #column-right .category-treeview.panel-default {
	background: none;
	float: left;
	width: 100%;
	border: 1px solid #e5e5e5;
}

#column-left a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover #column-right a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
	background: none;
}

#column-left .list-group .list-group-item, #column-right .list-group .list-group-item {
	background: none;
	color: #777777;
	cursor: pointer;
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 26px;
	padding: 0;
	margin-bottom: 0;
	z-index: 1;
}

#column-left .category-li.category-active .list-group-item.current-child-item:hover, #column-left .list-group .category-li.category-active:hover .list-group-item.active, #column-left .list-group .category-li .list-group-item:hover, #column-right .list-group .list-group-item:hover {
	color: #111;
}

.category-treeview .list-group a.child-item, .category-treeview .list-group a.current-child-item {
	margin-left: 15px;
}

#column-left .panel-heading, #column-right .panel-heading, 
#column-left .box-heading, #column-right .box-heading, 
#column-left .panel-heading, #column-right .panel-heading, 
#column-left .title_block, 
#column-right .title_block {
	background: #f7f7f7;
	border: none;
	color: #111;
	cursor: pointer;
	float: left;
	font: 700 16px/18px "Mulish", Helvetica, sans-serif;
	margin: 0 0 10px;
	padding: 12px 15px;
	position: relative;
	text-align: left;
	width: 100%;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
}

#column-left .title_block a, #column-right .title_block a {
	color: #ffffff;
}

#column-left .box-heading>h3, #column-right .box-heading>h3 {
	border: medium none;
	color: #111;
	font: 700 16px/18px "Mulish", Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: left;
	background: none;
}

#column-left .box-heading>h3::after, #column-right .box-heading>h3::after {
	display: none;
}

.option-filter .panel-heading, .option-filter .list-group-item, 
.option-filter-box a.list-group-item, .option-filter .panel-footer, 
.option-filter .panel-heading, .option-filter .list-group-item, 
.option-filter-box a.list-group-item, .option-filter .panel-footer {
	float: left;
	width: 100%;
}

.option-filter .panel-footer, .option-filter .panel-footer {
	background: none;
	padding: 0;
}

.option-filter .checkbox>label, .option-filter .checkbox>label {
	color: #666;
	font: 400 13px/20px "Mulish", Helvetica, sans-serif;
}

.option-filter .checkbox>label:hover, .option-filter .checkbox>label:hover {
	color: #000 !important;
}

.option-filter .list-group-items .list-group-item:hover, .option-filter .list-group-items .list-group-item:hover:after, 
.option-filter .list-group-items .list-group-item:hover, .option-filter .list-group-items .list-group-item:hover:after {
	color: #222222;
}

.option-filter .list-group-item .checkbox, .option-filter .list-group-item .checkbox {
	margin: 0px;
	padding: 0;
}

.option-filter-box .list-group .list-group-items {
	border-bottom: 1px solid #e5e5e5;
	padding: 10px 0;
	float: left;
	width: 100%;
}

.option-filter-box .list-group .list-group-items:first-child {
	padding: 0 0 10px;
}

.option-filter-box .list-group .list-group-items:last-child {
	border: medium none;
}

.option-filter .list-group-items .list-group-item, .option-filter .list-group-items .list-group-item {
	color: #222;
	font: 700 13px/28px "Mulish", Helvetica, sans-serif;
	padding: 2px 0;
	float: left;
	width: 100%;
	position: relative;
}

#column-left .product-thumb .thumb-description, #column-right .product-thumb .thumb-description {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	opacity: 1;
	-moz-opacity: 1;
	/* Netscape */
	-khtml-opacity: 1;
	/* Safari 1.x */
	-webkit-opacity: 1;
	/* other webkit*/
	position: static;
	text-align: left;
	padding-right: 0;
	padding-left: 10px;
	padding-top: 5px;
	float: left;
	border: none;
}

#column-left .product-thumb .thumb-description .caption, #column-right .product-thumb .thumb-description .caption {
	border: none;
	padding: 0;
}

#column-left .img-responsive, #column-right .img-responsive {
	width: 100%;
}

.option-filter .list-group {
	margin: 0px;
}

.option-filter-box .list-group-item, .option-filter-box .list-group-item {
	background: none;
}

.option-filter-box a.list-group-item:after {
	font-size: 16px;
	color: #333;
	position: absolute;
	right: 0px;
	top: 3px;
	content: "\e5ce";
	font-family: "Material Icons";
}

.option-filter-box a.list-group-item.collapsed:after {
	content: "\e5cf";
}

.store-list .store-tags {
	padding: 5px 15px;
}

.store-list .store-tags>a {
	border: 1px solid #DDDDDD;
	display: inline-block;
	margin: 5px 10px 5px 0px;
	padding: 5px 10px;
}

.store-list .store-tags>a.active-store {
	font-weight: bold;
	position: relative;
}

.store-list .store-tags>a.active-store>i {
	bottom: -4px;
	color: #00bb00;
	font-size: 16px;
	left: -4px;
	position: absolute;
}

/*.category-filter, .category-pagination { border: 1px solid #e5e5e5; }*/

#content .category-filter {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	float: left;
	margin: 25px 0 0;
	padding: 0 10px;
	text-align: center;
	width: 100%;

	visibility: hidden;
	height: 0;
}

.category-filter .filter-sort-by, .category-filter .filter-show {
	float: right;
	padding: 10px 0;
}

.category-filter .filter-text {
	float: left;
}

.category-filter .filter-show .filter-selection {
	width: 70px;
	float: left;
}

.category-filter .filter-sort-by .filter-selection {
	float: left;
	width: 160px;
}

.category-filter .filter-sort-by {
	width: 100%;
	max-width: 250px;
}

.category-filter .filter-show {
	max-width: 140px;
}

.category-filter .filter-show .filter-text {
	margin: 0 5px;
}

.category-filter .filter-text {
	padding: 8px 5px 0 0;
	margin: 0;
	text-align: left;
}

.category-filter .filter-selection {
	padding: 0;
}

.category-filter .filter-grid-list {
	padding: 13px 0;
	width: auto;
	float: left;
}

.category-filter .filter-grid-list button {
	background: none;
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-khtml-border-radius: 0;
	color: #777777;
	height: 25px;
	margin: 7px 8px 0;
	padding: 0;
	width: 25px;
}

.category-filter .filter-grid-list button#list-view i {
	line-height: 25px;
}

.category-filter .filter-grid-list button#short-view i {
	font-size: 25px;
	line-height: 26px;
}

.category-filter .filter-grid-list button::after {
	display: none;
}

.category-filter .filter-grid-list button:hover, .category-filter .filter-grid-list button.active {
	background: none;
	border: none;
	color: #111;
}

.product-category .category-list {
	float: left;
	width: 100%;
}

.category-filter .filter-grid-list button i.fa {
	font-size: 0px;
}

.category-bg {
	float: left;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	text-align: center;
	padding: 50px 0;
	width: 100%;
}

.cat-img .img-thumbnail {
	height: auto;
	max-width: 100%;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	overflow: hidden;
}

#product-category .block-description p {
	float: left;
	width: 100%;
	margin: 0 0 10px;
}

#product-category .block-description p #compare-total {
	font-weight: 500;
}

.row-pagination-container {
	float: left;
	display: none;
	text-align: center;
	margin-top: 15px;
	width: 100%;
}

.load_more .row-pagination-container {
	display: block;
}

#custom-pagination-button {
	display: inline-block;
	float: none;
	vertical-align: top;
}

#custom-pagination-button .load-pagination {
	display: none;
}

.category-pagination {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	float: left;
	margin: 0 0 10px;
	padding: 10px 15px;
	width: 100%;
}

.load_more #product-category .category-pagination {
	display: none;
}
.row-pagination-container .pagination-text-justify {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
  float: left;
  padding: 10px;
  width: 100%;
}
#custom-pagination-button > span#number-products {
  float: right;
  font-size: 16px;
  padding: 10px 25px;
  width: auto;
}

.category-pagination div.text-left {
	padding: 8px 0;
}

.pagination>.active>span:hover, .pagination>li>span:hover {
	background: #b8e3f0;
	border-color: #b8e3f0;
	color: #111;
}

.category-pagination div.text-right {
	padding: 0;
}

.category-pagination .pagination {
	margin: 0;
	vertical-align: top;
}

.category-list>h3 {
	color: #111;
	font: 700 15px/26px "Mulish", Helvetica, sans-serif;
	margin: 0 0 10px;
}

.pagination li:last-child>a::after {
	content: "\e8e4";
	font-family: "Material Icons";
	font-size: 20px;
	left: 0;
	line-height: 30px;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
}

.pagination li:first-child>a::before {
	content: "\e317";
	font-family: "Material Icons";
	font-size: 13px;
	position: static;
	right: 0;
}

.pagination>li>a:hover, .pagination>li>a:focus, .pagination>li>span:hover, .pagination>li>span:focus {
	background: #b8e3f0;
	border-color: #b8e3f0;
	color: #111;
	cursor: pointer;
}

.pagination>.active>span, .pagination>.active>a {
	background: #2f4a74;
	border-color: #2f4a74;
	color: #ffffff;
}

.pagination li:last-child>a, .pagination li:first-child>a {
	font-size: 0px;
	padding: 7px 0;
}

.pagination>li>a, .pagination>li>span {
	color: #111;
	padding: 6px 0;
	width: 33px;
	height: 33px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	text-align: center;
	border-color: #dddddd;
	margin: 0 5px 0 0;
	line-height: 18px;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	font-size: 16px;
	line-height: 20px;
}

/* Left Column stylesheet */

#column-left .product-thumb .no-rating, #column-right .product-thumb .no-rating {
	display: none;
}

#column-left .products-list .row>div, #column-right .products-list .row>div {
	float: left;
	width: 100%;
}

#column-left .products-carousel.owl-carousel .owl-nav, #column-right .products-carousel.owl-carousel .owl-nav {
	float: right;
	width: auto;
	left: auto;
	right: 25px;
	top: 27px;
	bottom: auto;
	margin: 0 auto;
}

#column-left .bestseller-carousel .products-carousel.owl-carousel .owl-nav {
	top: 7px;
	right: 5px;
}

#column-left .products-list .row>div .caption h4, #column-left .list-products .row>div .caption h4, #column-right .products-list .row>div .caption h4, #column-right .list-products .row>div .caption h4 {
	font-size: 13px;
	margin: 0 0 7px;
}

#column-left .products-list .row>div .caption .price, #column-left .list-products .row>div .caption .price, #column-right .products-list .row>div .caption .price, #column-right .list-products .row>div .caption .price {
	font-size: 14px;
	margin: 0;
	padding: 0 0 5px;
	display: block;
}

#column-left .products-list .row>div .caption .price .price-new, #column-right .products-list .row>div .caption .price .price-new {
	font-size: 14px;
}

#column-left .product-thumb .price-old, #column-right .product-thumb .price-old {
	font: 400 13px/18px "Mulish", Helvetica, sans-serif;
}

#column-left .products-list .row>div .caption .price .price-tax, #column-right .products-list .row>div .caption .price .price-tax {
	display: none;
}

#column-left .products-list .row>div .button-group .btn-wishlist, #column-right .products-list .row>div .button-group .btn-wishlist {
	display: none;
}

#column-left .products-list .row>div .button-group .btn-compare, #column-right .products-list .row>div .button-group .btn-compare {
	display: none;
}

#column-left .product-thumb .button-group .btn-cart:hover>span, #column-right .product-thumb .button-group .btn-cart:hover>span {
	color: #111;
}

#column-left .product-thumb .button-group .btn-cart>span, #column-right .product-thumb .button-group .btn-cart>span {
	display: block !important;
	font-size: 13px;
	line-height: 18px;
	color: #666;
	letter-spacing: 1px;
	font-weight: 500;
}

#column-left .product-thumb h4 a:hover, #column-right .product-thumb h4 a:hover {
	color: #111;
}

#column-left .product-thumb .button-group .btn-cart>span.out.of.stock, #column-right .product-thumb .button-group .btn-cart>span.out.of.stock {
	display: none !important;
}

#column-left .special-carousel.products-list .product-thumb, #column-right .special-carousel.products-list .product-thumb {
	padding: 0;
	margin: 0 0 10px;
}

#column-left .special-carousel.products-list .product-thumb .image, #column-right .special-carousel.products-list .product-thumb .image {
	float: left;
	width: 100%;
	max-width: 100%;
	border: none;
}

#column-left .special-carousel.products-list .product-thumb .button-group button, #column-left .special-carousel.products-list .product-thumb .button-group button.btn-cart i, #column-right .special-carousel.products-list .product-thumb .button-group button, #column-right .special-carousel.products-list .product-thumb .button-group button.btn-cart i {
	display: block;
}

#column-left .special-carousel.products-list .button-group .btn-wishlist, #column-right .special-carousel.products-list .button-group .btn-wishlist {
	display: block;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	top: 10px;
	bottom: auto;
}

#column-left .special-carousel.products-list .button-group .btn-compare, #column-right .special-carousel.products-list .button-group .btn-compare {
	display: block;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	top: 50px;
	bottom: auto;
}

#column-left .special-carousel.products-list .button-group .btn-quickview, #column-right .special-carousel.products-list .button-group .btn-quickview {
	display: block;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	top: 90px;
	bottom: auto;
}

#column-left .special-carousel.products-list .product-thumb .sale-icon, #column-right .special-carousel.products-list .product-thumb .sale-icon, #column-left .special-carousel.products-list .product-thumb .percent, #column-right .special-carousel.products-list .product-thumb .percent {
	display: block;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

#column-left .special-carousel.products-list .product-thumb .rating, #column-right .special-carousel.products-list .product-thumb .rating {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	float: left;
	width: 100%;
	margin: 0;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	top: auto;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
}

#column-left .special-carousel.products-list .product-thumb .thumb-description, #column-right .special-carousel.products-list .product-thumb .thumb-description {
	float: left;
	border: none;
	padding: 10px 0 0;
	text-align: center;
	width: 100%;
	position: relative;
	float: left;
	border-top: 4px double #e5e5e5;
}

#column-left .special-carousel.products-list .row>div .caption h4, #column-right .special-carousel.products-list .row>div .caption h4 {
	margin: 0;
	padding: 0 0 5px;
}

#column-left .special-carousel.products-list .row>div .caption .price, #column-right .special-carousel.products-list .row>div .caption .price, #column-left .special-carousel.products-list .row>div .caption .price .price-new, #column-right .special-carousel.products-list .row>div .caption .price .price-new {
	font-size: 16px;
	padding: 0 0 15px;
}

#column-left .special-carousel.products-list .product-thumb .thumb-description .caption .ttproducthover .product-add-to-cart, #column-right .special-carousel.products-list .product-thumb .thumb-description .caption .ttproducthover .product-add-to-cart {
	position: static;
	margin: 5px 0 0;
	visibility: visible;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	border: none;
	height: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
}

/* Product page stylesheet */

.product-images .additional-images-container {
	direction: ltr;
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	width: 390px;
	overflow: hidden;
	text-align: center;
}
.product-quickview .product-images .additional-images-container {
	margin-top: 20px;
}
.additional-images .owl-stage-outer {
	float: left;
	width: 100%;
	overflow: hidden;
}

.product-details .product-info td {
	padding: 3px;
}

.product-details .product-info .product-info-value {
	color: #777;
	padding: 3px 3px 3px 10px;
	font-weight: normal;
}

.product-details .product-info tr td {
	color: #222222;
}

.product-details .product-info-value>a {
	color: #111;
	font-weight: 600;
}

.product-details .product-info-value>a:hover {
	color: #2f4a74;
}

.product-product .tab-content {
	margin: 0;
	padding: 0px;
}

.buttons.clearfix {
	margin: 15px 0 0;
}

.cpt_product_description strong {
	font-size: 14px;
}

.product-quantity label {
	padding: 10px 0;
}

.product-quantity label, .product-quantity #input-quantity {
	width: auto;
	text-align: center;
	margin: 0 10px 0 0;
	float: left;
}

.product-quantity #input-quantity {
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	font-size: 14px;
	float: left;
	height: 42px;
	line-height: 27px;
	padding: 0 6px;
	text-align: center;
	width: 60px;
}
.product-quickview .product-details h1.product-name {
    padding-top: 10px;
}
.product-details h1.product-name {
	border-bottom: 1px solid #e5e5e5;
	color: #111;
	margin: 0 0 15px;
	padding-bottom: 12px;
	font: 600 17px/26px "Mulish",sans-serif;
}

.product-details table.product-info {
	margin: 15px 0;
}

.product-quickview .control-label, .product-product .control-label {
	color: #222;
	display: inline-block;
}

.product-options {
	clear: both;
}

.product-details .product-price {
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 15px 0;
	margin: 15px 0;
	float: left;
	width: 100%;
}

.product-details .addthis_toolbox {
	width: 100%;
	margin: 0 0 20px;
	float: left;
}

.product-details .product-options h3 {
	font: 700 16px/22px "Mulish", Helvetica, sans-serif;
}

.product-details .rating {
    display: table;
}
.product-total-review .fa.fa-comment, .product-write-review .fa.fa-pencil {
	margin-right: 5px;
}

.product-details .btn.btn-default.product-btn-wishlist, .product-details .btn.btn-default.product-btn-compare {
	font-size: 13px;
	color: #333333;
	text-align: left;
	font-weight: 600;
	border: none;
	background: none;
	padding: 0 15px 0 0;
	margin: 5px 0;
	line-height: 30px;
}

.product-details .btn.btn-default.product-btn-wishlist::after, .product-details .btn.btn-default.product-btn-compare::after {
	display: none;
}

.product-details .btn.btn-default.product-btn-wishlist:hover, .product-details .btn.btn-default.product-btn-compare:hover {
	background: none;
	color: #111;
	border: none;
}

.product-price .product-discounts {
	list-style: none;
	margin-top: 10px;
	font-size: 13px;
}

.product-price .product-reward-points {
	float: left;
	font-size: 13px;
	padding: 5px 0;
	width: 100%;
}

.product-details .rating>a {
	border-right: 1px solid #e5e5e5;
	color: #666;
	float: none;
	font-size: 13px;
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
	height: 20px;
	display: inline-block;
	vertical-align: top;
}

.product-details .rating>a:last-child {
	border-right: medium none;
	margin-right: 0;
}

.product-total-review i, .product-write-review i {
	font-size: 16px;
	margin-right: 5px;
	vertical-align: middle;
}

.form-group .btn-block i.file-upload {
	font-size: 20px;
	vertical-align: top;
	line-height: 26px;
}

.product-product .btn.btn-default::after {
	display: none;
}

.form-group .btn-default i.calendar-today {
	font-size: 20px;
	vertical-align: top;
	line-height: 24px;
}

.product-details .rating>a:hover {
	color: #444;
}

.rating .product-rating {
	border-right: 1px solid #e5e5e5;
	float: none;
	margin: 0 10px 0 0;
	padding: 0 10px 0 0;
	height: 20px;
	display: inline-block;
	vertical-align: top;
}

.product-details .price-new {
	float: left;
	margin: 0 8px 0 0;
}

.product-details .price-old {
	font-weight: 500;
	text-decoration: line-through;
	font-size: 14px;
	line-height: 22px;
	color: #666;
}

.product-details .product-tax {
	margin-top: 10px;
}

.product-details .product-options h3 {
	margin: 10px 0;
}

.product-details ul.product-price h2 {
	font: 700 18px/24px "Mulish", Helvetica, sans-serif;
	color: #2f4a74;
}

.product-options .product-quantity {
	clear: both;
	float: left;
	margin: 0;
}

.product-options .radio, .product-options .checkbox {
	padding: 0;
	margin-top: 0;
	margin-bottom: 5px;
}

.product-product .btn.btn-default {
	background-color: #ffffff;
	border: 1px solid #e5e5e5;
	color: #666;
	padding: 4px 15px;
	font-weight: 400;
	height: 39px;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.product-product .btn.btn-default:hover {
	background-color: #2f4a74;
	border-color: #2f4a74;
}

.product-product .btn.btn-default:hover {
	color: #fff;
}

.product-product .product-details .addthis_toolbox>a:first-child {
	margin: 0;
}

.product-product .product-details .addthis_toolbox>a {
	margin: 0 5px;
	float: left;
}

.product-tabs {
	clear: both;
	/*margin: 30px 0;*/
	margin: 0;
	background: #fff;
	padding: 15px;
	float: left;
	width: 100%;
}
.product-tabs #tab-description div{
	text-align: left !important;
}

#tab-review label.control-label {
	font: 500 13px/20px "Mulish", Helvetica, sans-serif;
	color: #222;
	margin-bottom: 10px;
}

.product-product .nav.nav-tabs li.active a {
	color: #111;
	border: #b8e3f0;
	background: #b8e3f0;
}

.product-product .nav.nav-tabs {
	/*border-bottom: 1px solid #ddd;
	margin: 0 0 -4px;
	list-style: outside none none;
	margin-bottom: 30px;
	text-align: center;*/
	border: none;
}

.product-product .nav-tabs>li>a {
	color: #555;
	font: 700 16px/22px "Mulish",Helvetica,sans-serif;
	letter-spacing: 1px;
	outline: medium none;
	padding: 10px 15px;
	position: relative;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border: none;
	background: none;
	z-index: 1;
	overflow: hidden;
}

.product-product .nav.nav-tabs li:hover a, .product-product .nav.nav-tabs li.active a:hover, .product-product .nav.nav-tabs li a:hover {
	color: #111;
	cursor: pointer;
}

.product-product .nav-tabs>li>a::before {
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #b8e3f0;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.product-product .nav-tabs>li:hover>a::before, .product-product .nav-tabs>li:focus>a::before, .product-product .nav-tabs>li.active>a::before {
	bottom: 0%;
	top: auto;
	height: 100%;
}

.product-product .nav.nav-tabs>li {
	margin-right: 10px;
	margin-bottom: 15px;
	float: none;
	display: inline-block;
	vertical-align: top;
}

.product-product .nav.nav-tabs li.active a:hover {
	color: #111;
}

.product-product #tab-description>h3, .product-product #form-review>h2 {
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 16px;
	color: #666;
}

.tab-content #tab-description b {
	font-weight: 600;
	color: #414141;
}

#checkout-cart #accordion .panel-default {
	border: medium none;
	margin: 10px 0 0;
}

#checkout-cart #accordion .panel-collapse .panel-body {
	border: medium none;
}

.checkout-cart #accordion .panel-heading {
	background: #f5f5f5;
	border: medium none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	padding: 0;
}

.checkout-cart #accordion .panel-heading a {
	padding: 12px 15px;
	font-family: "Mulish", Helvetica, sans-serif;
	font-weight: 600;
	font-size: 15px;
}

.checkout-cart #accordion label.control-label {
	width: 100%;
	padding: 0px;
	text-align: left;
	color: #444;
	font-size: 14px;
}

.checkout-cart #accordion .form-group {
	margin: 15px 0;
}

.checkout-cart #accordion .form-group>div {
	width: 100%;
	padding: 0px;
	margin: 5px 0;
}

.checkout-cart #content>.buttons {
	float: left;
	width: 100%;
	margin: 0 0 10px;
}

.checkout-checkout #accordion .panel-default .panel-heading {
	border-color: #e5e5e5;
	padding: 15px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

#checkout-cart .table.table-bordered .img-thumbnail {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border: 1px solid #e5e5e5;
}

#checkout-checkout #accordion .panel-body {
	border: medium none;
	padding: 15px 15px 25px;
}

#checkout-checkout #accordion .panel-default {
	border: medium none;
}

#collapse-checkout-confirm .table>thead>tr>td.text-left, .table>thead>tr>td.text-right {
	font-weight: 600;
	color: #111;
}

#checkout-cart #content .cart-form {
	float: left;
	width: 100%;
}

.checkout-cart #content .table-responsive .table-bordered thead tr td {
	color: #111;
	font-size: 13px;
	font-weight: 600;
}

#checkout-cart .btn.btn-primary.main::after, #checkout-cart .btn-danger::after {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
}

.table.table-bordered {
	border-color: #eaeaea;
	background: #ffffff;
}

.table-bordered>thead>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>tfoot>tr>td {
	border: 1px solid #e5e5e5;
	color: #222;
}

.sub-total-table .table-bordered tbody tr td:first-child strong {
	font-weight: 600;
	font-size: 14px;
}

#account-wishlist .table-bordered>tbody>tr>td img {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

#account-wishlist .table.table-bordered .price, #account-wishlist .table.table-bordered .price b {
	font: 600 15px/20px "Mulish", Helvetica, sans-serif;
	color: #2f4a74;
}

#account-wishlist .table.table-bordered .price s {
	font: 500 14px/16px "Mulish", Helvetica, sans-serif;
	color: #666;
}

#product-compare tr strike {
	color: #666;
	font: 400 13px/20px "Mulish", Helvetica, sans-serif;
	text-decoration: line-through;
}

#product-compare tr .Price {
	color: #2f4a74;
	font: 600 15px/20px "Mulish", Helvetica, sans-serif;
}

#product-compare #content .table.table-bordered strong {
	font: 700 14px/18px "Mulish", Helvetica, sans-serif;
	color: #111;
}

#product-compare .table-bordered>tbody>tr>td:first-child {
	font-weight: 600;
	color: #111;
}

.product-product #review .table.table-striped.table-bordered p {
	margin: 0;
	word-break: break-all;
}

.checkout-cart .sub-total-table {
	float: right;
}

.bootstrap-datetimepicker-widget .accordion-toggle a.btn, .bootstrap-datetimepicker-widget .timepicker td a span {
	background: #EEEEEE;
}

.bootstrap-datetimepicker-widget .timepicker td a:hover, .bootstrap-datetimepicker-widget .timepicker td a:focus {
	color: #FFFFFF;
}

.bootstrap-datetimepicker-widget .accordion-toggle a.btn:hover, .bootstrap-datetimepicker-widget .timepicker td a span:hover {
	background: #777;
}

.datepicker .datepicker-days .table-condensed .day.active, .bootstrap-datetimepicker-widget td span.active, .bootstrap-datetimepicker-widget .accordion-toggle a.btn:hover, .bootstrap-datetimepicker-widget .timepicker td a span:hover, .bootstrap-datetimepicker-widget td span.active, .datepicker-months .table-condensed .month.active, .datepicker-years .table-condensed .year.active {
	background-color: #2f4a74;
	color: #fff;
}

s.bootstrap-datetimepicker-widget .accordion-toggle a.btn, .bootstrap-datetimepicker-widget .timepicker td a span, .bootstrap-datetimepicker-widget .accordion-toggle a.btn {
	background: #EEEEEE;
	overflow: hidden;
	z-index: 1;
	position: relative;
}

.bootstrap-datetimepicker-widget .timepicker td a:hover, .bootstrap-datetimepicker-widget .timepicker td a:focus {
	color: #FFFFFF;
}

.bootstrap-datetimepicker-widget .accordion-toggle a.btn:hover, .bootstrap-datetimepicker-widget .timepicker td a span:hover, {
	background: #2f4a74;
}

.datepicker-days .table-condensed .day.today::before {
	border-bottom: 7px solid #2f4a74;
}

.datepicker-days .table-condensed .day.active.today::before {
	border-bottom: 7px solid #fff;
}

/* Extra pages Stylesheet */

#accordion .panel-heading h4.panel-title a {
	display: block;
}

#accordion .panel-heading h4.panel-title a i.fa-caret-down {
	float: right;
}

#accordion .panel-heading h4.panel-title a i.expand-more {
	float: right;
	font-size: 18px;
}

.product-search #content .search-criteria {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	padding: 10px;
}

.search-criteria>p {
	margin: 10px 0;
}

.search-criteria .checkbox-inline {
	padding: 10px 0;
}

.product-compare #content .table .btn {
	display: inline-block;
	margin: 2px 0;
	width: auto;
	overflow: hidden;
	z-index: 1;
	position: relative;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	padding: 8px 15px;
	line-height: 20px;
	color: #fff;
}

.product-compare #content .table .btn.btn-primary:hover, .product-compare #content .table .btn.btn-primary:focus, .product-compare #content .table .btn.btn-primary:active {
	background: #b8e3f0;
	color: #111;
}

.product-compare #content .table .btn .material-icons.icon-favorite {
	font-size: 18px;
	line-height: 22px;
}

.product-compare #content .table .btn::after {
	display: none;
}

.information-sitemap .col-sm-6>ul {
	padding-left: 15px;
}

.information-sitemap #content ul ul {
	padding-left: 30px;
	margin: 5px 0 10px;
}

.information-sitemap ul li a {
	line-height: 22px;
	font-weight: 500;
}

body.product-compare .table-product-image {
	padding: 10px;
}

.product-compare .table-product-image .img-thumbnail {	
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

/* information/contact - Location Icons Stylesheet */

.information-contact .contact-location .location-title {
	color: #111;
	font-size: 16px;
	font-weight: 600;
}

.information-contact .panel.google-map, .information-contact .panel.google-map iframe {
	float: left;
	width: 100%;
}

.information-contact .contact-location .location-detail {
	margin: 0 0 20px 0;
}

.information-contact .contact-location .location-title i {
	background: #b8e3f0;
	border: 2px solid #b8e3f0;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	color: #fff;
	font-size: 16px;
	height: 35px;
	margin: 10px 5px 10px 0;
	padding: 7px 8px;
	text-align: center;
	width: 35px;
}

.contact-location .store-address a i.location-on {
	font-size: 14px;
	line-height: 20px;
	vertical-align: top;
}

.information-contact h3 {
	font-size: 18px;
	line-height: 30px;
	margin: 0 0 10px;
	font-weight: 600;
	color: #111;
}

.information-contact #content>h3 {
	clear: both;
	font-size: 18px;
	font-weight: 600;
}

/* extra page stylesheet  */

.table-bordered tr td.text-right.total-amount {
	color: #111;
	font-weight: 600;
	font-size: 14px;
}

.information-contact #content .form-horizontal {
	float: left;
	width: 100%;
}

.checkout-cart h2 {
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 500;
}

.checkout-cart tr:last-child>td.text-right.heading-title {
	font: 700 18px/22px "Mulish", Helvetica, sans-serif !important;
	color: #555454;
}

.cart-form .table-bordered>thead>tr>th, .cart-form .table-bordered>tbody>tr>th, .cart-form .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .cart-form .table-bordered>tbody>tr>td, .cart-form .table-bordered>tfoot>tr>td {
	background: #FFF;
	border: 1px solid #e5e5e5;
	color: #444;
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 13px;
	line-height: 18px;
	vertical-align: middle;
}

.checkout-checkout h4 {
	font-family: "Mulish", Helvetica, sans-serif;
	font-weight: 600;
}

.affiliate-login h2, .account-login h2, .checkout-checkout h2, .product-search h2 {
	color: #111;
	font: 600 18px/25px "Mulish", Helvetica, sans-serif;
}

.well {
	background: #ffffff;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border: 1px solid #e5e5e5;
}

#collapse-checkout-confirm .table>thead>tr>td.text-left, .table>thead>tr>td.text-right, #collapse-checkout-confirm .table>thead>tr>td.text-left, .table>thead>tr>td.text-left, #collapse-checkout-confirm .table>thead>tr>td.text-left, .table>thead>tr>td.text-right, #collapse-checkout-confirm .table>thead>tr>td.text-left, .table>thead>tr>td.text-center {
	font-weight: 600;
	color: #111;
}

/* brand page */

.product-manufacturer .a-link-list {
	border: medium none;
	padding: 0;
}

.product-manufacturer .a-link-heading {
	padding: 5px 16px;
}

.product-manufacturer .a-link-heading p, .product-manufacturer .a-link-heading h2 {
	line-height: 38px;
}

.product-manufacturer .a-link-group {
	color: #222222;
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 16px;
	margin-bottom: 10px;
}

.terms-condition h3 {
	font: 400 18px/22px "Mulish", Helvetica, sans-serif;
	color: #bc3b36;
}

/* manufacturer_list & account_list &  affiliate_list - Tabular list of Brands Stylesheet */

.a-link-group {
	margin-bottom: 10px;
}

.a-link-group a {
	font-weight: bold;
}

.a-link-list {
	border: 1px solid #dbdee1;
	margin-bottom: 20px;
	padding: 5px;
	clear: both;
}

.a-link-heading {
	background: #f5f5f5;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 10px 8px;
}

.a-link-heading p, .a-link-heading h2 {
	margin: 0px;
	font-size: 15px;
	line-height: 20px;
	font-weight: 600;
	color: #222;
}

.a-link-content {
	padding: 8px;
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
}

.modal-header {
	background: #F5F5F5;
}

.modal-dialog .modal-header .close {
	font-size: 24px;
	padding: 3px 5px;
	margin-top: -5px;
	float: right;
	opacity: 0.6;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	-webkit-opacity: 0.6;
}

.modal-title {
	font-weight: bold;
}

/*----------------------- Brand Carousel CSS Start ------------------------*/

.brand-carousel .swiper-viewport {
	background: none;
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	margin: 0;
	position: relative;
	float: left;
	width: 100%;
}

.brand-carousel .box-heading {
	display: none;
}

.common-home .brand-carousel {
	float: left;
	position: relative;
	width: 100%;
}

.brand-carousel .swiper-wrapper .swiper-slide.text-center {
	padding: 10px 15px;
}

.brand-carousel .brand-items .img-responsive {
	opacity: 0.6;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	-webkit-opacity: 0.6;
	-webkit-transition: all 500ms ease 0s;
	-moz-transition: all 500ms ease 0s;
	-ms-transition: all 500ms ease 0s;
	-o-transition: all 500ms ease 0s;
	transition: all 500ms ease 0s;
	display: block;
	width: auto;
	max-width: 100%;
	text-align: center;
	margin: 0 auto;
}

.brand-carousel .brand-items .img-responsive:hover {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.brand-carousel .swiper-viewport .swiper-pager div {
	background: none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	height: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
	width: 30px;
	border: 1px solid #e5e5e5;
	color: #FFF;
	font-size: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.brand-carousel:hover .swiper-viewport .swiper-pager div {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.brand-carousel .swiper-viewport .swiper-pager div:hover {
	border-color: #111;
	background-color: #111;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-prev {
	left: 0;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-next {
	right: 0;
}

.brand-carousel .swiper-viewport .swiper-pager div::after, .brand-carousel .swiper-viewport .swiper-pager div::before {
	position: absolute;
	font-size: 22px;
	line-height: 30px;
	font-family: "Material Icons";
	height: 30px;
	width: 30px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	color: #111;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	transition: 400ms ease-in-out;
	font-weight: 400;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-prev::before {
	content: "\e314";
	left: 10px;
	right: auto;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	color: #ffffff;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-prev::after {
	content: "\e314";
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-prev:hover::before {
	left: 0;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-prev:hover::after {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	left: -17px;
	right: auto;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-next::before {
	content: "\e315";
	left: auto;
	right: 10px;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	color: #ffffff;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-next:hover::before {
	right: 0;
	opacity: 1;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-next::after {
	content: "\e315";
}

.brand-carousel .swiper-viewport .swiper-pager .swiper-button-next:hover::after {
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	left: auto;
	right: -17px;
}

/*----------------------- Brand Carousel CSS Start ------------------------*/

/* checkout/cart - cart-form Stylesheet */

.cart-form .input-group .form-control {
	width: auto;
	min-width: 50px;
	text-align: center;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
}

.cart-form .input-group-btn {
	display: table;
	float: left;
}

.checkout-checkout .panel-group {
	clear: both;
}

/* checkout success - Stylesheet */

body.checkout-success #content {
	background: url("TemplateTrip/images/checkout-success.png") no-repeat scroll center bottom;
	height: 540px;
}

body.account-success #content {
	background: url("TemplateTrip/images/account-success.png") no-repeat scroll center bottom;
	height: 540px;
}

body.product-compare #content.no-compare-products {
	background: url("TemplateTrip/images/no-compare-products.png") no-repeat scroll center bottom;
	height: 540px;
}

#content.request-not-found {
	background: url("TemplateTrip/images/request-not-found.png") no-repeat scroll center bottom;
	height: 540px;
}

#content.no-manufacture-products {
	background: url("TemplateTrip/images/no-manufacture-products.png") no-repeat scroll center bottom;
	height: 540px;
}

#content.no-wishlist-products {
	background: url("TemplateTrip/images/no-wishlist-products.png") no-repeat scroll center bottom;
	height: 540px;
}

#account-download #content {
	background: url("TemplateTrip/images/no-wishlist-products.png") no-repeat scroll center bottom;
	height: 540px;
}

body.checkout-success #content div.buttons, body.account-success #content div.buttons, #content.print-bg-image div.buttons {
	float: left;
}

/* footer */

footer {
	float: left;
	margin: 30px 0 0;
	width: 100%;
	background: #fff;
}

.ttfooter p {
	margin: 0 0 15px;
}

.ttfooter .desc {
	font: 400 14px/22px "Mulish", Helvetica, sans-serif;
	float: left;
	color: #666;
}

.wallmart_logo_block {
	float: left;
	width: 100%;
	margin: 15px 0 0;
}

.wallmart_logo_block .wallmart-list {
	float: left;
	width: 100%;
	padding: 0;
	display: block;
	list-style: none;
}

footer .footer-column .wallmart_logo_block .wallmart-list li {
	float: left;
	width: auto;
	margin: 0 20px 0 0;
}

footer .wallmart_logo_block .wallmart-list li img {
	-webkit-transition: 700ms ease-in-out;
	-moz-transition: 700ms ease-in-out;
	-ms-transition: 700ms ease-in-out;
	-o-transition: 700ms ease-in-out;
	transition: 700ms ease-in-out;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

footer .wallmart_logo_block .wallmart-list li img:hover {
	-webkit-transform: rotateY(360deg);
	-moz-transform: rotateY(360deg);
	-ms-transform: rotateY(360deg);
	-o-transform: rotateY(360deg);
	transform: rotateY(360deg);
}

footer .footer-top {
	float: left;
	position: relative;
	width: 100%;
	background: #2f4a74;
}

.footer-container {
	float: left;
	position: relative;
	width: 100%;
}

.footer-right-cms .html-content {
	width: 50%;
	float: left;
}

.bottom-footer {
	float: left;
	width: 100%;
	padding: 0;
}

.bottom-footer .ttfootertop-link {
	width: 100%;
	float: left;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-container .bottom-footer .footer-column {
	float: left;
	width: 100%;
	margin: 3px 0;
	padding: 0;
}

.bottom-footer .footer-column h5 {
	font: 600 14px/28px "Mulish", Helvetica, sans-serif;
	float: left;
	width: auto;
	margin: 0 10px 0 0;
	position: relative;
	padding: 0 10px 0 0;
}

.bottom-footer .footer-column ul li {
	width: auto;
	padding: 0 7px;
	position: relative;
	display: inline-block;
	float: left;
	text-align: left;
	margin: 0 0 1px;
}

.bottom-footer .footer-column .list-unstyled li {
	margin-bottom: 0;
	float: none;
	display: inline-block;
	vertical-align: top;
	position: relative;
	width: auto;
	text-align: left;
}

.bottom-footer .ttfootertop-link .footer-column ul li a::after {
	position: absolute;
	content: '/';
	top: 0;
	left: auto;
	right: -5px;
	bottom: 0;
	margin: auto;
	color: #ccc;
}

.bottom-footer .footer-column ul li:last-child a::after {
	display: none;
}

.footer-container .footer-column {
	float: left;
	margin: 50px 0 60px;
}

footer .footer-column .list-unstyled {
	margin: 0;
	width: 100%;
}

footer .footer-column .list-unstyled li {
	font-size: 13px;
	line-height: 24px;
}

footer a {
	color: #1f1e1e;
	cursor: pointer;
	font: 600 13px/27px "Mulish", Helvetica, sans-serif;
	text-transform: uppercase;
}

footer a:hover, footer a:focus, .footer-column .list-unstyled li a:hover::before {
	color: #b8e3f0;
}

footer .footer-column h5 {
	color: #1f1e1e;
	cursor: pointer;
	font: 600 20px/28px "Mulish", Helvetica, sans-serif;
	margin: 0 0 10px;
}

/* Footer right Contact us Stylesheet */

.footer-bottom {
	background: #111;
	float: left;
	position: relative;
	width: 100%;
}

.footer-bottom-cms {
	float: right;
	width: auto;
	padding: 15px 0;
}

.footer-bottom-link {
	float: left;
	width: auto;
	padding: 0;
}

.footer-bottom p {
	color: #cccccc;
	font: 600 13px/18px "Mulish", Helvetica, sans-serif;
	margin: 0;
	padding: 15px 0;
}

.footer-top-cms {
	float: left;
	width: 100%;
	padding: 0;
}

.footer-bottom p a {
	font-size: 13px;
	color: #cccccc;
	line-height: 24px;
}

.footer-bottom p a:hover {
	color: #fff;
}

.image-additional-container {
	float: left;
	width: 100%;
}

#goToTop::before {
	color: #fff;
	content: "\e316";
	font-family: "Material Icons";
	font-size: 22px;
	line-height: 38px;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
}

#goToTop {
	position: fixed;
	bottom: 70px;
	right: 40px;
	z-index: 2;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 30px;
	background: #b8e3f0;
	color: #fff;
	cursor: pointer;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
	-webkit-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
	overflow: hidden;
	animation: bounce 3s ease-out infinite;
	border:2px solid #fff;
}
#goToTop:hover:before, #goToTop:active:before, #goToTop:focus:before {
	color: #ffffff;
}
#goToTop::after {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	color: #fff;
	background: #2f4a74;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
#goToTop:hover::after, #goToTop:active::after, #goToTop:focus::after {
	bottom: 0%;
	top: auto;
	height: 100%;
	color: #ffffff;
}
.alert .check-circle, .alert .error-outline, .alert .info-circle {
	font-size: 18px;
	vertical-align: middle;
}
/* alert */
[data-notify="progressbar"] {
	margin-bottom: 0px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 5px;
}
.alert {
	clear: both;
}
.alert-danger {
	padding: 10px 15px;
}
.alert .close {
	color: #111;
	right: 0;
	top: 0;
}
.product-options .alert-info {
	float: left;
	margin-top: 15px;
	margin-bottom: 0;
	padding: 10px 15px;
	position: static;
	width: 100%;
}
.checkout-success #content p>a, .account-success #content p>a {
	font-weight: 600;
	font-size: 14px;
	color: #333;
}
/* breadcrumb */
.breadcrumb {
	float: right;
	line-height: 24px;
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
.breadcrumb i:hover {
	color: #111;
}
.breadcrumb a {
	color: #111;
}
.breadcrumb i {
	font-size: 16px;
	line-height: 24px;
	vertical-align: top;
}
.breadcrumb>li {
	/*white-space: nowrap;*/
	display: inline-block;
}
.breadcrumb>li+li::before {
	color: #222222;
	content: "\e5cc";
	float: left;
	font-family: "Material Icons";
	font-size: 18px;
	margin: 0 8px;
	line-height: 24px;
}
/* buttons */
.btn {
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
}

.btn-xs {
	font-size: 9px;
}

.btn-sm {
	font-size: 10.2px;
}

.btn-lg {
	padding: 8px 20px;
	font-size: 15px;
}

.btn-group>.btn, .btn-group>.dropdown-menu, .btn-group>.popover {
	font-size: 13px;
	letter-spacing: 1px;
}

.btn-group>.btn-xs {
	font-size: 9px;
}

.btn-group>.btn-sm {
	font-size: 10.2px;
}

.btn-group>.btn-lg {
	font-size: 15px;
}

.form-group .input-group-btn .btn-default {
	padding: 4px 12px;
}

.btn-group {
	float: left;
	width: 100%;
}

.btn-default {
	background: #b8e3f0;
	border: none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	font: 600 13px/24px "Mulish", Helvetica, sans-serif;
	letter-spacing: 1px;
	color: #111;
	padding: 8px 20px;
	height: 40px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
}

.btn-default::after {
	background: #2f4a74;
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: auto;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-default:hover::after, .btn-default:focus::after, .btn-default:active::after {
	bottom: 0%;
	top: auto;
	height: 100%;
}

.btn.btn-default.cnt:hover, .btn-default:hover, .btn-default:focus, .btn-default.active, .btn-default:active, .btn-default:active:focus {
	background: #b8e3f0;
	border-color: #b8e3f0;
	color: #fff;
	letter-spacing: 1px;
}

.btn.btn-danger:hover {
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
}

.btn.active, .btn:active {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.btn-primary {
	background: #b8e3f0;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	color: #fff;
	font: 600 13px/24px "Mulish", Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 8px 20px;
	border: none;
	height: 40px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
}

.btn-primary::after {
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	bottom: auto;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #2f4a74;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn-primary:hover::after, .btn-primary:focus::after, .btn-primary:active::after {
	bottom: 0;
	top: auto;
	height: 100%;
}

.btn-block {
	width: auto
}

.product-details #button-cart {
	background: #b8e3f0;
	border: none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	color: #fff;
	float: left;
	font: 500 13px/26px "Mulish", Helvetica, sans-serif;
	letter-spacing: 1px;
	line-height: 18px;
	padding: 7px 18px 8px 42px;
	position: relative;
	height: 42px;
}

.product-details #button-cart::before {
	content: "\e8cc";
	font-family: "Material Icons";
	font-size: 20px;
	left: 8px;
	margin: auto;
	position: absolute;
	right: auto;
	text-align: center;
	top: 0;
	bottom: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-weight: 400;
}

.product-details .btn-info[disabled]#button-cart:hover {
	color: #fff;
}

.product-details #button-cart:hover, .product-product #button-cart:focus, .product-product #button-cart.active {
	border-color: #2f4a74;
	background: #2f4a74;
}

.product-details .fa.fa-shopping-cart {
	padding-right: 5px;
	font-size: 17px;
}

.product-options .alert-info i.info-circle {
	font-size: 18px;
	line-height: 24px;
	vertical-align: top;
	font-weight: 500;
}

.product-details .btn-group .btn-default i {
	font-size: 18px;
	vertical-align: top;
	line-height: 30px;
}

/*button-color-*/

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus, .btn-primary.active, .open .dropdown-toggle.btn-primary, #button-login.btn.btn-primary:focus, .btn-primary:active, #button-account.btn.btn-primary:focus, #button-register.btn.btn-primary:focus, #button-shipping-method.btn.btn-primary:focus, #button-payment-address.btn.btn-primary:focus, #button-shipping-address.btn.btn-primary:focus, #button-payment-method.btn.btn-primary:focus, #button-guest.btn.btn-primary:focus, #button-review.btn.btn-primary:focus, #button-coupon.btn.btn-primary:focus, #button-voucher.btn.btn-primary:focus, #button-quote.btn.btn-primary:focus, #button-confirm.btn.btn-primary:focus, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover {
	background: #b8e3f0;
	border: none;
	color: #111;
}

.btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary.active[disabled], .btn-primary.focus[disabled], .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
	background: #2f4a74;
	border: none;
	color: #fff;
}

.btn-warning {
	color: #ffffff;
	background-color: #faa732;
}

.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-danger {
	color: #ffffff;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	background-color: #da4f49;
	letter-spacing: 1px;
	padding: 10px 12px;
}

.input-group.btn-block .btn-danger {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
}

.table-bordered .text-right .btn i {
	font-size: 18px;
	line-height: 16px;
	vertical-align: middle;
}

.table-bordered .btn i.visibility {
	font-size: 16px;
	line-height: 18px;
	vertical-align: top;
}

.btn-success {
	color: #ffffff;
	background-color: #5bb75b;
}

.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-info {
	color: #111;
	background-color: #b8e3f0;
	border-color: #b8e3f0;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.btn-info:hover, .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .open>.dropdown-toggle.btn-info.focus, .open>.dropdown-toggle.btn-info:focus, .open>.dropdown-toggle.btn-info:hover, .btn-info.active, .btn-info:active, .open>.dropdown-toggle.btn-info, .btn-info.focus, .btn-info:focus {
	background: #2f4a74;
	border-color: #2f4a74;
}

.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #777;
}

.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.btn-inverse {
	color: #ffffff;
	background-color: #363636;
}

.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: #222222;
}

.well {
	background: #fff;
	min-height: 274px;
	border: 1px solid #e5e5e5;
	margin: 0;
	line-height: 23px;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

#account-login .well h2 {
	padding-bottom: 5px;
	padding-top: 10px;
	margin: 0;
	position: relative;
	font: 600 17px/32px "Mulish", Helvetica, sans-serif;
	color: #111;
}

#account-login .new-customer .bottom-form {
	background: #f5f5f5;
	height: 60px;
	border: 1px solid #e5e5e5;
	border-top: 0;
}

#account-login .new-customer .bottom-form a {
	float: right;
	margin-top: 7px;
	margin-right: 10px;
}

#account-login .customer-login .bottom-form {
	background: #f5f5f5;
	height: 60px;
	border: 1px solid #e5e5e5;
	border-top: 0;
}

#account-login .customer-login .bottom-form a {
	padding-left: 16px;
	line-height: 60px;
	color: #666;
}

#account-login .customer-login .bottom-form a:hover {
	color: #111;
}

#account-login .customer-login .bottom-form input {
	float: right;
	margin-top: 10px;
	margin-right: 10px;
}

#account-login .customer-login .bottom-form input.btn.btn-primary:hover, #account-login .customer-login .bottom-form input.btn.btn-primary:focus {
	background: #b8e3f0;
	color: #111;
}

#account-login .customer-login .form-group {
	margin: 0;
}

#account-login strong {
	font-weight: 500;
}

#account-login .new-customer {
	margin: 0 0 15px;
}

/* list group */

.list-group .list-group-item {
	border: 1px solid #DDDDDD;
	color: #888888;
	cursor: pointer;
}

.list-group a.child-item, .list-group a.current-child-item {
	padding-left: 30px;
}

/* carousel */

.carousel-caption {
	color: #FFFFFF;
}

.carousel-control .icon-prev:before {
	font-family: 'Material Icons';
	content: '\e5cb';
}

.carousel-control .icon-next:before {
	font-family: 'Material Icons';
	content: '\e5cc';
}

/* product list */

.product-category .category-description {
	width: 100%;
	float: left;
}

.product-layout, .product-layouts {
	padding: 0 15px;
}

.product-thumb, .product-layout, .product-layouts {
	position: relative;
}

.owl-item:last-child .product-layout, .owl-item:last-child .product-layouts {
	border: none;
}

.product-thumb .image {
	border: 1px solid #e5e5e5;
	overflow: hidden;
	text-align: center;
	position: relative;
	padding: 0;
}

.product-thumb .image a {
	display: block;
	float: left;
	width: 100%;
	position: relative;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.product-thumb .image img {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.product-thumb .thumb-description {
	text-align: left;
	padding: 0;
}

.product-thumb .thumb-description .caption {
	position: relative;
	float: left;
	width: 100%;
}
.product-list .product-thumb .thumb-description .caption, .product-sort .product-thumb .thumb-description .caption {
	float: left;
	text-align: left;
	border: none;
}

.product-list .product-thumb .thumb-description {
	padding: 0 15px;
}

.product-list .product-thumb .rating, .product-list .product-thumb:hover .rating {
	display: block;
	margin: 0 0 5px;
	position: static;
	text-align: left;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	visibility: visible;
}

.product-thumb h4 {
	font: 400 14px/22px "Mulish", Helvetica, sans-serif;
	margin: 10px 0 5px;
	/*overflow: hidden;*/
	padding: 0;
	/*text-overflow: ellipsis;*/
	float: left;
	width: 100%;
	text-align: center;
}

.product-list .product-thumb h4, .product-sort .product-thumb h4 {
	margin: 0 0 5px;
}

.product-thumb h4 a {
	color: #111;
	/*white-space: nowrap;*/
}

.product-list .product-thumb h4 a, .product-sort .product-thumb h4 a {
	line-height: 24px;
	font-size: 14px;
	color: #111;
	font-weight: 600;
}

.product-thumb h4 a:hover, .product-thumb:hover h4 a {
	color: #111;
}

.product-thumb .rating {
	float: left;
	width: 100%;
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	margin: auto;
	top: auto;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
	visibility: visible;
}

.product-thumb:hover .rating {
	visibility: hidden;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

.product-grid .product-thumb .no-rating {
	display: none;
}

.rating .fa-stack {
	font-size: 8px;
}

.rating .fa-star.off, #tab-review .fa-star.off {
	color: #d9d9d9;
}

.rating .fa-star-o, #review .fa-star-o {
	color: #d9d9d9;
	font-size: 13px;
}

.fa-star-o::before {
	content: "\f005";
}

.rating .fa-star, #review .fa-star {
	color: #fbaf5d;
	font-size: 13px;
	position: relative;
}

.rating .fa-star+.fa-star-o, #review .fa-star+.fa-star-o {
	color: #ffde01;
}

h2.price {
	margin: 0;
}

.product-thumb .price {
	color: #2f4a74;
	font: 700 16px/20px "Mulish", Helvetica, sans-serif;
	clear: both;
	float: left;
	width: 100%;
}

.product-list .product-thumb .thumb-description .price {
	float: left;
	display: block;
	padding: 5px 0 7px;
}

.product-thumb .price-new {
	color: #2f4a74;
	font: 700 16px/20px "Mulish", Helvetica, sans-serif;
}

.product-thumb .price-old {
	color: #555;
	text-decoration: line-through;
	font: 400 14px/18px "Mulish", Helvetica, sans-serif;
}

.product-thumb .price-tax {
	color: #999;
	font-size: 13px;
	display: none;
}

.product-list .product-thumb .price-tax {
	display: block;
	margin: 5px 0 0;
}

/*----------------------Product-Sort css start----------------------*/

.product-layout.product-sort .product-thumb .thumb-description {
	padding: 0 15px;
}

.product-layout.product-sort .product-description {
	width: 50%;
	float: left;
	text-align: left;
	margin: 10px 0;
}

.product-layout.product-sort .product-thumb .caption .description {
	display: block;
	margin: 0 0 8px;
	font-size: 13px;
	float: left;
	width: 100%;
}

.product-layout.product-sort .product-thumb .rating, .product-layout.product-sort .product-thumb:hover .rating {
	display: block;
	margin: 0 0 7px;
	position: static;
	text-align: left;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	visibility: visible;
}

.product-layout.product-sort .product-thumb .product-price-and-shipping {
	width: 20%;
	float: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	margin: 30px 0;
}

.product-layout.product-sort .product-thumb .thumb-description .price {
	float: left;
	display: block;
}

.product-layout.product-sort .product-thumb .price-new {
	width: 100%;
	float: left;
	margin: 0 0 5px;
}

.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: auto;
	width: 20%;
	float: right;
	text-align: center;
	margin: 25px 0;
}

.product-layout.product-sort .product-thumb .button-group .tt-button-container {
	display: block;
	margin: 0 0 5px;
	float: left;
	width: 100%;
}

.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover .product-add-to-cart {
	position: static;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
}

.product-thumb .button-group .tt-button-container {
	display: inline-block;
	vertical-align: top;
	float: none;
}

.product-list .product-thumb .button-group .tt-button-container {
	width: auto;
}

.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: auto;
	width: 30%;
	float: right;
	text-align: center;
	margin: 25px 0;
}

.product-layout.product-sort .product-thumb .button-group {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	display: inline-block;
	vertical-align: top;
	position: static;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	visibility: visible;
}

.product-layout.product-sort .product-thumb .button-group button.btn-cart {
	padding: 8px 20px 8px 15px;
	width: auto;
}

.product-layout.product-sort .product-thumb .button-group .btn-cart i {
	line-height: 26px;
	height: 25px;
	width: 22px;
}

.product-layout.product-sort .product-thumb .button-group button {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	position: relative;
	top: 0;
	transform: none;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.product-layout.product-sort .product-thumb .button-group .btn-cart span {
	display: inline-block !important;
	font: 500 13px/26px "Mulish", Helvetica, sans-serif;
	text-align: center;
	color: #fff;
	letter-spacing: 1px;
	vertical-align: top;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.product-layout.product-sort .product-thumb .button-group .btn-cart:hover span, .product-layout.product-sort .product-thumb .button-group .btn-cart:focus span, .product-layout.product-sort .product-thumb .button-group .btn-cart:active span {
	color: #111;
}

/*----------------------button css start----------------------*/

.product-thumb .button-group {
	position: absolute;
	right: 0;
	top: auto;
	z-index: 1;
	width: auto;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	transition: all 500ms ease-in-out 0s;
	-webkit-transition: all 500ms ease-in-out 0s;
	-moz-transition: all 500ms ease-in-out 0s;
	-o-transition: all 500ms ease-in-out 0s;
	-ms-transition: all 500ms ease-in-out 0s;
	bottom: 10px;
	left: 0;
	display: inline-block;
}

.product-thumb:hover .button-group {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.product-list .product-thumb .button-group {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	float: left;
	width: auto;
	position: static;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	margin: 5px 0 10px;
}

.product-list .product-thumb .button-group button {
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
}

.product-list .product-thumb .button-wrapper {
	width: 27%;
	float: left;
	text-align: left;
	padding: 0 0 0 10px;
	position: static;
}

.product-list .product-thumb .button-group .btn-cart, .product-sort .product-thumb .button-group .btn-cart {
	padding: 8px 20px 8px 15px;
	width: auto;
}

.product-list .product-thumb:hover .button-group button.btn-quickview, .product-list .product-thumb:hover .button-group button.btn-compare, .product-list .product-thumb:hover .button-group button.btn-wishlist {
	transition: all 400ms ease-in-out 0ms;
	-webkit-transition: all 400ms ease-in-out 0ms;
	-moz-transition: all 400ms ease-in-out 0ms;
	-o-transition: all 400ms ease-in-out 0ms;
	-ms-transition: all 400ms ease-in-out 0ms;
}

.product-list .product-thumb .button-group .btn-cart:hover, .product-list .product-thumb .button-group .btn-cart:focus, .product-list .product-thumb .button-group .btn-cart:active {
	background: #b8e3f0;
	border-color: #b8e3f0;
}

.product-list .product-thumb .button-group .btn-cart i {
	width: 25px;
	height: 25px;
	line-height: 25px;
}

.product-list .button-group button.btn-cart span {
	color: #ffffff;
	display: inline-block !important;
	font: 600 13px/24px "Mulish", Helvetica, sans-serif;
	vertical-align: top;
	letter-spacing: 1px;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.product-list .button-group button.btn-cart:hover span, .product-list .button-group button.btn-cart:focus span, .product-list .button-group button.btn-cart:active span {
	color: #111;
}

.product-thumb .button-group button.disabled {
	cursor: not-allowed;
	opacity: 0.55;
	-moz-opacity: 0.55;
	-khtml-opacity: 0.55;
	-webkit-opacity: 0.55;
}

.product-list .button-group .btn-cart.disabled i.fa-shopping-cart {
	display: none;
}

.product-thumb .btn-cart {
	padding: 0 10px 0 0;
	background: #111;
}

.product-thumb .button-group i {
	height: 42px;
	width: 42px;
	color: #fff;
	font-size: 20px;
	line-height: 42px;
	text-align: center;
	vertical-align: top;
	position: relative;
	overflow: hidden;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
}

.product-thumb .button-group button:hover i, 
.product-thumb .button-group button:active i, 
.product-thumb .button-group button:focus i {
	color: #fff;
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

.button-group button.btn-wishlist span, .button-group button.btn-compare span {
	display: none;
}

.button-group button.btn-cart span {
	display: inline-block;
	line-height: 34px;
	font-size: 14px;
}

.product-thumb .button-group button::before {
	border-radius: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #b8e3f0;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.product-thumb .button-group button:hover::before, 
.product-thumb .button-group button:active::before, 
.product-thumb .button-group button:focus::before {
	bottom: 0%;
	top: auto;
	height: 100%;
	background: #2f4a74;
}

.product-thumb .button-group button:hover::before, 
.product-thumb .button-group button:active::before, 
.product-thumb .button-group button:focus::before {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
}

.product-thumb .button-group button {
	background: #b8e3f0;
	color: #fff;
	border: none;
	padding: 0;
	position: relative;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	float: none;
	height: 42px;
	line-height: 42px;
	text-align: center;
	width: 42px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	overflow: hidden;
	z-index: 1;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	transform: scale(0, 1);
	-webkit-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	display: inline-block;
	vertical-align: top;
}

.product-thumb:hover .button-group button {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
}

.product-thumb .button-group button:hover {
	background: #2f4a74;
}

/*--------------------------button css end----------------------------*/

/*----------------------------product_btn_style2 css start----------------------*/

.product_btn_style2 #content .product-list .product-thumb .button-group {
	position: static;
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
}

.product_btn_style2 #content .product-list .product-thumb .button-group button,
.product_btn_style2 #content .product-thumb .button-group button {
	transform: scale(0,0);
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	-khtml-border-radius: 25px;
}

.product_btn_style2 #content .product-list .product-thumb .button-group button,
.product_btn_style2 #content .product-sort .product-thumb .button-group button,
.product_btn_style2 #content .product-thumb:hover .button-group button {
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
}

.product_btn_style2 #content .product-thumb .button-group button.btn-cart {
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	-khtml-border-radius: 25px;
}

@media (max-width: 767px) {
	.product_btn_style2 #content .product-thumb .button-group {
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		-ms-transform: none;
	}
	.product_btn_style2 #content .product-thumb .button-group button {
		transform: none;
	}
}

/*----------------------------product_btn_style2 css end----------------------*/

/*----------------------------product_btn_style3 css end----------------------*/

.product_btn_style3 .product-thumb .button-group {
	top: 0;
	bottom: 0;
	height: 50px;
	margin: auto;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.product_btn_style3 .product-thumb .button-group button {
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
	transition: all 0.50s ease;
	-webkit-transition: all 0.50s ease;
	-moz-transition: all 0.50s ease;
	-o-transition: all 0.50s ease;
	-ms-transition: all 0.50s ease;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.product_btn_style3 .product-thumb:hover .button-group button {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.product_btn_style3 .product-thumb:hover .button-group button.btn-wishlist {
	transition-delay: 0.1s;
}

.product_btn_style3 .product-thumb:hover .button-group button.btn-compare {
	transition-delay: 0.2s;
}

.product_btn_style3 .product-thumb:hover .button-group button.btn-quickview {
	transition-delay: 0.3s;
}

.product_btn_style3 .product-list .product-thumb .button-group button {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
}
@media (max-width: 767px) {
	.product_btn_style3 .product-thumb .button-group {
		top: auto;
		bottom: 5px;
		height: auto;
	}
	.product_btn_style3 .product-thumb .button-group button {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
}
/*----------------------------product_btn_style3 css end----------------------*/

.product-thumb .image .btn-wishlist>span {
	display: none;
}

.fa-heart:hover::before {
	color: #111;
}

.bestseller-carousel.products-list .product-thumb.transition {
	transition: 400ms ease-in-out;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
}

#content .bestseller-carousel.products-list .image,
#content .TT-cat-carousel.products-list .image {
	width: 40%;
	float: left;
	padding: 0;
	border-right: double 4px #e5e5e5;
	border-bottom: none;
}


.bestseller-carousel.products-list .product-thumb .price,
.TT-cat-carousel.products-list .product-thumb .price {
	padding: 0 0 10px;
}

#content .bestseller-carousel.products-list .product-thumb .thumb-description,
#content .TT-cat-carousel.products-list .product-thumb .thumb-description {
	float: right;
	padding: 0 10px;
	width: 60%;
}

.bestseller-carousel.products-list .product-thumb h4,
.TT-cat-carousel.products-list .product-thumb h4  {
	margin: 0 0 8px;
}
.product-thumb .thumb-description .caption {
	height: 60px;
}
.bestseller-carousel.products-list .product-thumb .thumb-description .caption,
.TT-cat-carousel.products-list .product-thumb .thumb-description .caption {
	text-align: left;
}

.bestseller-carousel.products-list .product-thumb .rating,
.TT-cat-carousel.products-list .product-thumb .rating {
	position: static;
	margin: 0 0 8px;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	visibility: visible;
}

.bestseller-carousel.products-list .item-countdown span {
	display: none;
}

.bestseller-carousel.products-list .product-thumb .button-group button,
.TT-cat-carousel.products-list .product-thumb .button-group button {
	height: 35px;
	width: 35px;
}

.bestseller-carousel.products-list .product-thumb .button-group i,
.TT-cat-carousel.products-list .product-thumb .button-group i {
	height: 35px;
	width: 35px;
	font-size: 18px;
	line-height: 35px;
}

.bestseller-carousel.products-list .product-thumb .button-group,
.TT-cat-carousel.products-list .product-thumb .button-group {
	position: relative !important;
	height: auto;
	bottom: 0;
	float: left;
	width: 100%;
}

.btn-outofcart.disabled {
	position: absolute;
	height: 70px;
	width: 70px;
	line-height: 60px;
	background: #ff0000;
	-webkit-opacity: 0.7;
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-khtml-border-radius: 50%;
	border-radius: 50%;
	padding: 5px;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: not-allowed;
}
.product-thumb:hover .btn-outofcart.disabled {
	display: none;
}

.btn-outofcart.disabled .out.of.stock {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	font-size: 12px;
	color: #fff;
	line-height: 20px;
	text-align: center;
	float: left;
	width: 100%;
	font-weight: 600;
	padding: 10px 0;
}

/*----------------------------button css end----------------------*/

.product-list .product-thumb .button-group i.shopping-cart {
	background: none;
	border: none;
	line-height: 42px;
	width: 25px;
}

.product-list .product-thumb .button-group .btn-cart.loading i.shopping-cart {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.product-list .product-thumb .button-group button.btn-cart .loading>i {
	background: none;
	line-height: 42px;
	width: 25px;
}

.product-thumb .button-group button.loading i {
	display: none;
}

.product-category .product-thumb .button-group button.loading i {
	display: inline-block;
}

.button-group button.btn-cart span, .button-group button.btn-wishlist span, .button-group button.btn-compare span {
	display: none;
}

#column-left .product-thumb .button-group .btn-cart>span.loading, #column-right .product-thumb .button-group .btn-cart>span.loading {
	display: none !important;
}

.button-group>button.btn-cart.loading>span.loading, .button-group>button.btn-wishlist.loading>span.loading, .button-group>button.btn-compare.loading>span.loading, .button-group>button.btn-quickview.loading>span.loading {
	display: block;
}

.button-group button .loading {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.product-list .button-group button.btn-cart .loading {
	left: 13px;
	right: auto;
}

.button-group button .loading i {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: inline-block !important;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

/*----------------------------Quickview css start----------------------*/

.bootstrap-datetimepicker-widget.usetwentyfour.dropdown-menu {
	position: absolute !important;
}

#quickview-bg-block {
	display: none;
	background-color: rgba(0, 0, 0, 0.7);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	position: fixed;
	z-index: 99;
}

.quickview-load-img {
	display: none;
	position: fixed;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 9999;
	margin: auto;
}

.a-qv-close {
	position: absolute;
	color: #111;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, .1);
	width: 25px;
	height: 25px;
	text-align: center;
	margin: 0;
	right: 2px;
	top: 2px;
	z-index: 1;
	background: #fff;
}

.a-qv-close i {
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
}

.a-qv-close:hover i {
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
}

#quickview-content {
	background-color: #ffffff;
	border: 2px solid #ffffff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	display: none;
	height: 90%;
	left: 0;
	margin: 0 auto;
	overflow: auto !important;
	padding: 20px;
	position: fixed;
	right: 0;
	top: 6%;
	width: 70%;
	z-index: 999;
	transition: opacity .15s linear;
	-webkit-transition: opacity .15s linear;
	-moz-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	-ms-transition: opacity .15s linear;
}

#quickview-content::-webkit-scrollbar {
	width: 5px;
}

#quickview-content::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#quickview-content::-webkit-scrollbar-thumb {
	-webkit-box-shadow: inset 0 0 6px #111;
}

.product-quickview .btn.btn-default {
	background-color: #f5f5f5;
	border: 1px solid #e5e5e5;
	color: #666;
	padding: 6px 15px;
	height: 40px;
	transition: all 400ms ease-in-out;
}

.product-quickview .btn.btn-default::after {
	display: none;
}

.product-quickview .btn.btn-default:hover {
	color: #fff;
	background: #2f4a74;
	border: 1px solid #2f4a74;
}

.product-quickview .product-image .thumbnail {
	border: 1px solid #e5e5e5;
	margin: 0;
	padding: 0;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

.product-quickview .product-image .thumbnail img {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

.button-group button.btn-quickview span {
	display: none;
}

.product-quickview #quick-cart {
	background: #2f4a74;
	border: none;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	color: #fff;
	float: left;
	font-family: "Mulish", Helvetica, sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 20px;
	padding: 8px 15px 9px 41px;
	position: relative;
	height: 42px;
}

.product-quickview #quick-cart:hover, .product-quickview #quick-cart:focus, .product-quickview #quick-cart:active {
	background: #2f4a74;
	border-color: #2f4a74;
	color: #111;
}

.product-quickview #quick-cart.btn-info:hover {
	color: #fff;
}

.product-quickview #quick-cart::before {
	content: "\e8cc";
	font-family: "Material Icons";
	font-size: 20px;
	left: 8px;
	margin: auto;
	position: absolute;
	right: auto;
	text-align: center;
	top: 0;
	bottom: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-weight: 400;
}

@media (max-width: 767px) {
	#quickview-content {
		width: 70%;
		padding: 15px;
	}
}
@media (max-width: 543px) {
	#quickview-content {
		width: 90%;
	}
	.related-carousel.products-list h3::after {
		margin: 0 auto;
	}
}
/*----------------------------Quickview css end----------------------*/

/*product-page */

.zoomContainer {
	overflow: hidden;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
}

.product-block {
	float: left;
	width: 100%;
}

.product-product .thumbnails {
	overflow-x: hidden;
}

.product-product .product-image {
	float: left;
	width: 100%;
	margin-bottom: 0;
}

.product-product .product-image .thumbnail {
	background: none;
	border: 1px solid #e5e5e5;
	padding: 0;
	overflow: hidden;
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-khtml-transition: none;
	-o-transition: none;
	position: relative;
	margin: 0 0 20px;
}

.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}

.thumbnails>li {
	margin-left: 20px;
}

.electro-description .layout-desc {
	margin: 20px 0;
}

.image-additional>img {
	max-width: 100%;
	border: 1px solid #e5e5e5;
	border-bottom: 3px solid #e5e5e5;
}

.thumbnails .additional-images {
	border: 0 none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	position: relative;
	display: inline-block;
	float: left;
	width: 100%;
}

.thumbnails .owl-carousel.additional-images {
	float: left;
	width: 100%;
	padding: 0;
	margin-top: 0;
}

.additional-images .image-additional {
	display: block;
	margin: 5px;
	overflow: hidden;
	padding: 0;
	cursor: pointer;
	text-align: center;
}

.image-additional:hover>img, .image-additional>img.selected {
	border-color: #bbbbbb;
}

.products-list .owl-carousel, .list-products .owl-carousel {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	position: static;
	margin-bottom: 0;
	width: auto;
}
@media (min-width: 1300px) and (max-width: 1650px) {
	.container {
		width: 1280px;
	}
}

@media (min-width: 1200px) and (max-width: 1299px) {
	.container {
		width: 1200px !important;
	}
}
@media (min-width: 992px) and (max-width: 1299px) {
	.bestseller-product {
		width: 58.33333%;
	}
}

@media (min-width: 1200px) {
	.product-left {
		float: left;
		text-align: right;
		padding: 0 20px 0 10px;
		border-right: 1px solid #e5e5e5;
	}

	.product-right {
		float: left;
		text-align: left;
		padding: 0 10px 0 20px;
	}
}

@media (max-width: 1400px) {
	.product-images .additional-images-container {
		width: 370px;
	}
	#column-left .products-carousel, #column-right .products-carousel {
		padding: 0 5px;
	}
	.product-layout.product-sort .product-description {
		margin: 0;
	}
	.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover {
		margin: 15px 0;
	}
	.product-layout.product-sort .product-thumb .product-price-and-shipping {
		margin: 20px 0;
	}
}

@media (min-width: 768px) and (max-width: 1201px) {
	.block-description {
		width: 75%;
	}
	.category-image {
		width: 25%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#column-left .panel-default>.list-group, #column-right .panel-default>.list-group {
		padding: 0 8px;
	}
}

@media (max-width: 1299px) {
	#cart .cart-heading {
		display: none;
	}
	#cart #cart-total {
		right: -10px;
	}
	#cart .dropdown-menu::before {
		right: 0;
	}
	#column-left .product-thumb .thumb-description, #column-right .product-thumb .thumb-description {
		padding: 0 8px;
	}
	.product-images .additional-images-container {
		width: 300px;
	}
	.button-group button.btn-cart span {
		display: none;
	}
	.product-layout.product-grid {
		width: 33.33%;
	}
	.layout-desc tr td.col-sm-7 {
		width: 90%;
	}
	.tt-latest-product .product-thumb .caption .description {
		display: none;
	}
	footer a {
		font-size: 12px;
	}
}

@media (max-width: 1199px) {
	#content .page-main {
		padding: 15px;
	}
	.user-info {
		padding: 37px 10px;
	}
	.user-info::after,
	.user-info::before {
		display: none;
	}
	.ttspecialmain {
		margin: 0;
	}
	.product-images .additional-images-container {
		width: 95%;
	}
	#top-links>ul>li.header-mail {
		display: none;
	}
	.header-phone a::before {
		left: 10px;
	}
	.header-phone a {
		padding: 6px 15px 6px 60px;
	}
	.TTProduct-Tab .nav-tabs>li>a {
		padding: 12px 14px;
	}
	.footer-container .footer-column {
		margin: 40px 0;
	}
	.product-list .product-thumb .thumb-description .caption {
		padding: 0;
	}
	#form-language .dropdown-toggle>img, .header-top-right #form-currency .dropdown-toggle>strong {
		margin: 0;
	}
	.product-left,
	.product-right {
		width: 100%;
		float: left;
		padding: 0;
	}
	.product-details .rating {
		float: left;
		width: 100%;
		text-align: left;
	}
	.product-details table.product-info,
	.product-product .product-details .addthis_toolbox > a {
		float: left;
	}
	#column-left .left-right-inner > div, #column-right .left-right-inner > div {
		padding: 5px;
	}
	#column-left .product-thumb .thumb-description, 
	#column-right .product-thumb .thumb-description {
		padding: 0 8px;
		width: 60%;
	}
	#column-left .products-carousel.owl-carousel .owl-nav, #column-right .products-carousel.owl-carousel .owl-nav {
		right: 10px;
		top: 10px;
	}
	footer .footer-column h5 {
		font-size: 16px;
	}
}

@media (min-width: 992px) {
	#page::after {
		background: rgba(0,0,0,0.6);
		position: fixed;
		top: 0;
		bottom: 0;
		content: '';
		left: 0;
		right: 0;
		-webkit-transition: all 400ms ease-in-out;
		-moz-transition: all 400ms ease-in-out;
		-ms-transition: all 400ms ease-in-out;
		-o-transition: all 400ms ease-in-out;
		transition: all 400ms ease-in-out;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		-khtml-opacity: 0;
		opacity: 0;
		visibility: hidden;
		z-index: 2;
	}
	body.nav-open #page::after, 
	body.user-open #page::after,
	body.cart-open #page::after,
	body.currency-open #page::after,
	body.language-open #page::after,
	#page.menu_hover::after {
		-webkit-opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		visibility: visible;
	}
	.bottom-footer .ttfootertop-link .footer-column h5::before {
		position: absolute;
		content: ":";
		right: 0;
		left: auto;
		top: 0;
		bottom: 0;
	}
}

@media (max-width: 991px) {
	.header-bottom-block {
		padding: 0;
		background: none;
		position: absolute;
		left: 0;
		right: auto;
		top: 0;
		bottom: auto;
	}
	.full-header > .container {
		position: relative;
	}
	.full-bottom {
		display: none;
	}
	.header-right {
		position: absolute;
		left: auto;
		right: 10px;
		top: 0;
		z-index: 3;
	}
	.user-info .dropdown-menu.dropdown-menu-right.account-link-toggle {
		top: 62px;
	}
	.user-info {
		padding: 7px 0;
	}
	.user-info .dropdown>a>.user {
		font-size: 28px;
		color: #ffffff;
	}
	.user-info .dropdown > a::after {
		display: none;
	}
	.cart {
		margin: 12px 0;
		padding: 0;
	}
	#cart > button > i.shopping-cart {
		height: 45px;
		line-height: 45px;
		width: 45px;
	}
	#cart #cart-total {
		right: 0;
		top: 5px;
	}
	.header-right .whishlist.pull-left .material-icons {
		font-size: 22px;
	}
	#top-links>ul>li:last-child {
		padding-right: 10px;
	}
	.featured-carousel.products-list {
		margin: 0;
	}
	#form-currency .btn-group ul.dropdown-menu.currency-toggle, #form-language .btn-group ul.dropdown-menu.language-toggle, #top-links .dropdown .dropdown-menu {
		top: 26px;
	}
	#form-language .btn-group ul.dropdown-menu.language-toggle {
		left: 0;
		right: auto;
	}
	#form-language .btn-group ul.dropdown-menu.language-toggle::before {
		right: auto;
		left: 10px;
	}
	#ttcmsheader .ttheader-service {
		display: inline-block;
		float: none;
		vertical-align: top;
	}
	.bestseller-product {
		float: left;
		width: 100%;
	}
	.header-bottom-block .container {
		position: relative;
	}
	#top-links>ul>li {
		padding: 7px 10px 10px;
	}
	.right-block {
		bottom: 0;
		float: right;
		position: absolute;
		right: 0;
	}
	.header-right-cms {
		display: none;
	}
	.header-phone.pull-left {
		display: inline-block;
		float: none !important;
		margin: 10px 50px;
		text-align: center;
		padding: 0;
	}
	.header-left {
		float: left;
		text-align: center;
		width: 100%;
	}
	#logo {
		display: none;
	}
	#mobile-logo {
		display: inline-block;
		float: none;
		text-align: center;
		vertical-align: top;
		width: auto;
		margin: 15px 0 15px;
		/*z-index: 9;*/
		z-index: 1;
		position: relative;
		height: auto;
	}
	.tab-content {
		margin: 0;
	}
	.ttproduct-main {
		margin: 0 0 10px;
	}
	.bestseller-carousel.products-list .product-thumb .thumb-description {
		padding: 0 8px;
	}
	.product-layout.product-sort .product-description {
		width: 100%;
	}
	.product-layout.product-sort .product-thumb .product-price-and-shipping {
		width: 100%;
		float: left;
		text-align: left;
		margin: 0;
	}
	.product-layout.product-sort .product-thumb .price-new {
		width: auto;
		float: left;
		margin: 0 5px 0 0;
	}
	.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover {
		width: 100%;
		float: left;
	}
	.product-layout.product-sort .product-thumb .button-group {
		float: left;
		text-align: left;
		width: 100%;
	}
	.product-layout.product-sort .product-thumb .button-group .tt-button-container {
		float: none;
		width: auto;
		display: inline-block;
		vertical-align: top;
	}
	.layout-desc tr td.col-sm-4 {
		float: left;
		width: 100%;
	}
	.layout-desc tr td.col-sm-7 {
		width: 100%;
	}
	.product-percent {
		left: 10px;
	}
	#column-left .img-responsive, #column-right .img-responsive {
		width: auto;
	}
	.bestseller-carousel.products-list .product-thumb .button-group {
		opacity: 0;
		-moz-opacity: 0;
		-khtml-opacity: 0;
		-webkit-opacity: 0;
		transition: all 400ms ease-in-out;
		-webkit-transition: all 400ms ease-in-out;
		-moz-transition: all 400ms ease-in-out;
		-o-transition: all 400ms ease-in-out;
		-ms-transition: all 400ms ease-in-out;
		visibility: hidden;
	}
	.bestseller-carousel.products-list .product-thumb:hover .button-group {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		visibility: visible;
	}
	#top-links {
		float: left;
		width: 100%;
	}
	.product-thumb .image .btn-wishlist, .product-thumb .image .btn-compare, .product-thumb .image .btn-quickview {
		-webkit-opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		bottom: auto;
	}
	#top-links>ul {
		display: inline-block;
		float: none;
		margin: 0;
		vertical-align: top;
	}
	.product-thumb .price, .product-thumb:hover .price {
		display: block;
	}
	.product-thumb .thumb-description .caption .ttproducthover .product-add-to-cart {
		bottom: 0px;
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
	.product-thumb:hover .thumb-description .caption .ttproducthover .product-add-to-cart {
		bottom: 0;
	}
	.product-thumb .thumb-description .caption .ttproducthover, .product-thumb:hover .thumb-description .caption .ttproducthover {
		height: 36px;
	}
	.ttcat-main .products-carousel.owl-carousel .owl-nav button {
		height: 30px;
		width: 30px;
	}
	.ttcat-main .products-carousel.owl-carousel .owl-nav button::after, .ttcat-main .products-carousel.owl-carousel .owl-nav button::before {
		height: 30px;
		width: 30px;
		font-size: 22px;
		line-height: 30px;
	}
	.ttcat-main .products-carousel.owl-carousel .owl-nav button.owl-prev::before, .ttcat-main .products-carousel.owl-carousel .owl-nav button.owl-next::before {
		font-size: 22px;
		line-height: 30px;
	}
	#cart .cart-heading {
		display: none;
	}
	#cart .dropdown-menu {
		top: 57px;
	}
	#cart .dropdown-menu::after, .user-info .dropdown ul::after {
		right: 0;
	}
	#ttcmstestimonial .owl-dots {
		margin: 10px 0 0;
	}
	#column-left .product-thumb .image, #column-right .product-thumb .image, #header-left .product-thumb .image, #header-right .product-thumb .image, #footer-left .product-thumb .image, #footer-right .product-thumb .image {
		width: auto;
	}
	#column-left .products-carousel.owl-carousel .owl-nav, 
	#column-right .products-carousel.owl-carousel .owl-nav {
		right: 40px;
		top: 16px;
	}
	.ttfooter .desc {
		display: inline-block;
		float: none;
		width: 80%;
	}
	.category-pagination {
		margin: 0 0 15px;
	}
	.product-list .product-thumb .button-group i.fa-shopping-cart {
		width: 25px;
	}
	footer .footer-top {
		text-align: center;
	}
	.footer-bottom {
		text-align: center;
	}
	footer .footer-top::before {
		height: 125px;
	}
	.footer-bottom-cms {
		float: none;
		width: auto;
		padding: 0 0 10px;
		text-align: center;
		display: inline-block;
		vertical-align: top;
	}
	.footer-bottom p {
		padding: 8px 0 5px;
	}
	.footer-bottom-link {
		float: left;
		width: 100%;
		display: inline-block;
		vertical-align: top;
		text-align: center;
	}
	.footer-top-block {
		display: inline-block;
		float: none;
		padding: 20px 0 0;
		vertical-align: top;
	}
	.footer-container {
		padding: 15px 0;
	}
	.footer-container .footer-column {
		width: 100%;
		margin: 0;
	}
	.footer-right-cms .html-content {
		width: 100%;
		float: left;
	}
	.footer-column.footer-left-cms {
		margin: 20px 0 0;
	}
	footer .footer-column ul {
		padding: 0 10px;
	}
	footer .footer-column h5.toggle:hover {
		cursor: pointer;
	}
	footer .footer-column h5.toggle {
		padding: 10px;
		margin: 0;
		position: relative;
		font: 600 15px/22px "Mulish", Helvetica, sans-serif;
		display: block;
		width: 100%;
	}
	.footer-column.dwld .widget-title.toggle {
		display: none;
	}
	footer .footer-column h5.toggle:hover {
		background: rgba(255, 255, 255, .05);
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		-khtml-border-radius: 10px;
		border-radius: 10px;
	}
	footer .footer-column h5.toggle::after {
		content: "\e145";
		display: block;
		font-family: "Material Icons";
		font-size: 18px;
		font-weight: 600;
		position: absolute;
		right: 10px;
		left: auto;
		top: 10px;
	}
	.bottom-footer .ttfootertop-link {
		width: 100%;
		padding: 0;
		margin: 0;
		border-top: none;
	}
	.footer-container .bottom-footer .footer-column {
		margin: 0;
	}
	.wallmart_logo_block {
		float: none;
		width: auto;
		margin: 10px 0 0;
		text-align: center;
		vertical-align: top;
		display: inline-block;
	}
	.wallmart_logo_block .wallmart-list {
		display: block !important;
	}
	footer .footer-column.active h5.toggle:after, 
	footer .contact-us.active h5.toggle:after, footer .follow-us.active h5.toggle:after, 
	footer #ttcmsfooter.active h5.toggle:after,
	footer #ttcmspaymentlogo.active h5.toggle:after {
		content: "\e15b";
		font-weight: normal;
	}
	#column-left .bestseller-carousel .products-carousel.owl-carousel .owl-nav {
		right: 40px;
	}
	/*------------------------------------- Column Toggle CSS Start ------------------------------------------*/
	.category-image .category-bg {
		float: left;
		padding: 0;
		margin: 0 0 15px;
		width: 100%;
	}
	body .container>.row>#content {
		float: left;
		width: 100%;
	}
	body .container>.row>#column-left, 
	body .container>.row>#column-right,
	#column-left,
	#column-right {
		float: left;
		width: 100%;
		display: block !important;
		margin: 20px 0 0;
	}
	#column-left .swiper-viewport, #column-right .swiper-viewport {
		background: none;
		width: auto;
	}
	#column-left #ttcmstestimonial .title_block, 
	#column-right #ttcmstestimonial .title_block, 
	#column-left .box-heading, 
	#column-right .box-heading, 
	#column-left .panel-heading, 
	#column-right .panel-heading, 
	#column-left .featured-carousel.products-list .box-heading, 
	#column-right .featured-carousel.products-list .box-heading {
		cursor: pointer;
		margin: 0;
	}
	#column-left .category-treeview.panel-default, #column-right .category-treeview.panel-default {
		padding: 10px;
		border: none;
	}
	#column-left .left-right-inner > div.swiper-viewport, #column-right .left-right-inner > div.swiper-viewport {
		border: none;
	}
	#column-left .box-heading>h3::after, #column-right .box-heading>h3::after {
		display: none;
	}
	#column-left .left-right-inner>div, #column-right .left-right-inner>div {
		padding: 10px;
		border: none;
	}
	#column-left .product-thumb:first-child, #column-right .product-thumb:first-child {
		padding-top: 20px;
	}
	#column-left .special-items.products-carousel .owl-item {
		padding: 10px;
	}
	#column-left .special-carousel.products-list .product-thumb, #column-right .special-carousel.products-list .product-thumb {
		padding: 0 10px 20px;
		border: 1px solid #e5e5e5;
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		-khtml-border-radius: 8px;
		border-radius: 8px;
	}
	#column-left .toggle::after, #column-right .toggle::after {
		content: "\e145";
		float: right;
		color: #111;
		font-size: 16px;
		font-weight: 600;
		position: absolute;
		right: 15px;
		left: auto;
		top: 12px;
		display: block;
		background: none;
		font-family: "Material Icons";
	}
	#column-left .panel-default.active>div.toggle:after, 
	#column-left .products-list.active>div.toggle:after, 
	#column-left .list-products.active>div.toggle:after, 
	#column-right .panel-default.active>div.toggle:after, 
	#column-right .products-list.active>div.toggle:after, 
	#column-right .list-products.active>div.toggle:after, 
	#ttcmstestimonial .tttestimonial.active .title_block.toggle:after,
	#ttcmsservices .mianservice.active .title_block.toggle:after {
		content: "\e15b";
	}
	#column-left .products-list>.row, #column-right .products-list>.row, #header-left .products-list>.row, #header-right .products-list>.row, #footer-left .products-list>.row, #footer-right .products-list>.row, #column-left .products-carousel, #column-right .products-carousel {
		float: left;
		width: 100%;
	}
	#column-left .list-group .list-group-item, #column-right .list-group .list-group-item {
		float: left;
		width: 100%;
	}
	#column-left .panel>.list-group, #column-right .panel>.list-group {
		float: left;
		width: 100%;
		padding: 0 15px 15px;
		margin: 10px 0 0;
	}
	/*-------------------------------- CateGory Filter CSS Start --------------------------------------*/
	#column-left .panel-default.option-filter, #column-right .panel-default.option-filter {
		display: none;
	}
	.option-filter-box .list-group .list-group-items {
		float: left;
		width: 100%;
		padding: 5px 0;
	}
	.option-filter-box .list-group .list-group-items:first-child {
		padding-top: 0;
	}
	.category-treeview ul {
		float: left;
		width: 100%;
		margin: 0;
	}
	.option-filter-box {
		background: #ffffff;
		border: 1px solid #e5e5e5;
		border-radius: 10px;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		-khtml-border-radius: 10px;
		float: left;
		margin: 20px 0 0;
		padding: 20px;
		width: 100%;
	}
	.option-filter-box .list-group-items>.list-group-item {
		padding: 10px 0;
	}
	.option-filter-box a.list-group-item::after {
		content: "\e5cf";
		font-size: 16px;
		color: #333;
		position: absolute;
		right: 10px;
		top: 10px;
		font-weight: 500;
	}
	.option-filter-box a.list-group-item.collapsed::after {
		content: "\e5ce";
	}
	.option-filter-box .list-group .list-group-item, .option-filter-box .radio, .option-filter-box .checkbox {
		width: 100%;
		float: left;
		background: #FFF;
		border: none;
		font-weight: 500;
	}
	.option-filter-box a.list-group-item {
		color: #111;
		padding: 10px 0;
	}
	.option-filter-box .list-group-items div.list-group-item {
		display: none;
		padding: 0 0 10px;
	}
	.option-filter-box .list-group {
		float: left;
		width: 100%;
		margin: 0;
	}
	.option-filter-box .panel-footer {
		float: left;
		width: 100%;
		background: #FFF;
		padding: 0;
	}
	.option-filter-box .btn.btn-primary {
		padding: 4px 18px;
	}
	.option-filter-box .checkbox>label:hover, .option-filter-box .checkbox>label:hover {
		color: #111;
	}
	.product-thumb .button-group i.fa-shopping-cart {
		width: 36px;
	}
	.bottom-footer {
		padding: 0;
	}
	.bottom-footer .footer-column .list-unstyled li {
		width: 100%;
		padding: 0;
	}
	.bottom-footer .footer-column ul li a::after {
		display: none;
	}
	.product-quickview .product-image .thumbnail {
		margin: 0 0 15px;
	}
	#content .category-filter {
		margin: 20px 0;
	}
	.product-quickview .product-details {
		margin: 10px 0 0;
	}
	/*-------------------------------- CateGory Filter CSS Start --------------------------------------*/
	/*------------------------------------- Column Toggle CSS End ------------------------------------------*/
}

@media (min-width: 768px) {
	/* fixed colum left + content + right*/
	#column-left .product-layout .col-md-3 {
		width: 100%;
	}
	#column-left+#content+#column-right .product-layout .col-md-3 {
		width: 100%;
	}
	#content+#column-right .product-layout .col-md-3 {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.header-phone {
		padding: 0;
	}
	.header-bottom-block .container {
		padding: 0 15px;
	}
	#top-links>ul #form-language span, #top-links>ul #form-currency span {
		display: inline-block !important;
	}
	.header-top-left {
		width: 100%;
	}
	#top {
		padding: 0;
		text-align: center;
	}
	#top .container {
		padding: 0;
	}
	#top-links>ul>li::after {
		top: 3px;
	}
	.header-top-right {
		display: inline-block;
		float: none;
		vertical-align: top;
	}
	#top .btn-link, #top-links li, #top-links a {
		font-size: 13px;
		line-height: 24px;
	}
	#form-currency i, #form-language i {
		line-height: 8px;
	}
	#form-currency .btn-group ul.dropdown-menu.currency-toggle, #form-language .btn-group ul.dropdown-menu.language-toggle, #top-links .dropdown .dropdown-menu {
		top: 26px;
	}
	.TTProduct-Tab .tthometab {
		background: none;
	}
	.TTProduct-Tab .box-heading {
		text-align: center;
		margin: 0 0 10px;
		width: 100%;
	}
	.box-heading > h3::after {
		right: 0;
	}
	.TTProduct-Tab .box-heading > h3::after{
		margin:0 auto;	
	}
	.tt-titletab {
		background: none;
		border: none;
		padding: 5px 0;
	}
	.product-thumb .button-group button {
		transform: none;
		-webkit-transform: none;
		-moz-transform: none;
		-o-transform: none;
		-ms-transform: none;
		transform: none;
	}
	.category-filter .filter-grid-list button {
		margin: 5px 5px 0;
	}
	.select-wrapper::after {
		top: 6px;
	}
	.top-column {
		margin: 0;
	}
	.TTProduct-Tab .tab-box-heading {
		float: left;
		margin: 0 0 10px;
		width: 100%;
	}
	.TTcategory-tab .product-thumb .thumb-description {
		float: right;
	}
	.TTcategory-tab .product-thumb .image {
		float: left;
	}
	.TTProduct-Tab.products-list .owl-carousel {
		position: relative;
	}
	.TTProduct-Tab .products-carousel.owl-carousel .owl-nav {
		position: absolute;
		top: -67px;
		right: 15px;
		width: 70px;
	}
	.ttcat-main .products-carousel.owl-carousel .owl-nav {
		top: -72px;
	}
	.bestseller-carousel.products-list {
		margin: 0;
	}
	.product-list.product-layout {
		margin: 0;
	}
	.product-list .product-thumb .button-wrapper {
		width: 100%;
		padding: 0;
	}
	.category-bg {
		float: none;
		display: inline-block;
		vertical-align: top;
		width: auto;
		margin: 0 0 10px;
	}
	.product-tabs {
		width: 100%;
		float: left;
		margin: 10px 0 30px;
		padding: 10px 15px;
	}
	.ttproduct-main {
		margin: 0;
	}
	.category-products .product-grid {
		width: 50%;
	}
	.information-contact .contact-location .col-sm-3 {
		width: 50%;
		float: left;
	}
	.product-list .product-thumb .thumb-description .caption {
		width: 100%;
		border-right: none;
	}
	.top-column {
		padding: 0 5px;
	}
	.header-top-right .dropdown span.hidden-xs, .header-top-right #wishlist-total span {
		display: block !important;
	}
	.header-top-right .dropdown a.dropdown-toggle, .header-top-right #wishlist-total {
		padding: 0;
	}
	.footer-bottom p {
		padding: 8px 0;
	}
	footer .footer-top::before {
		height: 135px;
	}
	.bestseller-carousel.products-list .product-thumb .button-group {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		visibility: visible;
		bottom: 0;
	}
	.product-thumb .button-group, .product-thumb:hover .button-group {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		visibility: visible;
		bottom: 5px;
	}
	.product-thumb .rating {
		bottom: 55px;
	}
	.product-thumb:hover .rating {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		visibility: visible;
	}
	.product-list .product-thumb .button-group {
		width: auto;
		float: left;
	}
	.related-carousel.products-list .owl-wrapper-outer {
		padding: 0 0 20px;
	}
	.product-thumb .sale-icon, .product-sale-icon {
		display: block;
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
	.product-thumb .percent {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
	.product-thumb:hover .sale-icon, .product-sale-icon {
		left: 15px;
	}
	.product-thumb:hover .percent {
		right: 15px;
	}
	.category-products .product-layout.product-grid {
		width: 50%;
	}
	.TTProduct-Tab .tab-content {
		margin: 0;
	}
	#page .page-title-wrapper {
		text-align: center;
	}
	.page-title-wrapper .page-title {
		float: left;
		width: 100%;
		text-align: center;
		line-height: 24px;
		margin: 0;
	}
	.breadcrumb {
		float: none;
		margin: 0 auto;
		display: inline-block;
		text-align: center;
		width: 100%;
		vertical-align: top;
	}
	.page-title-wrapper {
		padding: 12px 0;
		margin: 0 0 20px;
	}
	.footer-bottom-link {
		text-align: center;
		width: 100%;
	}
	.footer-bottom-cms {
		width: 100%;
	}
	#goToTop {
		right: 20px;
	}
	.TTProduct-Tab .nav-tabs>li>a {
		padding: 8px 18px;
	}
	.TTProduct-Tab .nav-tabs>li::after, .TTProduct-Tab .nav-tabs>li>a::after {
		bottom: -6px;
	}
	.TTProduct-Tab .nav-tabs>li.active>a::before {
		bottom: -9px;
	}
	.TTcategory-tab.products-carousel.owl-carousel.owl-theme .owl-wrapper-outer {
		padding: 0;
	}
	.bestseller-carousel.products-list .product-thumb .thumb-description {
		width: 60%;
		border: none;
		text-align: left;
		float: left;
	}
	.category-filter .filter-text {
		padding: 0;
	}
	.category-filter .filter-text .input-group-addon.control-label {
		display: none;
	}
	.category-filter .filter-grid-list {
		padding: 0;
	}
	.category-filter .filter-show {
		margin: 0;
		padding: 0;
	}
	#content .category-filter {
		padding: 10px;
		margin: 20px 0;
	}
	.category-filter .filter-show .filter-selection {
		width: 60px;
		float: left;
	}
	.filter-sort-by .form-control, .filter-show .filter-selection .form-control {
		padding: 6px;
	}
	.category-filter .filter-sort-by {
		width: 41%;
		max-width: 110px;
		padding: 0;
		margin: 0;
	}
	.category-filter .filter-sort-by .filter-selection {
		width: 110px;
	}
	.bestseller-carousel.products-list .product-thumb .price {
		padding: 0 0 8px;
	}
}

@media (min-width: 544px) and (max-width: 700px) {
	.product-layout.product-sort .product-thumb .button-group .tt-button-container {
		display: block;
	}
	.product-list .product-thumb .button-group .tt-button-container {
		display: block;
		margin: 0 auto 5px;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	.product-product .product-image {
		margin: 0 auto;
		width: 80%;
		float: none;
	}
	.product-images .additional-images-container {
		width: 300px;
	}
	.category-description .category-image {
		float: left;
		width: 30%;
	}
	.category-description .block-description {
		float: right;
		width: 70%;
		padding: 0 15px 0 0;
	}
	.bestseller-carousel.products-list .image {
		width: 25%;
	}
	.bestseller-carousel.products-list .product-thumb .thumb-description {
		padding: 0 15px;
	}
}

@media (max-width: 543px) {
	.special-countdown .product-thumb .button-group button.btn-quickview {
		margin: 2px 2px 0 2px;
	}
	.product-layout.product-sort .product-thumb .button-group {
		width: 100%;
	}
	.product-layout.product-sort .product-thumb .thumb-description {
		padding: 0 0 0 15px;
	}
	.product-layout.product-sort .product-thumb h4 {
		margin: 0 0 5px;
	}
	.product-thumb .button-group i {
		height: 35px;
		width: 35px;
		font-size: 18px;
		line-height: 35px;
	}
	.product-thumb .button-group button {
		height: 35px;
		line-height: 35px;
		width: 35px;
	}
	.product-thumb .rating {
		bottom: 45px;
	}
	.tt-latest-product .product-thumb h4 a {
		font: 500 15px/20px "Mulish", Helvetica, sans-serif;
	}
	.product-list .product-thumb .thumb-description {
		padding: 0 0 0 5px;
	}
	.product-list .product-thumb .button-group .btn-cart {
		padding: 4px 10px;
	}
	.product-thumb .button-group .tt-button-container {
		width: 35px;
		height: 35px;
	}
	.product-layout.product-sort .product-thumb .button-group button.btn-cart {
		padding: 4px 12px 4px 12px;
	}
	.product-list .product-thumb .button-group .btn-cart i {
		width: 20px;
	}
	.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover {
		width: 100%;
		float: left;
		text-align: left;
	}
	.product-layout.product-sort .product-thumb .thumb-description .price {
		padding: 0 0 10px;
	}
	.product-list .product-thumb .thumb-description {
		padding: 0 5px;
	}
	.product-product .nav-tabs>li>a {
		padding: 10px;
	}
	.TTProduct-Tab .tab-box-heading {
		float: none;
		text-align: center;
		width: 90%;
		padding: 15px 0 40px;
		display: inline-block;
		margin: 0;
	}
	.TTProduct-Tab .nav.nav-tabs {
		display: inline-block;
		float: none;
		vertical-align: top;
		width: 80%;
		text-align: center;
	}
	.TTProduct-Tab .tthometab, .tt-titletab {
		text-align: center;
		margin: 0 0 50px 0;
	}
	.box-heading {
		text-align: center;
		background: none;
		border: #ffffff;
		margin: 0 0 50px;
	}
	.tt-latest-product .box-heading>h3 {
		float: left;
		width: 100%;
	}
	.TTProduct-Tab .products-carousel.owl-carousel .owl-nav {
		top: -45px;
		right: 0;
	}
	.TTProduct-Tab .nav.nav-tabs li {
		float: left;
		width: 100%;
		text-align: center;
		margin: 0 0 5px;
	}
	.TTProduct-Tab .tthometab, .tt-titletab {
		padding: 0;
		margin: 0 0 10px;
		border: none;
		background: none;
	}
	.products-carousel.owl-carousel .owl-nav, .tt-carousel.owl-carousel .owl-nav {
		left: 0;
		right: 0;
		margin: 0 auto;
		top: 60px;
		bottom: auto;
		width: 70px;
	}
	.layout-desc tr td {
		float: left;
		width: 100%;
	}
	.layout-desc tr td .image>img {
		height: auto;
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 480px) {
	#mobile-logo img{
		max-width: 150px;
	}
	#mobile-logo .img-responsive {
		max-width: 150px;
	}
	.header-phone.pull-left {
		margin: 0 0 10px;
	}
	.product-product .nav.nav-tabs{
		margin-bottom: 15px;
	}
	/*.header-left {
		float: left;
		padding: 0 0 0 40px;
		width: auto;
	}*/
	.user-info .dropdown > a > .user {
		font-size: 24px;
		line-height: 53px;
		width: 40px;
	}
	.user-info .dropdown-menu.dropdown-menu-right.account-link-toggle::before {
		right: 0;
	}
	.user-info .dropdown-menu.dropdown-menu-right.account-link-toggle {
		top: 55px;
	}
	#cart > button > i.shopping-cart {
		font-size: 24px;
		width: 40px;
	}
	.header-bottom-block .container {
		padding: 0 10px;
	}
	#cart .dropdown-menu {
		max-width: 250px;
		top: 50px;
	}
	footer .footer-column .wallmart_logo_block .wallmart-list li {
		margin: 0 8px;
	}
	footer .footer-top {
		padding: 0;
	}
	.product-details h1.product-name {
		font-size: 15px;
	}
	.product-layout.product-sort .product-thumb .thumb-description .price {
		padding: 0 0 8px;
	}
	.product-product .product-image .thumbnail {
		margin: 0 0 15px;
	}
	#form-language .btn-group ul.dropdown-menu.language-toggle {
		left: 0;
		right: auto;
	}
	.header-cart-toggle .table .text-center img {
		width: 60px;
	}
	.product-thumb {
		margin: 0 0 20px;
	}
	.responsive_style2 .product-thumb .button-group .btn-wishlist,
	.responsive_style2 .product-thumb .button-group .btn-compare {
		display: none;
	}
	.tt-special-countdown .product-thumb .button-group .btn-wishlist,
	.tt-special-countdown .product-thumb .button-group .btn-compare,
	.bestseller-items .product-thumb .button-group .btn-wishlist,
	.bestseller-items .product-thumb .button-group .btn-compare {
		display: inline-block;
	}
	.bestseller-carousel.products-list {
		margin: 0;
	}
	.header-cart-toggle .table-striped tr .text-center.image {
		text-align: left;
	}
	.product-thumb .price, .product-thumb .price-new {
		font-size: 14px;
	}
	.product-thumb .price-old {
		font-size: 13px;
	}
	#top-links>ul .header-mail {
		float: left;
		width: 100%;
		text-align: center;
		padding: 5px 0 0 0;
	}
	#top-links>ul>li {
		padding: 4px;
	}
	#top-links>ul>li.header-mail::after {
		display: none;
	}
	#top-links>ul>li {
		float: none;
		position: relative;
	}
	#form-language .btn-group ul.dropdown-menu.language-toggle::before {
		left: 10px;
		right: auto;
	}
	.alert.alert-success.animated.fadeInDown {
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.header-cart-toggle .table .text-center img {
		width: 60px;
	}
	.ttspecial-latest {
		margin: 0 0 20px;
	}
	.product-thumb .image .button-group .btn-wishlist::after, .product-thumb .image .button-group .btn-compare::after, .product-thumb .image .button-group .btn-quickview::after {
		display: none;
	}
	#product-category .product-list.product-layout .product-thumb .button-group button, #product-category .product-layout.product-sort .product-thumb .button-group button {
		height: 36px;
		line-height: 36px;
		width: 36px;
	}
	#product-category .product-list.product-layout .product-thumb .button-group button.btn-cart, #product-category .product-layout.product-sort .product-thumb .button-group button.btn-cart {
		padding: 5px 0;
	}
	.product-list .button-group button.btn-cart span {
		display: none !important;
	}
	.bestseller-carousel.products-list .product-thumb .button-group button {
		height: 32px;
		line-height: 32px;
		width: 32px;
	}
	.bestseller-carousel.products-list .product-thumb .button-group i {
		height: 32px;
		line-height: 32px;
		width: 32px;
		font-size: 16px;
	}
	.common-home .products-carousel .owl-wrapper-outer {
		padding: 0;
	}
	.header-cart-toggle .table>tbody>tr>td, .header-cart-toggle .table>tbody>tr>th, .header-cart-toggle .table>tfoot>tr>td, .header-cart-toggle .table>tfoot>tr>th, .header-cart-toggle .table>thead>tr>td, .header-cart-toggle .table>thead>tr>th, .header-cart-toggle .table-striped>tbody>tr:nth-child(2n+1)>td, .header-cart-toggle .table-striped>tbody>tr:nth-child(2n+1)>th {
		padding: 8px 4px;
	}
	.product-thumb h4 {
		/*font-size: 14px;*/
		font-size: 12px;
		line-height: 14px;
	}
	.box-heading>h3, .title_block .ttblock-heading {
		font-size: 22px;
	}
	.product-thumb .thumb-description .caption .ttproducthover .btn-cart {
		padding: 0 11px;
	}
	.banner-panel img {
		display: inline-block;
		text-align: center;
	}
	.related-carousel.products-list .owl-wrapper-outer {
		padding: 0;
	}
	.TTProduct-Tab.TT-cat-carousel.products-list {
		margin: 0 0 5px;
	}
	.products-list, .list-products {
		margin: 0;
	}
	#column-left .banner-panel, #column-right .banner-panel {
		text-align: center;
	}
	.TTProduct-Tab .nav.nav-tabs li {
		float: left;
		width: 100%;
		text-align: center;
	}
	.product-layout.product-sort .product-thumb .rating, .product-layout.product-sort .product-thumb:hover .rating {
		text-align: center;
	}
	.product-layout.product-sort .product-description {
		text-align: center;
	}
	.product-layout.product-sort .thumb-description .caption {
		text-align: center;
		padding: 0;
	}
	.product-layout.product-sort .product-thumb .product-price-and-shipping {
		width: 100%;
		float: left;
		text-align: center;
	}
	.product-layout.product-sort .product-thumb .price-new {
		float: none;
	}
	.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover {
		width: 100%;
		float: left;
		text-align: center;
	}
	.product-layout.product-sort .product-thumb .thumb-description .caption .ttproducthover .product-add-to-cart {
		float: none;
		width: auto;
		display: inline-block;
		margin: 0;
	}
	.product-layout.product-sort .product-thumb .button-group {
		float: none;
		display: inline-block;
		width: auto;
		vertical-align: top;
		margin: 0;
	}
	.product-list .product-thumb .image {
		display: inline-block;
		border: none;
		float: none;
		text-align: center;
		width: 100%;
	}
	.product-list .product-thumb .thumb-description .caption {
		text-align: center;
	}
	.product-list .product-thumb .thumb-description .price {
		float: none;
	}
	.product-list .product-thumb .thumb-description {
		width: 100%;
		text-align: center;
		padding: 0 5px;
		margin: 0;
	}
	.product-list .product-thumb .thumb-description .caption .ttproducthover .product-add-to-cart {
		float: none;
		width: auto;
		display: inline-block;
	}
	.product-list .product-thumb .button-group {
		float: none;
		display: inline-block;
		width: auto;
		vertical-align: top;
		height: auto;
		margin: 0 0 10px;
	}
	.product-list .product-thumb .button-wrapper {
		text-align: center;
		float: none;
	}
	.product-list .product-thumb .rating, .product-list .product-thumb:hover .rating {
		text-align: center;
	}
	.bestseller-carousel.products-list .product-thumb .rating {
		margin: 0 0 2px;
	}
	.bestseller-carousel.products-list .product-thumb .price {
		padding: 0 0 6px;
	}
	.category-products .product-grid {
		width: 100%;
	}
	.page-title-wrapper .breadcrumb>li {
		float: none;
		display: inline-block;
	}
	.header-bottom-block {
		top: 10px;
	}
	.category-filter .filter-text.filter-text {
		width: auto;
	}
	.header-top-left .dropdown-toggle span, .header-top-left .phone-number {
		display: none !important;
	}
	.product-product .product-details .rating .product-rating::after {
		display: none;
	}
	.product-layout.product-sort .product-thumb .image::after {
		display: none;
	}
	.table {
		display: inline-block;
	}
	.table td {
		width: 100%;
	}
	.category-products .product-grid {
		width: 100%;
	}
	.product-images .additional-images-container {
		width: 240px;
		margin: 0 auto 10px;
	}
	.information-contact .contact-location .col-sm-3 {
		border-bottom: 1px solid #eeeeee;
		width: 100%;
	}
	.information-contact .contact-location .col-sm-3:last-child {
		border-bottom: 0 none;
	}
	footer .footer-column h5.toggle {
		font-size: 14px;
	}
	footer .footer-column h5.toggle::after {
		font-size: 16px;
	}
	.ttfooter .desc {
		width: 100%;
	}
	#information-sitemap .row>div {
		width: 100%;
	}
	#content .category-list h3 {
		font-size: 17px;
	}
	.category-products .product-thumb .image, .product-category .product-thumb .product-list-caption {
		float: left;
		width: 100%;
		text-align: center;
		margin: 0 0 20px
	}
	.product-sort .product-thumb .image {
		border: none;
	}
	.rating span.fa-stack, #review span.fa-stack {
		width: 12px;
	}
	.rating .fa-stack i, #review i {
		font-size: 14px;
	}
	.bestseller-carousel.products-list .product-thumb .percent {
		right: 5px;
	}
	.bestseller-carousel.products-list .product-thumb .rating {
		position: static;
	}
	.bestseller-carousel.products-list .product-thumb .sale-icon {
		left: 5px;
	}
	.bestseller-carousel.products-list .product-thumb .thumb-description {
		padding: 0 15px;
	}
	.product-list .product-thumb .thumb-description .caption .ttproducthover .btn-cart {
		margin: 0 0 5px;
	}
	.product-list .product-thumb .image::after {
		display: none;
	}
	.category-products .product-thumb .image, .product-category .product-thumb .product-list-caption {
		margin: 0;
	}
	.category-products .product-layout.product-grid .image {
		width: 100%;
		padding: 0;
	}
	.category-pagination div.text-left, .category-pagination div.text-right {
		float: left;
		width: 100%;
		text-align: center;
	}
	.rating .product-rating {
		width: 100%;
		margin: 0 0 10px;
		padding: 0;
		border: none;
	}
	.product-product .product-tabs .nav-tabs li {
		float: none;
		width: 100%;
		margin: 0;
	}
	.product-product .nav-tabs>li>a {
		margin: 0 0 5px;
		text-align: center;
		font-size: 13px;
		padding: 5px 0;
	}
	.product-product .nav-tabs>li::before {
		bottom: -3px;
	}
	.image-additional a.thumbnail {
		margin: 5px;
	}
	.product-list .thumb-description {
		padding: 0;
	}
	.product-product #form-review .form-group label.control-label {
		float: left;
		width: 100%;
	}
	.checkout-cart #content>.buttons {
		text-align: center;
		margin: 0 0 20px;
	}
	.checkout-cart .sub-total-table {
		width: 100%;
	}
	.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
		padding: 8px 4px;
	}
	.product-quantity label, .product-quantity #input-quantity {
		margin: 0 7px 5px 0;
	}
	.category-bg {
		float: left;
		width: 100%;
		text-align: center;
	}
	.product-details .btn.btn-default.product-btn-wishlist, .product-details .btn.btn-default.product-btn-compare {
		height: 25px;
	}
	.product-details .btn.btn-default.product-btn-compare {
		margin: 0 0 8px;
	}
	#checkout-cart .pull-left {
		float: none;
		margin: 0 0 10px;
		width: 100%;
	}
	#checkout-cart .pull-right {
		float: none;
		width: 100%;
	}
	footer .footer-top .footer-top-block.container {
		padding: 0;
	}
	#goToTop {
		right: 20px;
		left: auto;
	}
	footer .footer-top::before {
		height: 165px;
	}
	.table.table-bordered {
		overflow: scroll;
		display: inline-block;
	}
	.product-layout.product-sort .product-thumb .thumb-description {
		padding: 0 10px;
		width: 100%;
		margin: 0 0 10px;
	}
	.category-products .product-layout.product-grid {
		width: 100%;
	}
	.responsive_style2 .category-products .product-layout.product-grid {
		width: 50%;
	}
	#custom-pagination-button > span#number-products {
		text-align: center;
		width: 100%;
	}
	.category-filter .filter-show {
		margin: 10px 0 5px;
		padding: 0;
		float: left;
		clear: left;
		max-width: 60px;
	}
	.category-filter .filter-sort-by {
		width: auto;
		max-width: 110px;
		padding: 0;
		margin: 5px 0;
		float: left;
		clear: left;
	}
}

/*----------header services css----------------*/

#ttcmsheaderservices {
	float: right;
	padding: 22px 8px 22px 0;
	position: relative;
	width: auto;
}

#ttcmsheaderservices .ttservice-content {
	float: right;
	width: 100%;
	position: relative;
	padding: 20px 0 20px 41px;
	text-align: left;
}

#ttcmsheaderservices .ttservice-content::after {
	color: #ffffff;
	content: '\e61d';
	font-family: "Material Icons";
	font-size: 26px;
	left: 0;
	padding: 0;
	position: absolute;
	top: 32px;
	bottom: auto;
	margin: auto;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	right: auto;
}

#ttcmsheaderservices:hover .ttservice-content::after {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

#ttcmsheaderservices .service-title {
	float: none;
	width: auto;
	color: #ffffff;
	font: 600 14px/22px "Mulish";
	display: inline-block;
}

#ttcmsheaderservices .service-desc {
	float: none;
	width: auto;
	color: #ffffff;
	font: 700 18px/22px "Mulish";
	display: block;
}

/*----------header services css----------------*/

/*---------------------------- Start TT - CMS Header block ----------------------------*/

#ttcmsheader {
	float: left;
	padding: 10px 0;
}

#ttcmsheader .ttheader-service {
	color: #111;
	font: 600 13px/24px "Mulish", Helvetica, sans-serif;
}

#ttcmsheader .ttheader-service::before {
	content: "\e54e";
	cursor: pointer;
	float: none;
	font-family: "Material Icons";
	height: 25px;
	left: auto;
	font-size: 18px;
	margin: auto 0;
	color: #111;
	width: 35px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	line-height: 25px;
	transform: rotateY(180deg);
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

@media (max-width: 991px) {
	#ttcmsheader {
		width: 100%;
		text-align: center;
		padding: 5px 0;
	}
	#ttcmsheader .ttheader-service {
		display: inline-block;
		float: none;
		vertical-align: top;
		padding: 5px 0;
	}
}

@media (max-width: 543px) {
	#ttcmsheader .ttheader-service {
		padding: 0;
	}
	#ttcmsheader .ttheader-service::before {
		float: none;
		display: inline-block;
		vertical-align: middle;
	}
	#ttcmsheader .ttheader-service {
		font-size: 12px;
		line-height: 14px;
	}
}

/*---------------------------- End TT - CMS Header block ----------------------------*/

/* ----------------- Start TT - CMS OFFER ------------------- */
#ttcmsoffer {
	float: left;
	width: 100%;
	padding: 23px 0 0;
	position: relative;
}

#ttcmsoffer .container {
	padding: 0;
}

#ttcmsoffer .offer-desc {
	display: none;
}

#ttcmsoffer .offer-desc {
	float: left;
	width: 100%;
	text-align: left;
	cursor: pointer;
}

#ttcmsoffer marquee {
	float: right;
}

.full-header.fixed #ttcmsoffer {
	display: none;
}

.offer-title {
	float: left;
	width: auto;
	font: 700 14px/18px Mulish;
	color: #111;
}

#ttcmsoffer .owl-nav.disabled {
	display: block;
}

#ttcmsoffer .owl-nav.disabled {
	display: block;
	float: right;
	position: absolute;
	left: auto;
	right: -175px;
	margin: auto;
	top: -7px;
	bottom: 0;
}

#ttcmsoffer .owl-carousel .owl-nav button {
	position: relative;
	width: 31px;
	font-size: 0;
	margin: 0 2px;
	height: 31px;
}

#ttcmsoffer .owl-carousel .owl-nav button.owl-prev::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: -2px;
	margin: auto;
	background: #e5e5e5;
	width: 1px;
	height: 20px;
}

#ttcmsoffer .owl-carousel .owl-nav button:hover {
	color: #111;
}

#ttcmsoffer .owl-carousel .owl-nav button>span {
	font-size: 24px;
	line-height: 26px;
}

@media (max-width: 1600px) {
	#ttcmsoffer .owl-nav.disabled {
		right: -100px;
	}
}

@media (max-width: 1199px) {
	#ttcmsoffer marquee {
		width: 80%;
	}
	#ttcmsoffer .owl-nav.disabled {
		right: -70px;
	}
}

@media (max-width: 991px) {
	#ttcmsoffer {
		display: none;
	}
}

/* ----------------- END TT - CMS OFFER ------------------- */

/* ------------------ Start TT - CMS banner block --------------------- */

.subbanner-container {
	float:left;
	margin: 0 0 30px;
	position: relative;
	width:100%;
  }
  .subbanner-container .subbanner:first-child .description .tt-desc {
	  float: left;
	  position: absolute;
	  text-align: center;
	  width: auto;
	  top: 0;
	  bottom: 0;
	  margin: auto;
	  height: 75%;
	  text-align: center;
	  left: auto;
	  right: 0;
	  background: none;
  }
  .subbanner-container .subbanner:last-child .description .tt-desc {
	  float: left;
	  position: absolute;
	  text-align: center;
	  width: auto;
	  top: 0;
	  bottom: 0;
	  margin: auto;
	  height: 55%;
	  text-align: center;
	  background: none;
	  left: -20px;
	  right: auto;
  }
  .subbanner-container .subbanner .description .tt-desc {
	  float: left;
	  position: absolute;
	  text-align: center;
	  top: auto;
	  bottom: 15px;
	  margin: auto;
	  height: 23%;
	  text-align: center;
	  left: 30px;
	  right: 30px;
	  background: rgba(255,255,255,0.9);
	  cursor: pointer;
  }
  
  .subbanner .tt-title {
	  display: none;
  }
  .subbanner-container .subbanner .description .tt-desc .title {
	  font:400 18px/44px "Mulish",sans-serif;
	  color:#fff;
	  position:relative;
  }
  .subbanner-container .subbanner .description .tt-desc .title::after {
	  content: "";
	  position: absolute;
	  top: auto;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  margin: auto;
	  background: #b8e3f0;
	  width: 40px;
	  height: 2px;
  }
  .subbanner-container .subbanner .description .tt-desc .subtitle {
	  font: 700 34px/40px "Mulish",sans-serif;
	  color: #fff;
	  width: 60%;
	  float: none;
	  display: inline-block;
	  vertical-align: top;
	  text-align: center;
	  transition: all 400ms ease-in-out;
  }
  .subbanner-container .subbanner .description .tt-desc .title2 {
	  font: 700 34px/40px "Mulish",sans-serif;
	  color: #fff;
	  width: 61%;
	  float: none;
	  display: inline-block;
	  vertical-align: top;
	  text-align: center;
	  transition: all 400ms ease-in-out;
	  margin: 0 0 10px;
  }
  .subbanner-container .subbanner:hover .description .tt-desc .title2 {
	  letter-spacing: 1.5px;
  }
  .subbanner-container .subbanner:hover .description .tt-desc .subtitle {
	  letter-spacing: 1.5px;
  }
  .subbanner-container .subbanner .description .tt-desc .title1 {
	  font:400 18px/44px "Mulish",sans-serif;
	  color:#111;
	  position:relative;
  }
  .subbanner-container .subbanner .description .tt-desc .title1::after {
	  content: "";
	  position: absolute;
	  top: auto;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  margin: auto;
	  background: #2f4a74;
	  width: 40px;
	  height: 2px;
  }
  .subbanner-container .subbanner .description .tt-desc .subtitle1 {
	  font: 700 34px/48px "Mulish",sans-serif;
	  color: #111;
  }
  
  .subbanner-container .subbanner .description .tt-desc .button > a.buy_now {
	  -webkit-border-radius: 10px;
	  -moz-border-radius: 10px;
	  -khtml-border-radius: 10px;
	  border-radius: 10px;
	  padding: 10px 25px;
	  float: none;
	  display: inline-block;
	  vertical-align: top;
	  margin-top: 10px;
	  font-size: 14px;
	  transition: all 400ms ease-in-out 0s;
	  -webkit-transition: all 400ms ease-in-out 0s;
	  -moz-transition: all 400ms ease-in-out 0s;
	  -o-transition: all 400ms ease-in-out 0s;
	  -ms-transition: all 400ms ease-in-out 0s;
	  background: #b8e3f0;
	  color: #111;
	  line-height: 24px;
	  position:relative;
	  z-index:1;
	  overflow:hidden;
	  font-weight: 600;
  }
  .subbanner-container .subbanner .description .tt-desc .button > a.buy_now::after {
	border-radius: 5px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #ffffff;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  }
  .subbanner-container .subbanner .description .tt-desc .button > a.buy_now:hover::after {
	bottom: 0%;
	top: auto;
	height: 100%;
  }
  .subbanner-container a img{
	  max-width:100%;
	  height:auto;
	  -webkit-transition: 400ms ease-in-out;
	  -moz-transition: 400ms ease-in-out;
	  -ms-transition: 400ms ease-in-out;
	  -o-transition: 400ms ease-in-out;
	  transition: 400ms ease-in-out;
  }
  .subbanner-container .subbanner:hover a img{
	  -webkit-transform: scale(1.1);
	  -moz-transform: scale(1.1);
	  -ms-transform: scale(1.1);
	  -o-transform: scale(1.1);
	  transform: scale(1.1);
	  opacity: 0.8;
  }
  .subbanner-container .subbanner > a{
	  display: inline-block;
	  overflow:hidden;
  }
  .subbanner-container .subbanner.odd .description {
	bottom: auto;
	left: auto;
	padding: 0;
	position: absolute;
	right: 0;
	top: 25%;
  }
  .subbanner-container .subbanner.odd .description .tt-title {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	color: #ffffff;
	font: 700 50px/52px "Montserrat",sans-serif;
	margin: 0 0 20px;
	padding: 0;
	text-align:right;
  }
  .subbanner-container .subbanner .description .tt-desc > h2 {
	color: #ffffff;
	font: 500 16px/26px "Montserrat",sans-serif;
  }
  .subbanner-container .subbanner .description p {
	background: #ffcf11 none repeat scroll 0 0;
	border-radius: 25px;
	color: #111;
	display: inline-block;
	float: none;
	font-size: 16px;
	margin-top: 10px;
	padding: 10px 20px;
	width: auto;
  }
  .subbanner-container .subbanner.even {
	background: #ffffff none repeat scroll 0 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	float:left;
	padding: 10px;
	width: 33%;
	z-index:1;
  }
  .subbanner-container .subbanner.even .description {
	display: none;
  }
  .subbanner-container .subbanner.odd {
	float:left;
	padding: 13% 0;
	width: 67%;
	position:relative;
  }
  .subbanner-container .subbanner.odd::after {
	background: #f5f5f5 none repeat scroll 0 0;
	bottom: 75px;
	content: "";
	height: 350px;
	left: 0;
	position: absolute;
	right: auto;
	top: auto;
	width: 180px;
	z-index: -1;
  }
  .subbanner-container .subbanner.odd a img {
	float:left;
	height: auto;
	max-width: 100%;
	margin-left: -30px;
	transition: all 400ms ease-in-out 0s;
  }
  .subbanner-container:hover .subbanner.odd a img {
	margin: 0;
  }
  .subbanner-container .subbanner.odd .description {
	left: 0;
	right: auto;
  }
  .subbanner-container .subbanner.odd .description .tt-title {
	color: #111;
  }
  .subbanner-container .subbanner.odd .description .tt-desc > h2 {
	color: #777777;
	float: right;
	text-align: right;
	width: 56%;
  }
  .subbanner-container .subbanner .description .tt-desc .ttbtn-shop {
	float: right;
	margin-top: 20px;
	text-align: right;
	width: 100%;
  }
  .subbanner-container .subbanner .description .tt-desc .ttbtn-shop .ttbtn {
	background: #111;
	border-radius: 25px;
	color: #ffffff;
	padding: 10px 20px;
  }
  .subbanner-container .subbanner .description .tt-desc .ttbtn-shop .ttbtn:hover {
	background: #e0aa53;
  }
  .subbanner-container .container {
	  padding: 0;
  }
  @media (max-width:1600px) {
		.subbanner-container .subbanner .description .tt-desc .subtitle {
			font-size:30px;
			line-height:36px;
		}
		.subbanner-container .subbanner:first-child .description .tt-desc {
			height: 85%;
			right: -10px;
		}
		.subbanner-container .subbanner .description .tt-desc .title2{
			font-size:28px;
			line-height:35px;
		}
		.subbanner-container .subbanner .description .tt-desc .button > a.buy_now {
			padding: 6px 15px;
		}
		.subbanner-container .subbanner .description .tt-desc {
			height: 30%;
		}
  }
  @media (max-width:1299px) {
		.subbanner-container .subbanner .description .tt-desc .subtitle1 {
			font-size:24px;
			line-height:38px;
		}
		.subbanner-container .subbanner .description .tt-desc .title1 {
			font-size:16px;
		}
  }
  @media (max-width:1199px) {
	  .subbanner-container .subbanner .description .tt-desc .title {
		  font-size: 16px;
		  line-height: 38px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .subtitle {
		  font-size: 20px;
		  line-height: 24px;
		  width: 80%;
		  padding: 10px 0 0;
	  }
	  .subbanner-container .subbanner .description .tt-desc .button > a.buy_now {
		  font-size: 13px;
	  }
	  .topbanner-container .topbanner.odd::after {
		bottom: 40px;
	  }
	  .subbanner-container .subbanner:first-child .description .tt-desc {
		  height: 85%;
		  right: 0px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title1 {
		  font-size: 13px;
		  line-height: 37px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .subtitle1 {
		  font-size: 19px;
		  line-height: 25px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title2 {
		  font-size: 20px;
		  line-height: 29px;
		  width: 80%;
	  }
	  .subbanner-container .subbanner:last-child .description .tt-desc {
		  left: 0;
	  }
  }
  @media (max-width:991px) {
	  .subbanner-container .subbanner.even {
		width: 40%;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title2 {
		  font-size: 19px;
		  line-height: 23px;
	  }
	  .subbanner-container .subbanner.odd {
		width: 60%;
		padding:110px 0;
	  }
	  .subbanner-container .subbanner.odd::after {
		  height:300px;
		  bottom:0;
	  }
	  .subbanner-container .subbanner.odd {
		padding: 67px 0;
	  }
	  .subbanner-container .subbanner.odd .description .tt-title {
		font: 700 30px/34px "Montserrat",sans-serif;
	  }
	  .subbanner-container .subbanner .description .tt-desc > h2 {
		font: 500 14px/20px "Montserrat",sans-serif;
	  }
	  .subbanner-container .subbanner .description p {
		font-size: 12px;
		padding: 5px 15px;
		margin-bottom:0;
	  }
	  .subbanner-container {
		margin:0 0 20px;
	  }
  }
  @media (max-width:767px) {
	.subbanner-container .subbanner .description .tt-desc {
		height: 77px;
		left: 25px;
		right: 25px;
		bottom: 10px;
	}
	.subbanner-container .subbanner .description .tt-desc .subtitle1 {
		font-size: 14px;
		line-height: 37px;
	}
  }
  @media (max-width:544px) {
	  .subbanner-container .subbanner.odd {
		padding: 59px 0;
		width: 60%;
	  }
	  .subbanner-container .subbanner.odd::after {
		height: 230px;
		bottom: 10px;
		width:140px;
	  }
	  .subbanner-container .subbanner.odd a img {
		width: 60%;
	  }
	  .subbanner-container .subbanner.odd .description {
		top: 30px;
	  }
  }
  @media (max-width:543px) {
	  .subbanner-container .subbanner.even {
		width: 100%;
	  }
	  .subbanner-container .subbanner.odd {
		padding: 15px 0;
	  }
	  .subbanner-container .subbanner.odd {
		width: 100%;
	  }
	  .subbanner-container .subbanner .description .tt-desc {
		  height: 90px;
	  }
	  .subbanner-container .subbanner.odd::after {
		bottom: auto;
		height: 180px;
		top: 0;
		width: 100%;
	  }
	  .subbanner-container .subbanner > a {
		text-align:center;
	  }
	  .subbanner-container .subbanner.odd a img {
		margin-left: 0;
		display: inline-block;
		float: none;
		width: 65%;
		vertical-align:top;
	  }
	  .subbanner-container .subbanner.odd .description {
		float: left;
		margin-top: 20px;
		position: static;
		text-align:right;
		width: 100%;
	  }
	  .subbanner-container .subbanner.odd .description .tt-desc > h2 {
		width: 100%;
	  }
	  .subbanner-container .subbanner {
		  margin-bottom: 15px;
		  width: 100%;
	  }
	  .subbanner-container .subbanner:last-child{
			margin-bottom:0;
	  }
	  .subbanner-container .subbanner:first-child .description .tt-desc {
		  height: 85%;
		  right: 50px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title {
		  font-size: 22px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .subtitle {
		  font-size: 30px;
		  line-height: 36px;
	  }
	  .subbanner-container .subbanner:last-child .description .tt-desc {
		  left: 40px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title2 {
		  font-size: 29px;
		  line-height: 43px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .subtitle1 {
		  line-height: 37px;
		  font-size: 19px;
	  }
  }
  @media (max-width:480px) {
	  .subbanner-container .subbanner:first-child .description .tt-desc {
		  right: 0;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title {
		  font-size: 16px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .subtitle {
		  font-size: 20px;
		  line-height: 24px;
	  }
	  .subbanner-container .subbanner:last-child .description .tt-desc {
		  left: 0;
	  }
	  .subbanner-container .subbanner .description .tt-desc .title2 {
		  font-size: 20px;
		  line-height: 29px;
	  }
	  .subbanner-container .subbanner .description .tt-desc .subtitle1 {
		  font-size: 14px; 
	  }
  }

/* ------------------ End TT - CMS subbanner block --------------------- */
/* ------------------ Start TT - CMS Right banner block --------------------- */
#ttcmsleftbanner {
	float: right;
	position: relative;
}
.leftbanner-container {
	float: left;
	width: 100%;
}
.leftbanner-container .leftbanner .description .tt-desc {
	left: auto;
	right: 15px;
	top: 25%;
	margin: auto;
	height: 100%;
	float: left;
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: auto;
	cursor: pointer;
}
.leftbanner .tt-title {
    display: none;
}
.leftbanner-container .leftbanner .description .tt-desc .title {
	font: 400 18px/44px "Mulish",sans-serif;
	color: #fff;
	writing-mode: vertical-lr;
	float: right;
	margin: 40px 0;
}
.leftbanner-container .leftbanner .description .tt-desc .subtitle {
	font: 700 34px/48px "Mulish",sans-serif;
	color:#fff;
	writing-mode: vertical-lr;
	float: right;
}
.leftbanner-container .leftbanner .description .tt-desc .button > a.buy_now{
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -khtml-border-radius: 25px;
    border-radius: 25px;
    padding: 10px 25px;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    font-size: 14px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	background: #81ba00;
    color: #ffffff;
	line-height:24px;
}
.leftbanner-container .leftbanner .description .tt-desc .button > a.buy_now:hover{
	background:#111;
}
.leftbanner-container a img{
	max-width:100%;
	height:auto;
	-webkit-transition: 400ms ease-in-out;
    -moz-transition: 400ms ease-in-out;
    -ms-transition: 400ms ease-in-out;
    -o-transition: 400ms ease-in-out;
    transition: 400ms ease-in-out;
}
.leftbanner-container .leftbanner:hover a img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.leftbanner-container .leftbanner > a{
    display: inline-block;
	overflow:hidden;
}
.leftbanner-container .leftbanner.odd .description {
  bottom: auto;
  left: auto;
  padding: 0;
  position: absolute;
  right: 0;
  top: 25%;
}
.leftbanner-container .leftbanner.odd .description .tt-title {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #ffffff;
  font: 700 50px/52px "Montserrat",sans-serif;
  margin: 0 0 20px;
  padding: 0;
  text-align:right;
}
.leftbanner-container .leftbanner .description .tt-desc > h2 {
  color: #ffffff;
  font: 500 16px/26px "Montserrat",sans-serif;
}
.leftbanner-container .leftbanner .description p {
  background: #ffcf11 none repeat scroll 0 0;
  border-radius: 25px;
  color: #111;
  display: inline-block;
  float: none;
  font-size: 16px;
  margin-top: 10px;
  padding: 10px 20px;
  width: auto;
}
.leftbanner-container .leftbanner.even {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  float:left;
  padding: 10px;
  width: 33%;
  z-index:1;
}
.leftbanner-container .leftbanner.even .description {
  display: none;
}
.leftbanner-container .leftbanner.odd {
  float:left;
  padding: 13% 0;
  width: 67%;
  position:relative;
}
.leftbanner-container .leftbanner.odd::after {
  background: #f5f5f5 none repeat scroll 0 0;
  bottom: 75px;
  content: "";
  height: 350px;
  left: 0;
  position: absolute;
  right: auto;
  top: auto;
  width: 180px;
  z-index: -1;
}
.leftbanner-container .leftbanner.odd a img {
  float:left;
  height: auto;
  max-width: 100%;
  margin-left: -30px;
  transition: all 400ms ease-in-out 0s;
}
.leftbanner-container:hover .leftbanner.odd a img {
  margin: 0;
}
.leftbanner-container .leftbanner.odd .description {
  left: 0;
  right: auto;
}
.leftbanner-container .leftbanner.odd .description .tt-title {
  color: #111;
}
.leftbanner-container .leftbanner.odd .description .tt-desc > h2 {
  color: #777777;
  float: right;
  text-align: right;
  width: 56%;
}
.leftbanner-container .leftbanner .description .tt-desc .ttbtn-shop {
  float: right;
  margin-top: 20px;
  text-align: right;
  width: 100%;
}
.leftbanner-container .leftbanner .description .tt-desc .ttbtn-shop .ttbtn {
  background: #111;
  border-radius: 25px;
  color: #ffffff;
  padding: 10px 20px;
}
.leftbanner-container .leftbanner .description .tt-desc .ttbtn-shop .ttbtn:hover {
  background: #e0aa53;
}
@media (max-width:1199px) {
	#ttcmsleftbanner {
		padding: 0 10px;
	}
	.leftbanner-container .leftbanner .description .tt-desc .title {
		margin: 0;
	}
	.leftbanner-container .leftbanner .description .tt-desc .subtitle {
		font-size: 24px;
		line-height: 26px;	
	}
	.leftbanner-container .leftbanner .description .tt-desc .button > a.buy_now {
		font-size: 14px;
		padding: 8px 20px;
	}
	.topbanner-container .topbanner.odd::after {
	  bottom: 40px;
	}
}
@media (max-width:991px) {
	.leftbanner-container .leftbanner.even {
	  width: 40%;
	}
	.leftbanner-container .leftbanner.odd {
	  width: 60%;
	  padding:110px 0;
	}
	.leftbanner-container .leftbanner.odd::after {
		height:300px;
		bottom:0;
	}
	.leftbanner-container .leftbanner.odd {
	  padding: 67px 0;
	}
	.leftbanner-container .leftbanner.odd .description .tt-title {
	  font: 700 30px/34px "Montserrat",sans-serif;
	}
	.leftbanner-container .leftbanner .description .tt-desc > h2 {
	  font: 500 14px/20px "Montserrat",sans-serif;
	}
	.leftbanner-container .leftbanner .description p {
	  font-size: 12px;
	  padding: 5px 15px;
	  margin-bottom:0;
	}
	.leftbanner-container .leftbanner .description .tt-desc .title {
		font-size: 14px;
		line-height: 32px;
	}
	.leftbanner-container .leftbanner .description .tt-desc .subtitle {
		font-size: 20px;
		line-height: 18px;
	}
	.leftbanner-container .leftbanner .description .tt-desc .button > a.buy_now{
		padding:8px 20px;
		margin-top:5px;
	}
}
@media (max-width:767px) {
	.leftbanner-container .leftbanner .description .tt-desc .title {
		font-size: 12px;
		line-height: 28px;
	}
	.leftbanner-container .leftbanner .description .tt-desc .subtitle {
		font-size: 15px;
	}
}
@media (max-width:544px) {
	.leftbanner-container .leftbanner.odd {
	  padding: 59px 0;
	  width: 60%;
	}
	.leftbanner-container .leftbanner.odd::after {
	  height: 230px;
	  bottom: 10px;
	  width:140px;
	}
	.leftbanner-container .leftbanner.odd a img {
	  width: 60%;
	}
	.leftbanner-container .leftbanner.odd .description {
	  top: 30px;
	}
}
@media (max-width:543px) {
	.leftbanner-container .leftbanner.even {
	  width: 100%;
	}
	.leftbanner-container .leftbanner.odd {
	  padding: 15px 0;
	}
	.leftbanner-container .leftbanner.odd {
	  width: 100%;
	}
	.leftbanner-container .leftbanner .description .tt-desc {
		height: 90px;
	}
	.leftbanner-container .leftbanner.odd::after {
	  bottom: auto;
	  height: 180px;
	  top: 0;
	  width: 100%;
	}
	.leftbanner-container .leftbanner > a {
	  text-align:center;
	}
	.leftbanner-container .leftbanner.odd a img {
	  margin-left: 0;
	  display: inline-block;
	  float: none;
	  width: 65%;
	  vertical-align:top;
	}
	.leftbanner-container .leftbanner.odd .description {
	  float: left;
	  margin-top: 20px;
	  position: static;
	  text-align:right;
	  width: 100%;
	}
	.leftbanner-container .leftbanner.odd .description .tt-desc > h2 {
	  width: 100%;
	}
	.leftbanner-container {
		width: 100%;
		float: left;
		padding: 0;
		text-align: center;
	}
	.leftbanner-container .leftbanner {
	  margin-bottom: 15px;
	}
	.leftbanner-container .leftbanner:last-child{
		  margin-bottom:0;
	}
	.leftbanner-container .leftbanner .description .tt-desc .subtitle {
		font-size: 35px;
		line-height: 60px;
	}
	.leftbanner-container .leftbanner .description .tt-desc .title {
		font-size: 22px;
		line-height: 28px;
	}
	.leftbanner-container .leftbanner .description .tt-desc {
		height: 100%;
		left: auto;
		right: 80px;
	}
}
@media (max-width:480px) {
	#ttcmsleftbanner {
		width: 100%;
	}
	.leftbanner-container .leftbanner .description .tt-desc .subtitle {
		font-size: 25px;
		line-height: 50px;
	}
	.leftbanner-container .leftbanner .description .tt-desc .title {
		font-size: 17px;
		line-height: 8px;
	}
	.leftbanner-container .leftbanner .description .tt-desc {
		right: 20px;
	}
}
/* ------------------ End TT - CMS Right banner block --------------------- */
/*------------ Start TT - CMS banner css---------------*/

#ttcmsbanner {
	float: left;
	width: 100%;
}
.banner-container {
	float: left;
	margin: 0 0 60px;
	position: relative;
	width: 100%;
}
.banner-container .banner .description .tt-desc {
    float: left;
    position: absolute;
    text-align: center;
    width: auto;
	top:0;
	bottom:0;
	margin:auto;
	height:55%;
	cursor: pointer;
}
.banner-container .banner:first-child .description .tt-desc{
    left: auto;
    right: 50px;
}
.banner-container .banner:last-child .description .tt-desc{
    left: 50px;
    right: auto;
}
.banner .tt-title {
    display: none;
}
.banner-container .banner .description .tt-desc .title {
    font:700 34px/48px "Mulish",sans-serif;
	color:#fff;
}
.banner-container .banner .description .tt-desc .subtitle {
	font:400 20px/44px "Mulish",sans-serif;
	color:#fff;
}
.banner-container .banner .description .tt-desc .title1 {
    font:400 20px/44px "Mulish",sans-serif;
	color:#fff;
}
.banner-container .banner .description .tt-desc .subtitle1 {
	font:700 34px/48px "Mulish",sans-serif;
	color:#fff;
}

.banner-container .banner .description .tt-desc .button > a.buy_now {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	padding: 10px 25px;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
	font-size: 14px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	background: #fff;
	color: #111;
	line-height: 24px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
}
.banner-container .banner .description .tt-desc .button > a.buy_now:hover{
	color:#111;
}
.banner-container .banner .description .tt-desc .button1 > a.buy_now {
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
	padding: 10px 25px;
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-top: 10px;
	font-size: 14px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	background: #b8e3f0;
	color: #111;
	line-height: 24px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-weight: 600;
}
.banner-container .banner .description .tt-desc .button1 > a.buy_now:hover,
.banner-container .banner .description .tt-desc .button1 > a.buy_now:active,
.banner-container .banner .description .tt-desc .button1 > a.buy_now:focus{
	background:#fff;
	color:#111;

}
.banner-container .banner .description .tt-desc .button > a.buy_now::after,
.banner-container .banner .description .tt-desc .button1 > a.buy_now::after {
	border-radius: 5px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 100%;
	z-index: -1;
	content: '';
	background: #b8e3f0;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.banner-container .banner .description .tt-desc .button > a.buy_now:hover::after,
.banner-container .banner .description .tt-desc .button1 > a.buy_now:hover::after {
	bottom: 0%;
	top: auto;
	height: 100%;
}
.banner-container .banner .description .tt-desc .button1 > a.buy_now::after {
	background: #ffffff;
}
.banner-container a img{
	max-width:100%;
	height:auto;
	-webkit-transition: 400ms ease-in-out;
    -moz-transition: 400ms ease-in-out;
    -ms-transition: 400ms ease-in-out;
    -o-transition: 400ms ease-in-out;
    transition: 400ms ease-in-out;
}
.banner-container .banner:hover a img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
	opacity: 0.8;
}
.banner-container .banner:hover a{
	background: rgba(0, 0, 0, 0.4);
}
.banner-container .banner > a{
    display: inline-block;
	overflow:hidden;
}
.banner-container .banner.odd .description {
  bottom: auto;
  left: auto;
  padding: 0;
  position: absolute;
  right: 0;
  top: 25%;
}
.banner-container .banner.odd .description .tt-title {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  color: #ffffff;
  font: 700 50px/52px "Montserrat",sans-serif;
  margin: 0 0 20px;
  padding: 0;
  text-align:right;
}
.banner-container .banner .description .tt-desc > h2 {
  color: #ffffff;
  font: 500 16px/26px "Montserrat",sans-serif;
}
.banner-container .banner .description p {
  background: #ffcf11 none repeat scroll 0 0;
  border-radius: 25px;
  color: #111;
  display: inline-block;
  float: none;
  font-size: 16px;
  margin-top: 10px;
  padding: 10px 20px;
  width: auto;
}
.banner-container .banner.even {
  background: #ffffff none repeat scroll 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  float:left;
  padding: 10px;
  width: 33%;
  z-index:1;
}
.banner-container .banner.even .description {
  display: none;
}
.banner-container .banner.odd {
  float:left;
  padding: 13% 0;
  width: 67%;
  position:relative;
}
.banner-container .banner.odd::after {
  background: #f5f5f5 none repeat scroll 0 0;
  bottom: 75px;
  content: "";
  height: 350px;
  left: 0;
  position: absolute;
  right: auto;
  top: auto;
  width: 180px;
  z-index: -1;
}
.banner-container .banner.odd a img {
  float:left;
  height: auto;
  max-width: 100%;
  margin-left: -30px;
  transition: all 400ms ease-in-out 0s;
}
.banner-container:hover .banner.odd a img {
  margin: 0;
}
.banner-container .banner.odd .description {
  left: 0;
  right: auto;
}
.banner-container .banner.odd .description .tt-title {
  color: #111;
}
.banner-container .banner.odd .description .tt-desc > h2 {
  color: #777777;
  float: right;
  text-align: right;
  width: 56%;
}
.banner-container .banner .description .tt-desc .ttbtn-shop {
  float: right;
  margin-top: 20px;
  text-align: right;
  width: 100%;
}
.banner-container .banner .description .tt-desc .ttbtn-shop .ttbtn {
  background: #111;
  border-radius: 25px;
  color: #ffffff;
  padding: 10px 20px;
}
.banner-container .banner .description .tt-desc .ttbtn-shop .ttbtn:hover {
  background: #e0aa53;
}
@media (max-width:1600px) {
.banner-container .banner .description .tt-desc .button > a.buy_now,
.banner-container .banner .description .tt-desc .button1 > a.buy_now {
	padding: 5px 15px;
}
.banner-container .banner .description .tt-desc .subtitle {
	font-size:17px;
	line-height:37px;
}
.banner-container .banner .description .tt-desc .title {
	font-size:28px;
	line-height:30px;
}
.banner-container .banner .description .tt-desc .title1 {
	font-size:18px;
	line-height:20px;
}
.banner-container .banner .description .tt-desc .subtitle1 {
	font-size:28px;
	line-height:40px;
}
.banner-container .banner:last-child .description .tt-desc {
	left: 40px;
}
}
@media (max-width:1199px) {
	.banner-container .banner .description .tt-desc .title {
		font-size: 20px;
		line-height: 10px;
	}
	.banner-container .banner .description .tt-desc .subtitle {
		font-size: 14px;
		line-height: 48px;
	}
	.banner-container .banner .description .tt-desc .title1 {
		font-size: 16px;
		line-height: 18px;
	}
	.banner-container .banner .description .tt-desc .subtitle1 {
		font-size: 18px;
		line-height: 40px;
	}
	.banner-container .banner .description .tt-desc .button > a.buy_now, 
	.banner-container .banner .description .tt-desc .button1 > a.buy_now {
		font-size: 13px;
		margin: 0;
		line-height: 20px;
	}
	.topbanner-container .topbanner.odd::after {
	  bottom: 40px;
	}
}
@media (max-width:991px) {
	.banner-container .banner.even {
	  width: 40%;
	}
	.banner-container .banner.odd {
	  width: 60%;
	  padding:110px 0;
	}
	.banner-container .banner.odd::after {
		height:300px;
		bottom:0;
	}
	.banner-container .banner.odd {
	  padding: 67px 0;
	}
	.banner-container .banner.odd .description .tt-title {
	  font: 700 30px/34px "Montserrat",sans-serif;
	}
	.banner-container .banner .description .tt-desc > h2 {
	  font: 500 14px/20px "Montserrat",sans-serif;
	}
	.banner-container .banner .description p {
	  font-size: 12px;
	  padding: 5px 15px;
	  margin-bottom:0;
	}
	.banner-container .banner .description .tt-desc .subtitle{
		line-height: 38px;
	}
	.banner-container {
		margin: 0 0 30px;
	}
	.banner-container .container {
		padding: 0;
	}
	#wrapper .banner {
		margin-bottom: 0;
	}
}
@media (max-width:767px) {
.banner-container .banner .description .tt-desc .subtitle {
	font-size: 13px;
	line-height: 30px;
}
.banner-container .banner .description .tt-desc .title {
	font-size: 19px;
	line-height: 16px;
	padding: 10px 0 0;
}
.banner-container .banner .description .tt-desc{
	height:97px;
}
.banner-container .banner:first-child .description .tt-desc {
	right: 30px;
}
.banner-container .banner .description .tt-desc .subtitle1 {
	font-size: 18px;
	line-height: 30px;
}
.banner-container .banner .description .tt-desc .title1 {
	font-size: 14px;
	line-height: 12px;
	padding: 11px 0 0;
}
.banner-container .banner:last-child .description .tt-desc {
	left: 25px;
}
}
@media (max-width:544px) {
	.banner-container .banner.odd {
	  padding: 59px 0;
	  width: 60%;
	}
	.banner-container .banner.odd::after {
	  height: 230px;
	  bottom: 10px;
	  width:140px;
	}
	.banner-container .banner.odd a img {
	  width: 60%;
	}
	.banner-container .banner.odd .description {
	  top: 30px;
	}
}
@media (max-width:543px) {
	.banner-container .banner.even {
	  width: 100%;
	}
	.banner-container .banner.odd {
	  padding: 15px 0;
	}
	.banner-container .banner.odd {
	  width: 100%;
	}
	.banner-container .banner .description .tt-desc {
		height: 90px;
	}
	.banner-container .banner.odd::after {
	  bottom: auto;
	  height: 180px;
	  top: 0;
	  width: 100%;
	}
	.banner-container .banner > a {
	  text-align:center;
	}
	.banner-container .banner.odd a img {
	  margin-left: 0;
	  display: inline-block;
	  float: none;
	  width: 65%;
	  vertical-align:top;
	}
	.banner-container .banner.odd .description {
	  float: left;
	  margin-top: 20px;
	  position: static;
	  text-align:right;
	  width: 100%;
	}
	.banner-container .banner.odd .description .tt-desc > h2 {
	  width: 100%;
	}
	.banner-container {
		margin: 0 0 20px;
	}
	.banner-container .banner {
	  margin-bottom: 15px;
	  width: 100%;
	}
	.banner-container .banner:last-child{
		  margin-bottom:0;
	}
}
/*------------ End TT - CMS banner css---------------*/

/*------------ Start TT - CMS Top Offer css---------------*/

.boxed #ttcmstopoffer {
	position: static;
}

#ttcmstopoffer {
	position: absolute;
	top: auto;
	bottom: 15px;
	left: 0;
	right: 0;
	margin: auto;
	float: left;
	width: 100%;
	z-index: 1;
}

#ttcmstopoffer .ttcmsmaintopoffer {
	background: #fff;
	padding: 20px;
	float: left;
	width: 100%;
	border-radius: 10px;
}

#ttcmstopoffer .tttopoffer {
	float: left;
	cursor: pointer;
}

#ttcmstopoffer .tttopoffer:last-child {
	border: none;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-heading {
	color: #2f4a74;
	font: 600 13px/14px Mulish;
	padding: 0 0 5px;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-subheading {
	color: #111;
	letter-spacing: 0.4px;
	padding: 0 0 15px;
	font: 700 18px/20px Mulish;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-desc {
	color: #2f4a74;
	font: 600 13px/14px Mulish;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content {
	padding: 30px 0px 30px 10px;
	text-align: left;
	width: auto;
	float: left;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-image {
	padding: 0;
	float: left;
	width: auto;
	position: relative;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-image::after {
	content: '';
	position: absolute;
	background: #e5e5e5;
	width: 1px;
	height: 120px;
	top: 0;
	bottom: 0;
	left: auto;
	right: 10px;
	margin: auto;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-image img {
	max-width: 100%;
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-o-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
}

#ttcmstopoffer .ttcmstopoffer .tttopoffer:hover .tttopoffer-image img {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
}

.boxed #ttcmstopoffer .ttcmsmaintopoffer {
	width: 100% !important;
}

.header2 .fixed #search_block_top {
	z-index: 4;
}

@media (min-width: 992px) and (max-width: 1300px) {
	#ttcmstopoffer .ttcmsmaintopoffer {
		float: right;
		width: 60%;
		padding: 0;
	}
	#ttcmstopoffer .ttcmstopoffer {
		padding: 0;
	}
}

@media (max-width: 1655px) {
	#ttcmstopoffer .tttopoffer {
		padding: 10px 0;
	}
	#ttcmstopoffer .tttopoffer:last-child {
		padding: 10px 0 0;
	}
	#ttcmstopoffer .ttcmstopoffer {
		padding: 0 20px;
	}
	#ttcmstopoffer .ttcmsmaintopoffer {
		padding: 0 20px;
	}
}

@media (max-width: 1370px) {
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-subheading {
		padding: 0 0 12px;
		font-size: 13px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#ttcmstopoffer .ttcmsmaintopoffer {
		padding: 0px;
		width: 70%;
	}
	#ttcmstopoffer .tttopoffer:first-child {
		padding: 0;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-heading {
		font-size: 12px;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-desc {
		font-size: 11px;
	}
}

@media (max-width:1199px) {
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content {
		padding: 30px 0px 20px 10px;
	}
}

@media (max-width:991px) {
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-image::after {
		height: 90px;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-subheading {
		padding: 0 0 17px;
		font-size: 16px;
	}
	#ttcmstopoffer .tttopoffer {
		border: none;
		padding: 6px 0;
	}
	#ttcmstopoffer {
		width: 100%;
		margin: 0 0 10px;
		position: static;
		background: #f7f7f7;
	}
	#ttcmstopoffer .ttcmsmaintopoffer {
		padding: 10px 0;
		background: #f7f7f7;
	}
}

@media (max-width:767px) {
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-heading {
		font-size: 12px;
		line-height: 18px;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-desc {
		font-size: 11px;
	}
}

@media (max-width:580px) {
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content {
		padding: 20px;
	}
	#ttcmstopoffer .tttopoffer {
		width: auto;
		float: none;
		display: inline-block;
		vertical-align: top;
		text-align: left;
	}
	#ttcmstopoffer .ttcmstopoffer {
		text-align: center;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-image {
		width: 40%;
	}
}

@media (max-width:543px) {
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content {
		padding: 10px 0;
	}
	#ttcmstopoffer {
		float: left;
	}
	#ttcmstopoffer .ttcmstopoffer {
		text-align: center;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-heading {
		font-size: 13px;
		line-height: 17px;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-subheading {
		font-size: 14px;
		line-height: 18px;
		padding: 0 0 7px;
	}
	#ttcmstopoffer .ttcmstopoffer .tttopoffer .tttopoffer-content .tttopoffer-desc {
		font-size: 13px;
		line-height: 18px;
	}
}

/*------------ End TT - CMS Top Offer css---------------*/
/* ---------------------- Start OT - CmsServices ------------------------ */
#ttcmsservices {
	float: left;
	width: 100%;
}

.ttcmsservices {
	background: #fff;
	box-shadow: 0 0 5px 1px #e5e5e5;
	-moz-box-shadow: 0 0 5px 1px #e5e5e5;
	-webkit-box-shadow: 0 0 5px 1px #e5e5e5;
	padding: 35px 0;
	float: left;
	width: 100%;
	padding: 35px 0;
}

#ttcmsservices .ttservice {
	float: none;
	text-align: center;
	position: relative;
	padding: 0;
	width: auto;
	display: inline-block;
	vertical-align: top;
}

#ttcmsservices .service-title {
	font: 700 16px/20px "Mulish", Helvetica, sans-serif;
	color: #111;
	padding: 0 0 5px;
	cursor: pointer;
}

#ttcmsservices .service-desc {
	font: 500 13px/20px "Mulish", Helvetica, sans-serif;
	color: #111;
}

#ttcmsservices .ttservice:hover .service-title {
	color: #2f4a74;
}

#ttcmsservices .owl-carousel .owl-item::after {
	background: #e5e5e5;
	content: "";
	height: 100%;
	left: -1px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 1px;
	right: auto;
}
#ttcmsservices .owl-carousel .owl-item:first-child::after {
	display:none;
}
#ttcmsservices .owl-carousel .owl-item {
	text-align: center;
}

#ttcmsservices .owl-item:nth-child(4) .ttservice::after {
	background: none;
}

#ttcmsservices .ttservice .icon {
	float: left;
	text-align: center;
	cursor: pointer;
}

#ttcmsservices .ttservice .service-content {
	text-align: left;
	float: left;
	padding: 7px 0 0 10px;
}

#ttcmsservices .ttservice .service-icon {
	float: left;
	height: 60px;
	width: 60px;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
}

#ttcmsservices .ttservice:hover .service-icon {
	transform: rotateY(-180deg);
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	-o-transform: rotateY(-180deg);
	-ms-transform: rotateY(-180deg);
}

#ttcmsservices .ttservice .ttgift_img.service-icon {
	background: url("TemplateTrip/images/services-sprite.png") repeat scroll -30px -14px;
}

#ttcmsservices .ttservice .ttdisc_img.service-icon {
	background: url("TemplateTrip/images/services-sprite.png") repeat scroll -30px -110px;
}

#ttcmsservices .ttservice .ttshipping_img.service-icon {
	background: url("TemplateTrip/images/services-sprite.png") repeat scroll -30px -205px;
}

#ttcmsservices .ttservice .ttsupport_img.service-icon {
	background: url("TemplateTrip/images/services-sprite.png") repeat scroll -30px -302px;
}

@media(max-width:1199px) {
	#ttcmsservices .owl-carousel .owl-item::after {
		display: none;
	}
}

@media(max-width:543px) {
	#ttcmsservices .owl-item::after {
		display: none;
	}
}

/* ---------------------- End TT - CmsServices ------------------------ */

/* ------------------------------------ Start TT - CMS testimonial ------------------------------- */

#left-column .tt-title::after,#right-column .tt-title::after{
	display:none;
}
#left-column #tttestimonial-carousel, #right-column #tttestimonial-carousel{
	float: left;
	margin: 0;
	overflow: hidden;
	padding: 10px 15px;
	width: 100%;
}
#left-column #ttcmstestimonial .tt-titletab,#right-column #ttcmstestimonial .tt-titletab{
	border:none;
	margin:0;
}	
#ttcmstestimonial .tttestimonial-content li {
	list-style: none;
}
#ttcmstestimonial {
	float: left;
	width: 100%;
}
#ttcmstestimonial .tttesimonialinner {
	float: left;
	width: 100%;
}
#ttcmstestimonial .tttestimonial-content {
    float: left;
    width: 100%;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner {
    float: left;
    padding: 0 15px 12px;
    text-align: center;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    -khtml-transition: all 400ms ease-in-out 0s;
    width: 100%;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul {
    padding: 0!important;
	margin:0;
	float: left;
	width: 100%;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner .title_block {
    position: relative;
    display: none;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-image {
    margin: 10px auto;
    width: 80px;
    height: 80px;
    display: table;
	float:left;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-image img {
    float: left;
    width: 100%;
    height: 100%;
}
#ttcmstestimonial .tttestimonial-inner .testimonial-desc {
	float: left;
	text-align: left;
	width: 100%;
	margin: 0 0 10px;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-user-title h4 {
	color: #111;
	font: 600 15px/18px "Mulish", Helvetica, sans-serif;
	margin-top: 0;
	margin-bottom: 5px;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-user-title .tttestimonial-subtitle {
	font: 400 13px/15px "Mulish", Helvetica, sans-serif;
	color: #666;
}
#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-user-title{
	float:left;
	text-align:left;
	margin:28px 0 28px 15px;
}
#ttcmstestimonial .tttestimonial-inner .testimonial-desc p {
	font: 400 13px/24px "Mulish", Helvetica, sans-serif;
	color: #666;
	margin: 0;
	text-align: left;
}
#ttcmstestimonial .owl-nav {
	display: none;
}
#ttcmstestimonial .owl-dots {
	float: left;
	width: 100%;
	margin: 10px 0;
}
#ttcmstestimonial .owl-dots button {
	border: none;
	font-size: 0;
	height: 10px;
	width: 10px;
	background: #aaa;
	border-radius: 25px;
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
	-khtml-border-radius: 25px;
	cursor: pointer;
	padding: 0;
	margin: 0 5px;
	vertical-align: middle;
}
#ttcmstestimonial .owl-dots button.active {
	height: 10px;
	width: 10px;
	background: #2f4a74;
	vertical-align: middle;
}
@media (max-width: 1650px) {
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner {
		padding: 0 0 12px;
	}
}
@media (min-width: 992px) and (max-width: 1200px){
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-image {
		width: 70px;
		height: 70px;
	}
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-user-title .tttestimonial-subtitle {
		font-size: 12px;
	}
}
@media (max-width: 1599px) {
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner {
		padding:5px;
	}
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner ul li .testimonial-user-title {
		margin: 28px 0 28px 10px;
	}
}
@media (max-width: 1400px) {
    #ttcmstestimonial .tttestimonial-content {
        padding: 12px 0;
    }
}
@media (max-width: 1199px) {
    #ttcmstestimonial .tttestimonial-content {
        padding: 20px 0;
    }
}
@media (max-width: 991px) {
    #ttcmstestimonial .tttestimonial-content {
        padding: 0 10px;
	}
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner {
		padding:0;
	}
}

@media (max-width: 767px) {
    #ttcmstestimonial .tttestimonial-content .tttestimonial-inner {
        width: 100%;
    }
}
@media (max-width: 543px) {
	#ttcmstestimonial .tttestimonial-content .tttestimonial-inner{
		padding:10px;
	}
}

/* ------------------------------------ End TT - CMS testimonial ------------------------------- */

/*---------------- Start TT - Payment Block Css -------------------*/

#ttcmspaymentlogo ul.payment-list {
	padding: 0;
	margin: 0;
}

#ttcmspaymentlogo {
	float: left;
	width: 100%;
}

#ttcmspaymentlogo .title_block {
	color: #ffffff;
	font: 600 20px/28px "Mulish", Helvetica, sans-serif;
	margin: 0 0 10px;
}

#ttcmspaymentlogo ul li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 4px;
	padding: 0;
}

#ttcmspaymentlogo ul li img {
	max-width: 100%;
	border-radius: 4px;
}

/*---------------- End TT - Payment Block Css -------------------*/

/*---------------- Start TT - footer logo Css -------------------*/

#ttcmsfooterlogo {
	float: left;
	width: 100%;
}

#ttcmsfooterlogo img {
	max-width: 100%;
}

/*---------------- End TT - footer logo Css -------------------*/

/* ---------------------- End TT - CmsServices ------------------------ */

#ttcmsfooterservice {
	float: left;
	margin: 0 0 90px;
}

#ttcmsfooterservice .ttfooter-desc {
	color: #ccc;
	float: left;
	width: 90%;
	padding: 11px 0 0;
	font-size: 13px;
	line-height: 24px;
	font-weight: 600;
}

/* ---------------------- End TT - CmsServices ------------------------ */

/* ---------------------- Start TT - Cms Bottom banner offer ------------------------ */
.bottombanner-container {
	float:left;
	margin: 0 0 40px;
	position: relative;
	width:100%;
  }
  .bottombanner-container .bottombanner .description .tt-desc {
	  float: left;
	  position: absolute;
	  text-align: center;
	  width: auto;
	  top: 0;
	  bottom: 0;
	  margin: auto;
	  height: 45%;
	  cursor: pointer;
  }
  .bottombanner-container .bottombanner:last-child .description .tt-desc {
	  left: 0;
	  right: 0;
  }
  .bottombanner .tt-title {
	  display: none;
  }
  .bottombanner-container .bottombanner .description .tt-desc .title {
	  font: 700 34px/48px "Mulish",sans-serif;
	  color: #fff;
  }
  .bottombanner-container .bottombanner .description .tt-desc .subtitle {
	  font: 400 18px/44px "Mulish",sans-serif;
	  color: #111;
	  float: none;
	  width: auto;
	  position: relative;
	  background: #b8e3f0;
	  display: inline-block;
	  vertical-align: top;
	  padding: 0 30px;
	  margin: 10px 0 0;
  }
  .bottombanner-container .bottombanner .description .tt-desc .button > a.buy_now{
	  -webkit-border-radius: 25px;
	  -moz-border-radius: 25px;
	  -khtml-border-radius: 25px;
	  border-radius: 25px;
	  padding: 10px 25px;
	  float: none;
	  display: inline-block;
	  vertical-align: top;
	  margin-top: 10px;
	  font-size: 14px;
	  transition: all 400ms ease-in-out 0s;
	  -webkit-transition: all 400ms ease-in-out 0s;
	  -moz-transition: all 400ms ease-in-out 0s;
	  -o-transition: all 400ms ease-in-out 0s;
	  -ms-transition: all 400ms ease-in-out 0s;
	  background: #81ba00;
	  color: #ffffff;
	  line-height:24px;
  }
  .bottombanner-container .bottombanner .description .tt-desc .button > a.buy_now:hover{
	  background:#111;
  }
  .bottombanner-container a img{
	  max-width:100%;
	  height:auto;
	  -webkit-transition: 400ms ease-in-out;
	  -moz-transition: 400ms ease-in-out;
	  -ms-transition: 400ms ease-in-out;
	  -o-transition: 400ms ease-in-out;
	  transition: 400ms ease-in-out;
  }
  .bottombanner-container .bottombanner:hover a img{
	  -webkit-transform: scale(1.1);
	  -moz-transform: scale(1.1);
	  -ms-transform: scale(1.1);
	  -o-transform: scale(1.1);
	  transform: scale(1.1);
	  opacity: 0.8;
  }
  .bottombanner-container .bottombanner > a{
	  display: inline-block;
	  overflow:hidden;
  }
  .bottombanner-container .bottombanner.odd .description {
	bottom: auto;
	left: auto;
	padding: 0;
	position: absolute;
	right: 0;
	top: 25%;
  }
  .bottombanner-container .bottombanner.odd .description .tt-title {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	color: #ffffff;
	font: 700 50px/52px "Montserrat",sans-serif;
	margin: 0 0 20px;
	padding: 0;
	text-align:right;
  }
  .bottombanner-container .bottombanner .description .tt-desc > h2 {
	color: #ffffff;
	font: 500 16px/26px "Montserrat",sans-serif;
  }
  .bottombanner-container .bottombanner .description p {
	background: #ffcf11 none repeat scroll 0 0;
	border-radius: 25px;
	color: #111;
	display: inline-block;
	float: none;
	font-size: 16px;
	margin-top: 10px;
	padding: 10px 20px;
	width: auto;
  }
  .bottombanner-container .bottombanner.even {
	background: #ffffff none repeat scroll 0 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	float:left;
	padding: 10px;
	width: 33%;
	z-index:1;
  }
  .bottombanner-container .bottombanner.even .description {
	display: none;
  }
  .bottombanner-container .bottombanner.odd {
	float:left;
	padding: 13% 0;
	width: 67%;
	position:relative;
  }
  .bottombanner-container .bottombanner.odd::after {
	background: #f5f5f5 none repeat scroll 0 0;
	bottom: 75px;
	content: "";
	height: 350px;
	left: 0;
	position: absolute;
	right: auto;
	top: auto;
	width: 180px;
	z-index: -1;
  }
  .bottombanner-container .bottombanner.odd a img {
	float:left;
	height: auto;
	max-width: 100%;
	margin-left: -30px;
	transition: all 400ms ease-in-out 0s;
  }
  .bottombanner-container:hover .bottombanner.odd a img {
	margin: 0;
  }
  .bottombanner-container .bottombanner.odd .description {
	left: 0;
	right: auto;
  }
  .bottombanner-container .bottombanner.odd .description .tt-title {
	color: #111;
  }
  .bottombanner-container .bottombanner.odd .description .tt-desc > h2 {
	color: #777777;
	float: right;
	text-align: right;
	width: 56%;
  }
  .bottombanner-container .bottombanner .description .tt-desc .ttbtn-shop {
	float: right;
	margin-top: 20px;
	text-align: right;
	width: 100%;
  }
  .bottombanner-container .bottombanner .description .tt-desc .ttbtn-shop .ttbtn {
	background: #111;
	border-radius: 25px;
	color: #ffffff;
	padding: 10px 20px;
  }
  .bottombanner-container .bottombanner .description .tt-desc .ttbtn-shop .ttbtn:hover {
	background: #e0aa53;
  }
  @media (max-width:1600px) {
		.bottombanner-container .bottombanner .description .tt-desc .title {
			font-size:26px;
			line-height:38px;
		}
		.bottombanner-container .bottombanner .description .tt-desc {
			height: 65%;
		}
  }
  @media (max-width:1199px) {
	  .bottombanner-container .bottombanner .description .tt-desc .title {
		  font-size: 30px;
		  line-height: 38px;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .subtitle {
		  font-size: 14px;
		  line-height: 38px;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .button > a.buy_now {
		  font-size: 14px;
		  padding: 8px 20px;
	  }
	  .topbanner-container .topbanner.odd::after {
		bottom: 40px;
	  }
  }
  @media (max-width:991px) {
	  .bottombanner-container .container {
		  padding: 0;
	  }
	  .bottombanner-container .bottombanner.even {
		width: 40%;
	  }
	  .bottombanner-container .bottombanner.odd {
		width: 60%;
		padding:110px 0;
	  }
	  .bottombanner-container .bottombanner.odd::after {
		  height:300px;
		  bottom:0;
	  }
	  .bottombanner-container .bottombanner.odd {
		padding: 67px 0;
	  }
	  .bottombanner-container .bottombanner.odd .description .tt-title {
		font: 700 30px/34px "Montserrat",sans-serif;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc > h2 {
		font: 500 14px/20px "Montserrat",sans-serif;
	  }
	  .bottombanner-container .bottombanner .description p {
		font-size: 12px;
		padding: 5px 15px;
		margin-bottom:0;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .title{
		  font-size: 24px;
		  line-height: 32px;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .subtitle{
		  font-size: 14px;
		  line-height: 38px;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .button > a.buy_now{
		  padding:8px 20px;
		  margin-top:5px;
	  }
	  .bottombanner-container {
		  margin: 0 0 30px;
	  }
  }
  @media (max-width:767px) {
	.bottombanner-container .bottombanner .description .tt-desc .title {
		font-size: 19px;
		line-height: 22px;
	}
	.bottombanner-container .bottombanner .description .tt-desc .subtitle {
		font-size: 13px;
		line-height: 34px;
	}
	.bottombanner-container .bottombanner .description .tt-desc {
		height: 65%;
	}
  }
  @media (max-width:544px) {
	  .bottombanner-container .bottombanner.odd {
		padding: 59px 0;
		width: 60%;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc {
		  height: 85%;
	  }
	  .bottombanner-container .bottombanner.odd::after {
		height: 230px;
		bottom: 10px;
		width:140px;
	  }
	  .bottombanner-container .bottombanner.odd a img {
		width: 60%;
	  }
	  .bottombanner-container .bottombanner.odd .description {
		top: 30px;
	  }
  }
  @media (max-width:543px) {
	  .bottombanner-container .bottombanner.even {
		width: 100%;
	  }
	  .bottombanner-container .bottombanner.odd {
		padding: 15px 0;
	  }
	  .bottombanner-container .bottombanner.odd {
		width: 100%;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc {
		  height: 90px;
	  }
	  .bottombanner-container .bottombanner.odd::after {
		bottom: auto;
		height: 180px;
		top: 0;
		width: 100%;
	  }
	  .bottombanner-container .bottombanner > a {
		text-align:center;
	  }
	  .bottombanner-container .bottombanner.odd a img {
		margin-left: 0;
		display: inline-block;
		float: none;
		width: 65%;
		vertical-align:top;
	  }
	  .bottombanner-container .bottombanner.odd .description {
		float: left;
		margin-top: 20px;
		position: static;
		text-align:right;
		width: 100%;
	  }
	  .bottombanner-container .bottombanner.odd .description .tt-desc > h2 {
		width: 100%;
	  }
	  .bottombanner-container {
		  margin: 0 0 20px;
	  }
	  .bottombanner-container .bottombanner {
		margin-bottom: 15px;
	  }
	  .bottombanner-container .bottombanner:last-child{
			margin-bottom:0;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .title {
		  font-size: 14px;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc .subtitle {
		  display: none;
	  }
	  .bottombanner-container .bottombanner .description .tt-desc {
		  height: 20px;
	  }
  }
/* ---------------------- Start TT - Cms Bottom banner offer ------------------------ */

/*------------------------------------- Start Footer css Strat ------------------------------------*/

#ttcmsfooter {
	float: left;
	width: 100%;
}

#ttcmsfooter .title_block {
	margin: 0 0 20px;
}

#ttfooter {
	float: left;
	width: 100%;
}

#ttcmsfooter .ttfooter-logo {
	float: left;
	width: 100%;
}

.ttfooter-img1 {
	float: left;
	width: 100%;
	margin: 0 0 15px;
}

.ttfooter-img2 {
	float: left;
	width: 100%;
}

#ttcmsfooter img {
	max-width: 100%;
}

@media (max-width: 991px) {
	#ttcmsfooter .title_block {
		padding: 10px;
		margin: 0;
	}
}
@media (max-width: 991px) {
	#ttcmsfooter .ttfooter-logo {
		padding: 5px 10px;
	}
}

/*------------------------------------- Footer Bottom Social Links Strat ------------------------------------*/

.follow-us h5 {
	display: none;
	cursor: pointer;
}

.follow-us ul {
	display: inline-block;
	margin: 0;
}

.follow-us {
	float: left;
	width: 100%;
	text-align: left;
}

footer .footer-column .follow-us .list-unstyled {
	list-style: none;
	margin: 0;
	float: left;
	width: 100%;
}

.follow-us ul.list-unstyled li {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	position: relative;
	vertical-align: top;
}

.follow-us ul.list-unstyled li.facebook a::before {
	float: left;
	height: 30px;
	width: 30px;
	content: "";
	background: url("TemplateTrip/images/follow-us.png")no-repeat scroll -25px -25px;
}

.follow-us ul.list-unstyled li.facebook a:hover::before {
	background-position: -105px -25px;
}

.follow-us ul.list-unstyled li.twitter a::before {
	float: left;
	height: 30px;
	width: 30px;
	content: "";
	background: url("TemplateTrip/images/follow-us.png")no-repeat scroll -25px -105px;
}

.follow-us ul.list-unstyled li.twitter a:hover::before {
	background-position: -105px -105px;
}

.follow-us ul.list-unstyled li.youtube a::before {
	float: left;
	height: 30px;
	width: 30px;
	content: "";
	background: url("TemplateTrip/images/follow-us.png")no-repeat scroll -25px -265px;
}

.follow-us ul.list-unstyled li.youtube a:hover::before {
	background-position: -105px -265px;
}

.follow-us ul.list-unstyled li.googleplus a::before {
	float: left;
	height: 30px;
	width: 30px;
	content: "";
	background: url("TemplateTrip/images/follow-us.png")no-repeat scroll -25px -345px;
}

.follow-us ul.list-unstyled li.googleplus a:hover::before {
	background-position: -105px -345px;
}

.follow-us ul.list-unstyled li.pinterest a::before {
	float: left;
	height: 30px;
	width: 30px;
	content: "";
	background: url("TemplateTrip/images/follow-us.png")no-repeat scroll -25px -425px;
}

.follow-us ul.list-unstyled li.pinterest a:hover::before {
	background-position: -105px -425px;
}

.follow-us ul li a {
	color: #222;
	padding: 0px 0;
	float: left;
	margin: 0;
	text-align: center;
	height: 100%;
	line-height: 30px;
	width: 30px;
}

.follow-us ul li a p {
	display: none;
}

.follow-us ul li a i {
	font-size: 15px;
	font-weight: 500;
	display: none;
}

@media (max-width: 991px) {
	.footer_default footer .footer-column .follow-us .list-unstyled {
		float: none;
		display: block !important;
		vertical-align: top;
		width: auto;
		text-align: center;
	}
	.follow-us {
		text-align: center;
	}
}

@media (max-width: 767px) {
	.follow-us {
		text-align: center;
	}
}

/*------------------------------------- Footer Bottom Social Links End ----------------------------------------*/

/*---------------------------------------- Footer Store Info Block Start -----------------------------*/

footer .contact-us, footer .contact-us ul {
	float: left;
	margin: 0;
	text-align: left;
	width: 100%;
}

footer .contact-us ul li span a {
	font: 400 13px/24px "Mulish", Helvetica, sans-serif;
}

footer .contact-us ul li .phone a {
	font: 600 20px/26px "Mulish", Helvetica, sans-serif;
	padding: 0 0 0 5px;
	color: #83a900;
}

footer .contact-us .data.contact i::before {
	color: #83a900;
	font-size: 20px;
}

footer .contact-us ul li i.fa.fa-phone {
	margin: 0;
}

footer .contact-us ul li a::before {
	display: none;
}

.contact-us .data .contact-address {
	padding: 0 0 0 30px;
}

.contact-us .data {
	color: #cccccc;
	font: 600 13px/27px "Mulish", Helvetica, sans-serif;
	position: relative;
}

footer .contact-us i:before {
	color: #cccccc;
	font-size: 16px;
}

footer .contact-us ul li i {
	float: left;
	height: 25px;
	margin: 0 5px 0 0;
	padding: 5px 0;
	text-align: center;
	width: 25px;
	font-size: 18px;
}

footer .contact-us ul li.contact i {
	color: #83a900;
	font-size: 20px;
	margin: 0;
}

@media (max-width: 991px) {
	footer .contact-us, footer .contact-us ul {
		width: 100%;
	}
}

/*---------------------------------------- Footer Store Info Block End -----------------------------*/

/*------------------------ CheckBox,Radio Extra CSS Start -----------------------------------------*/

input[type="radio"], input[type="checkbox"] {
	margin-top: 0px;
	cursor: pointer;
}

.checkbox-wrapper {
	background: url("TemplateTrip/images/input-sprite.png") repeat scroll 0 -257px;
	width: 15px;
	height: 15px;
	display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: middle;
}

.checkbox-wrapper:hover {
	background-position: -30px -257px;
}

.checkbox-wrapper.active {
	background-position: -15px -257px;
}

.checkbox-wrapper input {
	background: none;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	position: relative;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.radio-wrapper {
	background: url("TemplateTrip/images/input-sprite.png") repeat scroll 0 -243px;
	width: 13px;
	height: 13px;
	display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: middle;
}

.radio-wrapper:hover, .radio-wrapper.active {
	background-position: -13px -243px;
}

.radio-wrapper input {
	background: none;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	position: relative;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.checkout-cart .panel-collapse .input-group .form-control {
	border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px;
	-khtml-border-radius: 5px 0 0 5px;
}

/*------------------------ CheckBox,Radio Extra CSS End -----------------------------------------*/

.full-header.fixed {
	animation: 1s ease 0s normal both 1 running fixedmenu;
	border: medium none;
	float: left;
	left: 0;
	margin: 0;
	padding: 0;
	position: fixed !important;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
	-webkit-transition: all 400ms ease 0s;
	-moz-transition: all 400ms ease 0s;
	-ms-transition: all 400ms ease 0s;
	-o-transition: all 400ms ease 0s;
	transition: all 400ms ease 0s;
}

.full-header.fixed .main-category-list .tt-menu .ul-top-items {
	display: none;
}

.header_default .full-header.fixed #tttoplink_block {
	float: left;
	padding: 0 15px;
}


@-webkit-keyframes fixedmenu {
	0% {
		top: -100%;
	}
	100% {
		top: 0;
	}
}

@-moz-keyframes fixedmenu {
	0% {
		top: -100%;
	}
	100% {
		top: 0;
	}
}

@keyframes fixedmenu {
	0% {
		top: -100%;
	}
	100% {
		top: 0;
	}
}

#at15s .at-label {
	margin: 0 5px;
}
/*------------------------ product-extended CSS Start -----------------------------------------*/
#product-extended-01.product-extended-01-content .extended-row{
	display:flex;
	align-items:center;
}
#product-extended-01.product-extended-01-content .layout-col-01 {
    float: right;
	order: 2;
}
@media (max-width: 767px) {
	#product-extended-01.product-extended-01-content h2{
		font-size: 20px !important;
		font-weight: 600 !important;
		margin: 0 0 20px !important;
		line-height: 22px !important;
	}
	#product-extended-01.product-extended-01-content p{
		font-size:12px !important;	
	}
}
@media (max-width: 543px) {
	#product-extended-01.product-extended-01-content .extended-row{
		display:inline-block;	
	}
	#product-extended-01.product-extended-01-content h2{
		margin:20px 0 10px 0 !important;	
		text-align:center;
	}
	#product-extended-01.product-extended-01-content p{
		text-align:center;
		margin: 0 0 10px 0 !important;
	}
}
.common-home .slider-banner .slideshow-panel{
	width: 100% !important;
	float: none !important;
}
.common-home .slider-banner .slideshow-panel img {
	display: inline !important;
	width: auto !important;
	vertical-align: 0 !important;
}
.common-home #slideshow0 .swiper-slide{
	width: 100% !important;
}
/*------------------------ product-extended CSS End -----------------------------------------*/