body {
	background: #0d0d0d;
}

/* TB-Services-CMS Start*/
#tb-service-cms {
	margin: -380px 0 100px 0;
	position: relative;
	z-index: 1;
}

#tb-service-cms .tb-service-img-wrapper {
	text-align: center;
}

#tb-service-cms .tb-service-img-wrapper .tb-service-img {
	position: relative;
	display: inline-block;
}

#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: auto;
	background-repeat: no-repeat;
	background-size: contain;
	width: 134px;
	height: 134px;
	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;
}

#tb-service-cms .tb-service-img-wrapper .tb-service-img::before {
	left: 70px;
	right: auto;
	background-image: url('../images/service-before.png');
	transform: translateY(-30px);
	-webkit-transform: translateY(-30px);
	-moz-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	-o-transform: translateY(-30px);
	animation: service_up_down 5s linear infinite;
	-webkit-animation: service_up_down 5s linear infinite;
}

#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
	left: auto;
	right: 70px;
	background-image: url('../images/service-after.png');
	transform: translateY(-45px);
	-webkit-transform: translateY(-45px);
	-moz-transform: translateY(-45px);
	-ms-transform: translateY(-45px);
	-o-transform: translateY(-45px);
	animation: service_down_up 5s linear infinite;
	-webkit-animation: service_down_up 5s linear infinite;
}

@keyframes service_up_down {
	0% {
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
	}

	50% {
		transform: translateY(-45px);
		-webkit-transform: translateY(-45px);
		-moz-transform: translateY(-45px);
		-ms-transform: translateY(-45px);
		-o-transform: translateY(-45px);
	}

	100% {
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
	}
}

@-webkit-keyframes service_up_down {
	0% {
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
	}

	50% {
		transform: translateY(-45px);
		-webkit-transform: translateY(-45px);
		-moz-transform: translateY(-45px);
		-ms-transform: translateY(-45px);
		-o-transform: translateY(-45px);
	}

	100% {
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
	}
}

@keyframes service_down_up {
	0% {
		transform: translateY(-45px);
		-webkit-transform: translateY(-45px);
		-moz-transform: translateY(-45px);
		-ms-transform: translateY(-45px);
		-o-transform: translateY(-45px);
	}

	50% {
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
	}

	100% {
		transform: translateY(-45px);
		-webkit-transform: translateY(-45px);
		-moz-transform: translateY(-45px);
		-ms-transform: translateY(-45px);
		-o-transform: translateY(-45px);
	}
}

@-webkit-keyframes service_down_up {
	0% {
		transform: translateY(-45px);
		-webkit-transform: translateY(-45px);
		-moz-transform: translateY(-45px);
		-ms-transform: translateY(-45px);
		-o-transform: translateY(-45px);
	}

	50% {
		transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-o-transform: translateY(-30px);
	}

	100% {
		transform: translateY(-45px);
		-webkit-transform: translateY(-45px);
		-moz-transform: translateY(-45px);
		-ms-transform: translateY(-45px);
		-o-transform: translateY(-45px);
	}
}

#tb-service-cms .tb-service-img-wrapper .tb-service-img img {
	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;
	animation: service_rotate 10s linear infinite;
	-webkit-animation: service_rotate 10s linear infinite;
}

@keyframes service_rotate {

	0%,
	50%,
	100% {
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}

	25% {
		transform: rotate(3deg);
		-webkit-transform: rotate(3deg);
		-moz-transform: rotate(3deg);
		-ms-transform: rotate(3deg);
		-o-transform: rotate(3deg);
	}

	75% {
		transform: rotate(-3deg);
		-webkit-transform: rotate(-3deg);
		-moz-transform: rotate(-3deg);
		-ms-transform: rotate(-3deg);
		-o-transform: rotate(-3deg);
	}
}

@-webkit-keyframes service_rotate {

	0%,
	50%,
	100% {
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}

	25% {
		transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-o-transform: rotate(5deg);
	}

	75% {
		transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-o-transform: rotate(-5deg);
	}
}

#tb-service-cms .tb-service-main-col {
	position: relative;
	padding: 60px 80px 0;
}

#tb-service-cms .tb-service-col {
	padding: 0;
}

#tb-service-cms .tb-service-col.tb-service-col1,
#tb-service-cms .tb-service-col.tb-service-col4 {
	margin: -300px 0 0;
}

#tb-service-cms .tb-service-col .tb-service-box {
	text-align: center;
}

#tb-service-cms .tb-service-col .tb-service-box .tb-service-icon {
	position: relative;
	width: 85px;
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	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;
}

#tb-service-cms .tb-service-col .tb-service-box .tb-service-icon::before {
	content: '';
	position: absolute;
	border: 2px dashed #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	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;
}

#tb-service-cms .tb-service-col:hover .tb-service-box .tb-service-icon::before {
	border: 2px dashed #ffbe00;
	animation: rotate 50s linear infinite;
	-webkit-animation: rotate 50s linear infinite;
}

@keyframes rotate {

	0%,
	100% {
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}

	50% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
	}
}

@-webkit-keyframes rotate {

	0%,
	100% {
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
	}

	50% {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
	}
}

#tb-service-cms .tb-service-col .tb-service-box .tb-service-icon i {
	position: absolute;
	color: #fff;
	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;
}

#tb-service-cms .tb-service-main-col .tb-service-col.tb-service-col1 .tb-service-box .tb-service-icon i,
#tb-service-cms .tb-service-main-col .tb-service-col.tb-service-col2 .tb-service-box .tb-service-icon i {
	font-size: 52px;
	line-height: 54px;
}

#tb-service-cms .tb-service-main-col .tb-service-col.tb-service-col3 .tb-service-box .tb-service-icon i {
	font-size: 44px;
	line-height: 46px;
}

#tb-service-cms .tb-service-main-col .tb-service-col.tb-service-col4 .tb-service-box .tb-service-icon i {
	font-size: 38px;
	line-height: 40px;
}

#tb-service-cms .tb-service-col:hover .tb-service-box .tb-service-icon i {
	color: #ffbe00;
}

#tb-service-cms .tb-service-col .tb-service-box .tb-service-text .tb-service-title {
	font: 600 24px/26px 'Tw Cen MT', helvetica, sans-serif;
	color: #fff;
	letter-spacing: 0.50px;
	text-transform: capitalize;
	margin: 25px 0 8px 0;
	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;
}

#tb-service-cms .tb-service-col:hover .tb-service-box .tb-service-text .tb-service-title {
	color: #ffbe00;
}

#tb-service-cms .tb-service-col .tb-service-box .tb-service-desc {
	font: 400 16px/18px 'Lexend', helvetica, sans-serif;
	margin-bottom: 0;
	color: #ccc;
}

@media (max-width: 1899px) {
	#tb-service-cms {
		margin: -350px 0 100px 0;
	}
}

@media (max-width: 1799px) {
	#tb-service-cms {
		margin: -320px 0 100px 0;
	}

	#tb-service-cms .tb-service-main-col {
		padding: 40px 80px 0;
	}
}

@media (max-width: 1699px) {
	#tb-service-cms {
		margin: -300px 0 100px 0;
	}
}

@media (max-width: 1599px) {
	#tb-service-cms {
		margin: -280px 0 100px 0;
	}
}

@media (max-width: 1499px) {
	#tb-service-cms {
		margin: -250px 0 100px 0;
	}
}

@media (max-width: 1399px) {
	#tb-service-cms {
		margin: -220px 0 100px 0;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		top: 30px;
		width: 100px;
		height: 100px;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		right: 90px;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before {
		left: 90px;
	}

	#tb-service-cms .tb-service-col .tb-service-box .tb-service-desc {
		font-size: 15px;
		line-height: 18px;
	}
}

@media (max-width: 1299px) {
	#tb-service-cms {
		margin: -200px 0 80px 0;
	}
}

@media (max-width: 1199px) {
	#tb-service-cms {
		margin: -100px 0 60px 0;
	}

	#tb-service-cms .tb-service-main-col {
		padding: 30px 0 0;
	}

	#tb-service-cms .tb-service-col.tb-service-col1,
	#tb-service-cms .tb-service-col.tb-service-col4 {
		margin: -240px 0 0;
	}
}

@media (max-width: 991px) {

	#tb-service-cms {
		margin: -100px 0 40px 0;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		width: 80px;
		height: 80px;
	}

	#tb-service-cms .tb-service-col.tb-service-col1,
	#tb-service-cms .tb-service-col.tb-service-col4 {
		margin: -200px 0 0;
	}

	#tb-service-cms .tb-service-col .tb-service-box .tb-service-text .tb-service-title {
		font-size: 20px;
		line-height: 22px;
		margin: 15px 0 8px 0;
	}

	#tb-service-cms .tb-service-col .tb-service-box .tb-service-desc {
		font-size: 12px;
		line-height: 14px;
	}
}

@media (max-width: 767px) {

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		top: 10px;
		width: 65px;
		height: 65px;
	}

	#tb-service-cms .tb-service-main-col {
		padding: 20px 0 0;
	}

	#tb-service-cms .tb-service-col.tb-service-col4 {
		margin: 0;
	}

	#tb-service-cms .tb-service-col.tb-service-col1,
	#tb-service-cms .tb-service-col.tb-service-col2 {
		margin: 0 0 30px;
	}
}

@media (max-width: 575px) {

	#tb-service-cms {
		margin: -80px 0 40px 0;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		top: 8px;
		width: 50px;
		height: 50px;
	}

	#tb-service-cms .tb-service-main-col {
		padding: 25px 0 0;
	}

	#tb-service-cms .tb-service-col.tb-service-col1,
	#tb-service-cms .tb-service-col.tb-service-col2,
	#tb-service-cms .tb-service-col.tb-service-col3 {
		margin: 0 0 25px;
	}

	@keyframes service_up_down {
		0% {
			transform: translateY(-30px);
			-webkit-transform: translateY(-30px);
			-moz-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
			-o-transform: translateY(-30px);
		}

		50% {
			transform: translateY(-40px);
			-webkit-transform: translateY(-40px);
			-moz-transform: translateY(-40px);
			-ms-transform: translateY(-40px);
			-o-transform: translateY(-40px);
		}

		100% {
			transform: translateY(-30px);
			-webkit-transform: translateY(-30px);
			-moz-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
			-o-transform: translateY(-30px);
		}
	}

	@-webkit-keyframes service_up_down {
		0% {
			transform: translateY(-30px);
			-webkit-transform: translateY(-30px);
			-moz-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
			-o-transform: translateY(-30px);
		}

		50% {
			transform: translateY(-40px);
			-webkit-transform: translateY(-40px);
			-moz-transform: translateY(-40px);
			-ms-transform: translateY(-40px);
			-o-transform: translateY(-40px);
		}

		100% {
			transform: translateY(-30px);
			-webkit-transform: translateY(-30px);
			-moz-transform: translateY(-30px);
			-ms-transform: translateY(-30px);
			-o-transform: translateY(-30px);
		}
	}

	@keyframes service_down_up {
		0% {
			transform: translateY(-45px);
			-webkit-transform: translateY(-45px);
			-moz-transform: translateY(-45px);
			-ms-transform: translateY(-45px);
			-o-transform: translateY(-45px);
		}

		50% {
			transform: translateY(-35px);
			-webkit-transform: translateY(-35px);
			-moz-transform: translateY(-35px);
			-ms-transform: translateY(-35px);
			-o-transform: translateY(-35px);
		}

		100% {
			transform: translateY(-45px);
			-webkit-transform: translateY(-45px);
			-moz-transform: translateY(-45px);
			-ms-transform: translateY(-45px);
			-o-transform: translateY(-45px);
		}
	}

	@-webkit-keyframes service_down_up {
		0% {
			transform: translateY(-45px);
			-webkit-transform: translateY(-45px);
			-moz-transform: translateY(-45px);
			-ms-transform: translateY(-45px);
			-o-transform: translateY(-45px);
		}

		50% {
			transform: translateY(-35px);
			-webkit-transform: translateY(-35px);
			-moz-transform: translateY(-35px);
			-ms-transform: translateY(-35px);
			-o-transform: translateY(-35px);
		}

		100% {
			transform: translateY(-45px);
			-webkit-transform: translateY(-45px);
			-moz-transform: translateY(-45px);
			-ms-transform: translateY(-45px);
			-o-transform: translateY(-45px);
		}
	}
}

@media (max-width: 480px) {
	#tb-service-cms {
		margin: 0 0 20px;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		top: 5px;
		width: 40px;
		height: 40px;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before {
		left: 75px;
	}

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		right: 75px;
	}

	#tb-service-cms .tb-service-main-col {
		padding: 20px 0 0;
	}

	#tb-service-cms .tb-service-col.tb-service-col1,
	#tb-service-cms .tb-service-col.tb-service-col2,
	#tb-service-cms .tb-service-col.tb-service-col3 {
		margin: 0 0 20px;
	}
}

@media (max-width: 360px) {

	#tb-service-cms .tb-service-img-wrapper .tb-service-img::before,
	#tb-service-cms .tb-service-img-wrapper .tb-service-img::after {
		top: 0;
	}
}

/* TB-Services-CMS End*/

/* TB-Banner-CMS Start*/
#tb-banner-cms {
	margin: 0 0 100px 0;
}

#tb-banner-cms .tb-banner-images {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-top: 3px solid #ffbe00;
}

#tb-banner-cms .tb-banner-images img {
	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;
}

#tb-banner-cms .tb-banner-images:hover img {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
}

#tb-banner-cms .tb-banner-images .tb-banner-text {
	position: absolute;
	top: 50%;
	left: auto;
	right: 20px;
	width: 46%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-text-2 {
	left: 28px;
	right: auto;
}

#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
	font: 400 54px/56px 'Tw Cen MT', helvetica, sans-serif;
	color: #fff;
	margin: 0;
	letter-spacing: 0;
	text-transform: capitalize;
}

#tb-banner-cms .tb-banner-images .tb-banner-text p {
	font: 400 16px/30px 'Lexend', helvetica, sans-serif;
	color: #fff;
	margin: 10px 0 20px;
	letter-spacing: 0;
}

#tb-banner-cms .tb-banner-images .tb-banner-text .btn-secondary::before {
	background: #fff;
}

@media (max-width: 1499px) {
	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 50px;
		line-height: 52px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text p {
		font-size: 16px;
		line-height: 28px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-text-2 {
		left: 30px;
	}
}

@media (max-width: 1399px) {
	#tb-banner-cms .tb-banner-images .tb-banner-text {
		width: 43%;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 46px;
		line-height: 48px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text p {
		margin: 6px 0 15px;
	}
}

@media (max-width: 1299px) {
	#tb-banner-cms {
		margin: 0 0 80px 0;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 42px;
		line-height: 44px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text p {
		font-size: 15px;
		line-height: 26px;
	}
}

@media (max-width: 1199px) {
	#tb-banner-cms {
		margin: 0 0 60px 0;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text {
		right: 15px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-text-2 {
		left: 15px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 36px;
		line-height: 38px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text p {
		font-size: 14px;
		line-height: 24px;
	}
}

@media (max-width: 991px) {
	#tb-banner-cms {
		margin: 0 0 40px 0;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text p {
		display: none;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text {
		width: 44%;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 28px;
		line-height: 32px;
		margin: 0 0 12px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text .btn-secondary {
		padding: 8px 15px;
	}
}

@media (max-width: 767px) {
	#tb-banner-cms {
		text-align: center;
	}

	#tb-banner-cms .tb-banner-cms-col-01 {
		margin: 0 0 10px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text {
		text-align: left;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 42px;
		line-height: 44px;
		margin: 0 0 15px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-text-2 {
		left: 30px;
	}
}

@media (max-width: 575px) {
	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 36px;
		line-height: 38px;
	}
}

@media (max-width: 480px) {
	#tb-banner-cms {
		margin: 0 0 20px 0;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-text-2 {
		left: 20px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 26px;
		line-height: 28px;
		margin: 0 0 12px;
	}
}

@media (max-width: 360px) {
	#tb-banner-cms .tb-banner-images .tb-banner-text.tb-banner-text-2 {
		left: 15px;
	}

	#tb-banner-cms .tb-banner-images .tb-banner-text h2 {
		font-size: 24px;
		line-height: 26px;
		margin: 0 0 12px;
	}
}


/* TB-Banner-CMS End*/
/* TB-Container-Banner-CMS Start*/
#tb-container-banner-cms {
	margin: 0 0 100px;
}

#tb-container-banner-cms .tb-container-banner-wrapper {
	text-align: center;
}

#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img {
	position: relative;
	display: inline-block;
}

#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before,
#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
	content: '';
	position: absolute;
	bottom: auto;
	background-repeat: no-repeat;
	background-size: contain;
	width: 82px;
	height: 82px;
	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;
	animation: container_banner_up_down 5s linear infinite;
	-webkit-animation: container_banner_up_down 5s linear infinite;
}

#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before {
	top: 45%;
	left: -20px;
	right: auto;
	background-image: url('../images/container-banner-before.png');
}

#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
	top: 28%;
	right: -20px;
	left: auto;
	background-image: url('../images/container-banner-after.png');
}

@keyframes container_banner_up_down {
	0% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
		-webkit-transform: translateY(-15px);
		-moz-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		-o-transform: translateY(-15px);
	}

	100% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}
}

@-webkit-keyframes container_banner_up_down {
	0% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}

	50% {
		transform: translateY(-15px);
		-webkit-transform: translateY(-15px);
		-moz-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		-o-transform: translateY(-15px);
	}

	100% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
	}
}

#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
	font: 400 100px/102px 'Tw Cen MT', helvetica, sans-serif;
}

#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-desc {
	font: 400 20px/36px 'Lexend', helvetica, sans-serif;
	margin: 20px 120px 30px;
}

@media (max-width: 1599px) {
	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 90px;
		line-height: 92px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-desc {
		font-size: 18px;
		line-height: 32px;
		margin: 18px 180px 25px;
	}
}

@media (max-width: 1299px) {

	#tb-container-banner-cms {
		margin: 0 0 80px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 80px;
		line-height: 82px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-desc {
		font-size: 16px;
		line-height: 30px;
		margin: 15px 110px 20px;
	}
}

@media (max-width: 1199px) {

	#tb-container-banner-cms {
		margin: 0 0 60px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 70px;
		line-height: 72px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-desc {
		font-size: 15px;
		line-height: 28px;
		margin: 15px 60px 20px;
	}
}

@media (max-width: 991px) {

	#tb-container-banner-cms {
		margin: -10px 0 40px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 60px;
		line-height: 62px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-desc {
		font-size: 14px;
		line-height: 26px;
		margin: 12px 0 18px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before,
	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
		width: 70px;
		height: 70px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before {
		top: 40%;
		left: 0;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
		top: 25%;
		right: 0;
	}
}

@media (max-width: 767px) {
	#tb-container-banner-cms {
		margin: 0 0 40px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before,
	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
		width: 55px;
		height: 55px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 46px;
		line-height: 48px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before {
		top: 33%;
		left: 5px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
		top: 20%;
		right: 5px;
	}
}

@media (max-width: 575px) {
	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 36px;
		line-height: 38px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-desc {
		font-size: 13px;
		line-height: 24px;
		margin: 8px 0 14px;
	}
}

@media (max-width: 480px) {

	#tb-container-banner-cms {
		margin: 0 0 20px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::before,
	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-img::after {
		width: 40px;
		height: 40px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text {
		padding: 50px 20px 20px;
	}

	#tb-container-banner-cms .tb-container-banner-wrapper .tb-container-banner-text .tb-container-banner-title {
		font-size: 28px;
		line-height: 30px;
	}
}

/* TB-Container-Banner-CMS End*/

/* TB-Sub-Banner-CMS Start*/
#tb-sub-banner-cms {
	padding: 50px 0 0;
	margin: 0 0 100px;
}

#tb-sub-banner-cms .tb-sub-banner-img-wrapper {
	position: relative;
	padding: 0 0 15px;
}

#tb-sub-banner-cms .tb-sub-banner-img-wrapper::before {
	content: '';
	position: absolute;
	top: 35px;
	left: 35px;
	right: -15px;
	bottom: 0;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
	border: 2px dashed #ffbe00;
	z-index: -1;
}

#tb-sub-banner-cms .tb-sub-banner-img-wrapper::after {
	content: '\eb85';
	position: absolute;
	font-family: "IcoFont";
	color: #ffbe00;
	font-size: 130px;
	line-height: 132px;
	top: -65px;
	left: auto;
	right: -65px;
	bottom: auto;
	animation: rotate 50s linear infinite;
	-webkit-animation: rotate 50s linear infinite;
}

#tb-sub-banner-cms .tb-sub-banner-img-wrapper .tb-sub-banner-img {
	overflow: hidden;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-ms-border-radius: 15px;
	-o-border-radius: 15px;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper {
	margin: -55px 0 0 -80px;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-chef-img {
	text-align: center;
	margin: 0 0 -34px;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text {
	background: #ffbe00;
	padding: 60px 0 40px;
	text-align: center;
	border-radius: 15px;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-title {
	font: 400 50px/52px 'Tw Cen MT', helvetica, sans-serif;
	color: #111;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-desc {
	font: 400 18px/30px 'Lexend', helvetica, sans-serif;
	color: #111;
	margin: 10px 120px 20px;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .btn-secondary {
	background: #fff;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .btn-secondary:hover,
#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .btn-secondary:active,
#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .btn-secondary:focus {
	color: #fff;
}

#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .btn-secondary::before {
	background: #111;
}

@media (max-width: 1499px) {
	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-desc {
		margin: 10px 70px 15px;
	}
}

@media (max-width: 1299px) {
	#tb-sub-banner-cms {
		margin: 0 0 80px;
	}
}

@media (max-width: 1199px) {
	#tb-sub-banner-cms {
		margin: 0 0 60px;
	}

	#tb-sub-banner-cms .tb-sub-banner-img-wrapper::after {
		font-size: 100px;
		line-height: 102px;
		top: -50px;
		right: -50px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper {
		margin: -45px 0 0 -80px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-title {
		font-size: 40px;
		line-height: 42px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-desc {
		font-size: 15px;
		line-height: 28px;
		margin: 10px 30px 15px;
	}
}

@media (max-width: 991px) {
	#tb-sub-banner-cms {
		padding: 0;
		margin: -10px 0 40px;
	}

	#tb-sub-banner-cms .tb-sub-banner-col:first-child {
		order: 2;
	}

	#tb-sub-banner-cms .tb-sub-banner-img-wrapper {
		padding: 0 15px 15px 0;
		margin: 0;
	}

	#tb-sub-banner-cms .tb-sub-banner-img-wrapper::before {
		right: 0;
	}

	#tb-sub-banner-cms .tb-sub-banner-img-wrapper::after {
		display: none;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper {
		margin: 0 0 25px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-desc {
		margin: 10px 0 15px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text {
		padding: 50px 30px 30px;
		border-radius: 15px;
		width: 65%;
		margin: 0 auto;
	}
}

@media (max-width: 767px) {
	#tb-sub-banner-cms {
		margin: 0 0 40px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text {
		width: 85%;
	}
}

@media (max-width: 575px) {

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper {
		margin: 0 0 20px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text {
		width: 100%;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-title {
		font-size: 38px;
		line-height: 40px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-desc {
		font-size: 14px;
		line-height: 24px;
		margin: 8px 0 12px;
	}
}

@media (max-width: 480px) {
	#tb-sub-banner-cms {
		margin: 0 0 20px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text {
		padding: 50px 15px 15px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-title {
		font-size: 30px;
		line-height: 32px;
	}

	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-desc {
		margin: 6px 0 10px;
	}
}

@media (max-width: 360px) {
	#tb-sub-banner-cms .tb-sub-banner-content-wrapper .tb-sub-banner-text .tb-sub-banner-title {
		font-size: 24px;
		line-height: 26px;
	}
}

/* TB-Sub-Banner-CMS End*/

/* TB-Testimonial-CMS Start*/
#tb-testimonial-cms {
	margin: 0 0 100px 0;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-main {
	background-color: #242424;
	padding: 30px;
	margin: 0;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-img {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0;
}

#tb-testimonial-cms .tb-testimonial-section {
	text-align: center;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section {
	display: flex;
	gap: 20px;
	margin: 0 0 20px;
}

#tb-testimonial-cms .tb-testimonial-flex {
	overflow: hidden;
}

#tb-testimonial-cms .owl-item {
	float: left;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text {
	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;
	display: inline-block;
	text-align: left;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text h2 {
	font: 400 26px/28px 'Tw Cen MT', helvetica, sans-serif;
	color: #ffbe00;
	letter-spacing: 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;
	text-transform: capitalize;
	margin: 0;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text h3 {
	font: 400 16px/18px 'Lexend', helvetica, sans-serif;
	color: #fff;
	letter-spacing: 1px;
	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;
	text-transform: capitalize;
	margin: 6px 0;
}

#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-main .tb-testimonial-subtext p {
	font: italic 400 14px/28px 'Lexend', helvetica, sans-serif;
	color: #fff;
	letter-spacing: 0;
	margin: 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;
}

#tb-testimonial-cms .owl-carousel .owl-stage {
	display: flex;
}

#tb-testimonial-cms .owl-carousel .owl-item {
	display: flex;
	flex: 1 0 auto;
}

#tb-testimonial-cms .tb-testimonial-main .tb-testimonial-text .icofont-star {
	color: #ffbe00;
	font-size: 16px;
}

#tb-testimonial-cms .owl-nav.disabled {
	display: none;
}

#tb-testimonial-cms .owl-dots {
	text-align: center;
	margin: 20px 0 0;
}

#tb-testimonial-cms .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	border: 0;
	background-color: #e3e3e3;
	margin: 0 3px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

#tb-testimonial-cms .owl-dots .owl-dot.active {
	background-color: #ffbe00;
}

@media (max-width: 1499px) {
	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text h2 {
		font-size: 24px;
		line-height: 26px;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text h3 {
		font-size: 14px;
		line-height: 16px;
	}
}

@media (max-width: 1299px) {
	#tb-testimonial-cms {
		margin: 0 0 80px 0;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-main .tb-testimonial-subtext p {
		font-size: 14px;
		line-height: 26px;
	}
}

@media (max-width: 1199px) {
	#tb-testimonial-cms {
		margin: 0 0 60px 0;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text .tb-testimonial-user-detail {
		display: block;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .rating {
		margin: 5px 0;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-main {
		padding: 15px;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text h2 {
		font-size: 22px;
		line-height: 24px;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section .tb-testimonial-text h3 {
		font-size: 13px;
		line-height: 16px;
		margin: 5px 0;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-section {
		display: flex;
		gap: 15px;
		margin: 0 0 15px;
	}
}

@media (max-width: 991px) {
	#tb-testimonial-cms {
		margin: -10px 0 40px 0;
	}

	#tb-testimonial-cms .owl-dots {
		margin: 10px 0 0;
	}

	#tb-testimonial-cms .owl-dots .owl-dot {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 767px) {
	#tb-testimonial-cms {
		margin: 0 0 40px 0;
	}

	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-main {
		padding: 30px;
	}
}

@media (max-width: 480px) {
	#tb-testimonial-cms {
		margin: 0 0 20px 0;
	}

	#tb-testimonial-cms .owl-dots {
		margin: 6px 0 0;
	}
}

@media (max-width: 360px) {
	#tb-testimonial-cms .tb-testimonial-flex .tb-testimonial-main {
		padding: 20px;
	}
}

/* TB-Testimonial-CMS End*/

/* tb-gallery-cms Start */
#tb-gallery-cms {
	margin: 0 0 100px 0;
}

#tb-gallery-cms .owl-item {
	padding: 0 5px;
}

#tb-gallery-cms .tb-gallery-images {
	position: relative;
	display: inline-block;
}

#tb-gallery-cms .tb-gallery-images .tb-gallery-icon {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 40px;
	text-align: center;
}

#tb-gallery-cms .tb-gallery-images::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 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;
}

#tb-gallery-cms .tb-gallery-images:hover::before {
	background: rgba(0, 0, 0, 0.4);
}

#tb-gallery-cms .tb-gallery-images .tb-gallery-icon a {
	text-decoration: none;
	color: #111;
	font-size: 18px;
	opacity: 0;
	width: 45px;
	height: 45px;
	line-height: 45px;
	display: inline-block;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	background-color: #FFF;
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	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;
}

#tb-gallery-cms .tb-gallery-images:hover .tb-gallery-icon a {
	transform: scale(1);
	opacity: 1;
}

#tb-gallery-cms .tb-gallery-images .tb-gallery-icon a:hover,
#tb-gallery-cms .tb-gallery-images .tb-gallery-icon a:focus,
#tb-gallery-cms .tb-gallery-images .tb-gallery-icon a:active {
	color: #111111;
	background-color: #ffbe00;
}

@media (max-width: 1299px) {
	#tb-gallery-cms {
		margin: 0 0 80px 0;
	}
}

@media (max-width: 1199px) {
	#tb-gallery-cms {
		margin: 0 0 60px 0;
	}
}

@media (max-width: 991px) {
	#tb-gallery-cms {
		margin: 0 0 40px 0;
	}
}

@media (max-width: 480px) {
	#tb-gallery-cms {
		margin: 0 0 20px 0;
	}
}

/* tb-gallery-cms end */


/* TB-Footer-CMS Start*/
#TB-Footer-cms .tb-footer-desc {
	margin: 20px 0 0 0;
	font: 400 14px/26px 'Lexend', helvetica, sans-serif;
	color: #ccc;
	padding: 0 50px 0 0;
}

@media (max-width: 1299px) {
	#TB-Footer-cms .tb-footer-desc {
		font-size: 13px;
		line-height: 24px;
	}

	#tb-footer ul li a {
		font-size: 13px;
		line-height: 15px;
	}

	#Tb-contact-us .tb-contact-list p {
		font-size: 13px;
		line-height: 24px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#TB-Footer-cms .tb-footer-desc {
		font-size: 12px;
	}

	#TB-Footer-cms .tb-footer-desc {
		padding: 0;
	}
}

@media (max-width: 991px) {
	#TB-Footer-cms {
		text-align: center;
		padding: 0 100px 0;
		margin: 0 0 20px 0;
	}

	#TB-Footer-cms .tb-footer-desc {
		padding: 0;
	}
}

@media (max-width: 575px) {
	#TB-Footer-cms {
		padding: 0;
	}
}

/* TB-Footer-CMS End*/

/* TB-Contact-US-CMS Start*/
#Tb-contact-us .tb-contact-list {
	display: flex;
	align-items: start;
	margin: 0 0 15px 0;
}

#Tb-contact-us .tb-contact-list:last-child {
	margin: 0;
}

#Tb-contact-us .tb-contact-list p {
	margin: 0;
	font: 400 14px/26px 'Lexend', helvetica, sans-serif;
	color: #ccc;
}

#Tb-contact-us .tb-contact-list i {
	font-size: 18px;
	line-height: 20px;
	margin: 4px 10px 0 0;
	width: 20px;
}

#Tb-contact-us .tb-contact-list p a {
	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;
}

@media (min-width: 1200px) and (max-width: 1299px) {
	#Tb-contact-us .tb-contact-list p {
		font-size: 13px;
		line-height: 24px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	#Tb-contact-us .tb-contact-list p {
		font-size: 12px;
	}

	.footer-column.footer-right-cms {
		padding: 0;
	}

	#Tb-contact-us .tb-contact-list i {
		margin: 4px 7px 0 0;
	}

	#Tb-contact-us {
		margin: 0 0 0 -40px;
	}
}

/* TB-Contact-US-CMS  End*/

/* Tb-social-media-cms  Start*/
#Tb-social-media-cms .Tb-social-media-icon {
	text-align: right;
}

#Tb-social-media-cms .Tb-social-media-icon a {
	display: inline-block;
	margin: 0 0 0 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;
	width: 30px;
	height: 30px;
	text-align: center;
	padding: 7px;
}

#Tb-social-media-cms .Tb-social-media-icon a i {
	font-size: 18px;
	line-height: 20px;
	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;
}

#Tb-social-media-cms .Tb-social-media-icon a.facebook:hover i,
#Tb-social-media-cms .Tb-social-media-icon a.facebook:active i,
#Tb-social-media-cms .Tb-social-media-icon a.facebook:focus i {
	color: #15a2fa;
}

#Tb-social-media-cms .Tb-social-media-icon a.instagram:hover i,
#Tb-social-media-cms .Tb-social-media-icon a.instagram:active i,
#Tb-social-media-cms .Tb-social-media-icon a.instagram:focus i {
	color: #f81f3b;
}

#Tb-social-media-cms .Tb-social-media-icon a.twitter:hover i,
#Tb-social-media-cms .Tb-social-media-icon a.twitter:active i,
#Tb-social-media-cms .Tb-social-media-icon a.twitter:focus i {
	color: #50abf1;
}

#Tb-social-media-cms .Tb-social-media-icon a.skype:hover i,
#Tb-social-media-cms .Tb-social-media-icon a.skype:active i,
#Tb-social-media-cms .Tb-social-media-icon a.skype:focus i {
	color: #00a1e6;
}

#Tb-social-media-cms .Tb-social-media-icon a.youtube:hover i,
#Tb-social-media-cms .Tb-social-media-icon a.youtube:active i,
#Tb-social-media-cms .Tb-social-media-icon a.youtube:focus i {
	color: #f21110;
}

#Tb-social-media-cms .Tb-social-media-icon a.vimeo:hover i,
#Tb-social-media-cms .Tb-social-media-icon a.vimeo:active i,
#Tb-social-media-cms .Tb-social-media-icon a.vimeo:focus i {
	color: #1ab7ea;
}

@media (max-width: 991px) {
	#Tb-social-media-cms .Tb-social-media-icon {
		text-align: center;
		margin: 10px 0 0 0;
	}
}

@media (max-width: 480px) {
	#Tb-social-media-cms .Tb-social-media-icon {
		margin: 5px 0 0 0;
	}
}

/* Tb-social-media-cms  End*/

/* tb-manufacture Start*/
#tb-manufacture {
	margin: 0 0 100px 0;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	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;
}

#tb-manufacture .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

#tb-manufacture .swiper-slide img {
	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;
	cursor: pointer;
}

#tb-manufacture .swiper-slide:hover img,
#tb-manufacture .swiper-slide:active img,
#tb-manufacture .swiper-slide:focus img {
	transform: scale(0.95);
}

#tb-manufacture .owl-nav .owl-prev,
#tb-manufacture .owl-nav .owl-next {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	font-size: 0px;
	width: 30px;
	height: 30px;
	background: transparent;
	border: 1px solid #fff;
	padding: 0;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	line-height: 28px;
	text-align: center;
	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;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

#tb-manufacture .owl-nav .owl-prev::before,
#tb-manufacture .owl-nav .owl-next::before {
	font-family: "IcoFont";
	font-size: 22px;
	color: #fff;
	line-height: 30px;
	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;
}

#tb-manufacture .owl-nav .owl-prev::before {
	content: "\eab5";
}

#tb-manufacture .owl-nav .owl-next::before {
	content: "\eab8";
}

#tb-manufacture .owl-nav .owl-prev {
	left: -15px;
}

#tb-manufacture .owl-nav .owl-next {
	right: -15px;
}

#tb-manufacture:hover .owl-nav .owl-prev,
#tb-manufacture:active .owl-nav .owl-prev,
#tb-manufacture:focus .owl-nav .owl-prev,
#tb-manufacture:hover .owl-nav .owl-next,
#tb-manufacture:active .owl-nav .owl-next,
#tb-manufacture:focus .owl-nav .owl-next {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

#tb-manufacture .owl-nav .owl-prev.disabled:hover::before,
#tb-manufacture .owl-nav .owl-next.disabled:hover::before,
#tb-manufacture .owl-nav .owl-prev.disabled:active::before,
#tb-manufacture .owl-nav .owl-next.disabled:active::before,
#tb-manufacture .owl-nav .owl-prev.disabled:focus::before,
#tb-manufacture .owl-nav .owl-next.disabled:focus::before {
	color: #fff;
	background: none;
}

#tb-manufacture .owl-nav .owl-prev:hover::before,
#tb-manufacture .owl-nav .owl-next:hover::before,
#tb-manufacture .owl-nav .owl-prev:active::before,
#tb-manufacture .owl-nav .owl-next:active::before,
#tb-manufacture .owl-nav .owl-prev:focus::before,
#tb-manufacture .owl-nav .owl-next:focus::before {
	color: #111;
}

#tb-manufacture:hover .owl-nav .owl-prev,
#tb-manufacture:active .owl-nav .owl-prev,
#tb-manufacture:focus .owl-nav .owl-prev {
	left: 0;
}

#tb-manufacture:hover .owl-nav .owl-next,
#tb-manufacture:active .owl-nav .owl-next,
#tb-manufacture:focus .owl-nav .owl-next {
	right: 0;
}

#tb-manufacture .owl-nav .owl-prev.swiper-button-disabled,
#tb-manufacture .owl-nav .owl-next.swiper-button-disabled {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	cursor: not-allowed;
}

#tb-manufacture:hover .owl-nav .owl-prev.disabled,
#tb-manufacture:active .owl-nav .owl-prev.disabled,
#tb-manufacture:focus .owl-nav .owl-prev.disabled,
#tb-manufacture:hover .owl-nav .owl-next.disabled,
#tb-manufacture:active .owl-nav .owl-next.disabled,
#tb-manufacture:focus .owl-nav .owl-next.disabled,
#tb-manufacture .owl-nav .owl-next.disabled:hover,
#tb-manufacture .owl-nav .owl-next.disabled:active,
#tb-manufacture .owl-nav .owl-next.disabled:focus,
#tb-manufacture .owl-nav .owl-prev.disabled:hover,
#tb-manufacture .owl-nav .owl-prev.disabled:active,
#tb-manufacture .owl-nav .owl-prev.disabled:focus {
	opacity: 0.6;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	-webkit-opacity: 0.6;
	cursor: not-allowed;
	background: none;
	border: 1px solid #fff;
	background: transparent;
}

#tb-manufacture .owl-nav .owl-prev.disabled:hover i,
#tb-manufacture .owl-nav .owl-prev.disabled:active i,
#tb-manufacture .owl-nav .owl-prev.disabled:focus i,
#tb-manufacture .owl-nav .owl-next.disabled:hover i,
#tb-manufacture .owl-nav .owl-next.disabled:active i,
#tb-manufacture .owl-nav .owl-next.disabled:focus i {
	color: #fff;
}

#tb-manufacture .swiper-viewport {
	margin: 0;
	background: none;
	border: 0;
	border-radius: 4px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	overflow: hidden;
}

#tb-manufacture .swiper-pagination {
	display: none;
}

#tb-manufacture .swiper-pager {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

#tb-manufacture .owl-nav .owl-prev i,
#tb-manufacture .owl-nav .owl-next i {
	font-size: 20px;
	line-height: 30px;
	color: #111;
	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;
}

#tb-manufacture .owl-nav .owl-prev:hover,
#tb-manufacture .owl-nav .owl-prev:active,
#tb-manufacture .owl-nav .owl-prev:focus,
#tb-manufacture .owl-nav .owl-next:hover,
#tb-manufacture .owl-nav .owl-next:active,
#tb-manufacture .owl-nav .owl-next:focus {
	background: #ffbe00;
	border: 1px solid #ffbe00;
}

#tb-manufacture .owl-nav .owl-prev:hover i,
#tb-manufacture .owl-nav .owl-prev:active i,
#tb-manufacture .owl-nav .owl-prev:focus i,
#tb-manufacture .owl-nav .owl-next:hover i,
#tb-manufacture .owl-nav .owl-next:active i,
#tb-manufacture .owl-nav .owl-next:focus i {
	color: #111;
}

@media (max-width: 1299px) {
	#tb-manufacture {
		margin: 0 0 80px 0;
	}
}

@media (max-width: 1199px) {
	#tb-manufacture {
		margin: 0 0 60px 0;
	}
}

@media (max-width: 991px) {
	#tb-manufacture {
		margin: 0 0 40px 0;
	}
}

@media (max-width: 767px) {

	#tb-manufacture .owl-nav .owl-prev,
	#tb-manufacture .owl-nav .owl-next {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}

	#tb-manufacture .owl-nav .owl-prev.swiper-button-disabled,
	#tb-manufacture .owl-nav .owl-next.swiper-button-disabled {
		opacity: 0.6;
		-moz-opacity: 0.6;
		-khtml-opacity: 0.6;
		-webkit-opacity: 0.6;
	}

	#tb-manufacture .owl-nav .owl-prev {
		left: 0;
	}

	#tb-manufacture .owl-nav .owl-next {
		right: 0;
	}
}

@media (max-width: 480px) {

	#tb-manufacture {
		margin: 0 0 20px 0;
	}

	#tb-manufacture .swiper-pager {
		align-items: center;
		margin: 10px 0 0 0;
		display: flex;
		position: static;
		text-align: center;
		justify-content: center;
	}

	#tb-manufacture .owl-nav .owl-prev,
	#tb-manufacture .owl-nav .owl-next {
		position: static;
		display: inline-block;
		margin: 0 5px;
	}

	#tb-manufacture .owl-nav {
		text-align: center;
		margin: 5px 0;
	}
}

/* tb-manufacture End*/

/* footer */
#tb-footer {
	padding: 0;
	/* background-color: #191919; */
	border-top: none;
	color: #e2e2e2;
}

.common-home #tb-footer .footer-top-cms {
	margin: 0 0 100px 0;
}

#tb-footer .footer-top-cms #footer-top {
	background: #1d1d1d;
	border-radius: 80px;
	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	-ms-border-radius: 80px;
	-o-border-radius: 80px;
}

#tb-footer .footer-top-cms #footer-top .newsletter-subscribe-img {
	margin: -40px -80px -40px 0;
	text-align: end;
}

#tb-footer #footer-bottom-cms {
	background: #1d1d1d;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	padding: 0;
}

#tb-footer ul li a {
	font: 400 14px/16px 'Lexend', helvetica, sans-serif;
	color: #ccc;
	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;
	position: relative;
	padding: 0 0 0 18px;
	text-decoration: none;
}

#tb-footer ul li a::after {
	content: "\eaa0";
	font-family: "IcoFont";
	font-size: 18px;
	position: absolute;
	left: -5px;
	right: auto;
	bottom: 0;
	top: 0;
	margin: auto;
	width: auto;
}

#tb-footer .footer-bottom-left p {
	margin: 0;
	font: 400 14px/26px 'Lexend', helvetica, sans-serif;
	color: #ccc;
	text-align: left;
}

#tb-footer .footer-bottom p a {
	font-size: 14px;
	font-weight: 600;
	color: #ccc;
	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;
}

#tb-footer .footer-bottom p a:hover,
#tb-footer .footer-bottom p a:active,
#tb-footer .footer-bottom p a:focus {
	color: #fff;
}

#tb-footer .footer-bottom {
	border-top: 1px solid #333;
	padding: 16px 0;
}

#tb-footer .footer-commen h5 {
	font: 400 26px/28px 'Tw Cen MT', helvetica, sans-serif;
	color: #fff;
	margin: 0 0 25px 0;
	letter-spacing: 0;
	text-transform: capitalize;
}

#tb-footer ul {
	margin: 0;
	padding: 0;
}

#tb-footer .tb-comen-row {
	padding: 80px 0 60px;
}

#tb-footer ul li a:hover,
#tb-footer ul li a:active,
#tb-footer ul li a:focus {
	color: #fff;
}

#tb-footer ul li {
	margin: 0 0 15px 0;
}

#tb-footer ul li:last-child {
	margin: 0;
}

#tb-footer a {
	color: #ccc;
}

#tb-footer a:hover,
#tb-footer a:active,
#tb-footer a:focus {
	color: #fff;
}

@media (max-width: 1299px) {

	.common-home #tb-footer .footer-top-cms {
		margin: 0 0 80px 0;
	}

	#tb-footer .tb-comen-row {
		padding: 60px 0 40px;
	}

	#tb-footer .footer-commen h5 {
		font-size: 24px;
		line-height: 26px;
	}
}

@media (min-width: 1200px) and (max-width: 1299px) {

	#tb-footer ul li a {
		font-size: 13px;
		line-height: 16px;
	}
}

@media (max-width: 1199px) {

	.common-home #tb-footer .footer-top-cms {
		margin: 0 0 60px 0;
	}

}

@media (min-width: 992px) and (max-width: 1199px) {
	#tb-footer ul li a {
		font-size: 12px;
	}

	#tb-footer .tb-comen-row {
		padding: 60px 0;
	}

	#TB-Footer-cms .tb-footer-desc {
		padding: 0;
		font-size: 12px;
	}

}

@media (max-width: 991px) {

	.common-home #tb-footer .footer-top-cms {
		margin: 0 0 40px 0;
	}

	#tb-footer .footer-bottom-left p {
		text-align: center;
	}

	#tb-footer .footer-commen h5 {
		cursor: pointer;
		transition: all 0.5s;
		margin: 0;
		padding: 10px;
		font-size: 20px;
		line-height: 22px;
		position: relative;
		font-weight: 400;
	}

	#tb-footer .footer-commen h5:hover {
		background: rgba(0, 0, 0, 0.4);
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-o-border-radius: 5px;
	}

	#tb-footer ul {
		padding: 12px;
		display: none;
	}

	#tb-footer .footer-commen h5::after {
		content: "\efc2";
		display: block;
		font-family: "IcoFont";
		font-size: 14px;
		font-weight: 400;
		position: absolute;
		right: 12px;
		left: auto;
		top: 0;
		font-style: normal;
		bottom: 0;
		margin: auto;
		height: 46px;
		line-height: 46px;
	}

	#tb-footer .footer-commen.active h5::after {
		content: "\ef9a";
	}

	#tb-footer .tb-comen-row {
		padding: 30px 0;
	}

	#tb-footer .footer-top-cms #footer-top {
		border-radius: 30px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		-ms-border-radius: 30px;
		-o-border-radius: 30px;
	}

}

@media (max-width: 575px) {
	#tb-footer .footer-top-cms #footer-top {
		border-radius: 20px;
		-webkit-border-radius: 20px;
		-moz-border-radius: 20px;
		-ms-border-radius: 20px;
		-o-border-radius: 20px;
	}

}

@media (max-width: 480px) {

	.common-home #tb-footer .footer-top-cms {
		margin: 0 0 20px 0;
	}

	#tb-footer .footer-bottom-left p {
		font-size: 13px;
	}

	#tb-footer .footer-commen h5 {
		font-size: 16px;
		line-height: 18px;
	}

	#tb-footer .footer-commen h5::after {
		font-size: 12px;
	}

	#tb-footer .footer-top-cms #footer-top {
		border-radius: 15px;
		-webkit-border-radius: 15px;
		-moz-border-radius: 15px;
		-ms-border-radius: 15px;
		-o-border-radius: 15px;
	}

}

/* footer End*/


/* TB-Product-Tab Start*/
#TB-top-product-tab {
	text-align: center;
	margin: 0 0 50px 0;
}

.tb-home .nav-tabs {
	border: medium none;
	display: inline-block;

	margin: 0 0 25px;
	text-align: center;
	vertical-align: top;
	width: auto;
}

.TB-Commen-Heading h3 {
	position: relative;
	font: 400 50px/52px 'Tw Cen MT', helvetica, sans-serif;
	color: #fff;
	padding: 0 0 25px 0;
	margin: 0 0 30px 0;
	text-align: start;
	text-transform: capitalize;
}

.TB-Commen-Heading h3::after {
	background-image: url(../images/separator-img.png);
	width: 514px;
	height: 72px;
	margin: auto;
	left: -40px;
	right: auto;
	/* bottom: 0; */
	top: 0%;
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
}

#TB-category-tab {
	text-align: center;
	margin: 0 0 50px 0;
}

@media (max-width: 1599px) {

	.TB-Commen-Heading h3::after {
		left: -20px;
	}
}

@media (max-width: 1499px) {

	.TB-Commen-Heading h3 {
		padding: 0 0 20px 0;
	}

	.TB-Commen-Heading h3::after {
		width: 434px;
		height: 61px;
		left: -10px;
	}
}

@media (max-width: 1399px) {
	.TB-Commen-Heading h3 {
		margin: 0 0 20px 0;
	}

	.TB-Commen-Heading h3::after {
		width: 394px;
		height: 56px;
	}
}

@media (max-width: 1299px) {

	#TB-category-tab,
	#TB-top-product-tab {
		margin: 0 0 30px 0;
	}
}

@media (max-width: 1299px) {

	.TB-Commen-Heading h3 {
		padding: 0 0 10px 0;
	}

	.TB-Commen-Heading h3::after {
		width: 364px;
		height: 51px;
	}
}

@media (max-width: 1199px) {
	.TB-Commen-Heading h3 {
		margin: 0 0 20px 0;
	}

	#TB-category-tab,
	#TB-top-product-tab {
		margin: 0 0 10px 0;
	}
}

@media (max-width: 991px) {

	#TB-category-tab,
	#TB-top-product-tab {
		margin: 0;
	}

	.TB-Commen-Heading h3 {
		padding: 0 0 20px 0;
	}

	.TB-Commen-Heading h3::after {
		width: 362px;
		height: 52px;
	}
}

@media (max-width: 767px) {

	#TB-category-tab,
	#TB-top-product-tab {
		margin: 0 0 40px;
	}

	.TB-Commen-Heading h3 {
		font-size: 44px;
		line-height: 46px;
		text-align: center;
	}

	.TB-Commen-Heading h3::after {
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
}

@media (max-width: 480px) {

	.TB-Commen-Heading h3 {
		font-size: 34px;
		line-height: 36px;
		margin: 0 0 15px 0;
	}

	.TB-Commen-Heading h3::after {
		width: 312px;
		height: 45px;
	}
}

@media (max-width: 360px) {

	.TB-Commen-Heading h3 {
		font-size: 32px;
		line-height: 34px;
		padding: 0 0 18px 0;
		margin: 0 0 18px 0;
	}

	.TB-Commen-Heading h3::after {
		width: 262px;
		height: 38px;
	}
}

/* TB-top-product-tab & .tb-category-tab css Start*/
#TB-top-product-tab .tb-flex-content,
#TB-category-tab .tb-flex-content {
	display: flex;
	justify-content: space-between;
	padding: 0 225px 0 15px;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs,
#TB-category-tab .tb-category-Tab .nav-tabs {
	border: none;
	/* margin: 0 0 40px 0; */
	text-align: center;
	width: auto;
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li,
#TB-category-tab .tb-category-Tab .nav-tabs>li {
	padding: 0;
	/* margin: 0 5px; */
	position: relative;
	display: inline-block;

}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li>a,
#TB-category-tab .tb-category-Tab .nav-tabs>li>a {
	line-height: 32px;
	margin: 0;
	padding: 0;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	z-index: 1;
	background: #222222;
	overflow: hidden;
	border: none;
	position: relative;
	display: block;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li>a .tab-title,
#TB-category-tab .tb-category-Tab .nav-tabs>li>a .tab-title {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	border: none;
	color: #fff;
	font: 400 16px/18px 'Lexend', helvetica, sans-serif;
	margin: 0;
	outline: medium none;
	padding: 14px 30px;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	overflow: hidden;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li>a::after,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li.active>a::after,
#TB-category-tab .tb-category-Tab .nav-tabs>li>a::after,
#TB-category-tab .tb-category-Tab .nav-tabs>li.active>a::after {
	background: #ffbe00;
	transition: all 0.4s ease;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	z-index: -1;
	right: 0;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:hover>a,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:active>a,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:focus>a,
#TB-category-tab .tb-category-Tab .nav-tabs>li:hover>a,
#TB-category-tab .tb-category-Tab .nav-tabs>li:active>a,
#TB-category-tab .tb-category-Tab .nav-tabs>li:focus>a {
	border: none;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:hover>a h3,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:active>a h3,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:focus>a h3,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li.active>a h3,
#TB-category-tab .tb-category-Tab .nav-tabs>li:hover>a h3,
#TB-category-tab .tb-category-Tab .nav-tabs>li:active>a h3,
#TB-category-tab .tb-category-Tab .nav-tabs>li:focus>a h3,
#TB-category-tab .tb-category-Tab .nav-tabs>li.active>a h3 {
	color: #111;
}

#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:hover>a::after,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:active>a::after,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:focus>a::after,
#TB-top-product-tab .TBProduct-Tab .nav-tabs>li.active>a::after,
#TB-category-tab .tb-category-Tab .nav-tabs>li:hover>a::after,
#TB-category-tab .tb-category-Tab .nav-tabs>li:active>a::after,
#TB-category-tab .tb-category-Tab .nav-tabs>li:focus>a::after,
#TB-category-tab .tb-category-Tab .nav-tabs>li.active>a::after {
	height: 100%;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

@media (max-width: 1399px) {

	#TB-top-product-tab .TBProduct-Tab .nav-tabs>li>a .tab-title,
	#TB-category-tab .tb-category-Tab .nav-tabs>li>a .tab-title {
		font-size: 14px;
		line-height: 16px;
	}
}

@media (min-width: 1200px) and (max-width: 1299px) {

	#TB-top-product-tab .TBProduct-Tab .nav-tabs>li>a .tab-title,
	#TB-category-tab .tb-category-Tab .nav-tabs>li>a .tab-title {
		padding: 14px 25px;
	}
}

@media (max-width: 1199px) {

	#TB-top-product-tab .tb-flex-content,
	#TB-category-tab .tb-flex-content {
		display: block;
		padding: 0 15px;
	}
}

@media (max-width: 767px) {

	#TB-top-product-tab .TBProduct-Tab .nav-tabs>li>a .tab-title,
	#TB-category-tab .tb-category-Tab .nav-tabs>li>a .tab-title {
		padding: 12px 30px;
	}

	#TB-top-product-tab .TBProduct-Tab .nav-tabs>li,
	#TB-category-tab .tb-category-Tab .nav-tabs>li {
		margin: 0 auto 15px;
		display: block;
		width: auto;
		float: none;
	}

	#TB-top-product-tab .TBProduct-Tab .nav-tabs>li:last-child,
	#TB-category-tab .tb-category-Tab .nav-tabs>li:last-child {
		margin-bottom: 0;
	}

	#TB-top-product-tab .TBProduct-Tab .nav-tabs,
	#TB-category-tab .tb-category-Tab .nav-tabs {
		margin: 0 0 20px 0;
	}
}

/* TB-top-product-tab & .tb-category-tab css Start*/
.product-thumb {
	display: block;
	position: relative;
	text-align: center;
	margin-bottom: 50px;
	overflow: hidden;
}

.tab-content>.fade {
	opacity: 1;
}

.product-thumb .image {
	position: relative;
	overflow: hidden;
	-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;
	border: 2px solid #eee;
	border-right: 1px solid #eee;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
}

.product-thumb .image img {
	width: 100% !important;
	display: block;
	margin: 0 auto;

}

.product-thumb .image img.image_thumb_swap {
	left: auto;

	height: auto;
	position: absolute;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	top: 0;
	right: 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;
}

.product-thumb:hover .image img.image_thumb_swap {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

.product-layout,
.product-layouts {
	padding: 0 15px;
	position: relative;
}

.product-thumb .sale-icon,
.product-sale-icon {
	color: #ff4c4c;
	font: 500 15px/20px 'Lexend', helvetica, sans-serif;
	right: auto;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	position: absolute;
	left: -40px;
	top: 15px;
	vertical-align: top;
	z-index: 1;
	transition: 400ms ease-in-out;
	-webkit-transition: 400ms ease-in-out;
	-moz-transition: 400ms ease-in-out;
	-o-transition: 400ms ease-in-out;
	-ms-transition: 400ms ease-in-out;
}

.product-thumb:hover .sale-icon {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	left: 15px;
}

.product-thumb h4 {
	margin: 0;
}

.product-layouts .product-thumb .thumb-description,
.product-thumb .thumb-description {
	position: relative;
	text-align: center;
	padding: 15px 0 0 0;
}

.product-thumb .price {
	color: #ffbe00;
	font: 600 18px/20px 'Lexend', helvetica, sans-serif;
	text-align: center;
}

.product-thumb .price-old {
	color: #d7d7d7;
	font: 400 15px/17px 'Lexend', helvetica, sans-serif;
	text-decoration: line-through;
	margin: 0 0 0 5px;
}

.featured-carousel .product-thumb .price-old {
	font-size: 13px;
	line-height: 15px;
}

.product-thumb h4 a {
	color: #d2d2d2;
	font: 400 16px/18px 'Lexend', helvetica, sans-serif;
	text-decoration: none;
	white-space: nowrap;
	margin: 0 0 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;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 0 2px 0;
}

.product-thumb h4 a:hover,
.product-thumb h4 a:focus,
.product-thumb h4 a:active,
.product-thumb:hover h4 a,
.product-thumb:focus h4 a,
.product-thumb:active h4 a {
	color: #fff;
}

.product-thumb .price-tax {
	display: none;
}

.product-thumb .percent,
.product-percent {
	position: absolute;
	top: 36px;
	padding: 0;
	color: #03c61d;
	font: 600 15px/20px "Montserrat", Helvetica, sans-serif;
	right: auto;
	left: -40px;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	vertical-align: top;
	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;
}

.product-thumb:hover .percent {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	left: 15px;
}

/* .product-image .product-percent {
    top: 15px;
} */
@media (max-width: 767px) {

	.product-thumb .sale-icon,
	.product-thumb:hover .sale-icon,
	.product-sale-icon {
		left: 15px;
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}

	.product-thumb .percent,
	.product-thumb:hover .percent,
	.product-percent {
		left: 15px;
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
}

@media (max-width: 543px) {
	.product-layouts .product-thumb .image {
		width: auto;
		display: inline-block;
		vertical-align: top;
	}

	.product-thumb {
		margin-bottom: 30px;
	}
}

/* 4 button CSS Start*/
.product-thumb .button-group {
	bottom: -75px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: auto;
	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;
	/* height: 45px; */
}

.product-thumb:hover .button-group {
	bottom: 15px;
}

/* .product-thumb .button-group button {
	background: #000;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	border: none;
	outline: none;
	color: #fff;
	display: inline-block;
	cursor: pointer;
	vertical-align: top;
	position: relative;
	padding: 0;
	margin: 0 2px;
	z-index: 1;
	overflow: hidden;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	text-align: center;
	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 .product-thumb .button-group button,
.product-sort .product-thumb .button-group button {
	color: #000;
	background-color: #fff;
}

.btn-quickview-cms {
	position: absolute;
	top: -50px;
	right: 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;
}

.product-thumb:hover .btn-quickview-cms {
	top: 15px;
	bottom: auto;
	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,
.btn-quickview-cms .btn-quickview {
	height: 45px;
	width: 45px;
	line-height: 45px;
	font-size: 20px;
	background: #111;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border: none;
	outline: none;
	color: #ffffff;
	display: inline-block;
	cursor: pointer;
	vertical-align: top;
	position: relative;
	padding: 0;
	margin: 0 2px !important;
	z-index: 1;
	overflow: hidden;
	text-align: center;
	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::before,
.btn-quickview::before {
	background: #ffbe00;
	transition: all 0.4s ease;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	z-index: -1;
	right: 0;
	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;
}

.product-thumb .button-group button:hover::before,
.product-thumb .button-group button:active::before,
.product-thumb .button-group button:focus::before,
.btn-quickview:hover::before,
.btn-quickview:active::before,
.btn-quickview:focus::before {
	opacity: 1;
	height: 100%;
}

.product-thumb .button-group button i,
.product-thumb .button-group button i,
.product-thumb .button-group button i,
.btn-quickview i,
.btn-quickview i,
.btn-quickview i {
	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;
}

.product-thumb .button-group button:hover i,
.product-thumb .button-group button:active i,
.product-thumb .button-group button:focus i,
.btn-quickview:hover i,
.btn-quickview:active i,
.btn-quickview:focus i {
	color: #111;
}

.product-thumb .button-group button.btn-cart {
	width: max-content;
	align-items: center;
	display: flex;
	padding: 0 20px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.product-thumb .button-group button.btn-cart::before {
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

.product-thumb .button-group button.btn-cart i {
	width: auto;
	margin: 0 6px 0 0;
}

.product-thumb .button-group button.btn-cart span {
	font-size: 14px;
	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;
}

.product-thumb .button-group button.btn-cart:hover span,
.product-thumb .button-group button.btn-cart:active span,
.product-thumb .button-group button.btn-cart:focus span {
	color: #111;
}

.product-thumb .rating {
	display: block;
	position: absolute;
	top: auto;
	bottom: 20px;
	margin: 0 auto;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 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;
	left: 0;
	right: 0;
}

.product-thumb .rating .rating-star i,
.rating .rating-star i {
	font-size: 18px;
	line-height: 20px;
}

.product-thumb .rating .rating-star.checked i,
.rating .rating-star.checked i {
	color: #e2a400;
}

.product-thumb .rating .rating-star i,
.rating .rating-star i {
	color: #848484;
}

.product-list .product-countdown,
.product-sort .product-countdown {
	background: none;
}

.product-thumb:hover .rating {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
}

.product-thumb .button-group {
	bottom: -50px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: auto;
	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;
	height: 45px;
	display: flex;
	/* margin: auto; */
	justify-content: center;
}

.product-list .product-thumb .button-group i,
.product-sort .product-thumb .button-group i {
	color: #111;
}

/* .product-thumb .button-group button::before {
	background: #ffbe00;
	transition: all 0.4s ease;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;

	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	z-index: -1;
	right: 0;
} */

.product-thumb .button-group button:hover::before,
.product-thumb .button-group button:active::before,
.product-thumb .button-group button:focus::before {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}

/* .product-thumb .button-group button:hover,
.product-thumb .button-group button:focus,
.product-thumb .button-group button:active,
.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-color: #ffbe00;
} */

.product-thumb .button-group button:hover i,
.product-thumb .button-group button:active i,
.product-thumb .button-group button:focus i {
	color: #111;
}

.button-group button.btn-cart span,
.button-group button.btn-wishlist span,
.button-group button.btn-compare span,
.button-group button.btn-quickview span {
	display: none;
}

.button-group button.btn-cart span {
	display: block;
}

.button-group button .loading i {
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: inline-block !important;
}

@media (max-width: 1400px) {
	.product-thumb .button-group button.btn-cart span {
		font-size: 12px;
		letter-spacing: 0.50px;
		font-weight: 500;
	}
}

@media (max-width: 991px) {
	.product-layout.product-grid .product-thumb .button-group button.btn-cart {
		padding: 0 6px;
	}
}

@media (max-width: 767px) {
	.product-thumb .button-group {
		bottom: 20px;
		right: 0;
	}

	.product-thumb:hover .button-group {
		right: 0;
		bottom: 20px;
	}

	.product-thumb .rating {
		bottom: 80px;
	}

	.product-thumb:hover .rating {
		opacity: 1;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
	}
}

/* 4 button CSS End*/
/* TB-Product-Tab End*/
/* Next / Prev Icon Start*/
.owl-nav.disabled {
	display: none !important;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav,
#TB-special-products .tb-special-products .owl-nav,
#TB-home-blog .tb-home-blog-carousel .owl-nav,
#TB-category-featured .tb-category-featured-carousel .owl-nav,
#TB-category-tab .tb-category-tab-carousel .owl-nav,
.related-carousel .products-carousel .owl-nav {
	position: absolute;
	display: flex;
	vertical-align: top;
	top: -109px;
	right: 15px;
	gap: 60px;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next,
#TB-special-products .tb-special-products .owl-nav .owl-prev,
#TB-special-products .tb-special-products .owl-nav .owl-next,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next,
.related-carousel .products-carousel .owl-nav .owl-prev,
.related-carousel .products-carousel .owl-nav .owl-next {
	font-size: 0px;
	color: #fff;
	background-color: transparent;
	border: 2px solid #fff;
	width: 65px;
	height: 50px;
	line-height: 50px;
	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;
	display: inline-block;
	text-align: center;
	z-index: 1;
	position: relative;
}


#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev,
#TB-special-products .tb-special-products .owl-nav .owl-prev,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev,
.related-carousel .products-carousel .owl-nav .owl-prev {
	border-radius: 50px 0 0 50px;
	-webkit-border-radius: 50px 0 0 50px;
	-moz-border-radius: 50px 0 0 50px;
	-ms-border-radius: 50px 0 0 50px;
	-o-border-radius: 50px 0 0 50px;
}


#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next,
#TB-special-products .tb-special-products .owl-nav .owl-next,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next,
.related-carousel .products-carousel .owl-nav .owl-next {
	border-radius: 0 50px 50px 0;
	-webkit-border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	-ms-border-radius: 0 50px 50px 0;
	-o-border-radius: 0 50px 50px 0;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled,
.related-carousel .products-carousel .owl-nav .owl-next.disabled {
	opacity: 0.6;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	-webkit-opacity: 0.6;
	cursor: not-allowed;
	color: #fff;
	border: 2px solid #fff;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled::after,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled::after,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled::after,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled::after,
.related-carousel .products-carousel .owl-nav .owl-next.disabled::after {
	display: none;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled::before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled::before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled::before,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled::before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled::before {
	color: #111;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:hover:before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:active:before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:focus:before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled:hover:before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:hover:before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:active:before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:focus:before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:hover:before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:active:before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:focus:before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:hover:before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:active:before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:focus:before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:hover:before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:active:before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:focus:before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:hover:before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:active:before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:focus:before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:hover:before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:active:before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:focus:before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:hover:before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:active:before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:focus:before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover:before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:active:before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover:before,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled:focus:before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:hover:before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:active:before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:focus:before {
	color: #fff;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev span,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next span,
#TB-special-products .tb-special-products .owl-nav .owl-prev span,
#TB-special-products .tb-special-products .owl-nav .owl-next span,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev span,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next span,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev span,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next span,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev span,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next span,
.related-carousel .products-carousel .owl-nav .owl-prev span,
.related-carousel .products-carousel .owl-nav .owl-next span {
	display: none;
}


#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:hover,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:active,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:focus,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled:hover,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:hover,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:active,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:focus,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:hover,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:active,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:focus,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:hover,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:active,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:focus,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:hover,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:active,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:focus,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:hover,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:active,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:focus,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:hover,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:active,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:focus,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:hover,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:active,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:focus,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:active,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled:focus,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:hover,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:active,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:focus {
	color: #fff;
	border: 2px solid #fff;
}


#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next::after,
#TB-special-products .tb-special-products .owl-nav .owl-prev::after,
#TB-special-products .tb-special-products .owl-nav .owl-next::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next::after,
.related-carousel .products-carousel .owl-nav .owl-prev::after,
.related-carousel .products-carousel .owl-nav .owl-next::after {
	background: transparent;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	height: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	z-index: -1;
	right: 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;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:hover::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:active::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:focus::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled:hover::after,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:hover::after,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:active::after,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:focus::after,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:hover::after,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:active::after,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:focus::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:hover::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:active::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:focus::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:hover::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:active::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:focus::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:hover::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:active::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:focus::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:hover::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:active::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:focus::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:hover::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:active::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:focus::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:active::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover::after,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled:focus::after,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:hover::after,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:active::after,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:focus::after {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next::before,
#TB-special-products .tb-special-products .owl-nav .owl-prev::before,
#TB-special-products .tb-special-products .owl-nav .owl-next::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next::before,
.related-carousel .products-carousel .owl-nav .owl-prev::before,
.related-carousel .products-carousel .owl-nav .owl-next::before {
	/*font-family: "IcoFont";
	*/
	font-size: 14px;
	line-height: 16px;
	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;
	position: absolute;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	text-transform: capitalize;
	letter-spacing: 2px;
	padding: 3px 8px;
	color: #111;
	top: 50%;
	background: #fff;
}



#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev::before,
#TB-special-products .tb-special-products .owl-nav .owl-prev::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev::before,
.related-carousel .products-carousel .owl-nav .owl-prev::before {
	content: "Prev";
	left: 50%;
	border-radius: 50px 0 0 50px;
	-webkit-border-radius: 50px 0 0 50px;
	-moz-border-radius: 50px 0 0 50px;
	-ms-border-radius: 50px 0 0 50px;
	-o-border-radius: 50px 0 0 50px;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next::before,
#TB-special-products .tb-special-products .owl-nav .owl-next::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next::before,
.related-carousel .products-carousel .owl-nav .owl-next::before {
	content: "Next";
	right: 50%;
	border-radius: 0 50px 50px 0;
	-webkit-border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	-ms-border-radius: 0 50px 50px 0;
	-o-border-radius: 0 50px 50px 0;
}


#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:hover::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:active::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev.disabled:focus::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled:hover::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled:active::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next.disabled:focus::before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:hover::before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:active::before,
#TB-special-products .tb-special-products .owl-nav .owl-prev.disabled:focus::before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:hover::before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:active::before,
#TB-special-products .tb-special-products .owl-nav .owl-next.disabled:focus::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:hover::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:active::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev.disabled:focus::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:hover::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:active::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next.disabled:focus::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:hover::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:active::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev.disabled:focus::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:hover::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:active::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next.disabled:focus::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:hover::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:active::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev.disabled:focus::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:active::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next.disabled:hover::before,
.related-carousel .products-carousel .owl-nav .owl-prev.disabled:focus::before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:hover::before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:active::before,
.related-carousel .products-carousel .owl-nav .owl-next.disabled:focus::before {
	background: #fff;
	color: #111;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button:hover,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:active,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:focus,
#TB-special-products .tb-special-products .owl-nav button:hover,
#TB-special-products .tb-special-products .owl-nav button:active,
#TB-special-products .tb-special-products .owl-nav button:focus,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:hover,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:active,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:focus,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:hover,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:active,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:focus,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:hover,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:active,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:focus,
.related-carousel .products-carousel .owl-nav button:hover,
.related-carousel .products-carousel .owl-nav button:active,
.related-carousel .products-carousel .owl-nav button:focus {
	border: 2px solid #ffbe00;
	color: #111;
}

#TB-top-product-tab .tb-top-product-carousel .owl-prev button:hover::before,
#TB-top-product-tab .tb-top-product-carousel .owl-prev button:active::before,
#TB-top-product-tab .tb-top-product-carousel .owl-prev button:focus::before,
#TB-special-products .tb-special-products .owl-prev button:hover::before,
#TB-special-products .tb-special-products .owl-prev button:active::before,
#TB-special-products .tb-special-products .owl-prev button:focus::before,
#TB-home-blog .tb-home-blog-carousel .owl-prev button:hover::before,
#TB-home-blog .tb-home-blog-carousel .owl-prev button:active::before,
#TB-home-blog .tb-home-blog-carousel .owl-prev button:focus::before,
#TB-category-featured .tb-category-featured-carousel .owl-prev button:hover::before,
#TB-category-featured .tb-category-featured-carousel .owl-prev button:active::before,
#TB-category-featured .tb-category-featured-carousel .owl-prev button:focus::before,
#TB-category-tab .tb-category-tab-carousel .owl-prev button:hover::before,
#TB-category-tab .tb-category-tab-carousel .owl-prev button:active::before,
#TB-category-tab .tb-category-tab-carousel .owl-prev button:focus::before,
.related-carousel .products-carousel .owl-prev button:hover::before,
.related-carousel .products-carousel .owl-prev button:active::before,
.related-carousel .products-carousel .owl-prev button:focus::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:hover::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:active::before,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:focus::before,
#TB-special-products .tb-special-products .owl-nav button:hover::before,
#TB-special-products .tb-special-products .owl-nav button:active::before,
#TB-special-products .tb-special-products .owl-nav button:focus::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:hover::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:active::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:focus::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:hover::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:active::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:focus::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:hover::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:active::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:focus::before,
.related-carousel .products-carousel .owl-nav button:hover::before,
.related-carousel .products-carousel .owl-nav button:active::before,
.related-carousel .products-carousel .owl-nav button:focus::before {
	background: #ffbe00;
	color: #111;
}


/* #TB-top-product-tab .tb-top-product-carousel .owl-nav button::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button::before,
#TB-special-products .tb-special-products .owl-nav button::after,
#TB-special-products .tb-special-products .owl-nav button::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button::before,
.related-carousel .products-carousel .owl-nav button::after,
.related-carousel .products-carousel .owl-nav button::before {
	position: absolute;
	font-size: 22px;
	line-height: 37px;
	font-family: "IcoFont";
	height: 35px;
	width: 35px;
	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;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-prev::before,
#TB-special-products .tb-special-products .owl-nav button.owl-prev::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-prev::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-prev::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-prev::before,
.related-carousel .products-carousel .owl-nav button.owl-prev::before {
	left: 10px;
	right: auto;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	color: #ffffff;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-prev::after,
#TB-special-products .tb-special-products .owl-nav button.owl-prev::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-prev::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-prev::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-prev::after,
.related-carousel .products-carousel .owl-nav button.owl-prev::after {
	content: "\eab5";
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-next::after,
#TB-special-products .tb-special-products .owl-nav button.owl-next::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-next::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-next::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-next::after,
.related-carousel .products-carousel .owl-nav button.owl-next::after {
	content: "\eab8";
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button,
#TB-special-products .tb-special-products .owl-nav button,
#TB-home-blog .tb-home-blog-carousel .owl-nav button,
#TB-category-featured .tb-category-featured-carousel .owl-nav button,
#TB-category-tab .tb-category-tab-carousel .owl-nav button,
.related-carousel .products-carousel .owl-nav button {
	vertical-align: top;
	text-shadow: none;
	transition: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	height: 35px;
	width: 35px;
	margin: 0;
	padding: 0;
	font-size: 0;
	position: relative;
	-webkit-opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	border: 1px solid #fff;
	background: #fff;
	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;
	margin: 0 5px;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button:hover,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:active,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:focus,
#TB-special-products .tb-special-products .owl-nav button:hover,
#TB-special-products .tb-special-products .owl-nav button:active,
#TB-special-products .tb-special-products .owl-nav button:focus,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:hover,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:active,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:focus,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:hover,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:active,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:focus,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:hover,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:active,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:focus,
.related-carousel .products-carousel .owl-nav button:hover,
.related-carousel .products-carousel .owl-nav button:active,
.related-carousel .products-carousel .owl-nav button:focus {
	background: #ffbe00;
	border: 1px solid #ffbe00;
	color: #111;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button:hover::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:active::after,
#TB-top-product-tab .tb-top-product-carousel .owl-nav button:focus::after,
#TB-special-products .tb-special-products .owl-nav button:hover::after,
#TB-special-products .tb-special-products .owl-nav button:active::after,
#TB-special-products .tb-special-products .owl-nav button:focus::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:hover::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:active::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button:focus::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:hover::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:active::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button:focus::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:hover::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:active::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button:focus::after,
.related-carousel .products-carousel .owl-nav button:hover::after,
.related-carousel .products-carousel .owl-nav button:active::after,
.related-carousel .products-carousel .owl-nav button:focus::after {
	color: #111;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button.disabled,
#TB-special-products .tb-special-products .owl-nav button.disabled,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.disabled,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.disabled,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.disabled,
.related-carousel .products-carousel .owl-nav button.disabled {
	-webkit-opacity: 0.6;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
	background: none;
	border: 1px solid #fff;
	background: #fff;
	cursor: not-allowed;
}

#TB-top-product-tab .tb-top-product-carousel .owl-nav button.disabled::after,
#TB-special-products .tb-special-products .owl-nav button.disabled::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.disabled::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.disabled::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.disabled::after,
.related-carousel .products-carousel .owl-nav button.disabled::after {
	color: #111;
} */

/* #TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-prev span::before,
#TB-special-products .tb-special-products .owl-nav button.owl-prev span::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-prev span::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-prev span::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-prev span::before,
.related-carousel .products-carousel .owl-nav button.owl-prev span::before {
	border-top: 1px solid #ffbe00;
	content: "";

	height: 1px;
	left: -61px;
	position: absolute;
	text-align: left;
	top: 14px;
	width: 60px;
} */
/* #TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-prev span::after,
#TB-special-products .tb-special-products .owl-nav button.owl-prev span::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-prev span::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-prev span::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-prev span::after,
.related-carousel .products-carousel .owl-nav button.owl-prev span::after{
	border-bottom: 1px solid #ffbe00;
	content: "";
	height: 1px;
	left: -41px;
	position: absolute;
	top: 18px;
	width: 40px;
} */
/* #TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-next span::before,
#TB-special-products .tb-special-products .owl-nav button.owl-next span::before,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-next span::before,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-next span::before,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-next span::before,
.related-carousel .products-carousel .owl-nav button.owl-next span::before{
	border-top: 1px solid #ffbe00;
	content: "";
	height: 1px;
	position: absolute;
	right: -61px;
	top: 14px;
	width: 60px;
} */
/* #TB-top-product-tab .tb-top-product-carousel .owl-nav button.owl-next span::after,
#TB-special-products .tb-special-products .owl-nav button.owl-next span::after,
#TB-home-blog .tb-home-blog-carousel .owl-nav button.owl-next span::after,
#TB-category-featured .tb-category-featured-carousel .owl-nav button.owl-next span::after,
#TB-category-tab .tb-category-tab-carousel .owl-nav button.owl-next span::after,
.related-carousel .products-carousel .owl-nav button.owl-next span::after{
	border-bottom: 1px solid #ffbe00;
	content: "";
	height: 1px;
	position: absolute;
	right: -41px;
	top: 18px;
	width: 40px;
} */
/* Next / Prev Icon End*/
/* Special Product Start*/
.special-carousel {
	text-align: center;
	margin: 0 0 50px 0;
}

@media (max-width: 1499px) {

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	#TB-category-featured .tb-category-featured-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		top: -104px;
	}
}

@media (max-width: 1399px) {

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	#TB-category-featured .tb-category-featured-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		top: -95px;
	}
}

@media (max-width: 1299px) {
	.special-carousel {
		margin: 0 0 30px 0;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	#TB-category-featured .tb-category-featured-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		top: -85px;
	}
}

@media (max-width: 1199px) {
	.special-carousel {
		margin: 0 0 10px 0;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev::before,
	#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next::before,
	#TB-special-products .tb-special-products .owl-nav .owl-prev::before,
	#TB-special-products .tb-special-products .owl-nav .owl-next::before,
	#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev::before,
	#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next::before,
	#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev::before,
	#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next::before,
	#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev::before,
	#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next::before,
	.related-carousel .products-carousel .owl-nav .owl-prev::before,
	.related-carousel .products-carousel .owl-nav .owl-next::before {
		font-size: 12px;
		line-height: 14px;
		padding: 2px 4px;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-prev,
	#TB-top-product-tab .tb-top-product-carousel .owl-nav .owl-next,
	#TB-special-products .tb-special-products .owl-nav .owl-prev,
	#TB-special-products .tb-special-products .owl-nav .owl-next,
	#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-prev,
	#TB-home-blog .tb-home-blog-carousel .owl-nav .owl-next,
	#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-prev,
	#TB-category-featured .tb-category-featured-carousel .owl-nav .owl-next,
	#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-prev,
	#TB-category-tab .tb-category-tab-carousel .owl-nav .owl-next,
	.related-carousel .products-carousel .owl-nav .owl-prev,
	.related-carousel .products-carousel .owl-nav .owl-next {
		width: 55px;
		height: 40px;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	#TB-category-featured .tb-category-featured-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		gap: 50px;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	#TB-category-featured .tb-category-featured-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		top: -72px;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		top: -147px;
	}
}

@media (max-width: 991px) {
	.special-carousel {
		margin: 0;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		top: -154px;
	}

	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		position: absolute;
		display: flex;
		vertical-align: top;
		top: -77px;
		right: 15px;
		gap: 60px;
	}
}

@media (max-width: 767px) {

	.special-carousel {
		margin: 0 0 40px 0;
	}

	#TB-top-product-tab .tb-top-product-carousel .owl-nav,
	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	#TB-category-featured .tb-category-featured-carousel .owl-nav,
	#TB-category-tab .tb-category-tab-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		position: relative;
		display: flex;
		top: 0;
		left: 0;
		right: 0;
		justify-content: center;
	}
}

@media (max-width: 480px) {

	#TB-special-products .tb-special-products .owl-nav,
	#TB-home-blog .tb-home-blog-carousel .owl-nav,
	.related-carousel .products-carousel .owl-nav {
		gap: 50px;
	}
}

/* Special Product End*/


/* Tb-goToTop Start*/
#tb-goToTop {
	bottom: 100px;
	cursor: pointer;
	height: 40px;
	padding: 3px 7px;
	position: fixed;
	right: 45px;
	line-height: 42px;
	text-align: center;
	width: 40px;
	z-index: 9;
	overflow: hidden;
	border: 2px solid #181818;
	display: none;
}

#tb-goToTop.btn-primary {
	background: #111;
	color: #fff;
	border: 2px solid #ffff;
}

#tb-goToTop.btn-primary::after {
	color: #fff;
}

#tb-goToTop::after {
	color: #111;
	content: "\eab9";
	font-family: "IcoFont";
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	text-align: center;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 0;
	position: absolute;
	display: block;
}

#tb-goToTop:hover:after,
#tb-goToTop:active:after,
#tb-goToTop:focus:after {
	color: #111;
}

/* Tb-goToTop End*/
/* TB-Slideshow-CMS  Start*/
#tb-home-slideshow .slideshow {
	border: 0;
	margin: 0;
	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;
	background: transparent;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev {
	left: -100px;
}

#tb-home-slideshow .slideshow .owl-nav .owl-next {
	right: -100px;
}

#tb-home-slideshow:hover .slideshow .owl-nav .owl-prev {
	left: 50px;
}

#tb-home-slideshow:hover .slideshow .owl-nav .owl-next {
	right: 50px;
}

#tb-home-slideshow .swiper-pagination {
	display: none;
}

#tb-home-slideshow .slideshow .owl-nav {
	width: 100%;
	position: absolute;
	top: 55%;
	line-height: 45px;
	margin: 0 auto;
	text-align: center;
	justify-content: space-between;
	display: flex;
	transform: translate(0, -55%);
	-webkit-transform: translate(0, -55%);
	-moz-transform: translate(0, -55%);
	-ms-transform: translate(0, -55%);
	-o-transform: translate(0, -55%);
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev,
#tb-home-slideshow .slideshow .owl-nav .owl-next {
	font-size: 0px;
	color: #111;
	background-color: transparent;
	/* border: 2px solid red; */
	width: 65px;
	height: 50px;
	line-height: 50px;
	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;
	display: inline-block;
	text-align: center;
	z-index: 1;
	position: relative;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	/* -webkit-border-radius: 0px; */
	-ms-border-radius: 0px;
	/* overflow: hidden; */
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev,
#tb-home-slideshow .slideshow .owl-nav .owl-next {
	border: 2px solid #ffbe00;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev {
	border-radius: 50px 0 0 50px;
	-webkit-border-radius: 50px 0 0 50px;
	-moz-border-radius: 50px 0 0 50px;
	-ms-border-radius: 50px 0 0 50px;
	-o-border-radius: 50px 0 0 50px;
}

#tb-home-slideshow .slideshow .owl-nav .owl-next {
	border-radius: 0 50px 50px 0;
	-webkit-border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	-ms-border-radius: 0 50px 50px 0;
	-o-border-radius: 0 50px 50px 0;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev.disabled,
#tb-home-slideshow .slideshow .owl-nav .owl-next.disabled {
	opacity: 0.6;
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	-webkit-opacity: 0.6;
	cursor: not-allowed;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev.disabled::after,
#tb-home-slideshow .slideshow .owl-nav .owl-next.disabled::after {
	display: none;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev.disabled::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next.disabled::before {
	color: #111;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev.disabled:hover::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next.disabled:hover::before,
#tb-home-slideshow .slideshow .owl-nav .owl-prev.disabled:active::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next.disabled:active::before,
#tb-home-slideshow .slideshow .owl-nav .owl-prev.disabled:focus::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next.disabled:focus::before {
	color: #111;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev span,
#tb-home-slideshow .slideshow .owl-nav .owl-next span {
	display: none;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev:hover,
#tb-home-slideshow .slideshow .owl-nav .owl-next:hover,
#tb-home-slideshow .slideshow .owl-nav .owl-prev:active,
#tb-home-slideshow .slideshow .owl-nav .owl-next:active,
#tb-home-slideshow .slideshow .owl-nav .owl-prev:focus,
#tb-home-slideshow .slideshow .owl-nav .owl-next:focus {
	color: #fff;
	border: 2px solid #fff;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev::after,
#tb-home-slideshow .slideshow .owl-nav .owl-next::after {
	background: transparent;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	height: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
	z-index: -1;
	right: 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;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev:hover::after,
#tb-home-slideshow .slideshow .owl-nav .owl-next:hover::after,
#tb-home-slideshow .slideshow .owl-nav .owl-prev:active::after,
#tb-home-slideshow .slideshow .owl-nav .owl-next:active::after,
#tb-home-slideshow .slideshow .owl-nav .owl-prev:focus::after,
#tb-home-slideshow .slideshow .owl-nav .owl-next:focus::after {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
	/*font-family: "IcoFont";
	*/
	font-size: 14px;
	line-height: 16px;
	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;
	position: absolute;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	text-transform: capitalize;
	letter-spacing: 2px;
	padding: 3px 8px;
	background: #ffbe00;
	color: #111;
	top: 50%;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev::before {
	content: "Prev";
	left: 50%;
	border-radius: 50px 0 0 50px;
	-webkit-border-radius: 50px 0 0 50px;
	-moz-border-radius: 50px 0 0 50px;
	-ms-border-radius: 50px 0 0 50px;
	-o-border-radius: 50px 0 0 50px;
}

#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
	content: "Next";
	right: 50%;
	border-radius: 0 50px 50px 0;
	-webkit-border-radius: 0 50px 50px 0;
	-moz-border-radius: 0 50px 50px 0;
	-ms-border-radius: 0 50px 50px 0;
	-o-border-radius: 0 50px 50px 0;
}

#tb-home-slideshow .slideshow .owl-nav .owl-prev:hover::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next:hover::before,
#tb-home-slideshow .slideshow .owl-nav .owl-prev:active::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next:active::before,
#tb-home-slideshow .slideshow .owl-nav .owl-prev:focus::before,
#tb-home-slideshow .slideshow .owl-nav .owl-next:focus::before {
	color: #111;
	background: #fff;
}

#tb-home-slideshow .owl-carousel .owl-dots {
	text-align: center;
}

#tb-home-slideshow .owl-carousel button.owl-dot {
	background-color: #fff;
	/*    border: 1px solid #fff;*/
	width: 10px;
	height: 10px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-khtml-border-radius: 25px;
	border-radius: 25px;
	margin: 0 4px;
}

#tb-home-slideshow .owl-carousel button.owl-dot.active {
	width: 25px;
	background-color: transparent;
}

/* TB-Home SlideShow content Start*/
#tb-home-slideshow .slideshow .slider-description {
	position: absolute;
	top: 22%;
	left: 50%;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	width: 65%;
	text-align: center;
}

#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
	font: 400 130px/140px 'Tw Cen MT', helvetica, sans-serif;
	color: #fff;
	letter-spacing: 0.20px;
}

#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
	font: 400 18px/30px 'Lexend', helvetica, sans-serif;
	color: #fff;
	margin: 20px 90px 30px;
}

@media (max-width: 1799px) {
	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 120px;
		line-height: 130px;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		margin: 15px 90px 30px;
	}
}

@media (max-width: 1699px) {
	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 110px;
		line-height: 120px;
	}
}

@media (max-width: 1599px) {
	#tb-home-slideshow .slideshow .slider-description {
		width: 60%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 100px;
		line-height: 110px;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		margin: 15px 0px 25px;
	}
}

@media (max-width: 1499px) {

	#tb-home-slideshow .slideshow .slider-description {
		width: 75%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		margin: 15px 80px 20px;
	}

}

@media (max-width: 1399px) {

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		margin: 15px 40px 20px;
	}
}

@media (max-width: 1299px) {

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 90px;
		line-height: 100px;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		font-size: 16px;
		line-height: 30px;
		margin: 10px 0 20px;
	}

	#tb-home-slideshow:hover .slideshow .owl-nav .owl-prev {
		left: 20px;
	}

	#tb-home-slideshow:hover .slideshow .owl-nav .owl-next {
		right: 20px;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-prev::before,
	#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
		font-size: 13px;
		line-height: 16px;
		padding: 2px 6px;
	}
}

@media (max-width: 1199px) {

	#tb-home-slideshow .slideshow .slider-description {
		top: 25%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 80px;
		line-height: 90px;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		font-size: 16px;
		line-height: 30px;
		margin: 10px 0px 20px;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-prev,
	#tb-home-slideshow .slideshow .owl-nav .owl-next {
		width: 55px;
		height: 40px;
	}

}

@media (max-width: 991px) {

	#tb-home-slideshow .slideshow .slider-description {
		top: 12%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 60px;
		line-height: 62px;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		font-size: 15px;
		line-height: 24px;
		margin: 10px 0px 20px;
	}

	#tb-home-slideshow .slideshow .owl-nav {
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
	}

	#tb-home-slideshow:hover .slideshow .owl-nav .owl-prev {
		left: 15px;
	}

	#tb-home-slideshow:hover .slideshow .owl-nav .owl-next {
		right: 15px;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-prev,
	#tb-home-slideshow .slideshow .owl-nav .owl-next {
		width: 50px;
		height: 35px;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-prev::before,
	#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
		font-size: 13px;
		line-height: 16px;
		padding: 2px 4px;
	}
}

@media (max-width: 767px) {

	#tb-home-slideshow .slideshow .slider-description {
		width: 72%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 46px;
		line-height: 48px;
		margin: 0 0 18px 0;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-desc {
		display: none;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-prev,
	#tb-home-slideshow:hover .slideshow .owl-nav .owl-prev {
		left: 10px;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-next,
	#tb-home-slideshow:hover .slideshow .owl-nav .owl-next {
		right: 10px;
	}

	/* #tb-home-slideshow .slideshow .owl-nav .owl-prev,
	#tb-home-slideshow .slideshow .owl-nav .owl-next {
		width: 40px;
		height: 30px;
	} */

	/* #tb-home-slideshow .slideshow .owl-nav .owl-prev,
	#tb-home-slideshow .slideshow .owl-nav .owl-next {
		width: 30px;
		height: 30px;
	} */

	/* #tb-home-slideshow .slideshow .owl-nav .owl-prev,
	#tb-home-slideshow .slideshow .owl-nav .owl-next {
		width: 30px;
		height: 30px;
		line-height: 30px;
	} */

	/* #tb-home-slideshow .slideshow .owl-nav .owl-prev::before,
	#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
		line-height: 30px;
	} */

}

@media (max-width: 575px) {
	#tb-home-slideshow .slideshow .slider-description {
		width: 66%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 30px;
		line-height: 32px;
		margin: 0 0 15px;
	}
}

@media (max-width: 480px) {

	#tb-home-slideshow {
		margin: 0 0 20px;
	}

	#tb-home-slideshow .slideshow .slider-description {
		width: 60%;
		top: 10%;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 28px;
		line-height: 30px;
		margin: 0 0 12px;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-prev::before {
		left: 30%;
	}

	#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
		right: 30%;
	}
}

@media (max-width: 360px) {

	#tb-home-slideshow .slideshow .owl-nav .owl-prev::before,
	#tb-home-slideshow .slideshow .owl-nav .owl-next::before {
		padding: 1px 4px;
	}

	#tb-home-slideshow .slideshow .slider-description .tb-slider-title {
		font-size: 26px;
		line-height: 28px;
	}
}

/* TB-Home SlideShow content End*/


/* TB-Home SlideShow CSS End*/

/* search Start */
.search {
	display: inline-block;
	margin: 8px 0;
	position: relative;
}

.tbsearch {
	display: inline-block !important;
	width: 50px;
	height: 50px;
	position: relative;
	padding: 0 !important;
	text-align: center;
	cursor: pointer;
	vertical-align: top;
}

#search .tbsearch_button {
	width: 50px;
	height: 50px;
	display: inline-block;
}

#search .tbsearch_button .icofont-search-1 {
	color: #fff;
	font-size: 20px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	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;
	display: inline-block;
}

.common-home #search .tbsearch_button .icofont-search-1 {
	color: #fff;
}

.full-header.fixed #search .tbsearch_button .icofont-search-1 {
	color: #fff;
}

#search .tbsearch_button .icofont-close {
	color: #fff;
	display: none;
	font-size: 26px;
	height: 100%;
	line-height: 50px;
	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;
}

.common-home #search .tbsearch_button .icofont-close {
	color: #111;
}

.common-home .header {
	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;
}

.tbcart #cart #cart-total {
	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;
}

.common-home .header:hover {
	background: #111;
}

.common-home .header:hover #search .tbsearch_button .icofont-search-1 {
	color: #fff;
}

.common-home .header:hover #search .tbsearch_button:hover .icofont-search-1 {
	color: #fff;
}

.common-home .header:hover #search .tbsearch_button .icofont-close {
	color: #fff;
}

.common-home .header:hover #top-links ul li.account-nav a.dropdown-toggle i {
	color: #fff;
}

.common-home .header:hover #cart>.btn i {
	color: #fff;
}

.common-home .header:hover .tbcart #cart #cart-total {
	background: #ffbe00;
	;
	color: #111;
}

.full-header.fixed #search .tbsearch_button .icofont-close {
	color: #fff;
}

#search.active .tbsearch_button .icofont-close {
	display: block;
}

#search .tbsearch_button .icofont-close:hover {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

#search .tbsearch_button:hover .icofont-search-1 {
	color: #fff;
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

.common-home #search .tbsearch_button:hover .icofont-search-1 {
	color: #111;
}

.common-home .full-header.fixed #search .tbsearch_button:hover .icofont-search-1 {
	color: #fff;
}

#search.active .tbsearch_button .icofont-search-1 {
	display: none;
}

#search.active .tbsearch_button .icon-search {
	display: none;
}

#search.active .tbsearch_button .icon-close {
	display: block;
}

.tbsearchtoggle {
	display: none;
	height: 46px;
	padding: 0;
	position: absolute;
	right: 0;
	top: 85px;
	width: 320px;
	z-index: 99;
}

#search {
	width: 50px;
	height: 50px;
}

#search .select-wrapper {
	width: 160px;
}

#search .select-wrapper select {
	height: 40px;
	margin: 0 -1px 0 0;
}

#search .select-wrapper::after {
	padding: 3px;
}

#search .input-lg {
	margin: 0;
	height: 46px;
	line-height: 20px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
	padding: 5px 35px 5px 10px;
	/* background: transparent none repeat scroll 0 0; */
	/* border: none; */
	color: #fff;
	font-size: 13px;
	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;
	letter-spacing: 1px;
	/* border: 1px solid #444; */
	border-top: 3px solid #ffbe00 !important;
	background: #202020 222 none repeat scroll 0 0;
	font-weight: 400;
}

#search .live-search {
	position: absolute;
	z-index: 1000;
	padding: 10px;
	background-color: #202020;
	left: 0;
	display: none;
	border-radius: 0;
	width: 100%;
}

#search .live-search ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#search .live-search ul li {
	background-color: #202020;
	cursor: pointer;
}

#search .live-search ul li a {
	padding: 10px;
	text-decoration: none;
	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;
	display: flex;
}

#search .live-search .result-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	padding: 8px 0;
	text-transform: capitalize;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 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;
}

#search .live-search .result-text a {
	color: #d7d7d7;
	text-align: left;
	font: 400 14px/26px 'Lexend', helvetica, sans-serif;
}

#search .live-search .result-text:hover {
	background: #424242;
}

#search .live-search ul li .product-image {
	padding: 0;
	width: auto;
	margin: 0;
	border: 1px solid #eee;
	border-right: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
}

#search .live-search ul li .search-description {
	text-align: left;
	padding: 0 0 0 15px;
}

#search .live-search ul li .product-name {
	padding: 0;
	font: 400 13px/20px 'Lexend', helvetica, sans-serif;
	color: #fff;
	margin: 0 0 6px;
}

#search .live-search ul li .product-name p {
	display: none;
}

#search .live-search ul li .product-price {
	color: #8d1127;
	font: 700 16px/22px 'Lexend', helvetica, sans-serif;
	display: flex;
	align-items: center;
}

#search .live-search ul li:hover a {
	background: #353535;
}

#search .live-search ul li .product-price .price {
	display: block;
	color: #fff;
	font: 600 16px/18px 'Lexend', helvetica, sans-serif;
	margin: 0 5px 0 0;
}

#search .live-search ul li .product-price .special {
	display: block;
	color: #d7d7d7;
	text-decoration: line-through;
	font: 400 14px/16px 'Lexend', helvetica, sans-serif;
}

#search .form-control::-moz-placeholder {
	/* color: #d7d7d7; */
	text-indent: 0.625rem;
}

#search .form-control {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

#search .btn-lg {
	font-size: 13px;
	color: #d7d7d7;
	line-height: 18px;
	padding: 0;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	position: absolute;
	right: 5px;
	top: 0;
	left: auto;
	z-index: 1;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	box-shadow: none;
	outline: none;
	bottom: 0;
	margin: auto;
}

#search .btn-lg i {
	font-size: 16px;
	color: #fff;
	line-height: 18px;
}

#search .btn-lg .material-icons.icon-search {
	line-height: 24px;
	font-size: 22px;
}

#search .btn-lg:hover {
	color: #111111;
}

#search .btn-lg::before {
	display: none;
}

@media (max-width: 991px) {
	.tbsearchtoggle {
		top: 70px;
	}

	.common-home #search .tbsearch_button .icofont-search-1 {
		color: #fff;
	}

	.common-home #search .tbsearch_button:hover .icofont-search-1 {
		color: #fff;
	}

	.common-home #search .tbsearch_button .icofont-close {
		color: #fff;
	}

	.common-home #top-links ul li.account-nav a.dropdown-toggle i {
		color: #fff !important;
	}

	.common-home #cart>.btn i {
		color: #fff !important;
	}

	.common-home .tbcart #cart #cart-total {
		background: #ffbe00 !important;
		color: #111;
	}

	.tbcart #cart #cart-total {
		right: 2px !important;
		top: 2px !important;
	}
}

@media (max-width: 767px) {

	.tbsearchtoggle {
		width: 300px;
	}

	.tbsearchtoggle::after {
		right: 15px;
	}

}

@media (max-width: 480px) {
	#search {
		position: static;
	}

	#top-links>ul>li.header_user_info {
		margin: 0;
	}

	#search,
	#search .tbsearch_button,
	#search .tbsearch_button .icofont-search-1,
	.tbsearch {
		width: 40px;
		height: 40px;
	}

	#search .tbsearch_button .icofont-search-1 {
		line-height: 40px;
	}

	#search.active .tbsearch_button .icofont-close {
		line-height: 40px;
	}

	.tbsearchtoggle {
		top: 55px;
		right: -85px;
		left: auto;
	}
}

/* Search End */

/* cart Start */
#top-links>ul .tbcart {
	cursor: pointer;
	display: block;
	padding: 0;
	position: relative;
}

#cart .header-cart-toggle .cart-product .table>tbody>tr>td.text-right {
	font-size: 13px;
	line-height: 20px;
}

#cart .dropdown-menu li.cart-product {
	max-height: 260px;
	overflow-y: auto;
	min-height: 50px;
	overflow-x: visible;
	max-width: 350px;
}

#cart {
	padding: 0;
	position: relative;
}

#cart .dropdown-menu .btn.btn-danger i {
	font-size: 18PX;
	padding: 0px;
	width: 22px;
	height: 22px;
	line-height: 24px;
	font-weight: 400;
	display: inline-block;
	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;
}

#cart>.btn {
	padding: 0px;
	width: 50px;
	height: 50px;
	display: inline-block;
	border: none;
	background: none;
	position: relative;
	text-shadow: none;
	box-shadow: none;
}

#cart>.btn:hover i {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
}

#cart>.btn i {
	font-size: 26px;
	color: #fff;
	display: inline-block;
	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: 50px;
	height: 50px;
	line-height: 50px;
}

.common-home #cart>.btn i {
	color: #fff;
}

.full-header.fixed #cart>.btn i {
	color: #fff;
}

#cart>.btn::after {
	display: none;
}

/* #cart > .btn::after {
	content: "";
	height: 50px;
	left: 0;
	position: absolute;
	top: 0;
	right: auto;
	width: 50px;
	transition: transform 400ms ease-in-out 0s;
	-webkit-transition: transform 400ms ease-in-out 0s;
	-moz-transition: transform 400ms ease-in-out 0s;
	-o-transition: transform 400ms ease-in-out 0s;
	-ms-transition: transform 400ms ease-in-out 0s;
}
#cart:hover > .btn::after {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	background-position:-26px -170px;
} */
#cart.open>.btn {
	color: #d7d7d7;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	text-shadow: none;
}

.tbcart #cart .cart-heading {
	display: none;
}

.tbcart #cart #cart-total {
	background: #ffbe00;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	display: block;
	height: 15px;
	line-height: 15px;
	position: absolute;
	right: 5px;
	text-align: center;
	top: 5px;
	width: 15px;
	color: #111;
	z-index: 1;
	font-size: 12px;
	font-weight: 600;
}

.common-home .tbcart #cart #cart-total {
	background: #ffbe00;
	color: #111;
}

.full-header.fixed .tbcart #cart #cart-total {
	background: #ffbe00;
	color: #111;
}

#cart>button>i.shopping-cart {
	color: #111;
	font-size: 26px;
	height: 100%;
	line-height: 50px;
	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;
}

#cart>button:hover>i.shopping-cart {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	color: #111;
}

#cart .dropdown-menu {
	border: 1px solid #444;
	border-top: 3px solid #ffbe00;
	min-width: 300px;
	padding: 15px;
	top: 85px;
	left: auto;
	z-index: 1001;
	display: none;
	right: 0;
	right: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	background-color: #202020;
	box-shadow: 0 6px 12px rgba(174, 174, 174, 0.18);
}

#cart .dropdown-menu li.cart-product::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

#cart .dropdown-menu li.cart-product::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#cart .dropdown-menu li.cart-product::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 6px #111;
	-moz-box-shadow: inset 0 0 6px #111;
	-webkit-box-shadow: inset 0 0 6px #111;
}

#cart .dropdown-menu .btn.btn-danger {
	height: auto;
	padding: 0px;
	background: none;
	border: none;
	color: #fff;
	box-shadow: none;
	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;
}

#cart .dropdown-menu .btn.btn-danger:hover {
	box-shadow: none;
}

#cart .dropdown-menu .btn.btn-danger i {
	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;
}

#cart .dropdown-menu .btn.btn-danger:hover i {
	box-shadow: none;
	background: #2d2d2d;
}

#cart .dropdown-menu .btn.btn-danger i.fa-times {
	font-size: 12px;
	padding: 4px;
}

#cart .dropdown-menu li p {
	color: #d7d7d7;
	padding: 0;
	margin: 0;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: 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;
}

#cart .dropdown-menu li p.text-right {
	justify-content: space-between;
	margin: 15px 0 0 0;
}

#cart .dropdown-menu li p:hover {
	color: #fff;
}

#cart .dropdown-menu li p a:hover {
	background: #111;
	border: 1px solid #111;
	color: #ffffff;
}

#cart .dropdown-menu li p a strong {
	font-weight: 400;
	font-size: 14px;
}

#cart .dropdown-menu li p a strong i.fa {
	padding: 0 3px 0 0;
}

#cart .header-cart-toggle .text-right>strong {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
}

#cart .dropdown-menu li p a:first-child {

	background: #ffbe00;
	border: none;
	color: #111;
	width: 48%;
	z-index: 2;
	position: relative;
	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;
}

#cart .dropdown-menu li p a:first-child::before {
	background: #111;
}

#cart .dropdown-menu li p a:first-child:hover::before,
#cart .dropdown-menu li p a:first-child:active::before,
#cart .dropdown-menu li p a:first-child:focus::before {
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
	height: 100%;
}

#cart .dropdown-menu li p a:first-child {
	background: #ffbe00;
	border: none;
	color: #111;
}

#cart .dropdown-menu li p a {
	background: #111;
	border: none;
	color: #fff;
	font: 400 14px/20px 'Lexend', helvetica, sans-serif;
	padding: 10px;
	text-transform: capitalize;
	width: 48%;
	text-align: center;
	overflow: hidden;
	z-index: 1;
	position: relative;
	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;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

#cart .dropdown-menu li p a::before {
	background: #ffbe00;
	transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 0;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	-webkit-opacity: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	-khtml-border-radius: 0;
	z-index: -1;
	right: 0;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
}

#cart .dropdown-menu li p a:hover::before,
#cart .dropdown-menu li p a:active::before,
#cart .dropdown-menu li p a:focus::before {
	height: 100%;
	opacity: 1;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-opacity: 1;
}

#cart .dropdown-menu li p a:hover,
#cart .dropdown-menu li p a:focus {
	background: #111;
	border: none;
	color: #111;
}

#cart .dropdown-menu li p a:first-child:hover,
#cart .dropdown-menu li p a:first-child:active,
#cart .dropdown-menu li p a:first-child:focus {
	background: #111;
	color: #fff;
}

#cart .dropdown-menu li p a:first-child::after {
	background: #111;
}

.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: none;
	padding: 5px;
}

.header-cart-toggle .table.table-bordered tr:first-child td {
	padding-top: 10px !important;
	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: none;
	padding: 1px 0;
	text-align: left;
}

#cart .header-cart-toggle .text-left.name>a {
	color: #d7d7d7;
	text-transform: capitalize;
	font: 400 13px/20px 'Lexend', helvetica, sans-serif;
	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;
}

#cart .header-cart-toggle .text-left.name>a:hover {
	color: #fff;
}

#cart .header-cart-toggle .table>tbody>tr>td.text-right.amount {
	color: #ffbe00;
	font: 600 16px/22px 'Lexend', helvetica, sans-serif;
	padding: 10px 8px !important;
	text-align: right;
}

#cart table tbody {
	background-color: #202020;
}

.header-cart-toggle .table .text-center img {
	border-radius: 0;
	/* border: 0; */
	background: none;
	padding: 0;
	max-width: 70px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	-khtml-border-radius: 0px;
}

#cart .header-cart-toggle .text-right.price-total {
	color: #ffbe00;
	text-align: right;
	font: 600 16px/20px 'Lexend', helvetica, sans-serif;
	white-space: nowrap;
}

.cart-form .table-bordered td.text-right.unit-price {
	color: #ffbe00;
	font: 600 15px/24px 'Lexend', helvetica, sans-serif;
}

.cart-form .cart_input_block.input-group {
	display: flex;
	width: auto;
	max-width: max-content !important;
	align-items: center;
	justify-content: center;
}

#cart .header-cart-toggle .table.table-bordered {
	border-top: 1px solid #444;
	border-bottom: 1px solid #444;
	border-left: 0;
	border-right: 0;
	padding: 10px 0;
}

#cart .header-cart-toggle .table>tbody>tr>td {
	border-color: #444;
	--bs-table-accent-bg: none;
	border: none;
	padding: 7px 8px !important;
}

#cart .header-cart-toggle .table>tbody>tr>td.text-center.button,
#cart .header-cart-toggle .table>tbody>tr>td.text-right {
	padding: 7px 0 !important;
}

#cart .header-cart-toggle .table.table-bordered tbody tr .text-right {
	padding: 3px 0 !important;
}

#cart .dropdown-menu table {
	margin: 0;
}

#cart .header-cart-toggle .table.table-bordered tr {
	border: none;
}

#cart .header-cart-toggle li:first-child tr:first-child td {
	border-bottom: none;
	padding: 5px 4px 10px;
}

#cart .dropdown-menu .btn.btn-danger i.fa-times {
	font-size: 14px;
	padding: 4px;
	color: #d7d7d7;
}

#cart .dropdown-menu .btn.btn-danger:hover i.fa-times {
	color: #d7d7d7;
}

#cart .table.table-striped tr {
	background: none;
	border-bottom: 1px solid #444;
}

#cart .table.table-striped tr:last-child {
	border: none;
}

#cart .header-cart-toggle .table>tbody>tr>td.image {
	padding: 10px 0 !important;
	width: 70px;
}

.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
	padding: 10px !important;
}

@media (max-width: 991px) {
	#cart .dropdown-menu {
		top: 65px;
	}

	#cart>.btn,
	#cart>.btn i {
		width: 40px;
		height: 40px;
	}

	#cart>.btn i {
		line-height: 40px;
	}
}

@media (max-width: 480px) {
	#cart .dropdown-menu {
		top: 55px;
		right: -5px;
		width: 270px;
	}
}

/* cart End */
/* Account Start*/

#top-links ul {
	padding: 0;
	margin: 0;
}

.header-top-right {
	padding: 35px 0;
}

#top-links>.list-inline {
	display: flex;
	align-items: center;
}

#top-links ul li.account-nav {
	width: 50px;
	height: 50px;
	padding: 0;
	text-align: center;
}

#top-links ul li.account-nav .tbuserheading {
	display: none;
}

#top-links ul li.account-nav a.dropdown-toggle {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: none;
}

#top-links ul li.account-nav a.dropdown-toggle::after {
	display: none;
}

#top-links ul li.account-nav:hover a.dropdown-toggle i {
	-webkit-transform: rotatey(180deg);
	-moz-transform: rotatey(180deg);
	-o-transform: rotatey(180deg);
	transform: rotatey(180deg);
}

#top-links ul li.account-nav a.dropdown-toggle i {
	font-size: 20px;
	color: #fff;
	line-height: 50px;
	width: 50px;
	height: 50px;
	display: inline-block;
	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;
}

.common-home #top-links ul li.account-nav a.dropdown-toggle i {
	color: #fff;
}

.full-header.fixed #top-links ul li.account-nav a.dropdown-toggle i {
	color: #fff;
}

#top-links ul li.account-nav a.dropdown-toggle .icofont-simple-down {
	display: none;
}

#top-links ul li.account-nav .dropdown-menu>li>a {
	padding: 5px 0;
	background: none;
	color: #d7d7d7;
	font: 400 14px/18px 'Lexend', helvetica, sans-serif;
	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;
	display: block;
}

#top-links ul li.account-nav .dropdown-menu>li>a>i {
	font-size: 16px;
	padding: 0 5px 0 0;
	line-height: 18px;
}

#top-links ul li.account-nav .dropdown-menu>li>a:hover,
#top-links ul li.account-nav .dropdown-menu>li>a:focus,
#top-links ul li.account-nav .dropdown-menu>li>a:active {
	color: #fff;
}

#top-links ul li.account-nav>.dropdown-menu {
	padding: 15px;
	min-width: 180px;
	position: absolute;
	top: 85px;
	right: 0;
	left: auto;
	background: #202020 none repeat scroll 0 0;
	border: 1px solid #444;
	border-top: 3px solid #ffbe00;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-khtml-border-radius: 0;
	border-radius: 0;
}

@media (max-width: 991px) {
	#top-links ul li.account-nav>.dropdown-menu {
		top: 70px;
	}
}

@media (max-width: 480px) {

	#top-links ul li.account-nav,
	#top-links ul li.account-nav a.dropdown-toggle,
	#top-links ul li.account-nav a.dropdown-toggle i {
		width: 40px;
		height: 40px;
	}

	#top-links ul li.account-nav a.dropdown-toggle i {
		line-height: 40px;
	}

	#top-links ul li.account-nav>.dropdown-menu {
		top: 55px;
	}
}

/* Account Css End*/

/* tblanguage tbcurrency Start */
.tblanguage .pull-left,
.tbcurrency .pull-left {
	float: none;
	width: 100%;
}

.tblanguage .btn-group,
.tbcurrency .btn-group {
	display: block;
}

.tblanguage .btn-group button,
.tbcurrency .btn-group button {
	display: block;
	float: none;
	width: 100%;
	color: #d7d7d7;
	letter-spacing: 1px;
	font: 400 14px/18px 'Lexend', helvetica, sans-serif;
	text-align: left;
	padding: 5px 0;
	text-decoration: none;
	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;
	outline: none;
	box-shadow: none;
}

.tblanguage .btn-group>.btn-link,
.tbcurrency .btn-group>.btn-link {
	border-bottom: 1px solid #444;
	color: #fff;
	font: 400 14px/28px 'Lexend', helvetica, sans-serif;
	text-align: left;
	padding: 0;
	margin: 0 0 5px 0;
	outline: none;
}

.tblanguage .btn-group,
.tbcurrency .btn-group {
	display: block;
}

.tblanguage .btn-group>.btn-link i,
.tbcurrency .btn-group>.btn-link i {
	display: none;
}

.tblanguage .btn-group button:hover,
.tblanguage .btn-group button:active,
.tblanguage .btn-group button:focus,
.tbcurrency .btn-group button:hover,
.tbcurrency .btn-group button:active,
.tbcurrency .btn-group button:focus,
.tblanguage .btn-group button.selected,
.tbcurrency .btn-group button.selected {
	color: #fff;
}

.tblanguage .btn-group li,
.tbcurrency .btn-group li {
	list-style: none;
}

.tblanguage .dropdown-menu,
.tbcurrency .dropdown-menu {
	position: static;
	float: none;
	display: block;
	background: none;
	box-shadow: none;
	border: none;
	padding: 0;
	margin: 0;
	width: 100%;
	min-width: auto;
}

/* tblanguage tbcurrency End */

/* Header Start */
.common-home .tbloader {
	background: #000 url("../images/ajax-loader.gif") no-repeat scroll center center;
	background-attachment: scroll;
	-webkit-background-repeat: no-repeat;
	-moz-background-repeat: no-repeat;
	-o-background-repeat: no-repeat;
	background-repeat: no-repeat;
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	margin: 0 auto;
	width: 100%;
	z-index: 99999;
}

.header {
	position: relative;
	background: #111;
	z-index: 9;
}

.common-home .header {
	position: absolute;
	left: 0;
	right: 0;
	background-color: transparent;
}

#logo img {
	max-width: 190px;
	max-height: 65px;
	height: auto;
	width: auto;
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.full-header.fixed {

}

.full-header.fixed #menu .nav>li>a::before {
	display: none;
}

@-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;
	}
}

@media (max-width: 991px) {
	.header-left {
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		width: 150px;
	}

	.common-home .header,
	.common-home .header:hover {
		position: relative;
		background: #111;
	}

	#logo img {
		max-width: 150px;
		max-height: 65px;
	}
}

@media (max-width: 480px) {
	.header-left {
		left: 50px;
		right: auto;
		width: 115px;
	}

	#logo img {
		max-width: 85px;
		max-height: 39px;
	}
}

@media (max-width: 320px) {}

/* Header End */