/*//////////////////////////////////////////////////////////////////
[ Sidebar ]*/
.wrap-sidebar {
	position: fixed;
	z-index: 1100;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.sidebar {
	position: fixed;
	z-index: 1100;
	width: 390px;
	max-width: calc(100% - 30px);
	height: 100vh;
	top: 0;
	right: -400px;
	background-color: #fff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.34;
	transition: all 0.4s;
	box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.show-sidebar {
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.6);
}

.show-sidebar .sidebar {
	right: 0;
}

@media ( max-width : 991px) {
	.wrap-sidebar {
		display: none;
	}
}

/*---------------------------------------------*/
.sidebar-content {
	flex-grow: 1;
	overflow: auto;
	align-content: space-between;
}

/*---------------------------------------------*/
.wrap-item-gallery {
	width: calc(( 100% - 20px)/3);
}

.item-gallery {
	display: block;
	width: 100%;
	padding-top: 100%;
	position: relative;
}

.item-gallery::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(103, 117, 214, 0.8);
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.34;
	transition: all 0.4s;
}

.item-gallery:hover:after {
	opacity: 1;
}

/*//////////////////////////////////////////////////////////////////
[ Header cart ]*/
.wrap-header-cart {
	position: fixed;
	z-index: 1100;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.0);
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
}

.header-cart {
	position: fixed;
	z-index: 1100;
	width: 400px;
	max-width: calc(100% - 30px);
	height: 100vh;
	top: 0;
	right: -400px;
	background-color: #fff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.34;
	transition: all 0.4s;
	box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-o-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
	-ms-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
}

.header-cart::after {
	content: "";
	display: block;
	width: 100%;
	height: 9%;
	min-height: 30px;
}

.show-header-cart {
	visibility: visible;
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.6);
}

body.cart-drawer-open .btn-back-to-top,
body.wishlist-drawer-open .btn-back-to-top {
	display: none !important;
	visibility: hidden;
	pointer-events: none;
}

.show-header-cart .header-cart {
	right: 0;
}

/*---------------------------------------------*/
.header-cart-title {
	width: 260px;
	max-width: 100%;
	height: 16.5%;
	min-height: 85px;
}

/* Legacy class; mini cart / wishlist drawer body */
.header-cart-content,
.js-panel-cart .mini-drawer-body,
.js-panel-wishlist .mini-drawer-body {
	flex-grow: 1;
	overflow: hidden;
	align-content: space-between;
	min-height: 0;
}

.header-cart-wrapitem {
	flex-grow: 1;
}

/*---------------------------------------------*/
.header-cart-item-img {
	width: 60px;
	position: relative;
	margin-right: 20px;
	cursor: pointer;
}

.header-cart-item-img img {
	width: 100%;
}

.header-cart-item-img::after {
	content: '\e870';
	font-family: Linearicons-Free;
	font-size: 16px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-moz-transition: all 0.3s;
	opacity: 0;
}

.header-cart-item-img:hover:after {
	opacity: 1;
}

/*---------------------------------------------*/
.header-cart-item-txt {
	width: calc(100% - 80px);
}

.header-cart-item-name {
	display: block;
	font-family: Poppins-Regular;
	font-size: 14px;
	color: #555;
	line-height: 1.3;
}

.header-cart-item-info {
	display: block;
	font-family: Poppins-Regular;
	font-size: 14px;
	color: #888;
	line-height: 1.5;
}

.header-cart-total {
	font-family: var(--main-font, Poppins, sans-serif);
	font-size: 14px;
	font-weight: 600;
	color: #222;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.header-cart-total .ecom-price {
	font-weight: 600;
}

/*---------------------------------------------*/
@media ( max-width : 575px) {
	.header-cart:not(.mini-drawer-panel) {
		padding: 30px;
	}
	.header-cart:not(.mini-drawer-panel) .header-cart-title {
		padding-bottom: 35px;
	}
}

/*//////////////////////////////////////////////////////////////////
[ Restyle Select2 ]*/
.rs1-select2 .select2-container {
	display: block;
	max-width: 100% !important;
	width: auto !important;
}

.rs1-select2 .select2-container .select2-selection--single {
	height: 45px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	border: none;
	outline: none;
	background-color: transparent;
	border-radius: 0px;
	position: relative;
}

/*------------------------------------------------------------------
[ in select ]*/
.rs1-select2 .select2-container .select2-selection--single .select2-selection__rendered
	{
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #555;
	line-height: 1.2;
	padding-left: 20px;
	background-color: transparent;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow
	{
	width: 38px;
	height: 20px;
	top: calc(50% - 10px);
	right: 5px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #e6e6e6;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b
	{
	display: none;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after
	{
	content: "\f0dc";
	font-family: FontAwesome;
	font-size: 13px;
	color: #808080;
}

.rs1-select2 .select2-container--default .select2-selection--single .select2-selection__arrow:hover:after
	{
	color: var(--primary-ink, var(--primary-color, #717fe0));
}

/*------------------------------------------------------------------
[ Dropdown option ]*/
.rs1-select2 .select2-container--open .select2-dropdown {
	z-index: 1251;
	width: 100%;
	border: 1px solid color-mix(in srgb, var(--primary-color, #717fe0) 42%, #e8e8e8);
	border-radius: 0px;
	overflow: hidden;
	background-color: white;
	left: 0px;
	box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.2);
}

.rs1-select2 .select2-dropdown--above {
	top: -2px;
}

.rs1-select2 .select2-dropdown--below {
	top: 2px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected]
	{
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}

.rs1-select2 .select2-container .select2-results__option[aria-selected="true"]
	{
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #ffffff);
}

.rs1-select2 .select2-container .select2-results__option--highlighted[aria-selected]
	{
	background: var(--primary-color, #717fe0);
	color: var(--on-primary, #ffffff);
}

.rs1-select2 .select2-results__options {
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #555;
	line-height: 1.2;
}

.rs1-select2 .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: none;
	font-family: Poppins-Regular;
	font-size: 13px;
	color: #555;
	line-height: 1.2;
}

/*------------------------------------------------------------------
[ rs2 ]*/
.rs2-select2 .select2-container .select2-selection--single {
	height: 40px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered
	{
	padding-left: 15px;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow
	{
	width: 35px;
	right: 0px;
	border-left: none;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow::after
	{
	content: "\f0d7";
}

