/*
	Theme Name: Caremistry
	Theme URI: https://caremistry.co
	Description: Custom WP Theme for Caremistry
	Version: 1.10.2024
	Author: @harmonicnoise
	Author URI: http://www.deusain.com
	Tags: cosmetic
*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
:root {
	--main-color: #F0EAD6;
	--main-color-hover: #f6f2e5;
	--secondary-color: #f6f2e5;
	--secondary-color-hover: #F0EAD6;
	--gold: #a18114;
	--black: #000;
	--dark: #333;
	--grey: #999;
	--light: #ddd;
	--white: #fff;
}
/* html element 100% font-size for REM use */
html {
	font-size: 100%;
}
body {
	font:400 16px/1.6 'Work Sans', -apple-system,BlinkMacSystemFont,segoe ui,helvetica neue,sans-serif;
	background-color: var(--white);
	color: var(--dark);
	width: 100%;
	letter-spacing: -0.5px;
	position: relative;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
blockquote {
	background-color: #fff;
    color: var(--dark);
    padding: 20px 20px 2px 20px;
    margin: 0;
    font-size: 16px;
    display: block;
	font-style: italic;
	border-left: 4px solid var(--dark);
}
img {
	max-width:100%;
	height: auto;
}
a {
	color: var(--gold);
	text-decoration:none;
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}
a:hover {
	color: var(--dark);
	transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid var(--dark);
}

strong {
	font-weight: 700;
}
h1 {font-weight: 600; color: var(--dark); font-size: 50px; font-family: 'Work Sans';}
h2 {font-weight: 600; color: var(--dark); font-size: 40px; font-family: 'Work Sans';}
h3 {font-weight: 600; color: var(--dark); font-size: 30px; font-family: 'Work Sans';}
h4 {font-weight: 600; color: var(--dark); font-size: 24px;}
h5 {font-weight: 600; color: var(--dark); font-size: 20px;}
h6 {font-weight: 600; color: var(--dark); font-size: 16px;}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
	overflow: hidden;
	background-color: var(--secondary-color);
}

.topbar {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	top: 0;
	z-index: 999;
    background-color: var(--black);
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -ms-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
}
.topbar .container {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 0.9rem;
  	position: relative;
  	text-align: center;
  	color: var(--white);
  	line-height: 36px;
}

/* header */
.header {
	position: sticky;
	width: 100%;
	padding: 0;
	margin: 0 auto;
	top: 0;
	left: 0;
	z-index: 999;
	height: 80px;
    background-color: var(--white);
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -ms-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
}
.header .container {
	width: 100%;
	margin: 0 auto;
	height: 80px;
  	position: relative;
}
.header .container .inner {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	height: 80px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 auto;
	position: relative;
}
.header .container .logo {
	display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 27px;
    z-index: 99;
}
.header .container .logo a {
	line-height: 0;
}
.header .container .logo a img {
	width: 180px;
    height: auto;
    display: block;
}
.header.scrolled {
	position: fixed;
	top: 0;
	-webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -ms-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
    background-color: rgba(255,255,255, .8);
}
.header-search {
	display: block;
	margin-right: 30px;
}
.header-search a {
	color: var(--dark);
}
.header-search a span {
	position: relative;
	top: 4px;
}
.top-search {
	position: relative;
	top: -3px !important;
}
.top-search .is-form-style {
	width: 250px !important;
	border: 0;
	border-bottom: 1px solid #ccc !important;
	overflow: hidden;
}
.top-search .is-form-style input.is-search-input {
	background-color: transparent;
	border: 0 !important;
	padding: 0 !important;
	color: var(--dark) !important;
}
.top-search .is-form-style button.is-search-submit .is-search-icon {
	border: 0 !important;
	background-color: transparent !important;
	padding-top: 8px !important;
	color: var(--dark);
}
.top-search .is-form-style button.is-search-submit .is-search-icon:hover {
	color: var(--dark) !important;
}
.top-search .is-form-style button.is-search-submit .is-search-icon:hover path {
	color: var(--dark) !important;
	fill: var(--dark) !important;
}

.right-area {
	display: flex;
	align-items: center;
	margin-left: auto;
}
.right-area .widget_text {
	float: left;
	margin-right: 30px;
}
.right-area .header-search {
	display: block;
}
.right-area ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.right-area ul li {
	display: inline-block;
	margin-left: 20px;
	position: relative;
}
.right-area ul li a {
	font-size: 16px;
	color: #077acf;
}
.right-area ul li a img {
	position: relative;
	color: #077acf;
}

.right-area .user-acc {
	float: right;
}
.right-area .user-acc a {
	display: block;
	position: relative;
	z-index: 1;
	color: #333;
	margin-left: 25px;
	text-align: left;
	line-height: 1;
}
.right-area .user-acc a span {
	position: relative;
	color: var(--dark);
	font-size: 24px;
}
.right-area .user-acc a span.my-acc {
	display: none;
	background-color: transparent;
	padding: 0;
}
.right-area .user-acc a img {
	margin-right: 7px;
}
.right-area #woo-cart-button {
	float: right;
	position: relative;
	display: flex;
}
.right-area #woo-cart-button span {
	color: #f00;
	margin-right: 5px;
}
.right-area #woo-cart-button span.material-symbols-outlined {
	color: var(--dark);
}
.right-area #woo-cart-button a {
	display: inline-block;
	position: relative;
	z-index: 1;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
.right-area #woo-cart-button a .woocommerce-Price-amount.amount {color: var(--dark);}
.right-area #woo-cart-button a .woocommerce-Price-amount.amount bdi:after {
	display: none;
}
.right-area #woo-cart-button img {
	color: var(--dark);
	margin-right: 7px;
	position: relative;
	top: 2px;
}
.right-area #woo-cart-button .cart-contents-count {
	position: absolute;
    color: var(--dark);
    background-color: #e73f3f;
    z-index: 0;
    right: -17px;
    padding: 0;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    top: -12px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.nav {
	position: relative;
}
.nav ul {
	-webkit-font-smoothing:antialiased;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.nav ul li {
	display: inline-block;
	margin: 0;
	position: relative;
	line-height: 40px;
	margin-right: 30px;
}
.nav ul li a {
	display: block;
    font-size: 1rem;
	font-weight: 500;
	color: var(--dark);
	position: relative;
}
.nav ul li a:hover {
	color: #222;
}
.nav ul li.current_page_item a {
	color: #222;
}
.nav ul li.current_page_item a:hover {
	color: #222;
}
.nav ul li.menu-item-has-children:hover a {
	color: #222;
}
.nav ul li.menu-item-object-product_cat.current-menu-item a {
	color: var(--dark);
	font-weight: 500;
}
/* sub menu 1 */
.nav ul li ul.sub-menu {
	display: none;
	position: absolute;
}
.nav ul li:hover ul.sub-menu {
	display: block;
    left: 0;
    z-index: 9;
    border-top: 0;
    padding: 15px 20px;
    width: 250px;
    background-color: var(--dark);
}

.nav ul li ul.sub-menu li {
	display: block;
	margin: 0;
	border-bottom: 0;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255, .2);
}
.nav ul li ul.sub-menu li a {
	display: block;
	color: #fff !important;
	font-size: 13px;
	padding: 20px 0;
	border-top: 0;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	position: relative;
}
.nav ul li ul.sub-menu li:hover a {
	color: #999 !important;
}
.nav ul li ul.sub-menu li.menu-item-has-children a {
	color: #eee;
	font-size: 18px;
}
.nav ul li ul.sub-menu li:last-child {
	border: 0;
}
.nav ul li ul.sub-menu li:last-child a {
	padding-bottom: 0;
}

.image-slide {
	line-height: 0;
}

.full-width .woocommerce ul.products {
	width: 100% !important;
	float: left;
}

.featured-journal {
	position: relative;
}
.featured-journal ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style: none;
}
.featured-journal ul li {
	width: 30%;
}
.featured-journal ul li .thumb {
	overflow: hidden;
    position: relative;
    height: 250px;
    width: 100%;
}
.featured-journal ul li .thumb a img {
	object-fit: cover;
    height: 250px;
    width: 100%;
}
.featured-journal ul li h4 {
	margin: 15px 0 10px 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}
.featured-journal ul li h4 a {
	color: var(--dark);
}
.featured-journal ul li h4 a:hover {
	color: var(--gold);
}
.featured-journal ul li h5 {
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	color: rgba(0,0,0, .7);
}
.featured-journal ul li p {
	font-size: 14px;
	font-weight: 400;
	margin: 7px 0 0 0;
}

#foot {
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 0;
	background-color: var(--black);
}
#foot .container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 60px 0;
	font-size: 15px;
	position: relative;
	font-weight: 400;
	color: rgba(255,255,255, .7);
	line-height: 1.6;
}
#foot .container h3 {
	color: #fff;
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 1.4;
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
}
#foot .container a {
	color: rgba(255,255,255, .7);
}
#foot .container .main-footer {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#foot .container .main-footer > div {
	overflow: hidden;
	width: 23%;
}
#foot .container .main-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#foot .container .main-footer ul li {
	position: relative;
	padding: 0 0 10px 0;
}
#foot .container .main-footer ul li a {
	display: block;
	padding: 0;
	color: rgba(255,255,255, .7);
	line-height: 1.1;
	font-weight: 400;
	font-size: 15px;
}
#foot .container .main-footer ul li a:hover {
	color: #fff;
	text-decoration: underline;
}
#foot .container .main-footer ul li a i {
	width: 16px;
	margin-right: 7px;
}
#foot .container .main-footer ul.socmed {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}
#foot .container .main-footer ul.socmed li {
	position: relative;
	display: inline-block;
	margin-right: 10px;
}
#foot .container .main-footer ul.socmed li a {
	display: block;
	color: var(--dark);
	background-color: #fff;
	height: 32px;
	width: 32px;
	text-align: center;
	line-height: 38px;
	border-radius: 70px;
}
#foot .container .main-footer ul.socmed li a:hover {
	color: var(--dark);
	background-color: #eee;
}
#foot .container .main-footer ul.socmed li a i {
	font-size: 18px;
	margin-right: 0;
}
.copyright {
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	overflow: hidden;
	background-color: var(--black);
	position: relative;
	text-align: center;
	border-top: 1px solid rgba(255,255,255, .2);
}
.copyright .container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	font-size: 14px;
	overflow: hidden;
	position: relative;
	font-weight: 400;
	color: rgba(255,255,255, .7);
	z-index: 2;
	line-height: 1.4;
}
.backTop {
	float: right;
	position: fixed;
	z-index: 999;
	right: 20px;
	bottom: 20px;
    cursor: pointer;
    font-size: 20px;
    background-color: var(--dark);
    padding: 0;
    line-height: 40px;
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
}
.backTop:hover {
	background-color: #333;
}

.a2a_svg {
	border-radius: 50px !important;
	padding: 4px !important;
}

#big-title {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
#big-title .container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 30px 0 10px 0;
	position: relative;
	border-bottom: 3px solid var(--dark);
}
/*#big-title .container:after {
	content: "";
    background-color: #ccc;
    height: 3px;
    width: 100%;
    left: 0;
    position: absolute;
    bottom: -9px;
}*/
#big-title .container h1 {
    font-size: 35px;
    line-height: 1.2;
    margin: 0;
    color: var(--dark);
    font-weight: 600;
}
#big-title img {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.breadcrumb {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	font-size: 13px;
	color: #fff;
	width: 100%;
	padding: 0;
	font-weight: 300;
}
.breadcrumb a {
	font-weight: 600;
	color: #fff !important;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb i {
	margin: 0 10px;
	color: #ccc;
}

.single .breadcrumb {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	font-size: 13px;
	color: #2b2b2b;
	width: 100%;
	padding: 0;
	font-weight: 300;
}
.single .breadcrumb a {
	font-weight: 600;
	color: var(--dark) !important;
}
.single .breadcrumb a:hover {
	text-decoration: underline;
	color: #2b2b2b !important;
}
.single .breadcrumb i {
	margin: 0 10px;
	color: #ccc;
}

#main-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
#main-wrapper .container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 50px 0;
	position: relative;
	overflow: hidden;
	color: var(--dark);
}

#main-wrapper .container.grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#main-wrapper .container.grid article {
	width: 30%;
	margin-bottom: 40px;
}
#main-wrapper .container.grid article .post-thumb {
	overflow: hidden;
	position: relative;
	height: 250px;
	width: 100%;
}
#main-wrapper .container.grid article .post-thumb a img {
	object-fit: cover;
	height: 250px;
	width: 100%;
}
#main-wrapper .container.grid article .post-wrap h2 {
	font-size: 20px;
	line-height: 1.3;
	margin: 15px 0 0 0;
}
#main-wrapper .container.grid article .post-wrap h2 a {
	color: var(--dark);
}
#main-wrapper .container.grid article .post-wrap h2 a:hover {
	color: var(--gold);
}
#main-wrapper .container.grid article .post-wrap .metadata {
	margin: 10px 0 0 0;
}
#main-wrapper .container.grid article .post-wrap .metadata h5 {
	margin: 0;
	color: rgba(0,0,0, .7);
	font-size: 12px;
	font-weight: 400;
}
#main-wrapper .container.grid article .post-wrap p {
	margin: 10px 0 0 0;
	line-height: 1.5;
	font-size: 14px;
}

#main-wrapper .container.list-buku {
	position: relative;
}
#main-wrapper .container.list-buku ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#main-wrapper .container.list-buku ul li {
	width: 22%;
	text-align: center;
}
#main-wrapper .container.list-buku ul li .thumb {
	position: relative;
/*	background: repeating-linear-gradient(180deg, transparent 11px, transparent 12px, #eee 13px, #eee 28px);*/
	line-height: 0;
	background-color: #eee;
}
#main-wrapper .container.list-buku ul li .thumb img {
	transition: .2s ease-in-out;
	position: relative;
	top: 0;
	height: 300px;
	object-fit: contain;
	margin: 0 auto;
}
#main-wrapper .container.list-buku ul li .thumb img:hover {
	transition: .2s ease-in-out;
	top: -7px;
}
#main-wrapper .container.list-buku ul li h4 {
	margin: 10px 0 0 0;
	font-size: 18px;
	font-weight: 700;
}
#main-wrapper .container.list-buku ul li h4 a {
	display: block;
}
#main-wrapper .container.list-buku ul li p {
	margin: 0;
	font-size: 15px;
}

#main-wrapper .container .content {
	width: 100%;
	max-width: 800px;
	position: relative;
	margin: 0 auto;
}

#main-wrapper .container .content.buku {
	max-width: 1200px;
}
#main-wrapper .container .content.buku article .thumb {
	width: 40%;
	position: relative;
	float: left;
	overflow: hidden;
}

#main-wrapper .container .content article.full {
	width: 100%;
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	padding: 0;
}
#main-wrapper .container .content article.full img {
	width: 100%;
}
#main-wrapper .container .content article.full .body-content {
	width: 100%;
}
#main-wrapper .container .content article.full .body-content.buku {
	float: right;
	width: 55%;
}
#main-wrapper .container .content article.full .body-content h1 {
	float: left;
	width: 100%;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 10px;
	margin-bottom: 20px;
}
#main-wrapper .container .content article.full .body-content h2 {
	font-size: 24px;
	line-height: 1.4;
}
#main-wrapper .container .content article.full .body-content h3 {
	font-size: 20px;
	line-height: 1.4;
}
#main-wrapper .container .content article.full .body-content h5 {
	margin: 0 !important;
	line-height: 1.2;
	font-size: 13px;
	font-weight: 400;
}
#main-wrapper .container .content article.full .body-content p.tag-cat {
	font-size: 13px;
	margin: 0 0 3px 0;
}
#main-wrapper .container .content article.full .body-content .harga-sewa {
	font-weight: 700;
}
#main-wrapper .container .content article.full .body-content p {
	line-height: 1.6;
}
#main-wrapper .container .content article.full .body-content a.cta {
	background-color: #45b33e;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	padding: 10px 30px;
}
#main-wrapper .container .content article.full .body-content a.cta i {
	margin-right: 10px;
}

#main-wrapper .container .content article.full .body-content ul li {
	line-height: 1.6;
}

#main-wrapper .container .content.product {
	width: 100%;
	float: left;
}
#main-wrapper .container .content.product h1 {
	float: right;
	width: 52%;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 20px;
}

.sidebar {
	width: 100%;
	overflow: hidden;
}
.sidebar .sidebar-widget h3 {
	margin: 0;
	line-height: 1.2;
	padding-bottom: 12px;
	margin-bottom: 15px;
	border-bottom: 2px solid var(--dark);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 24px;
}
.sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 40px;
}
.sidebar ul li {
	position: relative;
}
.sidebar ul li a {
	display: block;
	padding: 5px 0;
	font-size: 18px;
}
.sidebar ul li.current-menu-item a {
	color: #f00;
}

.pagination {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding-top: 30px;
	text-align: center;
}
.pagination .page-numbers {
	background-color: #fff;
	color: #222;
	padding: 5px 10px;
	margin: 0 5px;
	border-radius: 0;
}
.pagination .page-numbers.current {
	background-color: var(--dark);
	color: #fff;
}
.pagination .page-numbers:hover {
	background-color: var(--dark);
	color: #fff;
}

form.search {
	width: 100%;
	margin-bottom: 30px;
}
form.search input[type="search"] {
	border: 0;
	padding: 0;
	text-indent: 15px;
	height: 38px;
	line-height: 38px;
	margin: 0;
	float: left;
	width: 65%;
	font-size: 11px;
	background-color: #fff;
}
form.search button[type="submit"] {
	background-color: #bdaea4;
	color: #fff;
	outline: none;
	border: none;
	height: 38px;
	line-height: 38px;
	font-size: 16px;
	width: 35%;
	padding: 0;
}
form.search button[type="submit"]:hover {
	background-color: #483e38;
}
#related {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    background-color: var(--white);
}
#related h3 {
    color: var(--dark);
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}
#related ul {
	margin: 0 auto;
	padding: 0;
	list-style: none;
	width: 100%;
	max-width: 1600px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#related ul li {
    width: 31%;
}
#related ul li .thumb {
	overflow: hidden;
    position: relative;
    height: 250px;
    width: 100%;
}
#related ul li .thumb a img {
	object-fit: cover;
    height: 250px;
    width: 100%;
}
#related ul li h4 {
	margin: 15px 0 0 0;
	line-height: 1.3;
	font-size: 20px;
}
#related ul li h4 a {
	display: block;
	color: var(--dark);
}
#related ul li h4 a:hover {
	color: var(--gold);
}
#related ul li h5 {
	font-size: 12px;
	font-weight: 400;
	margin: 10px 0 0 0;
	color: rgba(0,0,0, .7);
}
#related ul li p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    margin: 10px 0 0 0;
}

/* ---------------- woocomerce custom style ----------------- */

#primary {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 0 30px 0;
	position: relative;
	color: var(--dark);
	overflow: hidden;
}

/* -- slider products -- */
.woocommerce .ywcps-wrapper ul.products {
	padding-bottom: 0 !important;
}
.ywcps-wrapper .ywcps-nav-next {
    right: 20px !important;
    opacity: 1 !important;
}
.ywcps-wrapper .ywcps-nav-next:hover {
    right: 15px !important;
    opacity: 1 !important;
}
.ywcps-wrapper .ywcps-nav-prev {
    left: 20px !important;
    opacity: 1 !important;
}
.woocommerce .ywcps-wrapper .ywcps-nav-prev #default_prev, .woocommerce .ywcps-wrapper .ywcps-nav-next #default_next {
	border: 0 !important;
	background-color: var(--black) !important;
	color: var(--white) !important;
	top: 40% !important;
	width: 36px !important;
    height: 36px !important;
    border-radius: 70px !important;
    line-height: 1 !important;
}
.ywcps-wrapper .ywcps-nav-prev:hover {
    left: 15px !important;
    opacity: 1 !important;
}
.woocommerce .ywcps-wrapper .owl-item li.product {
	width: 100% !important;
	border: 10px solid var(--secondary-color) !important;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce .ywcps-wrapper ul.products li.product .onsale {
	top: 10px !important;
	left: 10% !important;
	right: unset !important;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	width: 32.33333% !important;
	margin: 0 0 20px 0 !important;
}

.show-secondary-image {position: absolute; top: 0; left: 0;}

.price_label {display: inline-block; line-height: 1; position: relative; margin-top: 10px; font-size: 12px;}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {background-color: var(--dark);}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {background-color: var(--dark);}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {background-color: #fff;}
.woocommerce .widget_price_filter .price_slider_amount button {background-color: #888; color: #fff;}
.woocommerce .widget_price_filter .price_slider_amount button:hover {background-color: #fff; color: #888;}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {color: var(--dark);}

body.register h2 {
	text-align: center;
	margin: 0 0 30px 0;
	padding: 16px 20px;
	background: url(img/bg-login.png) no-repeat 0 0;
	background-size: cover;
	line-height: 1.2;
}
body.woocommerce-account h2 {
	text-align: center;
	margin: 0 0 30px 0;
	padding: 16px 20px;
	background: url(img/bg-login.png) no-repeat 0 0;
	background-size: cover;
	line-height: 1.2;
}
.form-register {
	width: 100%;
	position: relative;
}
.form-register form.woocommerce-form-register .form-row label {
	display: block;
}
.form-register form.woocommerce-form-register .form-row input.input-text {
	width: 100%;
	line-height: 40px !important;
    height: 40px !important;
    border: 1px solid #999 !important;
    text-indent: 10px;
    border-radius: 0;
}
.form-register form.woocommerce-form-register .form-row button[type="submit"] {
	background-color: var(--dark);
    width: 100%;
    padding: 0;
    height: 44px;
    line-height: 44px;
    color: #fff;
    display: block;
    border: 0;
    border-radius: 70px;
    text-align: center;
    font-weight: 600;
}
.form-register form.woocommerce-form-register .form-row button[type="submit"]:hover {
	background-color: #333;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {padding: 10px 15px !important; background-color: #f0f5e9 !important; border: 0 !important; margin-bottom: 0;}
.woocommerce-form-coupon {margin-bottom: 0 !important; width: 100%; max-width: 400px !important;}
.woocommerce-form-coupon .form-row {width: 50% !important;}
.woocommerce-form-coupon .form-row.form-row-last button {width: auto; display: inline-block; margin-left: 20px; padding: 13px 20px;}
.woocommerce-info::before {display: none !important;}

.woocommerce .products ul, .woocommerce ul.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	width: 100%;
}
.woocommerce .products ul:before, .woocommerce ul.products:before {
	display: none;
}
.woocommerce .products ul:after, .woocommerce ul.products:after {
	display: none;
}

.wc-block-grid__product .wc-block-grid__product-title {
	font-size: 16px !important;
    text-transform: none;
    line-height: 1.3;
    padding: 5px 10px;
    margin: 5px 0 !important;
    font-weight: 400;
    border-bottom: 0;
    font-family: 'Work Sans';
}
.wc-block-grid__product-add-to-cart.wp-block-button {
	display: block;
}

body.post-type-archive-product .woocommerce-products-header .page-description {
	display: block;
}
#primary .site-main .woocommerce-products-header {
	position: relative;
	width: 100%;
	padding: 0;
    margin-bottom: 40px;
}
#primary .site-main .woocommerce-products-header:after {
	content: "";
	background-color:var(--dark);
	height: 3px;
	width: 100%;
	left: 0;
	position: absolute;
}
#primary .site-main .woocommerce-products-header h1 {
	font-size: 35px;
	font-weight: 600;
}
#primary .site-main .woocommerce-breadcrumb {
	padding-bottom: 5px;
	border-bottom: 1px solid #ddd !important;
	margin: 5px 0 20px 0;
}
body.single-product #primary .site-main .woocommerce-breadcrumb {
	padding-bottom: 20px;
	margin: 0;
	padding: 5px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0,0,0, .7) !important;
}
#primary .site-main .woocommerce {
	float: right;
	width: 77%;
}
#primary .site-main .woocommerce ul.products li.product {
	margin-bottom: 30px;
}
.woocommerce ul.products li.product .woocommerce-placeholder {
	border: 0;
}

.woocommerce nav.woocommerce-pagination {
	width: 100%;
	float: left;
	display: block;
	margin: 30px 0 0 0;
}

.yith-wcan-filters {
	background-color: transparent !important;
}
.yith-wcan-filter {
	position: relative;
}
.yith-wcan-filter h4 {
	display: none;
	visibility: hidden;
}
.yith-wcan-filter .filter-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.yith-wcan-filter .filter-content ul li {
	margin-right: 20px !important;
}
.yith-wcan-filter .filter-content ul li a {
	padding: 0 20px;
	background-color: var(--white);
	border-radius: 70px;
	font-size: 15px;
}
.yith-wcan-filter .filter-content ul li a:hover {
	background-color: var(--black);
	color: var(--white) !important;
}
.yith-wcan-filter .filter-content ul li.filter-item.active a {
	background-color: var(--black);
	color: var(--white) !important;
}

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
	width: 55%;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
	width: 40%;
}
ul.product_list_widget {position: relative; text-align: center; margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; justify-content: space-between;}
ul.product_list_widget li {padding: 0; width: 32.3333%; flex-wrap: wrap; text-align: left;}
ul.product_list_widget li a img {margin-bottom: 10px;}
ul.product_list_widget li a {display: block; font-size: 18px; line-height: 1.2; color: var(--dark); font-weight: 600;}

.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img {transition: .2s linear; position: relative; top: 0;}
.woocommerce ul.products li.product a img:hover, .woocommerce-page ul.products li.product a img:hover {transition: .2s linear; position: relative;}
.woocommerce ul.products li.product form.cart, .woocommerce-page ul.products li.product form.cart {display: none; visibility: hidden;}
.woocommerce ul.products li.product a h2, .woocommerce-page ul.products li.product a h2 {margin-top: 10px !important;}
.woocommerce ul.products li.product .excerpt, .woocommerce-page ul.products li.product .excerpt {font-size: 12px;}
.woocommerce ul.products li.product .quantity, .woocommerce-page ul.products li.product .quantity {display: none;}
.woocommerce-loop-product__title {font-size: 20px !important;font-weight: 500;line-height: 1.2;}
.woocommerce ul.products li.product a.button {padding: 12px 20px !important; margin-top: 0; border-radius: 50px; text-align: center !important; font-size: 16px; background-color: var(--black); position: relative; margin-top: 10px;}
.woocommerce ul.products li.product a.button:hover {background-color: var(--grey); color: #fff;}
.woocommerce ul.products li.product button[type="submit"], .woocommerce-page ul.products li.product button[type="submit"] {line-height: 40px; padding: 0; color: #fff; height: 44px; display: block; width: 100%; text-align: center !important; font-size: 14px; font-weight: 600; background-color: var(--dark); border-radius: 0;}
.woocommerce ul.products li.product button[type="submit"]:hover, .woocommerce-page ul.products li.product button[type="submit"]:hover {background-color: #378f3c; color: #fff;}
.woocommerce ul.products li.product .out-of-stock, .woocommerce-page ul.products li.product .out-of-stock {
	min-height: 0;
    line-height: 1.2;
    padding: 5px !important;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    position: absolute;
    display: inline-block;
    width: auto;
    font-size: 500 !important;
    text-transform: uppercase;
    background-color: #8d8d8da1;
    color: #fff;
    font-size: .757em;
    width: auto;
    border-radius: 3px;
    top: 0;
}
.woocommerce ul.products li.product.outofstock .price, .woocommerce-page ul.products li.product.outofstock .price {
	display: none;
	visibility: hidden;
}
.woocommerce ul.products li.product.outofstock a.button, .woocommerce-page ul.products li.product.outofstock a.button {
	background-color: #999;
	display: none;
	visibility: hidden;
}

.woocommerce-page.columns-3 ul.products li.product, .woocommerce.columns-3 ul.products li.product {margin-bottom: 30px;}

.woocommerce div.product div.images {position: relative; display: block; overflow: hidden;}
.woocommerce div.product div.images .flex-viewport {width: 83%; float: right;}
.woocommerce div.product div.images .flex-control-thumbs {width: 15%; float: left; display: flex; flex-wrap: wrap; justify-content: space-between;}
.woocommerce div.product div.images .flex-control-thumbs li {width: 100%; margin-bottom: 10px;}
.woocommerce div.product span.onsale {left: 10%; top: 10px;}

.woocommerce div.product div.summary {position: relative;}
.woocommerce div.product p.price, .woocommerce div.product span.price {margin: 0; color: var(--dark); font-weight: 600; font-family: 'Work Sans';}
.woocommerce-Price-currencySymbol {margin-right: 3px; font-weight: 300; position: relative;}
.woocommerce-product-details__short-description {border-bottom: 2px solid var(--white); padding-bottom: 10px;}

.woocommerce-page table.cart td.actions .input-text {width: auto;}
.woocommerce .quantity input[type="number"] {height: 40px; width: 120px; float: right;}
.woocommerce div.product form.cart button[type="submit"] {height: 40px; color: #fff; border-radius: 100px; background-color: var(--black); padding-left: 20px; padding-right: 20px; font-weight: 600; font-size: 16px; float: left; width: 200px; margin-top: 30px;}
.woocommerce div.product form.cart button[type="submit"]:hover {background-color: var(--dark); color: #fff;}
.woocommerce div.product form.cart button[type="button"].single_buy_now {height: 50px; color: #fff; border-radius: 0; background-color: var(--dark); border: 0; padding-left: 20px; padding-right: 20px; font-weight: 600; font-size: 16px; float: right; width: 49%;}
.woocommerce div.product form.cart button[type="button"].single_buy_now:hover {background-color: #333;}

.sku_wrapper {display: block; font-size: 13px;}
.posted_in {display: block; font-size: 13px;}
.product_meta {margin: 5px 0 0 0;}
.tagged_as {display: block; font-size: 13px;}
.form-row.validate-required {font-size: 18px !important; font-weight: 600;}

.premium-woocommerce li.product .price .amount {color: var(--dark) !important; font-size: 16px !important;}

.woocommerce table.shop_table {border: 0 !important;}
.woocommerce table.shop_table th {padding: 10px 0 !important;}
.woocommerce table.shop_table td {padding: 10px 0 !important; vertical-align: middle;}
.woocommerce table.shop_table td .woocommerce-Price-amount.amount bdi:after {display: none;}
.woocommerce table.shop_table td.product-name {font-weight: 600 !important; font-size: 16px;}
.woocommerce table.shop_table td.product-name a.button.yith-wcqv-button {display: none;}
.woocommerce table.shop_table td.product-name dl.variation {display: none;}
.woocommerce td.product-name dl.variation dt {clear: none;}
.woocommerce td.product-name dl.variation dt p {margin: 0 !important; font-weight: 600;}
.woocommerce td.product-name dl.variation dd p {margin: 0 !important; font-weight: 600;}
.woocommerce-shipping-totals.shipping {width: 100%;}
.woocommerce-shipping-totals.shipping th {display: block; width: 100%;}
.woocommerce-shipping-totals.shipping td {display: block; width: 100%; font-size: 14px;}
.woocommerce-cart .cart-collaterals .shipping-calculator-button {color: #222;}
.woocommerce .variations_form.cart {margin: 0 !important;}
.woocommerce div.product .stock {font-size: 16px !important; margin: 20px 0 0 0; color: #222;}
.woocommerce div.product .out-of-stock {margin: 0; margin-top: -43px; font-size: 14px !important; display: inline-block; padding: 7px 10px; border: 1px solid #999; border-radius: 30px; position: absolute; right: 0; line-height: 1;}

.woocommerce-page div.product .woocommerce-tabs {overflow: hidden; width: 100%;}
.woocommerce div.product .woocommerce-tabs ul.tabs {padding: 0; border-bottom: 1px solid #bbb; margin: 0 0 30px 0; padding: 0;}
.woocommerce div.product .woocommerce-tabs ul.tabs li {background-color: transparent; border: 0; padding: 0; margin: 0; margin-right: 30px !important; font-family: 'Work Sans';}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {font-size: 21px;font-weight: 600;}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {color: var(--dark); font-weight: 700;}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {background-color: transparent; border-bottom: 2px solid var(--dark); margin-right: 15px;}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce div.product .woocommerce-tabs ul.tabs li:before {display: none;}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {border-bottom: 0;}
.woocommerce #content div.product .woocommerce-tabs h2 {text-transform: uppercase; font-weight: 700; font-size: 14px; display: none;}
.woocommerce div.product .woocommerce-tabs .panel h2 {font-size: 16px; display: none;}
.woocommerce div.product .woocommerce-tabs .panel h3 {font-size: 16px;}
.woocommerce div.product .woocommerce-tabs .panel ul {margin: 0; padding: 0;}
.woocommerce div.product .woocommerce-tabs .panel ul li {font-size: 15px; margin-left: 15px;}

.woocommerce-page div.product .up-sells {float: right; width: 30%; display: none; visibility: hidden;}
.woocommerce-page div.product .up-sells h2 {font-size: 24px; border-bottom: 1px solid var(--light);}
.woocommerce-page div.product .up-sells ul.products li.product {width: 100% !important;}

.woocommerce #review_form #respond #reply-title {font-size: 18px !important; font-weight: 400;}
.woocommerce #reviews #comments ol.commentlist {padding: 0; border-bottom: 1px solid #ddd; padding-bottom: 10px; margin-bottom: 20px;}
.woocommerce #reviews #comments ol.commentlist li img.avatar {width: 80px; border: 0; padding: 0;}
.woocommerce #reviews #comments ol.commentlist li .comment-text {border-radius: 0; margin-left: 100px; border: 0; padding: 0;}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {margin-bottom: 5px;}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {color: var(--dark);}
.woocommerce-review__published-date {font-size: 12px;}
.woocommerce p.stars a {color: #CC9638;}
.woocommerce #review_form #respond textarea {border: 1px solid #ccc; outline: 0; padding: 10px 15px;}
.woocommerce #review_form #respond input {border: 1px solid #ccc; outline: 0; width: 100%; padding: 10px 15px;}
.woocommerce #review_form #respond input[type="checkbox"] {width: auto; display: inline-block; margin-right: 5px;}
.woocommerce #review_form #respond input[type="submit"] {width: auto; display: inline-block; background-color: var(--dark); color: #fff; padding: 14px 30px; font-size: 15px; border: 0; border-radius: 0;}
.woocommerce #review_form #respond input[type="submit"]:hover {background-color: #333;}
.woocommerce .related.products {clear: both; float: left; width: 100%;}
.woocommerce .related.products h2 {font-weight: 600; font-size: 24px !important; margin-bottom: 20px !important;}
.woocommerce .related.products ul.products {
	width: 100%;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}
.woocommerce .related.products ul.products li.product {
	text-align: left;
    width: 22%;
    margin: 0 0 25px 0;
}
.woocommerce .related.products ul.products li.product a h2 {
    text-transform: none;
    line-height: 1.1;
    padding: 0;
    margin: 10px 0 5px 0 !important;
    font-weight: 600;
    border-bottom: 0;
}
.woocommerce .related.products ul.products li.product .price {
	font-weight: 400;
    font-size: 14px !important;
    color: var(--dark);
    padding: 0;
    margin: 0;
}
.woocommerce .related.products ul.products li.product .excerpt {font-size: 12px;}
.woocommerce .related.products ul.products li.product .quantity {position: absolute !important; bottom: 80px; right: 15px; top: unset;}
.woocommerce .related.products ul.products li.product .quantity input[type="number"] {font-size: 14px; height: 24px; width: 60px;}
.woocommerce .related.products ul.products li.product button[type="submit"] {line-height: 40px; padding: 0; height: 44px; font-weight: 600; color: #fff; display: block; width: 100%; text-align: center !important; font-size: 14px; background-color: var(--dark); border-radius: 0;}
.woocommerce .related.products ul.products li.product button[type="submit"]:hover {background-color: #378f3c; color: #fff;}
.woocommerce .related.products ul.products li.product form.cart {margin-bottom: 0;}

#add_payment_method .cart-collaterals .cart_totals table th, .woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce-checkout .cart-collaterals .cart_totals table th {width: 100%;}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {width: 100px !important;}
#add_payment_method .wc-proceed-to-checkout, .woocommerce-cart .wc-proceed-to-checkout, .woocommerce-checkout .wc-proceed-to-checkout {padding: 0; margin: 20px 0 0 0;}
.wc-proceed-to-checkout a {font-weight: 500 !important; margin-bottom: 0 !important; font-size: 15px !important; padding: 14px 10px !important;}
.wc-block-components-order-summary .wc-block-components-order-summary-item .wc-block-components-product-metadata {display: none !important;}

.woocommerce ul.products li.product-category {margin-bottom: 0 !important; padding: 20px !important;}
.woocommerce ul.products li.product-category a img {margin-bottom: 0 !important;}
.woocommerce ul.products li.product-category a h2.woocommerce-loop-category__title {text-align: center; text-transform: uppercase; font-size: 18px !important; font-weight: 600; margin: 0 !important; padding: 0 !important;}
.woocommerce ul.products li.product-category a h2.woocommerce-loop-category__title mark {display: block !important; background: transparent !important; color: #f00 !important; font-weight: 400 !important;}
.woocommerce-product-rating {margin-bottom: 10px !important;}
.woocommerce div.product .product_title {
	font-size: 30px;
	line-height: 1.2;
	color: var(--dark);
	font-weight: 600;
}
.woocommerce div.product p.price {font-size: 27px !important; font-weight: 600; position: relative; padding-top: 25px; color: var(--dark);}
.woocommerce div.product p.price del, .woocommerce div.product span.price del {
	font-size: 13px;
    display: inline-block;
    float: left;
    position: relative;
    margin-right: 10px;
    top: 5px;
}
.woocommerce div.product p.price del .woocommerce-Price-amount.amount, .woocommerce div.product span.price del .woocommerce-Price-amount.amount {
	color: var(--dark) !important;
}
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins {
	text-decoration: none;
	display: block;
	font-size: 18px;
}

.woocommerce table.shop_attributes {text-align: left;}
.woocommerce table.shop_attributes th {padding: 10px 0;}

.woocommerce ul.products li.product .onsale {
	min-height: 0;
	line-height: 1.2;
	padding: 5px !important;
	left: 10%;
	right: unset;
    transform: translateX(-50%);
    margin: 0;
    position: absolute;
    display: inline-block;
    width: auto;
    text-transform: uppercase;
    top: 10px;
    font-size: .757em;
}
.woocommerce span.onsale {background-color: #da0422b0; min-height: 5.236em; min-width: 5.236em; line-height: 5.236; padding: 0; left: 0; top: 15px; border-radius: 3px; padding: 10px !important; line-height: 1.2 !important; min-height: 0 !important;}
.woocommerce div.product form.cart div.quantity {margin: 0 20px 0 0; display: inline-block; position: relative; width: auto;}
.woocommerce-variation-price {display: inline-block; margin-right: 20px;}
.woocommerce-variation-availability {display: inline-block;}
.woocommerce-variation.single_variation {margin-bottom: 20px;}
.button-variable-item span {font-size: 12px !important; font-weight: 600;}
.woocommerce div.product form.cart .button[type="submit"].disabled {background-color: #888 !important;}
.woocommerce form.woocommerce-cart-form table tr td .quantity .qty {height: 32px; width: 70px; position: relative; top: 0; left: 0; float: left;}

.single-product .catcbll_preview_button {margin-top: 30px; margin-right: 20px;}
.single-product .catcbll_preview_button a {
	background-color: var(--black) !important;
	color: var(--white) !important;
	height: 40px !important;
	width: auto !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
	line-height: 40px !important;
	border-radius: 70px !important;
}

.woocommerce-products-header {margin-top: 0;}
.woocommerce-products-header h1 {margin: 0; margin-bottom: 0;}
.woocommerce .quantity .qty {height: 40px; width: 120px; border-radius: 100px; float: left; border: 1px solid var(--white); outline: 0; background-color: #fff; font-weight: 600;}
.woocommerce #respond input#submit, .woocommerce button.button, .woocommerce input.button {width: 100%;font-weight: 500;font-size: 15px;}
.woocommerce #respond input#submit:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {background-color: #378f3c; color: #fff;}
.woocommerce div.product div.summary {text-align: left;}
.woocommerce div.product div.summary .woocommerce-tabs.wc-tabs-wrapper {display: block !important; width: 100%;}
.woocommerce a.button {background-color: var(--dark); border: 0 !important; color: #fff; border-radius: 0; font-size: 14px; font-weight: 600;}
.woocommerce a.button:hover {background-color: #333;}
.woocommerce button.button.alt {background-color: var(--dark); display: block; color: #fff; outline: none;}
.woocommerce button.button.alt:hover {background-color: #333; color: #fff; outline: none;}
.woocommerce input.button.alt {background-color: var(--dark); border-bottom: 3px solid #580303; width: auto; padding: 17px 20px !important;}
.woocommerce input.button.alt:hover {background-color: #333; outline: none; border: 0;}
.woocommerce a.button.alt {line-height: 1.2 !important; background-color: var(--dark); color: #fff !important; font-weight: 500; width: auto; border: 0; padding: 15px 20px;}
.woocommerce a.button.alt:hover {background-color: #333; outline: none; border: 0;}
.woocommerce div.product form.cart .button {float: right; width: 48%; height: 50px; border-radius: 70px; margin-top: 25px;}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 18px !important;
	text-transform: none;
	line-height: 1.1;
	padding: 0;
	margin: 10px 0 5px 0 !important;
	font-weight: 400;
	border-bottom: 0;
	font-weight: 600 !important;
	display: inline-block;
    width: 70%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {color: var(--dark);}
.woocommerce ul.products li.product .price {text-decoration: none; font-weight: 400; font-size: 14px; color: var(--dark); padding: 0; margin: 0;}
.woocommerce ul.products li.product .price del {font-size: 12px; display: inline-block;float: left;margin-right: 10px; position: relative;top: 5px; color: #555 !important;}
.woocommerce ul.products li.product .price del .woocommerce-Price-amount.amount {color: var(--dark) !important; font-family: 'Work Sans';}
.woocommerce ul.products li.product .price ins {text-decoration: none; font-size: 18px; display: block;}
.woocommerce .star-rating {width: 5.5em; display: block;}
.woocommerce .star-rating::before {color: #fff;}
.woocommerce .star-rating span {color: #cda10c;}
.woocommerce form.woocommerce-ordering {margin-bottom: 50px;}
.woocommerce form.woocommerce-ordering select.orderby {padding: 3px 10px; border: 1px solid var(--dark); color: var(--dark); font-size: 14px;}

.woocommerce-Price-amount.amount {
	font-weight: 600 !important;
	color: var(--dark);
}
.woocommerce .cart .button, .woocommerce .cart input.button {width: auto; border-radius: 50px;}
.woocommerce .widget_price_filter .price_slider_amount {text-align: center;}
#add_payment_method #payment ul.payment_methods li img, .woocommerce-cart #payment ul.payment_methods li img, .woocommerce-checkout #payment ul.payment_methods li img {width: auto !important;}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {padding: 16px 30px; width: auto; margin-top: 10px; border-radius: 70px !important; float: left; font-size: 14px; font-weight: 600; background-color: var(--dark) !important;}

.wp-block-woocommerce-checkout {padding-top: 0 !important;}
.wp-element-button {background: var(--black); color: #fff; margin-top: 20px !important; outline: none !important; border: 0 !important; border-radius: 100px !important;}
.wp-element-button:hover {background: var(--dark); color: #fff;}
.wc-block-checkout__terms {margin: 0 !important;}
.is-large .wc-block-checkout__actions {padding: 0 !important;}

.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover {background-color: #333 !important;}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {border-radius: 0; background-color: transparent;}
.woocommerce-checkout #payment ul.payment_methods {padding: 0; border: 0;}
.woocommerce-checkout #payment ul.payment_methods li {width: 100% !important; margin: 0 !important; text-align: left !important; font-size: 14px !important; font-weight: 400 !important;}
.woocommerce-checkout #payment div.form-row {padding: 0;}
.woocommerce-checkout #payment div.payment_box {background-color: #fff;}
.woocommerce-checkout #payment div.payment_box p {font-size: 13px !important; font-weight: 400 !important;}
.woocommerce-checkout #payment div.payment_box::before {
	border: 1em solid #fff;
	border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}
.return-to-shop a.button {
	border-radius: 50px;
	color: #fff !important;
}

.woocommerce .col2-set, .woocommerce-page .col2-set {
	float: left;
	width: 47%;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
	width: 100%;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
	width: 100%;
	float: left;
}
#order_review {
	float: right;
	width: 47%;
	padding: 0;
}
h3#order_review_heading {
	float: right;
	width: 47%;
	margin-top: 0;
	font-size: 24px;
}
.woocommerce-privacy-policy-text p {font-size: 13px !important;}

.woocommerce .woocommerce-breadcrumb {
	padding-top: 10px;
	padding-bottom: 20px;
	color: var(--dark);
	font-size: 14px;
}
.woocommerce .woocommerce-breadcrumb a {
	font-weight: 700;
	color: var(--dark);
}
.woocommerce .woocommerce-breadcrumb a:hover {
	color: var(--gold);
}
.single-product nav.woocommerce-breadcrumb {border-bottom: 0 !important;}
.woocommerce .woocommerce-result-count {display: block;}
.woocommerce-info {border: 0; border-left: 4px solid #f00;}
.woocommerce form .form-row {padding: 0; font-size: 14px !important;}
.woocommerce form .form-row textarea {padding: 5px 10px;}
.woocommerce .order_details {padding: 20px; margin: 0 !important; border: 2px solid var(--dark); border-radius: 5px;}
.woocommerce-thankyou-order-received {padding: 5px 10px; background-color: #D8E8D8; border: 1px solid #D8E8D8;}
.woocommerce ul.products li.product a img {/*pointer-events: none; cursor: default; */margin-bottom:0 !important;}
.woocommerce ul.products li.product a h2 {font-size: 20px !important; margin-bottom: 0 !important;}
.woocommerce ul.products li.product a p {margin: 0;}
.woocommerce-billing-fields {
	position: relative;
}
.woocommerce-billing-fields h3 {margin-top: 0; font-size: 24px;}
.woocommerce form .form-row input {
	line-height: 40px !important;
	height: 40px !important;
	border: 0 !important;
	text-indent: 10px;
	border-radius: 0;
}
.woocommerce form fieldset {border: 0 !important; padding: 20px;}
.woocommerce form .form-row input:-internal-autofill-selected {
	background-color: var(--white) !important;
}
.woocommerce form .form-row input[type="checkbox"] {
	line-height: 1 !important;
    height: 1.15em !important;
    border: 1px solid var(--dark) !important;
    text-indent: 0;
    border-radius: 0;
    margin: 0 12px 0 0;
    display: inline-block;
    top: 0;
}
#mailpoet_woocommerce_checkout_optin_field {
	display: none;
}
.woocommerce form .form-row input[type="checkbox"]:checked:after {
	top: 0;
}
.woocommerce form .form-row textarea {
	line-height: 40px !important;
	height: 100px !important;
	border: 0 !important;
	text-indent: 10px;
	border-radius: 0 !important;
}
.woocommerce form .form-row .select2-container--default .select2-selection--single {
	border: 0;
    border-radius: 0;
    height: 40px;
    line-height: 37px;
    margin: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
	font-size: 14px;
	font-weight: 500;
}
.woocommerce form .form-row .select2-container {
	border: 1px solid #ddd !important;
}
.woocommerce ul#shipping_method li input:after {top: -6px; left: 2px;}
.woocommerce ul#shipping_method li label {font-size: 14px; font-weight: 500;}
.woocommerce-page div.product div.summary {font-size: 15px; line-height: 1.5;}
.woocommerce-page div.product div.summary form {background-color: transparent; padding: 0; position: relative; margin-top: 30px; float: left; margin-right: 20px; margin-bottom: 0 !important;}
.woocommerce-page div.product div.summary div[itemprop="description"] p {
   margin: 30px 0 0 0;
}
div[itemprop="description"] p {
   margin: 5px 0 0 0;
}
.woocommerce-error, .woocommerce-info {background-color: #e9f3f7;}
.woocommerce-message {border-top: 0 !important; padding: 10px 15px 10px 59px !important; background-color: #f0f5e9 !important; color: var(--dark) !important; line-height: 2.2 !important; top: 0;right: 0;width: 100%; margin-bottom: 20px;}
.woocommerce-message::before {top: 11px;}
.woocommerce-message a {color: #fff !important; border: 1px solid #fff !important; border-radius: 0; background-color: #59895b !important; font-size: 13px; font-weight: 400;}
.woocommerce .woocommerce-product-rating a.woocommerce-review-link {position: relative; font-size: 13px; top: 0; margin-left: 5px;}
.woocommerce div.product p.price ins {color: var(--dark);}
.woocommerce div.product form.cart .variations {clear: both; margin: 0; display: block;}
.woocommerce div.product form.cart .variations tr {margin-bottom: 20px;}
.woocommerce div.product form.cart .variations td.label {font-weight: 500; /*padding-top: 9px;*/}
.woocommerce div.product form.cart .variations label {font-weight: 500; position: relative; font-size: 18px !important;}
.woocommerce div.product form.cart .reset_variations {background-color: #fff; padding: 8px 10px;}
.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {line-height: 1.7 !important;}
.woocommerce div.product .select_option {border: 2px solid #ddd; border-radius: 100%;}
.woocommerce div.product form.cart .variations select {width: 100% !important; border: 1px solid #222; padding: 5px 15px; margin-right: 0; font-size: 14px; font-weight: 500; border-radius: 4px;}
.select_option span, .select_option img {border-radius: 100%;}
.select_option:hover, .select_option.selected {border: 2px solid var(--dark) !important;}
.woocommerce a.added_to_cart {display: none !important;}
.woocommerce button.button.added::after, .woocommerce input.button.added::after {display: none !important;}

.woocommerce-form-coupon-toggle {display: none;}

.woocommerce-cart-form {float: left; width: 72%;}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {width: 25%; float: right; padding: 25px; background-color: #f5f5f5;}
.woocommerce .cart-collaterals .cart_totals h2, .woocommerce-page .cart-collaterals .cart_totals h2 {margin: 0 0 15px 0; padding-bottom: 10px; font-size: 20px; font-family: 'Inter'; font-weight: 700; line-height: 1.2; border-bottom: 3px solid #ddd;}
.woocommerce .cart-collaterals .cart_totals .woocommerce-shipping-totals.shipping, .woocommerce-page .cart-collaterals .cart_totals .woocommerce-shipping-totals.shipping {display: none;}
.woocommerce-cart-form__cart-item.cart_item .product-name a {font-weight: 600; color: #202020;}
.cart_item td dl.variation {font-size: 13px; font-weight: 400; line-height: 1.4;}
.woocommerce table.cart td.actions .coupon {display: none; visibility: hidden;}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {border-radius: 70px;}

.woocommerce-checkout .product-item-thumbnail {width: 15%; padding-right: 0; margin-right: 3% !important;}
.woocommerce-checkout .product-item-thumbnail img {width: 100%; overflow: hidden;}
.woocommerce-checkout .product-name .product-quantity {position: relative;}

.single_variation_wrap {position: relative; margin-bottom: 15px; overflow: hidden;}

.woocommerce-page ul.products li.first, .woocommerce-page ul.products::after {clear: none;}

table.xoo-cp-pdetails, table.xoo-cp-pdetails tr {border-bottom: 1px solid #ddd!important;}
.xoo-cp-ptotal {border-top: 0;}

/* -----  member area ------ */
.woocommerce-account .col2-set, .woocommerce-account .woocommerce-page .col2-set {width: 100% !important;}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {border: 0; padding: 0;}
.woocommerce form.login, .woocommerce form.register {margin: 0 auto !important; float: none !important; max-width: 100% !important;}
.woocommerce form.login p, .woocommerce form.register p {margin-top: 10px !important;}
.woocommerce-ResetPassword {margin: 0 auto !important; float: none !important; max-width: 100% !important;}
.woocommerce-ResetPassword .woocommerce-form-row {width: 100% !important;}
.woocommerce-error li {float: none !important; width: 100% !important; padding: 10px 0 !important; text-align: center !important;}
.woocommerce-account .woocommerce-MyAccount-navigation {position: relative; width: 30%; background: #fff; padding: 0;}
.woocommerce-account .woocommerce-MyAccount-navigation ul {margin: 0; padding: 0; list-style: none;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {display: block; border-bottom: 1px solid #ddd; width: 100% !important; text-align: left !important;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {display: block; font-weight: 400; color: #222; padding: 10px 20px;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {color: var(--dark); font-weight: 700;}
.woocommerce-account .woocommerce-MyAccount-content {width: 65%; text-align: left;}
.woocommerce-account .woocommerce-MyAccount-content a { display: inline !important; line-height: 1.2 !important;}
.woocommerce .woocommerce-order-details h2 {font-size: 24px;}
.woocommerce .woocommerce-order-details table {background-color: #f5f5f5 !important; border-radius: 5px;}
.woocommerce .woocommerce-order-details table tr th {padding: 8px 15px !important;}
.woocommerce .woocommerce-order-details table tr td {padding: 8px 15px !important;}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {line-height: 1.5;}
.woocommerce .col2-set .col-1 h2, .woocommerce-page .col2-set .col-1 h2 {margin-top: 0; font-size: 24px;}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {line-height: 1.5;}
.woocommerce .col2-set .col-2 h2, .woocommerce-page .col2-set .col-2 h2 {font-size: 24px; margin: 0 0 20px 0;}

.woocommerce .woocommerce-customer-details {width: 100%; overflow: hidden; display: flex; flex-wrap: wrap; justify-content: space-between;}
.woocommerce .woocommerce-customer-details address {padding: 25px !important; border: 1px solid #cfcfcf !important; border-radius: 5px;}
.woocommerce .woocommerce-customer-details .col-1 {width: 48% !important;}
.woocommerce .woocommerce-customer-details .col-2 {width: 48% !important; margin-left: auto;}
.woocommerce-customer-details .col2-set {width: 100% !important; display: flex; flex-wrap: wrap;;}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {position: relative;}
.woocommerce .woocommerce-form-register .woocommerce-form-register__submit {background-color: var(--dark); width: 100%; padding: 10px 25px; color: #fff; display: block; border-radius: 0; margin-right: 0; line-height: 1.4; margin-top: 10px;}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {background-color: var(--dark); width: 100%; padding: 0; height: 44px; line-height: 44px; font-weight: 600; color: #fff; display:block; border-radius: 70px; margin-right: 0; margin-top: 10px;}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {background-color: #333;}
.logged-in.woocommerce-account .elementor-36 .elementor-element.elementor-element-10aa562 {display: none;}

.woocommerce .u-columns.col2-set .u-column1.col-1 {float: none; margin: 0 auto;}
.woocommerce .u-columns.col2-set .u-column1.col-1 h2 {display: none;}
.woocommerce .u-columns.col2-set .u-column2.col-2 {float: none; margin: 0 auto;}
.woocommerce .u-columns.col2-set .u-column2.col-2 h2 {display: none;}

.woocommerce ul.products li.product .ehi-star-rating,
.woocommerce-page ul.products li.product .ehi-star-rating {
    margin-top: 0px;
    margin-bottom: 0px;
    float: left;
    line-height: inherit;
    height: 1.4em;
    display: inline-block !important;
}
 
.woocommerce ul.products li.product .ehi-star-rating:before,
.woocommerce-page ul.products li.product .ehi-star-rating:before {
    color: inherit;
}

.woocommerce ul.products li.product.featured .ehi-star-rating:before,
.woocommerce-page ul.products li.product.featured .ehi-star-rating:before {
    color: rgba(255,255,255, .5);
}
 
.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating {
    position: relative;
}

.xcp-ptotal .woocommerce-Price-amount.amount bdi:after {
	display: none;
}

/* Chrome, Safari, Edge, Opera */
.woocommerce-page div.product div.summary .quantity input::-webkit-outer-spin-button,
.woocommerce-page div.product div.summary .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.woocommerce-page div.product div.summary .quantity input[type="number"] {
  -moz-appearance: textfield;
}

body.woocommerce-order-received #big-title {
	display: none;
	visibility: hidden;
	height: 0;
	padding: 0;
}
body.woocommerce-order-received #main-wrapper .container {
	max-width: 768px;
}
.woocommerce-bacs-bank-details {
	margin: 30px 0 !important;
	background-color: #cff0ff;
	padding: 25px;
}
.woocommerce-bacs-bank-details h2 {
	font-weight: 400;
	font-size: 16px;
	margin: 0 !important;
}
.woocommerce-bacs-bank-details h3 {
	font-weight: 500;
	font-size: 20px;
	margin: 5px 0 !important;
	color: var(--dark);
}
.woocommerce ul.order_details li:last-of-type {
	padding-top: 15px;
}
ul.wc-bacs-bank-details.order_details.bacs_details {
	padding: 0;
	border: 0 !important;
}
ul.wc-bacs-bank-details.order_details.bacs_details li.account_number {
	padding-top: 0 !important;
}
.woocommerce .woocommerce-order-details {
	margin-bottom: 0;
}
.woocommerce .woocommerce-order-details h2 {
	margin: 20px 0 0 0 !important;
	font-size: 18px !important;
}
.woocommerce .woocommerce-order-details table {
	font-size: 14px;
	background-color: #fff !important;
	border: 1px solid #cfcfcf !important;
}
.woocommerce .woocommerce-order-details table tr th {
	font-size: 14px !important;
	padding: 5px 0 !important;
	background-color: #fff !important;
}
.woocommerce .woocommerce-order-details table tr td {
	font-size: 14px !important;
	padding: 5px 0 !important;
}
.woocommerce .woocommerce-customer-details {
	font-size: 14px;
}
.woocommerce .woocommerce-customer-details h2 {
	margin: 20px 0 10px 0 !important;
	font-size: 18px !important;
}

.xoo-cp-qtybox {
	border-radius: 70px;
	border: 1px solid var(--light);
}
span.xcp-plus, span.xcp-minus {
	border: 0;
}

.minus {
	position: absolute;
    left: 0;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 30px;
    padding: 0 10px;
    line-height: 1;
    z-index: 2;
    top: 4px;
    color: var(--grey);
}
.plus {
	position: absolute;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    padding: 0 10px;
    line-height: 1;
    z-index: 2;
    top: 8px;
    left: 86px;
    color: var(--grey);
}

/* ------------ end of woocommerce style ----- */

div.wpcf7 {position: relative;}
div.wpcf7 label {position: relative; font-size: 14px; font-weight: 600; width: 100%; float: left;}
span.wpcf7-list-item {margin: 0; padding: 2px 5px;}
div.wpcf7 h3 {margin: 0; font-size: 13px;}
div.wpcf7 .wpcf7-form {position: relative; overflow: hidden;}
div.wpcf7 .wpcf7-form input {
	width: 100%;
	float: left;
	outline: 0;
	border: 0;
	font-size: 14px;
	height: 46px;
	line-height: 46px;
	padding: 0 20px;
	color: var(--dark);
	background-color: #fff;
	display: block;
	margin-bottom: 15px;
	margin-top: 5px;
}
div.wpcf7 .wpcf7-form input:hover,
div.wpcf7 .wpcf7-form input:focus {
	border: 0;
}
div.wpcf7 .wpcf7-form select,
div.wpcf7 .wpcf7-form textarea {
	width: 100%;
	outline: 0;
	border: 0;
	font-size: 14px;
	height: 46px;
	line-height: 46px;
	padding: 0 20px;
	margin: 5px 0 15px 0;
	color: var(--dark);
	background-color: #fff;
	display: block;
	height: 100px;
	margin-bottom: 15px;
	margin-top: 5px;
}
div.wpcf7 .wpcf7-form select {
	height: auto;
}
div.wpcf7 .wpcf7-form select:focus,
div.wpcf7 .wpcf7-form select:hover,
div.wpcf7 .wpcf7-form textarea:focus,
div.wpcf7 .wpcf7-form textarea:hover {
	border: 0;
}
div.wpcf7 .wpcf7-form input[type="submit"] {
	width: 100%;
	outline: 0;
	border: 0;
	line-height: 40px;
	font-weight: 600;
	padding: 0;
	height: 44px;
	color: #fff;
	display: block;
	width: 100%;
	text-align: center !important;
	font-size: 14px;
	background-color: var(--gold);
    font-size: 16px;
    margin: 5px 0 0 0;
}
div.wpcf7 .wpcf7-form input[type="submit"]:hover {
	background-color: var(--black);
	outline: 0;
}
span.wpcf7-form-control.wpcf7-checkbox {
	display: inline-block;
    overflow: hidden;
    font-size: 12px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin: 10px 10px 0 0;
}
div.wpcf7 .wpcf7-form input[type="checkbox"] {
	width: auto;
	float: left;
	margin: 5px 7px 0 0;
}
.wpcf7 form .wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 0.2em 1em !important;
    border: 0 !important;
    width: 100% !important;
    float: left !important;
    background-color: var(--dark)0001c !important;
}
div.wpcf7 img.ajax-loader {position: absolute;}
img.ajax-loader {width: auto;}
.wpcf7-spinner {position: absolute; top: 45%; left: 45%;}

.header #megamenu {
  position: relative;
  text-transform: uppercase;
  z-index: 9999;
  cursor: pointer;
  left: 20px;
  display: none;
}

#nav-toggle { cursor: pointer; padding: 0; }
#nav-toggle strong {font-size: 8px; line-height: 1; display: block; color: var(--dark); margin-top: 12px; font-weight: 400;}
#nav-toggle span {
  cursor: pointer;
  height: 2px;
  width: 24px;
  background:var(--dark);
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:before {
  cursor: pointer;
  height: 2px;
  width: 24px;
  background:var(--dark);
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:after {
  cursor: pointer;
  height: 2px;
  width: 24px;
  background:var(--dark);
  position: absolute;
  display: block;
  content: '';
}
#nav-toggle span:before {
  top: -5px; 
}
#nav-toggle span:after {
  bottom: -5px;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 500ms ease-in-out;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  background: var(--dark);
}
.menu-dropdown {
  position: relative;
  width: 100%;
  background-color: var(--dark);
  z-index: 999;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}
.menu-dropdown .cart-mobile {
	background-color: var(--dark);
	overflow: hidden;
	width: 100%;
	padding: 20px;
	border-radius: 4px;
}
.menu-dropdown .user-acc {
	position: relative;
	width: 100%;
}
.menu-dropdown .user-acc a {
	display: block;
	position: relative;
	z-index: 1;
	color: #fff;
	margin-left: 0;
	text-align: left;
	line-height: 1;
	display: flex;
	align-items: center;
}
.menu-dropdown .user-acc a span {
	position: relative;
	padding: 0;
}
.menu-dropdown .user-acc a span.my-acc {
	padding: 0 0 0 10px;
	color: #fff;
}
.menu-dropdown #woo-cart-button {
	position: relative;
	display: flex;
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255, .2);
	padding-bottom: 20px;
	margin-bottom: 20px;
	color: #fff;
}
.menu-dropdown #woo-cart-button span {
	color: #fff;
	margin-right: 5px;
}
.menu-dropdown #woo-cart-button a {
	display: inline-block;
	position: relative;
	z-index: 1;
	font-size: 14px;
	color: #fff;
}
.menu-dropdown #woo-cart-button a .woocommerce-Price-amount.amount {color: #fff;}
.menu-dropdown #woo-cart-button a .woocommerce-Price-amount.amount bdi:after {
	display: block;
}
.menu-dropdown #woo-cart-button .cart-contents-count {
	position: absolute;
    color: #fff;
    background-color: #e73f3f;
    z-index: 0;
    right: -17px;
    padding: 0;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    top: -12px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}
.menu-dropdown ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-dropdown ul li {
	border-bottom: 1px solid rgba(255,255,255, .2);
}
.menu-dropdown ul li a {
	color: #fff;
	padding: 12px 0;
	display: block;
}
.menu-dropdown ul li a i {
	color: rgba(255,255,255, .7);
}
.menu-dropdown ul li:last-child {
	border-bottom: 0;
}
.menu-dropdown ul li:last-child a {
	padding-bottom: 0;
}
.menu-dropdown ul li ul.sub-menu {
	margin-left: 20px;
}
.menu-dropdown ul li ul.sub-menu li {
	position: relative;
}
.menu-dropdown ul li ul.sub-menu li a {
	font-size: 14px;
	padding: 7px 0;
}

.chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}
.chat a {
    color: #fff;
	width: 46px;
	height: 46px;
    padding: 0;
	text-align: center;
	line-height: 46px;
    background: var(--gold);
    border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
    display: block;
}
.chat a span {
    vertical-align: middle;
    font-size: 24px;
    position: relative;
    padding: 0;
    top: 0;
}

#slickbox {
	position: absolute;
    right: 0;
    display: none;
    z-index: 999;
    width: 250px;
    top: 100px;
}
#slickbox .widget_product_search {
	display: flex;
    justify-content:space-between;
    border: 2px solid var(--dark);
    background-color: #fff;
}
#slickbox form.woocommerce-product-search {
	width: 100%;
	display: flex;
}
#slickbox form.woocommerce-product-search input[type="search"] {
	background-color: #fff;
	border: 0;
	outline: none;
	height: 30px;
	text-indent: 7px;
	font-size: 14px;
}
#slickbox form.woocommerce-product-search button[type="submit"] {
	background-color: var(--dark);
	border: 0;
	outline: none;
	height: 32px;
	color: #fff;
	font-size: 14px;
	margin-left: auto;
}

#slickbox-cart {
	position: fixed;
    right: 0;
    display: none;
    z-index: 999;
    width: 250px;
    top: 0;
	height: 100%;
	background-color: #fff;
	box-shadow: 0 1px 5px rgba(0,0,0, .2);
}

body.cart .sidebar,
body.wishlist .sidebar,
body.checkout .sidebar,
body.my-account .sidebar {
	display: none;
	visibility: hidden;
}
body.cart #main-wrapper .container .content,
body.wishlist #main-wrapper .container .content,
body.checkout #main-wrapper .container .content,
body.my-account #main-wrapper .container .content {
	width: 100%;
	float: left;
}
body.my-account .woocommerce {
	max-width: 450px;
	margin: 0 auto;
	padding: 0 40px;
}
body.logged-in.my-account .woocommerce {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}
.woocommerce-checkout .variation {
	display: none;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (max-width:1600px) {
	.navbar .nav,
	#main-wrapper .container,
	#big-title,
	#primary,
	#related,
	.copyright .container,
	#foot .container {padding-left: 20px !important; padding-right: 20px !important;}
	.nav ul li a {font-size: 16px;}
}
@media only screen and (max-width:1600px) {
	.store-info ul li {padding: 0 10px;}
	.store-info ul li a span {display: none;}
}
@media only screen and (max-width:1024px) {
	html {padding-top: 0 !important;}
	.topbar .container {font-size: 0.85rem;}
	.header {display: block; z-index: 99; top: 0; height: 60px;}
	.header .container {position: relative; padding: 0; height: 60px;}
	.header .container .inner {height: 60px; padding-left: 0; padding-right: 0;}
	.header .container .logo {top: 24px; left: 60px; transform: translateX(0);}
	.header .container .logo a img {width: 130px;}
	.right-area {right: 0; margin-left: auto; margin-right: 20px;}
	.right-area .header-search {margin-right: 15px; display: block;}
	.right-area .header-search a span {position: relative;}
	.right-area .header-search a.slick-slidetoggle {color: var(--dark) !important;}
	.right-area #woo-cart-button a .woocommerce-Price-amount.amount {color: var(--dark);}
	.right-area .user-acc {position: relative; top: 2px;}
	.right-area .user-acc a {margin-right: 0; margin-left: 6px;}
	.right-area .user-acc a span {color: var(--dark); background-color: transparent; padding: 0;}
	.right-area #woo-cart-button span {font-size: 16px; color: #f00;}
	.right-area #woo-cart-button span.material-symbols-outlined {font-size: 20px; position: relative; top: 3px; color: var(--dark);}
	.right-area #slickbox {top: 60px; right: 0; width: 100%; left: 0; z-index: 99; background-color: #fff; padding: 10px; position: absolute; overflow: hidden;}
	#search {display: none;}
	.nav {display: none;}
	.header.scrolled {transition: none;}
	.header.scrolled .right-area #slickbox {position: absolute; top: 80px;}
	.header .navigation {height: 0;}
	.header .navigation .inner {height: 0;}
	
	.header #megamenu {display: block !important; top: 22px; z-index: 99; position: absolute;}
	.header.scrolled #megamenu {display: block !important; top: 22px; z-index: 99;}
  	
  	.menu-dropdown {display: block; top: 0; padding-bottom: 20px;}
  	.header.scrolled .menu-dropdown {display: block; top: 60px;}
  	.menu-dropdown .nav ul li ul.sub-menu {left: 0; display: block !important;}
  	.menu-dropdown .nav ul li ul.sub-menu li a {font-size: 16px;}

  	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {width: 48% !important;}
  	.woocommerce ul.products li.product a.button {padding: 12px 20px; font-size: 14px; bottom: 25px;}

  	.breadcrumb {overflow-y: hidden;overflow-x: scroll;white-space: nowrap; border-bottom: 0;}
  	.woocommerce .woocommerce-breadcrumb {border-bottom: 0; left: 0; line-height: 1.4; margin-bottom: 15px !important;}

  	.woocommerce div.product .product_title {font-size: 22px;}
  	.woocommerce-page div.product div.summary {font-size: 15px; line-height: 1.4;}
}
@media only screen and (max-width:768px) {
	html {padding-top: 0 !important;}
	body {font-size: 15px; line-height: 1.5;}

	h1 {font-size: 36px;}
	h2 {font-size: 30px;}
	h3 {font-size: 24px;}
	h4 {font-size: 18px;}
	h5 {font-size: 14px;}
	h6 {font-size: 12px;}

	.featured-journal ul li {width: 100%; margin-bottom: 30px;}
	.featured-journal ul li .thumb {height: 210px;}
	.featured-journal ul li .thumb a img {height: 210px;}

	#big-title {padding: 20px 20px 0 20px;}
	#big-title .container {padding: 0 0 20px 0;}
	#big-title .container h2 {font-size: 24px;}
	#big-title .container h4 {font-size: 20px;}
	#big-title .container h1 {font-size: 27px; line-height: 1.2;}

	#main-wrapper {margin-top: 0;}
	#main-wrapper .container {padding: 50px 0;}
	#main-wrapper .container.grid {display: block;}
	#main-wrapper .container.grid article {width: 100%;margin-bottom: 30px;}
	#main-wrapper .container.grid article .post-thumb {height: 210px;}
	#main-wrapper .container.grid article .post-thumb a img {height: 210px;}
	#main-wrapper .container.grid article .post-wrap p {font-size: 14px;}
	#main-wrapper .container .content {width: 100%; float: none;}
	#main-wrapper .container .content article.full img {width: 100%;}
	#main-wrapper .container .content article.full .body-content {width: 100%;}
	#main-wrapper .container .content article.full .body-content h1 {font-size: 24px;}
	#main-wrapper .container .content article.full .body-content h2 {font-size: 21px;}
	#main-wrapper .container .content article.full .body-content p {font-size: 15px;}
	#main-wrapper .container .content article.full .body-content ul li {font-size: 15px;}

	#main-wrapper .container .content.buku article .thumb {width: 100%;}
	#main-wrapper .container .content article.full .body-content.buku {float: left; width: 100%; margin-top: 20px;}

	.woocommerce-breadcrumb {margin-bottom: 0 !important;}
	ul.product_list_widget li {width: 100%; margin-bottom: 20px;}
	ul.product_list_widget li a {font-size: 16px;}
	.woocommerce-Price-amount.amount {font-size: 14px;}
	.woocommerce .products ul, .woocommerce ul.products {width: 100%;float: left;}
	.woocommerce ul.products li.product .woocommerce-loop-product__title {display: block; width: 100%; font-size: 16px !important;}
	.woocommerce ul.products li.product a.button {position: relative; bottom: 0; margin-top: 5px;}

	.yith-wcan-filter .filter-content ul li {margin-right: 10px !important; margin-bottom: 10px !important;}

	.woocommerce .col2-set, .woocommerce-page .col2-set {width: 100%;}
	#order_review {
		float: left;
		width: 100%;
	}
	h3#order_review_heading {
		float: left;
		width: 100%;
	}

	.product-item-thumbnail {width: 80%; margin-bottom: 5px;}
	.cart_item td dl.variation {margin-top: 10px; margin-left: 0;}

	.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
		width: 100%;
	}
	.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
		width: 100%;
	}
	.woocommerce ul.products li.product-category {padding: 10px !important; width: 50% !important;}
	.woocommerce div.product div.images .flex-viewport {width: 100%; float: left;}
	.woocommerce div.product div.images .flex-control-thumbs {width: 100%; float: left; margin-top: 3px;}
	.woocommerce div.product div.images .flex-control-thumbs li {width: 24%;}
	.woocommerce div.product span.onsale {left: 10px; top: 10px; position: absolute;}
	.woocommerce-page div.product .woocommerce-tabs {width: 100%; margin-top: 0;}
	.up-sells {width: 100%; margin-top: 0;}

	#primary .site-main .woocommerce-products-header {padding: 0 0 16px 0;}
	#primary .site-main .woocommerce-products-header h1 {line-height: 1.2; font-size: 27px;}
	#primary .site-main .woocommerce {width: 100%; float: left;}
	#primary .site-main .woocommerce ul.products li.product {margin-bottom: 20px;}

	.woocommerce-cart-form {width: 100%;}
	.woocommerce table.shop_table td.product-quantity {overflow: hidden;}
	.woocommerce table.shop_table td.product-quantity .quantity {overflow: hidden; float: right; margin-right: 0;}

	.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {width: 100%; float: left;}
	.woocommerce table.shop_table tbody:first-child tr:first-child th {background-color: transparent !important;}

	.elementor-36 .elementor-element.elementor-element-c468a51 > .elementor-element-populated {padding: 50px 20px !important;}
	.logged-in.woocommerce-account .elementor-36 .elementor-element.elementor-element-c468a51 {width: 100% !important;}
	.logged-in.woocommerce-account .elementor-36 .elementor-element.elementor-element-c468a51 > .elementor-element-populated {padding: 50px 20px !important;}

	.woocommerce ul.order_details {padding: 10px 20px;}
	.woocommerce ul.order_details li {width: 100%; border-right: 0; border-bottom: 1px solid #ddd; padding: 10px 0;}
	.woocommerce .woocommerce-order-details table tr th {padding: 8px 0 !important;}
	.woocommerce .woocommerce-order-details table tr td {padding: 8px 0 !important;}
	.woocommerce .woocommerce-customer-details .col-1 {width: 100% !important;}
	.woocommerce .woocommerce-customer-details .col-2 {width: 100% !important; margin-top: 20px;}
	
	.sidebar {width: 100%; margin-top: 20px;}

	#related {padding: 50px 20px;}
	#related ul li {width: 100%; margin: 0 0 20px 0;}

	.woocommerce-account .woocommerce-MyAccount-navigation {width: 100%;}
	.woocommerce-account .woocommerce-MyAccount-content {width: 100%; margin-top: 30px;}
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
		width: 100% !important; margin-bottom: 25px;
	}
	.woocommerce ul.products li.product .price {font-size: 16px;}
	.woocommerce .related.products ul.products {display: block;}
	.woocommerce .related.products ul.products li.product {width: 100%;}

	.woocommerce div.product form.cart button[type="submit"] {width: 140px;}
	.woocommerce div.product form.cart .button {float: left; width: 100%; margin-top: 15px;}

	.woocommerce-order-details {
		width: 100%;
		float: left;
	}
	.woocommerce .woocommerce-customer-details {
		width: 100%;
		float: left;
	}
	.woocommerce .woocommerce-customer-details h2 {
		margin: 0 !important;
	}
	ul.wc-bacs-bank-details.order_details.bacs_details li {
		border: 0 !important;
	}

	#foot .container {padding: 40px 20px !important;}
	#foot .container .main-footer > div {width: 100%; margin: 15px 0;}
	#foot .container .main-footer h3 {font-size: 16px;}
	#foot .container > div:nth-child(4) {clear: both;}
	#foot .container ul li {text-align: left;}
	.copyright {line-height: 1.3; color: rgba(0,0,0,.7); padding-left: 15px; padding-right: 15px;}
	.copyright .container {font-size: 12px;}
	.copyright > div {width: 100%; border-right: 0; padding-right: 0; padding-bottom: 15px;}
	.copyright .container .col {display: block; width: 100%; text-align: center;}
	.copyright .container .col:last-child {text-align: center; margin-top: 10px;}
	.copyright .container .col ul.socmed li {float: none; margin: 0 10px;}
}
@media only screen and (max-width:640px) {
	.woocommerce .woocommerce-result-count {width: 120px; line-height: 1; font-size: 13px;}
	.woocommerce form.woocommerce-ordering {width: 150px; position: relative;}
	.woocommerce form.woocommerce-ordering select.orderby {width: 150px; font-size: 12px;}
	table.xoo-cp-pdetails {text-align: center;}
	table.xoo-cp-pdetails tbody {display: inline;}
	.xoo-cp-pdetails td.xoo-cp-remove {width: auto; display: block; position: absolute;}
	.xoo-cp-pdetails td.xoo-cp-ptitle {width: 100%; display: block;}
	table.xoo-cp-pdetails td {width: 100%; display: block; border: 0 !important; margin: 0;}
	table.xoo-cp-pdetails td a img {width: 100px;}
	td.xoo-cp-pqty {width: 100%; display: block; text-align: center;}
	.xoo-cp-ptotal {width: 100%; display: block; float: left; margin: 0; text-align: center;}
	.xoo-cp-atcn {line-height: 1;}
	a.xcp-btn {width: 45%; font-size: 10px;}

	.woocommerce table.shop_table td {padding: 5px 0 !important; font-size: 14px;}
}
@media only screen and (max-width:480px) {
	.whatsapp {bottom: 20px !important;}
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#00a1e9;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#00a1e9;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#00a1e9;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border: 0;
	max-width:100%;
	padding:0;
	font-size: 13px;
	font-style: italic;
}
.wp-block-image figcaption {
	position: relative;
	top: -10px;
	line-height: 1.3;
}
.wp-caption.alignnone {
	margin:0 0 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:100%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
p.wp-caption-text {
	font-size: 13px !important;
	line-height: 1.2 !important;
	font-style: italic;
	position: relative;
	padding: 10px 20px !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:var(--dark) !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: #eee;
}
::-webkit-scrollbar-thumb {
  background-color: #aaa;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark);
}
