a {
    color: #f32345;
	text-decoration: none;
}
a:hover {
	color: #de203f;
}
 a:focus {
    box-shadow: none !important;
    outline: none !important;
}
h1, h2 {
	color: #3a3a3a;
}
p {
	
}
.button {
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn {
	margin: 0;
	cursor: pointer;
	text-decoration: none;
	overflow: visible;
	padding: 0 26px;
	font-weight: 700;
	border-radius: 3px;
	border: 0;
	display: inline-block;
	height: 42px;
	line-height: 42px;
	text-transform: uppercase;
}
.btn-primary {
    color: #fff;
    background-color: #f32345;
    border-color: #f32345;
}
.btn-primary:hover {
	color: #fff;
	background-color: #3a3a3a;
	border-color: #3a3a3a;
}
.btn-primary:focus, .btn-primary.focus {
	color: #fff;
	background-color: #f32345;
	border-color: #f32345;
	box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #f32345;
    border-color: #f32345;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.form-control {
	box-sizing: border-box;
    width: 100%;
    margin: 0;
    margin-right: 0px;
    outline: 0;
    line-height: normal;
    height: 40px;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 6px 15px;
    text-align: left;
    margin-right: 0;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border: 1px solid #D9D9D9;
    outline: 0;
    box-shadow: none;
}
body {
	font-family: 'Nunito', sans-serif;
	font-size: 15px;
	line-height: 24px;
	color: #67676a;
}
.main {
	padding-top: 60px;
	padding-bottom: 60px;
}
input:focus {
	border: 0;
    outline: 0;
}
button:focus {
	border: 0;
    outline: 0;
}
@media (max-width: 767px) {
	h2 {
		font-size: 24px;
	}
	.main {
		padding-top: 30px;
		padding-bottom: 40px;
	}
}

/*--Header------------------------------------------------------------*/
header {
	padding: 6px 0;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	z-index: 99;
	position: relative;
}
header .navbar-brand img {
	width: 100%;
	height: auto;
}
header .navbar {
	padding: 0;
}
.header-menu {
	margin: auto;
}
.header-menu .menu-item a {
	padding: 10px 12px;
	color: #3a3a3a;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	display: inline-block;
}
.header-menu .current-menu-item a, .header-menu .menu-item a:hover {
	color: #f32345;
}
.header-menu .menu-item-has-children {
	position: relative;
}
.header-menu .sub-menu {
	position: absolute;
	min-width: 200px;
	text-align: left;
	background-color: #3a3a3a;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	list-style: none;
	margin: 0;
	padding: 10px 0;
}
.header-menu > .menu-item-has-children > .sub-menu {
	left: 0;
	top: 150%;
}
.header-menu > .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
	left: 100%;
	top: 50%;
}
.header-menu > .menu-item-has-children:hover > .sub-menu {
	top: 100%;
	opacity: 1;
    visibility: visible;
}
.header-menu > .menu-item-has-children > .sub-menu > .menu-item-has-children:hover > .sub-menu {
	top: 0;
	opacity: 1;
    visibility: visible;
}
.header-menu .sub-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 6px 20px;
	width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-menu .sub-menu .menu-item-has-children {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-menu .sub-menu .menu-item-has-children:after {
	content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #999999;
    margin-right: 12px;
}
.headerLft  li {
	margin-left: 24px;
}
.headerUserContent {
	position: relative;
}
.headerUserIcon {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.headerUserContent .user_content {
	position: absolute;
	top: 150%;
	right: 0;
	z-index: 99;
	background: #fff;
	padding: 16px 20px;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	min-width: 180px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerUserContent:hover .user_content {
	top: calc(100% + 10px);
    opacity: 1;
    visibility: visible;
}
.headerUserContent .user_content a {
    padding: 3px 0;
    display: inline-block;
}
.headerUserContent .user_content .h-username {
    font-size: 16px;
    margin-bottom: 6px;
    color: #3a3a3a;
    white-space: nowrap;
    width: 164px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}
.headerCartContent {
	position: relative;
}
.headerCartContent .widget_shopping_cart_content {
	position: absolute;
	top: 150%;
	right: 0;
	z-index: 99;
	background: #fff;
	padding: 15px;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	min-width: 320px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.headerCartContent:hover .widget_shopping_cart_content {
	top: calc(100% + 10px);
    opacity: 1;
    visibility: visible;
}
.headerCartContent .woocommerce-mini-cart__empty-message {
    margin: 20px 0 20px;
    text-align: center;
}
.headerLft svg {
	height: 32px;
}
.headerCartContent .cart_list {
    margin: 0 0 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 0;
    max-height: 410px;
    overflow-y: auto;
}
.headerCartContent .mini_cart_item {
    overflow: hidden;
    margin: 0 0 15px;
    color: #535353;
}
.headerCartContent .mini_cart_item .remove {
    float: right;
    font-size: 24px;
    color: #F32345;
    padding: 0;
}
.headerCartContent .mini_cart_item img {
    float: left;
    margin-right: 15px;
    margin-left: 0;
    width: 60px;
	height: auto;
}
.headerCartContent .mini_cart_item a:not(.remove) {
    font-size: 14px;
    font-weight: normal;
    padding: 0 30px 0 0;
}
.headerCartContent .mini_cart_item .quantity {
    display: block;
}
.headerCartContent .total {
    border-bottom: 1px solid #ddd;
    padding: 0 0 15px;
    margin: 15px 0;
}
.headerCartContent .total .amount {
    float: right;
    font-weight: bold;
    font-size: 15px;
	color: #3a3a3a;
}
.headerCartContent .buttons {
	margin-bottom: 0;
}
.headerCartContent .buttons .button {
    width: calc(50% - 6px);
    float: left;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 12px;
    border-radius: 3px;
	text-align: center;
	background-color: #f32345;
	color: #fff;
	padding: 10px 0;
	text-transform: uppercase;
	-webkit-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}
.headerCartContent .buttons .button.checkout {
    color: #242424 !important;
    border: 2px solid #242424;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    margin-left: 12px;
	padding: 8px 0;
	background: #fff;
}
.headerCartIcon {
	width: 30px;
	height: 30px;
}
.headerCartLink {
	position: relative;
	display: inline-block;
}
.headerCartCount {
	position: absolute;
    left: -8px;
    top: 3px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 22px;
    overflow: hidden;
    color: #fff;
    background-color: #3a3a3a;
}
.hSearch svg {
	cursor: pointer;
}
.hSearchForm {
	position: absolute;
    background: #3a3a3a;
    padding: 15px;
	border-radius: 3px;
    top: 150%;
    right: 0;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}
.hSearchForm  form {
	display: flex;
}
.hSearchForm.open {
	top: 100%;
    opacity: 1;
    visibility: visible;
}
.hSearchForm .searchbox {
    height: 42px;
    border-radius: 0 3px 3px 0;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 6px 15px;
    text-align: left;
    width: 270px;
	margin-right: 10px;
}
.hSearchForm .cate-dropdown {
	height: 42px;
    border-radius: 3px 0 0 3px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 6px 10px;
	width: 170px;
	text-align-last: left;
    text-align: left;
    -ms-text-align-last: left;
    -moz-text-align-last: left;
}
.hSearchForm button {
	margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 42px;
    text-transform: uppercase;
}
.hSearchForm .removeIcon {
    line-height: 41px;
    font-size: 34px;
    color: #f32345;
    margin-left: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
	header .navbar {
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	header .navbar-brand {
		width: 100px;
	}
	header .menuToggler {
		background-image: url(../images/menu-icon.png);
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
		margin-right: 20px;
		width: 25px;
		height: 22px;
		border: 0;
	}
	.headerLft {
		position: absolute;
		right: 0;
		top: 10px;
	}
	header .headerCartDropdown {
		display: none;
	}
	.header-menu .sub-menu {
		position: initial !important;
		opacity: 1;
		visibility: visible;
	}
	.header-menu .sub-menu .menu-item-has-children {
		display: block;
	}
	.header-menu > .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
		padding-left: 20px;
		padding: 0 0 8px 20px;
	}
	.header-menu .sub-menu .menu-item-has-children:after {
		display: none;
	}
}
@media (max-width: 767px) {
	header {
		padding: 10px 0;
	}	
	.hSearchForm {
		width: 100%;
	}
	.hSearchForm form {
		display: block;
	}
	.hSearchForm .cate-dropdown, .hSearchForm .searchbox, .hSearchForm button {
		width: 100%;
		border-radius: 3px;
		margin: 4px 0;
	}
	.hSearchForm .removeIcon {
		width: 42px;
		display: block;
		margin: auto;
		height: 42px;
		text-align: center;
	}
	.hdisplay {
		display: none;
	}
	.headerLft li {
		margin-left: 15px;
	}	
	.headerLft svg {
		height: 26px;
	}
	.headerCartCount {
		width: 18px;
		height: 18px;
		line-height: 18px;
	}
}


/*--Home slider------------------------------------------------------------*/
#homeSlider .carousel-caption {
	text-align: left;
	top: 0;
	bottom: 0;
}
#homeSlider .carousel-caption > div {
	width: 600px;
}
#homeSlider .carousel-caption h1 {
	font-weight: 700;
	line-height: 50px;
	font-size: 50px;
}
#homeSlider .carousel-caption .btn {
	margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 42px;
    line-height: 42px;
    text-transform: uppercase;
}
#homeSlider .carousel-indicators {
	bottom: 50px;
}
#homeSlider .carousel-indicators button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	margin-right: 6px;
	margin-left: 6px;
}
#homeSlider .carousel-indicators .active {
	background: #fff;
	border-color: #fff;
}
#homeSlider .sliderImg {
	width: 100%;
	height: auto;

}
@media (max-width: 767px) {
	#homeSlider .carousel-indicators {
		bottom: 0;
	}
}

/*--Home------------------------------------------------------------*/
.hdisplay {
	text-align: center;
	z-index: 20;
    position: relative;
}
.hdisplay .hdisplayItems {
	background: #fff;
	border-radius: 3px;
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
	display: inline-flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	margin-top: -37px;
}
.hdisplayItem {
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	padding: 25px 25px;
}
.hdisplay .hdisplayItems .hdisplayItem:first-child {
	margin-left: 10px;
}
.hdisplay .hdisplayItems .hdisplayItem:last-child {
	margin-right: 10px;
}
.hdisplayItem  .displayItemImg img {
	width: 40px;
}
.hdisplayItem .displayItemContent {
	text-align: left;
	margin-left: 16px;
}
.hdisplayItem .displayItemContent b {
	color: #3f3f3f;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 16px;
}
.hdisplayItem .displayItemContent p {
	color: #8b8989;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
}
.categoryTabTitle {
	display: none;
}
.categoryTab .nav-tabs {
	border-bottom: 0;
    padding-top: 4px;
    padding-bottom: 30px;
}
.categoryTab .nav-tabs .nav-link {
	border: 0;
    font-size: 16px;
    color: #3a3a3a;
    opacity: 0.7;
}
.categoryTab .nav-tabs .nav-link.active, .categoryTab .nav-tabs .nav-item.show .nav-link {
	opacity: 1;
	font-weight: 700;
}
.homeCatBtn {
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 42px;
	line-height: 42px;
    text-transform: uppercase;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.homeCatBtn:hover {
	color: #fff;
	background: #3a3a3a;
}
@media (max-width: 767px) {
	.homeCatBtn {
		padding: 0px 18px;
		height: 34px;
		line-height: 36px;
	}
	.categoryTab .nav-tabs .nav-link {
		padding: 2px 8px;
	}
	.categoryTab .nav-tabs {
		border-bottom: 0;
		padding-top: 0;
		padding-bottom: 20px;
	}
}

/*--Page------------------------------------------------------------*/
.moshoppingcard-inner-banner img {
	width: 100%;
	height: auto;
	margin-bottom: 40px;
}

/*--Footer------------------------------------------------------------*/
footer {
	background: #f7f7f7;
}
.footerTop {
    padding-top: 58px;
    padding-bottom: 48px;
}
.footerBottom {
    padding-bottom: 35px;
    line-height: 13px;
    font-size: 13px;
    text-align: center;
}
footer .footerHeading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: #3a3a3a;
}
footer ul {
	padding: 0;
	list-style: none;
}
footer ul a {
	color: #67676a;
	padding: 3px 0;
	display: inline-block;
	font-size: 14px;
}
footer ul a:hover {
	color: #f32345;
}
footer .navbar-brand  {
	margin: 0;
	padding: 0;
}
footer .navbar-brand img {
    max-width: 100%;
    padding-bottom: 18px;
	height: auto;
}
footer .copyRight {
	font-size: 13px;
	line-height: 13px;
}
.socialMedia a:before {
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
	width: 20px;
    display: inline-block;
    text-align: center;
}
.socialMedia .facebook a:before {
	content: "\f39e";
}
.socialMedia .twitter a:before {
	content: "\f099";
}
.socialMedia .instagram a:before {
	content: "\f16d";
}
@media (max-width: 991px) {
	footer .navbar-brand {
		width: 100px;
	}
}
@media (max-width: 767px) {
	footer {
		text-align: center;
	}
	.footerTop {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

/*--Shop------------------------------------------------------------*/
/*--Shop header--*/
.moshoppingcart .page-title {
	font-size: 40px;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 18px;
}
.woocommerce-result-count {
	float: left;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2d2e2f;
}
.woocommerce-ordering {
  float: right;
  margin: 0 0 40px;
}
.woocommerce-ordering select {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #2d2e2f;
	outline: none;
	border-radius: 0;
	border: 0;
	padding-right: 20px;
	-webkit-appearance: none;
	background-image: url(../images/select-arrow.png);
	background-repeat: no-repeat;
	background-size: 12px 7px;
	background-position: calc(100% - 0px) center;
	transition: all 0.2s ease-out;
	background-color: #fff;
}
select {
   text-align-last: right;
   text-align: right;
   -ms-text-align-last: right;
   -moz-text-align-last: right;
}

/*--Shop items--*/
ul.products {
	list-style: none;
	padding: 0;
	display: flex;
	margin: 0 -15px;
	display: flex;
	flex-wrap: wrap;
	clear: both;
}
ul.products li.product {
	margin: 0 0 30px;
	padding: 0 15px 15px;
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
	overflow: hidden;
}
.onsale {
	position: absolute;
	background: #ccc;
	padding: 4px 11px;
	color: #fff;
	right: 25px;
	top: 10px;
	display: none;
}
ul.products li.product img {
	height: auto;
	max-width: 100%;
	width: 100%;
}
ul.products li.product h2 {
	color: #393939;
	font-size: 18px;
	margin-top: 16px;
	font-weight: 500;
}
ul.products li.product .price {
    font-size: 14px;
    width: 100%;
    display: inline-block;
    font-weight: 600;
}
ul.products li.product .price del {
	color: #8b8b8b;
	margin-right: 6px;
}
ul.products li.product .price ins {
	text-decoration: none;
	color: #f32345;
}
ul.products li.product .button, .added_to_cart, ul.products li.product .lumise-button {
	margin-top: 12px;
	display: inline-block;
	color: #393939;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	transform: translateY(50px);
	opacity: 0;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul.products li.product:hover .button, ul.products li.product:hover .added_to_cart, ul.products li.product:hover .lumise-button {
	color: #393939;
	transform: translateY(0);
	opacity: 1;
}
.added_to_cart {
	float: right;
}
#respond input#submit.added:after, a.button.added:after, button.button.added:after, input.button.added:after {
	font-family: WooCommerce;
	content: "\E017";
	margin-left: 0.53em;
	vertical-align: bottom;
}
input#submit.loading,	a.button.loading,	button.button.loading, input.button.loading {
	opacity: 0.25;
	padding-right: 2.618em;
}
#respond input#submit.loading:after, a.button.loading:after, button.button.loading:after, input.button.loading:after {
	font-family: "Font Awesome 5 Free";
    content: "\f110";
    font-weight: 900;
    position: absolute;
    top: 1px;
    right: 10px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    font-size: 18px;
    line-height: 18px;
}

@media (max-width: 1199px) {
	ul.products li.product {
		flex: 0 0 25%;
		max-width: 25%;
	}	
}
@media (max-width: 991px) {
	ul.products li.product {
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
	ul.products li.product .button, ul.products li.product .lumise-button {
		transform: translateY(0px);
		opacity: 1;
	}
	ul.products li.product .added_to_cart {
		display: block;
		width: 100%;
		position: absolute;
		bottom: -5px;
		font-size: 12px;
	}	
}
@media (max-width: 575px) {
	ul.products li.product {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.moshoppingcart .page-title {
		font-size: 34px;
		line-height: 38px;
		text-align: center;
		    margin-bottom: 14px;
	}
	.woocommerce-result-count, .woocommerce-ordering select {
		font-size: 12px;
	}
}

/*--Shop details------------------------------------------------------------*/
.moshoppingcart .product_title {
	font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 18px;
}
.moshoppingcart .summary .price {
    font-size: 20px;
    font-weight: 600;
}
.moshoppingcart .summary .price del {
    color: #cacaca;
    margin-right: 6px;
}
.moshoppingcart .summary .price ins {
    text-decoration: none;
    color: #f32345;
}
.moshoppingcart-product-short-desc {
	font-size: 16px;
    color: #3a3a3a;
    padding: 20px 0;
}
.moshoppingcart .summary .quantity {
	float: left;
}
.moshoppingcart .summary .quantity .qty {
	height: 50px;
    border-radius: 3px;
	border: 1px solid #D9D9D9;
	font-size: 16px;
	padding: 6px 15px;
	text-align: left;
	width: 100px;
	margin-right: 10px;
}
.moshoppingcart .summary .button {
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 50px;
	text-transform: uppercase;
	line-height: 50px;
}
.moshoppingcart  div.product form.cart {
    margin-bottom: 26px;
}
.moshoppingcart  .product_meta > span{
	display: block;
    font-size: 12px;
    font-weight: 700;
    color: #cacaca;
}
.moshoppingcart div.product .woocommerce-tabs {
	padding: 50px 0;
}
.moshoppingcart div.product .woocommerce-tabs h2 {
	display: none;
}
.moshoppingcart div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
}
.moshoppingcart div.product .woocommerce-tabs ul.tabs li {
	float: left;
}
.moshoppingcart div.product .woocommerce-tabs ul.tabs li a {
    font-weight: bold;
    color: #3a3a3a;
    background: #fff;
    border-radius: 0;
    opacity: 0.5;
	font-size: 18px;
	margin-right: 24px;
    -webkit-transition: opacity .1s ease-out;
    transition: opacity .1s ease-out;
}
.moshoppingcart div.product .woocommerce-tabs ul.tabs li.active a {
    opacity: 1;
}
.table p {
	margin-bottom: 0;
}
.moshoppingcart div.product div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #f32345;
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box;
}
.moshoppingcart div.product div.images .woocommerce-product-gallery__trigger:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    box-sizing: content-box;
}
.moshoppingcart div.product div.images .woocommerce-product-gallery__trigger:after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: #fff;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box;
}

.moshoppingcart .woocommerce-product-gallery {
	width: 80%;
	position: relative;
}
.moshoppingcart .woocommerce-product-gallery figure img{
	width: 100%;
	height: auto;
}
.moshoppingcart .woocommerce-product-gallery ol {
	list-style: none;
	padding: 0;
}
.moshoppingcart .woocommerce-product-gallery ol li {
	width: 20%;
	float: left;
	padding: 6px;
}
.moshoppingcart .woocommerce-product-gallery ol li img {
	width: 100%;
	border: 2px solid transparent;
	height: 70px;
}
.moshoppingcart .woocommerce-product-gallery ol li img.flex-active {
	border-color: #f32345;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    border-top: 0;
}

@media (max-width: 767px) {
	.moshoppingcart .woocommerce-product-gallery {
		width: 100%;
		margin-bottom: 50px;
	}
	.moshoppingcart div.product .woocommerce-tabs h2 {
		display: block;
		font-size: 20px;
	}
	.moshoppingcart div.product .woocommerce-tabs ul.tabs li a {
		font-size: 12px;
	}
}

/*--Cart------------------------------------------------------------*/
.woocommerce table.shop_table {
	border: 0;
}
.woocommerce table.shop_table .product-remove {
	text-align: center;
	width: 10%;
}
.woocommerce table.shop_table .product-remove .remove {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 28px;
    height: 28px;
    line-height: 30px;
    background: #F32345;
    color: #fff !important;
    line-height: 28px;
    font-size: 20px;
}
.woocommerce .quantity .qty {
    height: 40px;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 6px 15px;
    text-align: left;
    width: 100px;
}
.woocommerce table.shop_table thead th {
	background-color: #fafafa;
	color: #3a3a3a;
	font-weight: 700;
	font-size: 14px;
	height: 80px;
	text-transform: uppercase;
}
.woocommerce table.shop_table tbody .cart_item:first-child td {
	border-top: 0;
}

.woocommerce table.shop_table tbody .product-thumbnail {
	width: 72px;
	padding: 9px 0;
}
.woocommerce table.shop_table .product-subtotal {
	padding-right: 40px;
}
.woocommerce table.shop_table tbody .product-thumbnail img {
	height: auto;
	width: 100%;
}
.woocommerce table.shop_table tbody .product-name {
	font-weight: bold;
    color: #3a3a3a;
	width: 50%
}
.woocommerce table.shop_table tbody .product-subtotal {
	font-weight: bold;
    font-size: 18px;
    color: #3a3a3a;
}
.woocommerce table.cart .product-price, .woocommerce table.cart .product-quantity, .woocommerce table.cart .product-subtotal {
    text-align: right;
}
.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
	height: 40px;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 6px 15px;
    text-align: left;
    width: inherit;
    margin-right: 4px;
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
	margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    border: 0;
    display: inline-block;
    height: 40px;
    text-transform: uppercase;
	line-height: 40px;
}
button.button:disabled, .woocommerce button.button:disabled[disabled] {
	padding: 0 26px;
}

.woocommerce table.shop_table tbody a {
	color: #393939;
}

.woocommerce table.shop_table tbody td {
	border-top: 1px solid #eaeaea;
	padding: 9px 12px;
	vertical-align: middle;
	line-height: 1.5em;
}

.woocommerce .cart-collaterals .cart_totals {
	width: 100%;
	padding: 24px;
	background-color: #f7f7f7;
	margin-left: auto;
}
.woocommerce .cart-collaterals h2 {
	font-size: 18px;
	font-weight: 700;
	font-family: inherit;
	text-transform: uppercase;
	color: #3a3a3a;
	margin-bottom: 10px;
}
.woocommerce .cart-collaterals table {
	border: 0;
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
	border-collapse: separate;
	border-radius: 0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table th {
    text-transform: uppercase;
    font-weight: 700;
    width: 35%;
}
.woocommerce .cart-collaterals .cart_totals .shop_table td {
    text-align: right;
}
.woocommerce .cart-collaterals .cart_totals .order-total {
    color: #3a3a3a;
    font-size: 18px;
}
.woocommerce .cart-collaterals .wc-proceed-to-checkout {

}

.woocommerce a.button.alt {
	margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 50px;
    text-transform: uppercase;
	line-height: 50px;
	width: 100%;
    text-align: center;
}
.woocommerce a.button.alt:hover {
    background-color: #3a3a3a;
    color: #fff;
}
.woocommerce a.button.alt:hover {
  background-color: #393939;
  color: #fff;
}
.woocommerce-shipping-totals.shipping td {
	text-align: left !important;
}
.woocommerce ul#shipping_method {
	padding: 6px 0;
}
.woocommerce ul#shipping_method li {
  display: flex;
}
.woocommerce ul#shipping_method li label {
  width: 100%;
}
.woocommerce-shipping-totals .shipping-label {
	text-transform: uppercase;
	font-weight: 700;
}
@media (max-width: 767px) {
.woocommerce table.shop_table_responsive tbody tr:first-child td:first-child, .woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child, .woocommerce table.shop_table tbody .cart_item:first-child td {
    border-top: 1px solid #eaeaea;
    width: 100%;
}
.woocommerce table.shop_table_responsive tr:nth-child(1n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(1n) td, .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
	width: 100%;
}
.woocommerce table.shop_table .product-subtotal {
    padding-right: 12px;
}
.woocommerce .cart-collaterals .cart_totals {
    width: 100%;
    padding: 30px;
}
}

/*--Checkout------------------------------------------------------------*/
.woocommerce-input-wrapper {
	width: 100%;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 8px 15px;
    text-align: left;
    margin-right: 0;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #fafafa;
    border-radius: 5px;
}
.woocommerce-terms-and-conditions-wrapper {
	width: 100%;
}
.moshoppingcart .checkout.woocommerce-checkout {
    background-color: #fff;
}
.moshoppingcart .checkout.woocommerce-checkout h3 {
	color: #3a3a3a;
	font-weight: 600;
	font-size: 26px;
	margin-bottom: 18px;
}

.moshoppingcart .checkout.woocommerce-checkout #payment {
    background: none;
    padding: 0;
    padding-top: 40px;
    margin-top: 40px;
    position: relative;
}
.moshoppingcart .checkout.woocommerce-checkout #payment:before {
    content: '';
    border-top: 2px solid rgba(0,0,0,.05);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.moshoppingcart .woocommerce-checkout #payment ul.payment_methods li img {
	width: 85px;
}
.moshoppingcart .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
	margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 50px;
    text-transform: uppercase;
	line-height: 50px;
    text-align: center;
}
.moshoppingcart .woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {
    background-color: #3a3a3a;
    color: #fff;
}
.select2-container .select2-selection--single {
box-sizing: border-box;
width: 100%;
margin: 0;
  margin-right: 0px;
outline: 0;
line-height: normal;
border-radius: 3px;
border: 1px solid #D9D9D9;
font-size: 16px;
padding: 8px 15px;
text-align: left;
margin-right: 0;
height: auto;	
}
.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
padding-left: 0;
padding-right: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
line-height: normal !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 26px;
position: absolute;
top: 50%;
right: 4px;
width: 26px;
margin-top: -13px;
}
@media (max-width: 767px) {
.moshoppingcart .checkout.woocommerce-checkout {
    padding: 15px;
}
}

/*--Login Register------------------------------------------------------------*/

.moshoppingcart .woocommerce form.checkout_coupon, .moshoppingcart .woocommerce form.login, .moshoppingcart .woocommerce form.register {
    border: none;
    padding: 0;
    margin: 2em 0;
    text-align: left;
    border-radius: 5px;
}
.woocommerce form .password-input, .woocommerce-page form .password-input {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.sign-nav {
	justify-content: center;
}
.sign-nav .nav-link {
	font-size: 26px;
	color: #919191;
	font-weight: 600;
	cursor: pointer;
	
}
.sign-nav .nav-link.active {
	color: #3a3a3a;
}


/*--Contact Us------------------------------------------------------------*/
.contactItem {
	margin-bottom: 12px;
}
.contactTitle {
	color: #3a3a3a;
	font-size: 26px;
	font-weight: 700;
	padding-top: 20px;
	padding-bottom: 20px;
}
.contactDetails .contactIcon i {
    background: #f32345;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	text-align: center;
	font-size: 16px;
	line-height: 36px;
	color: #fff;
	margin-right: 15px;
}
.contactDetails .contactContent a {
	color: #67676a;
}

/*--My account------------------------------------------------------------*/
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
}
.woocommerce-MyAccount-navigation ul li a{
	display: block;
	padding: 8px 14px;
	font-weight: 600;
	border-radius: 3px;
	color: #3a3a3a;
	border: 0;
	text-transform: uppercase;
	margin: 4px 0;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
	color: #fff;
	background-color: #f32345
}
select {
    background-color: #fff;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    border-radius: 3px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    padding: 8px 15px;
    text-align: left;
    margin-right: 0;
}
.woocommerce-Address-title .edit {
	color: #f32345;
	display: inline-block;
	padding: 0;
	font-weight: 700;
	border-radius: 3px;
	border: 0;
	height: 42px;
	line-height: 42px;
	text-transform: uppercase;
	margin: 4px 0;
}
.woocommerce-MyAccount-content button {
	margin-top: 20px !important;
}
.woocommerce form .form-row label {
	color: #3a3a3a;
	font-size: 15px;
    font-weight: 600;
    line-height: 15px;
    margin-bottom: 12px;
}
.woocommerce form .form-row {
    margin: 0 0 16px;
}
.moshoppingcart .product-designer-editor-link {
    background-color: transparent;
	text-align: left;
	padding: 0;
}
.moshoppingcart .product-designer-editor-link a {
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: visible;
    padding: 0 26px;
    font-weight: 700;
    border-radius: 3px;
    color: #fff;
    background-color: #f32345;
    border: 0;
    display: inline-block;
    height: 50px;
    text-transform: uppercase;
    line-height: 50px;
}
ul.products li.product .product-designer-editor-link {
	display: none;
}

/*--Page pagination------------------------------------------------------------*/
.woocommerce-pagination ul.page-numbers {
	display: flex;
	list-style: none;
	justify-content: center;
}
.woocommerce-pagination ul li {
	margin: 0 4px;
}
.woocommerce-pagination a.page-numbers {
	padding: 3px 10px;
	background-color: #dfdcde;
	color: #3a3a3a;
	border-radius: 3px;
}
.woocommerce-pagination span.current {
	padding: 3px 10px;
	background-color: #f32345;
	color: #fff;
	border-radius: 3px;
}

/*30-12-2022--------------*/

.woocommerce table.shop_table thead th {
  background-color: #f2f2f2;
  color: #3a3a3a;
  font-weight: 700;
  font-size: 14px;
  height: 52px;
  text-transform: uppercase;
}

.woocommerce table.shop_table tbody td {
  border-top: 1px solid #d7d6d6;
  padding: 10px 16px;
  vertical-align: middle;
  line-height: 1.5em;
}
.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 10px 16px;
  line-height: 1.5em;
}

.woocommerce table.my_account_orders .button {
	white-space: nowrap;
	background: #f32345;
	height: 30px;
	line-height: 30px;
	padding: 0px 12px;
	font-size: 12px;
	margin: 3px 6px 3px 0;
	color: #fff;
	text-transform: none;
}
.woocommerce table.shop_table {
	border-collapse: collapse;
}
.woocommerce table.my_account_orders {
  font-size: 14px;
  border-collapse: collapse;
}

.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
  padding: 8px 16px;
  vertical-align: middle;
}
.woocommerce ul.order_details {
  margin: 0 0 20px;
  list-style: none;
  background: #f32345;
  padding: 30px;
  color: #fff;
  border-radius: 6px;
}
.woocommerce ul.order_details li strong {
	font-size: 17px;
	text-transform: none;
	line-height: 24px;
	margin-top: 4px;
}
.woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: none;
    border-right-width: medium;
    border-bottom-width: medium;
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 0;
  padding: 14px 20px;
  background: #f7f7f7;
  color: #3a3a3a;
}

/*04-01-2023--------------*/
.woocommerce-order-details table {
	border-collapse: collapse;
	border: 0;
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
	border-radius: 5px;
}
.woocommerce-order-details table thead th {
  background-color: #f2f2f2;
  color: #3a3a3a;
  font-weight: 700;
  font-size: 14px;
  height: 52px;
  text-transform: uppercase;
	padding: 10px 16px;
}
.woocommerce-order-details table tbody td {
  border-top: 1px solid #d7d6d6;
  padding: 10px 16px;
  vertical-align: middle;
  line-height: 1.5em;
}
.woocommerce-order-details table tbody tr:first-child td {
  border-top: 0;
}
.woocommerce-order-details table th {
  font-weight: 700;
  padding: 10px 16px;
  line-height: 1.5em;
}
.woocommerce-order-details table td {
  padding: 10px 16px;
  line-height: 1.5em;
}
.woocommerce-order-details table tbody th, .woocommerce-order-details table tfoot td, .woocommerce-order-details table tfoot th {
  font-weight: 700;
  border-top: 1px solid rgba(0,0,0,.1);
}
.wc-cancel-order {
  margin: 0;
  cursor: pointer;
  text-decoration: none;
  overflow: visible;
  padding: 0 26px;
  font-weight: 700;
  border-radius: 3px;
  color: #fff;
  background-color: #f32345;
  border: 0;
  display: inline-block;
  height: 50px;
  text-transform: uppercase;
  line-height: 50px;
  text-align: center;
}
.wc-cancel-order:hover {
  background-color: #3a3a3a;
  color: #fff;
}
.fancybox-content {
	padding: 32px !important; 
}
.wc-cancel-main .wc-cancel-reason-txt textarea {
  width: 100%;
	padding: 10px;
}
.wc-cancel-main .wc-cancel-head {
  font-size: 24px !important;
  font-weight: 600 !important;
	margin-bottom: 14px;
	color: #3a3a3a;
}
.wc-cancel-main .wc-cancel-buttons {
    margin-bottom: 0;
}

/*12-12-2023--------------*/
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide:focus {
  outline: -webkit-focus-ring-color auto 0;
  outline: 0;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev, .slick-next {
  color: #fff;
  background-color: #f32345;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 10;
  font-size: 0;
  transition: all 0.3s ease 0s;
  opacity: 0;
  border-radius: 3px;
}

.slider:hover .slick-prev, .slider:hover .slick-next {
  opacity: 1;
}

.slick-prev {
  left: -10px;
}

.slick-next {
  right: -10px;
}

.slick-arrow.slick-disabled {
  opacity: 0 !important;
}


.slick-prev:before {
  content: '';
  background:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
    no-repeat
    left center;
	position: absolute;
    top: 8px;
    width: 22px;
    height: 22px;
    left: 8px;
}

.slick-next:before {
  content: '';
  background:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
    no-repeat
    left center;
	position: absolute;
    top: 8px;
    width: 22px;
    height: 22px;
    left: 8px;
}

.product-card-1 {
	padding: 0 15px;
}
.product-card-1 img {
    height: auto;
    max-width: 100%;
    width: 100%;
}
.product-card-1 h2 {
    color: #393939;
    font-size: 18px;
    margin-top: 16px;
    font-weight: 500;
}
.product-card-1 .price {
    font-size: 14px;
    width: 100%;
    display: inline-block;
    font-weight: 600;
}
.product-card-1 .button {
    margin-top: 12px;
    display: inline-block;
    color: #393939;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(50px);
    opacity: 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.product-card-1:hover .button {
    color: #393939;
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 991px) {
	.product-card-1 .button {
		transform: translateY(0px);
		opacity: 1;
	}
}

figure {
    margin: 0;
}
.content-block {
	padding: 60px 0;
}
@media (max-width: 767px) {
	.content-block {
		padding: 40px 0;
	}
}


/* 19-12-2024*/
.mo-tabs .mo-tab-nav {
    border-bottom: 0;
    padding-top: 4px;
    padding-bottom: 30px;
	display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
	justify-content: center;
}
.mo-tabs .mo-tab-nav li {
    border: 0;
    font-size: 16px;
    color: #3a3a3a;
    opacity: 0.7;
	cursor: pointer;
	margin: 0 14px;
}
.mo-tabs .mo-tab-nav li.active{
    opacity: 1;
    font-weight: 700;
}
.mo-tab-content > .mo-tab-pane {
    height: 1px;
    visibility: hidden;
	overflow: hidden;
}
.mo-tab-content > .active {
    height: auto;
	visibility: visible;
}
.mo-out-of-stock-label {
    position: absolute;
    top: 0;
    left: 15px;
    background-color: #f32345;
    color: white;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 99;
    line-height: 1;
}
