:root{

	/* Color pallet */

	/* main */
	--site-primary: #0444E8;
	--site-secondary: #021A53;
	--site-background: #fff;

	/* text */
	--text-primary: #021A53;
	--text-secondary: #0444E8;
	--text-price: #0444E8;
	--text-white: #fff;
	--underline-color: #11e0b5;

	/* rating */
	--rating-faded: #B4BBCC;

	/* buttons */
	--btn-color-dark: #021A53;
	--btn-color-light: #0444E8;
	--btn-text: #fff;
	--btn-white: #fff;
	--btn-text-dark: #021a53;

	/* gradients */
	--main-gradient:linear-gradient(133.14deg, #13F6D1 -6.82%, #33EAC9 8.36%, #11E0B5 21.55%, #0796B7 69.81%, #0778B5 87.47%, #032559 106.33%);
	--promo-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0) 49.69%, #FFFFFF 100%);

	--item-cube-divider: #DAE8F0;
	--light-blue: #F4F8FF;
	--main-blue:#0077CC;
	--main-red: #F01C00;
	--gray: #757575;
	--light-gray: #f8f8f8;
	--light-blue-50-opacity: #7985A1;
	--shadow: 0px 4px 4px 0px #00000014;
	--overlay-color : rgba(0,0,0,.6);
	--site-nav-menu-h: 50vh;
	--site-nav-menu-w: 18vw;
	--site-nav-menu-cat-w: 83vw;
	--remaining-width: calc(100vw - var(--site-nav-menu-w));
	--header-background: #fff;
	--tv-banner-position-px: -40px;
	--filter-border-color: #B4C7F9;

	/* box-shadow */
	--promo-shadow: 0 24.15px 72px -8px #16345029;
	--item-cube-shadow: 0 0 12px 0 #00000012;
	--profile-shadow: 0px 0px 4.5px 0px #00000012;

	/* tv banner */
	--banner-height: 500px;

	/* Fonts */
	--main-font: 'Assistant';
	--font-awesome: 'FontAwesome';

	/* Border */
	--border-thick: 2px solid var(--site-secondary);
	--border-thin-bright: 1px solid var(--site-primary);

	/* Transition */
	--transition: .25s cubic-bezier(0.68, 0.03, 0.31, 1);
	--transition-slow: .35s cubic-bezier(0.48, 0.13, 0.58, 0.91);

	/* Media queries */
	--media-s: 899px;
	--media-m: 900px;
	--media-l: 1150px;
	--media-xl: 1151px;

	font-size: 14px;
}

html {
	width: 100%;
}

body, body * {
	direction: rtl;
	font-family: var(--main-font), sans-serif;
	box-sizing: border-box;
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	letter-spacing: normal;
	line-height: 1.44;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0;
	color: var(--text-primary);
	overflow-x: hidden;
	font-size: 14px;
	background: var(--site-background);
}

img {
	height: 100%;
}

a {
	text-decoration: none;
}

h1, h2, h3 {
	font-weight: bold;
}

.bold {
	font-weight: bold;
}

.chevron_arrow:before {
	font-family: var(--font-awesome);
	content: "\f078";
	font-weight: bold;
	position: absolute;
	transition: transform var(--transition);
}

.chevron_arrow.down:before {
	transform: rotate(0deg);
}

.chevron_arrow.left:before {
	transform: rotate(90deg);
}

.chevron_arrow.right:before {
	transform: rotate(270deg);
}

.chevron_arrow.up:before {
	transform: rotate(180deg);
}

.no_margin {
	margin: 0;
}

.hidden {
	display: none;
}

.align_left {
	display: block;
	margin-right: auto;
	margin-left: 0;
}

.close_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 25px;
	width: 25px;
	background-color: var(--btn-color-dark);
	border-radius: 50%;
	color: var(--btn-text);
	font-size: 1.2rem;
	cursor: pointer;
}

.close_btn:before {
	font-family: var(--font-awesome);
	content: '\f00d';
	font-weight: bold;
}

.butt {
	text-align: center;
	color: var(--btn-text);
	border-radius: 7px;
	background: var(--btn-color-dark);
	font-size: 1.2142rem;
	height: 44px;
	line-height: 44px;
	cursor: pointer;
	border: none;
}

.butt_light {
	text-align: center;
	color: var(--btn-text);
	border-radius: 7px;
	background: var(--btn-color-light);
	font-size: 1.2142rem;
	height: 44px;
	line-height: 44px;
	cursor: pointer;
	border: none;
}

a.favorite:before,
span.favorite:before {
	font-family: fontawesome;
	content: '\f004';
	font-weight: 800;
}

/*custom checkbox*/
.checkbox-wrapper-4 * {
	box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	padding: 6px 8px;
	border-radius: 6px;
	overflow: hidden;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
	margin-right: 6px;
}

.checkbox-wrapper-4 .cbx:hover {
	background: rgba(0,119,255,0.06);
}

.checkbox-wrapper-4 .cbx span {
	float: left;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
	position: relative;
	min-width: 18px;
	width: 18px;
	height: 18px;
	border-radius: 4px;
	transform: scale(1);
	border: 1px solid #cccfdb;
	transition: all 0.2s ease;
	box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
	position: absolute;
	top: 3px;
	left: 2px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
	padding-left: 8px;
	line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
	border-color: #07f;
}

.checkbox-wrapper-4 .inp-cbx {
	position: absolute;
	visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
	background: #07f;
	border-color: #07f;
	animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
	stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: none;
	user-select: none;
}

.no_scroll {
	overflow: hidden;
}

#alert_modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 9px;
	width: 90%;
	background: var(--header_icons);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 15px;
	transition: var(--transition);
	height: 30%;
	box-shadow: 0px 0px 3px 3px #00000014;
	z-index: 20;
}


#alert_modal span {
	font-weight: bold;
	font-size: 1.57142rem;
}

#alert_modal .butt {
	width: 60vw;
}


@media screen and (max-width: 640px) {
	.checkbox-wrapper-4 .cbx {
		width: 100%;
	}
}

@-moz-keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}

@-webkit-keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}

@-o-keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}

@keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}




/*b {*/
/*	font-weight: bold;*/
/*}*/

/*div#body {*/
/*	position: relative;*/
/*}*/

/*.content_wrapper {*/
/*	display: block;*/
/*	width: 1500px;*/
/*	max-width: 90%;*/
/*	margin: auto;*/
/*	padding: 25px 0 15px;*/
/*	position: relative;*/
/*	font-family: 'Simpler';*/
/*}*/

/*.title {*/
/*	font-size: 32px;*/
/*	font-weight: bold;*/
/*	margin-bottom: 12px;*/
/*}*/

/*#search_mobile .title {*/
/*	font-size: 22px;*/
/*}*/

/*.title span {*/
/*	margin-right: 10px;*/
/*	font-size: 18px;*/
/*}*/

/*.text_38 {*/
/*	font-size: 38px;*/
/*}*/

/*.text_14 {*/
/*	font-size: 14px;*/
/*}*/

/*.text_26 {*/
/*	font-size: 26px;*/
/*}*/

/*.text_25 {*/
/*	font-size: 25px;*/
/*}*/

/*.text_22 {*/
/*	font-size: 22px;*/
/*}*/

/*.text_18 {*/
/*	font-size: 18px;*/
/*}*/

/*.text_grey {*/
/*	color: #6f7584;*/
/*}*/

/*.desc_nav_butt.active {*/
/*	color: var(--footer-primary);*/
/*	font-weight: bold;*/
/*	border-color: var(--site_primary);*/
/*}*/

/*.desc_nav_butt.active span{*/
/*	font-weight: bold;*/
/*}*/

/*.margin_top_60 {*/
/*	margin-top: 60px;*/
/*}*/

/*.margin_top_10 {*/
/*	margin-top: 10px;*/
/*}*/

/*.margin_top_20 {*/
/*	margin-top: 20px;*/
/*}*/

/*.margin_top_40 {*/
/*	margin-top: 40px;*/
/*}*/

/*.top_category .title {*/
/*	background: var(--category-primary);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*	color: var(--category-primary);*/
/*}*/

/*.strikediag {*/
/*	position: relative;*/
/*	display: inline-block;*/
/*}*/

/*.strikediag::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	left: 0;*/
/*	top: 50%;*/
/*	width: 100%;*/
/*	height: 1px;*/
/*	background-color: black;*/
/*	transform: rotate(-45deg);*/
/*	transform-origin: left center;*/
/*}*/

/*.desc_nav_butt {*/
/*	width: 150px;*/
/*	text-align: center;*/
/*	border-style: solid;*/
/*	border-color: transparent;*/
/*	border-width: 0 0 2px 0;*/
/*	display: inline-block;*/
/*	vertical-align: middle;*/
/*	height: 40px;*/
/*}*/

/*.desc_nav_butt.delivery{*/
/*	width: 230px;*/
/*}*/

/*.desc_nav_butt span {*/
/*	width: 100%;*/
/*	display: inline-block;*/
/*	vertical-align: middle;*/
/*	height: 17px;*/
/*    line-height: 17px;*/
/*    margin: 12px 0;*/
/*	!*border-style: solid;*!*/
/*	!*border-width: 0px 0px 0px 1px;*!*/
/*	!*border-color: #6f7584;*!*/
/*	cursor: pointer;*/
/*}*/

/*.desc_nav_butt:last-child span {*/
/*	border-color: transparent;*/
/*}*/

/*.desc_text {*/
/*	background-color: #fff;*/
/*	padding: 30px;*/
/*	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), inset 0 1px 0 0 #ccccd8;*/
/*}*/

/*.desc_text_inner {*/
/*	max-width: 800px;*/
/*	font-size: 17px;*/
/*}*/

/*.text {*/
/*	max-width: 800px;*/
/*}*/

/*.mobile-footer {*/
/*	display: none;*/
/*	position: fixed;*/
/*	bottom: 0;*/
/*	left: 0;*/
/*	width: 100%;*/
/*	background-color: #fff;*/
/*	color: #757575;*/
/*	z-index: 20;*/
/*	box-shadow: 0px -2px 10px 0px #0000001A;*/
/*	transition: bottom .1s ease-in-out;*/
/*}*/

/*.mobile-footer .mobile-footer-container {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*	color: #000;*/
/*}*/

/*.mobile-footer .mobile-footer-container > * {*/
/*	cursor: pointer;*/
/*}*/

/*.mobile-footer .mobile-footer-container .mobile-link {*/
/*	display: flex;*/
/*	flex-direction: column-reverse;*/
/*	align-items: center;*/
/*	padding: 10px 0;*/
/*	color: inherit;*/
/*	font-weight: bold;*/
/*	justify-content: space-between;*/
/*}*/

/*.mobile-footer .mobile-footer-container .mobile-link .img-container {*/
/*	position: relative;*/
/*}*/

/*.mobile-footer .mobile-footer-container .mobile-link .img-container img {*/
/*	max-height: 30px;*/
/*}*/

/*.mobile-footer .mobile-footer-container .mobile-link .img-container .cart_num{*/
/*	position: absolute;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	width: 22px;*/
/*	height: 22px;*/
/*	border-radius: 50%;*/
/*	border-width: 1px;*/
/*	border-color: var(--cart-background-color);*/
/*	background-color: var(--cart-background-color);*/
/*	color: var(--cart-color);*/
/*	font-weight: bold;*/
/*	right: -16px;*/
/*	top: -6px;*/
/*	line-height: 18px;*/
/*	text-align: center;*/
/*	font-size: 13px;*/
/*}*/

/*.mobile-footer .mobile-footer-container .mobile-link span {*/
/*	font-weight: bold;*/
/*}*/

/*.mobile-footer .mobile-footer-container .mobile-link.active  .img-container svg path {*/
/*	fill: var(--site-borders-primary);*/
/*}*/

/*!*.mobile-footer .mobile-footer-container .mobile-link.active {*!*/
/*!*	color: var(--site-borders-primary);*!*/
/*!*}*!*/

/*#body.home_page .loby_section.top_sub_categories {*/
/*	display: flex;*/
/*	flex-wrap: wrap;*/
/*	justify-content: space-around;*/
/*	gap: 20px;*/
/*	row-gap: 30px;*/
/*}*/

/*#body.home_page .top_category .butt {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	width: 236px;*/
/*	height: 50px;*/
/*	margin: 27px auto 0;*/
/*	border-radius: 7px;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	cursor: pointer;*/
/*	height: 163px;*/
/*	width: 150px;*/
/*	border: 2px solid #F2F6F9;*/
/*	background: #fff;*/
/*	border-radius: 10px;*/
/*	font-size: 19px;*/
/*	flex: 1 1 auto;*/
/*	transition: background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box .sub_category_name {*/
/*	overflow: hidden;*/
/*	color: #000;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box .icon_wrapper {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	height: 110px;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box:hover .sub_category_name,*/
/*.personal-space-body .top_sub_categories .sub_category_box:hover .sub_category_name {*/
/*	color: var(--text-primary) !important;*/
/*	font-weight: 700;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box:visited .sub_category_name {*/
/*	color: #000;*/
/*	font-weight: 700;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box:hover:visited {*/
/*	color: var(--light-blue);*/
/*	font-weight: 700;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box:hover {*/
/*	background-color: #f6fff1;*/
/*	border: 2px solid #f6fff1;*/
/*}*/

/*#body.home_page .loby_section.top_sub_categories .sub_category_box:hover .sub_category_name {*/
/*	color: var(--main-blue);*/
/*	font-weight: 700;*/
/*}*/

/*.container .container_item_wrapper {*/
/*    display: inline-block;*/
/*	vertical-align: middle;*/
/*	width: 25%;*/
/*	text-align: center;*/
/*	padding-bottom: 20px;*/
/*}*/

/*.important-message.low-prices {*/
/*	display: block;*/
/*	position: relative;*/
/*	width: 100%;*/
/*	background-color: #F1C934;*/
/*	color: var(--footer-primary);*/
/*	text-align: center;*/
/*	padding: 8px 0 !important;*/
/*	z-index: 20;*/
/*}*/

/*.customer-service {*/
/*	display: none;*/
/*}*/

/*.important-message.low-prices span{*/
/*	font-weight: bold;*/
/*	font-size: 16px;*/
/*}*/

/*div.misc-header > div.mobile {*/
/*	display: none;*/
/*}*/

/*.misc-header .right-side > *{*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	gap: 10px;*/
/*	color: inherit;*/
/*}*/

/*!* .promotions_section .container.item_container.cubes_module {*/
/*	height: auto;*/
/*} *!*/

/*.loby_gallery .container.item_container.cubes_module .container_items {*/
/*	width: 100%;*/
/*}*/

/*.container_items > a {*/
/*    font-size: 0;*/
/*}*/

/*.container:not(.product_side) .container_item {*/
/*	!*padding: 10px 20px 0px;*!*/
/*    background-color: #fff;*/
/*	min-height: 485px;*/
/*    width: 375px;*/
/*    margin: auto;*/
/*    !* margin-bottom: 20px; *!*/
/*    box-sizing: border-box;*/
/*    max-width: 95%;*/
/*	box-shadow: 0 0 12px 0 #00000012;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*	border-radius: 8px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.container:not(.product_side) .container_item.item.hovering span.favorite {*/
/*	transform: translateX(70%);*/
/*}*/

/*.container_item.item > *:not(.item_img, .favorite, .misc-container) {*/
/*	padding-left: 20px;*/
/*	padding-right: 20px;*/
/*}*/

/*.container_item.gallery_item.item .item_warrenty {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	font-size: 11px;*/
/*}*/

/*.red-box {*/
/*	line-height: 1.5;*/
/*	width: max-content;*/
/*	background: rgba(240, 28, 0, 0.2);*/
/*	padding: 0 8px;*/
/*	border-radius: 8px;*/
/*	color: #F01C00 !important;*/
/*	font-weight: bold;*/
/*	font-size: 18px;*/
/*}*/

/*.gallery_item.item .best-seller,*/
/*.inline .container_items .best-seller {*/
/*	display: inline-block;*/
/*	font-size: 16px;*/
/*	line-height: 1.5;*/
/*	width: max-content;*/
/*	background: rgba(240, 28, 0, 0.2);*/
/*	padding: 0 8px;*/
/*	border-radius: 8px;*/
/*	color: #F01C00;*/
/*	font-weight: bold;*/
/*}*/

/*.inline .container_items .best-seller {*/
/*	font-size: 13px;*/
/*}*/

/*.favorite-items .gallery_items_inner {*/
/*	position: static;*/
/*}*/

/*.favorite-items .container.item_container.cubes_module {*/
/*	white-space: initial;*/
/*	margin-top: 0;*/
/*	height: fit-content;*/
/*	overflow-x: visible;*/
/*	overflow-y: visible;*/
/*	padding: 0;*/
/*	min-height: 50vh;*/
/*	max-height: none;*/
/*}*/

/*.empty-favorites {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	min-height: 55vh;*/
/*	color: #fff;*/
/*	font-weight: bold;*/
/*	font-size: 26px;*/
/*}*/

/*.favorite-items .container_items.gallery_items_inner {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));*/
/*    justify-items: center;*/
/*	min-width: 100%;*/
/*	column-gap: 35px;*/
/*	row-gap: 20px;*/
/*}*/

/*.favorite-items .container_items.gallery_items_inner.block-layout {*/
/*	display: block !important;*/
/*	width: 100% !important;*/
/*}*/

/*.favorite-items .container:not(.product_side) .container_item {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*}*/


/*.favorite-items .gallery_elems {*/
/*	display: none !important;*/
/*}*/

/*.item-price-container {*/
/*    display: flex;*/
/*    align-items: center;*/
/*	flex-wrap: wrap;*/
/*    !*gap: 25px;*!*/
/*	margin-bottom: 10px;*/
/*}*/

/*.loby_section.subcat_section .container:not(.product_side) .container_item {*/
/*	min-height: 0;*/
/*}*/

/*.loby_section.subcat_section .container:not(.product_side) .container_item .item-price-container .item_price_money{*/
/*	font-size: 28px;*/
/*}*/

/*.loby_section.subcat_section .container:not(.product_side) .container_item .item-price-container .item_price{*/
/*	gap: 5px;*/
/*	font-size: 17px;*/
/*}*/

/*.inline .container_items .item-price-container {*/
/*	gap: 0;*/
/*	!*justify-content: space-between;*!*/
/*}*/

/*.gallery_item.item .sale-countdown .countdown-container,*/
/*.inline .container_items .sale-countdown .countdown-container {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	gap: 5px;*/
/*	margin-bottom: 5px;*/
/*}*/

/*.gallery_item.item .sale-countdown,*/
/*.inline .container_items .sale-countdown {*/
/*	!*height: 40px;*!*/
/*	font-size: 13px;*/
/*	color: #F01C00;*/
/*}*/

/*.gallery_item.item .sale-countdown .progress-bar,*/
/*.inline .container_items .sale-countdown .progress-bar{*/
/*	width: 100%;*/
/*	background-color: #fcd2cc;*/
/*	border-radius: 5px;*/
/*	height: 6px;*/
/*	margin-bottom: 10px;*/
/*}*/

/*.gallery_item.item .sale-countdown .progress {*/
/*	height: 7px;*/
/*	background-color: #F01C00;*/
/*	border-radius: 5px;*/
/*	width: 0%;*/
/*}*/

/*.gallery_item.item .item-price-container .item_price .discount{*/
/*	color: #F01C00;*/
/*}*/

/*.gallery_item.item .item-rating-icon,*/
/*.inline .container_items .item-rating-icon{*/
/*	display: flex;*/
/*	!*flex-direction: row-reverse;*!*/
/*	justify-content: space-between;*/
/*	align-items: center;*/
/*	padding-bottom: 10px;*/
/*	min-height: 50px;*/
/*}*/

/*.gallery_item.item .item-rating,*/
/*.inline .container_items .item-rating-icon .item-rating{*/
/*	display: flex;*/
/*	flex-direction: row-reverse;*/
/*	gap: 8px;*/
/*}*/

/*.gallery_item.item .item-rating-icon span,*/
/*.inline .container_items .item-rating-icon .item-rating span{*/
/*	font-size: 16px;*/
/*	color: #0077CC;*/
/*}*/

/*.gallery_item.item .item-rating-icon .rating:before,*/
/*.inline .container_items .item-rating-icon .item-rating span.rating:before{*/
/*	content: '\f005';*/
/*	font-weight: bold;*/
/*	font-size: 14px;*/
/*	font-family: 'FontAwesome';*/
/*	color: #188DD9;*/
/*}*/

/*.gallery_item.item .item-rating-icon .rating.empty:before,*/
/*.inline .container_items .item-rating-icon .item-rating .rating.empty:before {*/
/*	color: #baddf4;*/
/*}*/

/*.gallery_item.item .item-rating-icon .item-rating,*/
/*.inline .container_items .item-rating-icon .item-rating {*/
/*	margin: 7px 0;*/
/*}*/

/*.gallery_item.item hr,*/
/*.inline .container_items hr{*/
/*	margin: 0 20px;*/
/*	border: 1px #DAE8F0 solid;*/
/*}*/

/*.promo_div .gallery_item.item hr {*/
/*	margin: 0;*/
/*}*/

/*.brand_logo_container {*/
/*	width: 100%;*/
/*	flex-basis: 50%;*/
/*}*/

/*.container_item_wrapper .item-rating-icon .brand_logo {*/
/*	max-width: 40% !important;*/
/*	max-height: 35px;*/
/*	width: auto;*/
/*	!* height: 28px; *!*/
/*	object-fit: contain;*/
/*}*/

/*.text_bold {*/
/*    font-weight: bold;*/
/*}*/

/*a {*/
/*    text-decoration: none;*/
/*}*/

/*.container .item_img img.brand_logo, .gallery .item_img img.brand_logo {*/
/*    position: absolute;*/
/*    max-width: 50%;*/
/*    max-height: 45px;*/
/*	margin-top: -20px;*/
/*	!* height: 20px; *!*/
/*}*/

/*.container.item_container.cubes_module {*/
/*    white-space: nowrap;*/
/*    overflow-x: hidden;*/
/*    overflow-y: hidden;*/
/*	position: relative;*/
/*	height: 520px;*/
/*	margin-bottom: 10px;*/
/*	padding: 10px 0;*/
/*}*/

/*.subcat_section .gallery_elems, .promotions_section .gallery_elems {*/
/*	bottom: 50%;*/
/*}*/

/*.subcat_section .gallery_elems .arrow_left, .subcat_section .gallery_elems .arrow_right,*/
/*.promotions_section .gallery_elems .arrow_left, .promotions_section .gallery_elems .arrow_right {*/
/*	!*bottom: 0;*!*/
/*}*/

/*.container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*	min-width: 100%;*/
/*    height: auto;*/
/*	width: auto;*/
/*}*/

/*.favorite-items .container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*	padding: 30px 0 30px ;*/
/*	position: static;*/
/*}*/

/*.loby_section.subcat_section .gallery_items_inner, .loby_section.promotions_section .gallery_items_inner {*/
/*	width: max-content;*/
/*}*/

/*#product_main .product_gallery .gallery_item .item_img img {*/
/*	!*border: 2px solid var(--light-blue);*!*/
/*}*/

/*.container .item_img img, .gallery .item_img img {*/
/*    margin: auto;*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    display: block;*/
/*}*/
/*.container .content_wrapper p{*/
/*    line-height:0.7;*/
/*}*/
/*.container span.price_label {*/
/*    font-size: 12px;*/
/*    color: #656565;*/
/*    font-weight: normal;*/
/*    display: block;*/
/*}*/
/*.container .item_price.pp_blue_price {*/
/*    color: #4395de;*/
/*    margin-top: -13px;*/
/*}*/
/*.container img.itemCorner {*/
/*    max-width: 40%;*/
/*}*/

/*.container .item_img, .loby_section.subcat_section .gallery .item_img, .loby_section.promotions_section .gallery .item_img {*/
/*    position: relative;*/
/*	!*margin-bottom: 25px;*!*/
/*	height: 250px;*/
/*	max-height: 25%;*/
/*}*/

/*.loby_section.subcat_section .gallery .item_img,*/
/*.loby_section.promotions_section .gallery .item_img,*/
/*.container_items .container_item_wrapper .item_img{*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	height: 250px;*/
/*	border-radius: 0 0 8px 8px;*/
/*	overflow: auto;*/
/*}*/

/*.item_price_before_discount {*/
/*	font-size: 14px;*/
/*	text-decoration: line-through;*/
/*	color: #6f7584;*/
/*	!*margin-bottom: 10px;*!*/
/*	!*margin-top: -2px;*!*/
/*	height: 20px;*/
/*	flex: 1;*/
/*}*/

/*.item_text {*/
/*	height: 50px;*/
/*	overflow: hidden;*/
/*	color: var(--text-primary);*/
/*	font-size: 18px;*/
/*	line-height: 1.3;*/
/*	white-space: normal;*/
/*}*/

/*#cart_main .item_text {*/
/*	height: 25px;*/
/*}*/

/*!*.container_item.item .item_img {*!*/
/*!*	margin-bottom: 35px;*!*/
/*!*}*!*/

/*.category_items .container_item.item .item_price {*/
/*	margin-left: 10px;*/
/*}*/
/*.container_item_wrapper .item_price {*/
/*	margin-left: 10px;*/
/*}*/

/*.item_price {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	flex-wrap: wrap;*/
/*	!*width: 100%;*!*/
/*	color: var(--text-price);*/
/*	font-size: 14px;*/
/*	!*margin-left: 10px;*!*/
/*	!*margin-top: 3px;*!*/
/*}*/

/*.promo_div .gallery_item.item .item_price {*/
/*	margin-left: 10px*/
/*}*/

/*.item_price span {*/
/*	margin: 0 ;*/
/*	display: inline-block;*/
/*}*/

/*.cart_item img {*/
/*    height: 112px;*/
/*}*/

/*.cart_item .inline > * {*/
/*    padding: 0 12px;*/
/*}*/

/*.cart_item {*/
/*    padding: 20px 0;*/
/*    background-color: #fff;*/
/*    width: 100%;*/
/*    box-shadow: 12px 12px 32px 0 rgba(142, 140, 140, 0.09);*/
/*    border: solid 1px #ededf1;*/
/*    height: max-content;*/
/*	margin-bottom: 20px;*/
/*}*/

/*.no_margin {*/
/*	margin: 0;*/
/*}*/

/*.item_warrenty {*/
/*	font-size: 12px;*/
/*	font-weight: bold;*/
/*	color: var(--warrenty-primary);*/
/*	height: 60px;*/
/*	!*box-shadow: inset 0 1px 0 0 #f2f2f5;*!*/
/*    line-height: 1.2;*/
/*    padding: 6px 0;*/
/*	white-space: normal;*/
/*}*/

/*.item_corner {*/
/*	position: absolute;*/
/*    top: -40px;*/
/*    left: -40px;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*    width: 81px;*/
/*    height: 81px;*/
/*    line-height: 135px;*/
/*    transform: rotate(-45deg);*/
/*	font-size: 16px;*/
/*}*/

/*#category_main .container .container_item_wrapper {*/
/*	width: 25%;*/
/*}*/

/*.pink {*/
/*	background-color: #f17081;*/
/*}*/

/*.float_left {*/
/*	float: left;*/
/*	flex-basis: 30%;*/
/*}*/



/*.bg_white {*/
/*	background-color: #fff;*/
/*}*/

/*.rank_total_wrapper > div {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*}*/

/*div#product_rank .img_wrapper {*/
/*    height: 60px;*/
/*}*/

/*.img_wrapper img {*/
/*    max-height: 100%;*/
/*    max-width: 100%;*/
/*}*/

/*.rank_total_bottom {*/
/*	color: #989db3;*/
/*}*/

/*.star {*/
/*	margin: 0 1px;*/
/*	color: #989db3;*/
/*	font-weight: bold;*/
/*}*/

/*.star.active {*/
/*	color: #f06f80;*/
/*}*/

/*.star:before {*/
/*	height: 14px;*/
/*	width: 14px;*/
/*	font-size: 14px;*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f005';*/
/*}*/

/*.rank_total_bottom > div {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*}*/

/*.rank_row .rank_stars {*/
/*    float: left;*/
/*}*/

/*.rank_row_top > div {*/
/*    display: inline-block;*/
/*}*/

/*.rank_row {*/
/*    padding: 30px 0;*/
/*    border-style: solid;*/
/*    border-width: 0 0 1px;*/
/*    border-color: #ccccd8;*/
/*}*/

/*.rank_container {*/
/*    overflow-x: hidden;*/
/*    overflow-y: auto;*/
/*    max-height: 440px;*/
/*}*/

/*.rank_total_wrapper {*/
/*    padding: 10px 0;*/
/*    !*border-style: solid;*/
/*    border-width: 0px 0px 1px;*/
/*    border-color: #ccccd8;*!*/
/*}*/

/*.rank_form {*/
/*    width: 366px;*/
/*    padding: 30px 30px 60px;*/
/*    background-color: #f2f2f5;*/
/*	position: relative;*/
/*    max-width: 100%;*/
/*	float: left;*/
/*	margin-right: 30px;*/
/*	height: 440px;*/
/*    box-sizing: border-box;*/
/*}*/

/*.inline > * {*/
/*	display: inline-block;*/
/*	vertical-align: middle;*/
/*}*/

/*.rank_form .inline label {*/
/*	margin-bottom: 0;*/
/*}*/

/*.rank_form label {*/
/*    display: block;*/
/*    margin-bottom: 5px;*/
/*}*/

/*.rank_form input, .rank_form textarea {*/
/*    width: 100%;*/
/*    padding: 5px;*/
/*    outline: none;*/
/*}*/

/*.rank_form > div {*/
/*    margin: 0px 0px 15px;*/
/*}*/

/*.rank_form .butt {*/
/*    position: absolute;*/
/*    left: 30px;*/
/*    bottom: 0;*/
/*    font-size: 14px;*/
/*    height: 38px;*/
/*    line-height: 38px;*/
/*}*/

/*.rank_form input {*/
/*    background-color: transparent;*/
/*    border-width: 0 0 2px;*/
/*    border-color: #6f7584;*/
/*}*/

/*.rank_form textarea {*/
/*    border: none;*/
/*    height: 80px;*/
/*}*/

/*.rank_form .star {*/
/*    cursor: pointer;*/
/*}*/

/*.link {*/
/*	cursor: pointer;*/
/*	text-decoration: underline;*/
/*}*/

/*.product_calc {*/
/*    !*box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);*!*/
/*    !*background-color: var(--light-blue);*!*/
/*    !*padding: 15px;*!*/
/*	!*margin: 0px 0px 15px;*!*/
/*	text-align: center;*/
/*	overflow: hidden;*/
/*}*/

/*.product_side {*/
/*    width: 360px;*/
/*    !*float: left;*!*/
/*	color: #191919;*/
/*	max-width: 100%;*/
/*}*/

/*.product_title {*/
/*    font-size: 30px;*/
/*    font-weight: bold;*/
/*    line-height: 1.2;*/
/*    margin-bottom: 0;*/
/*    margin-top: 0;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.product_subtitle {*/
/*	width: 100%;*/
/*	color: var(--footer-primary);*/
/*    margin:0;*/
/*	font-size: 17px;*/
/*}*/

/*div#category_main {*/
/*    !*background-color: #fff;*!*/
/*}*/

/*div#product_main{*/
/*	background-color: #fff;*/
/*}*/


/*.rank_product {*/
/*    margin: 3px 0 10px;*/
/*}*/

/*select[name="product_select"] {*/
/*    width: 100%;*/
/*    background-color: transparent;*/
/*    padding: 6px 0;*/
/*    border-style: solid;*/
/*    border-width: 0 0 2px;*/
/*    outline: none;*/
/*    margin: 10px 0;*/
/*}*/

/*.product_select {*/
/*	!* Styles for the dropdown *!*/
/*}*/

/*.feature_wrap {*/
/*	position: relative;*/
/*}*/

/*.options_container {*/
/*	background-color: white;*/
/*	width: 100%;*/
/*	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
/*	z-index: 1;*/
/*}*/

/*.feature_value {*/
/*	padding: 10px;*/
/*	cursor: pointer;*/
/*}*/

/*.feature_value img {*/
/*	!* Styles for images *!*/
/*}*/

/*#cart_main .product_amount {*/
/*    padding: 0 30px;*/
/*}*/

/*.product_amount {*/
/*    margin: 10px 0;*/
/*}*/

/*.product_amount label {*/
/*    width: 65px;*/
/*}*/

/*.product_amount input {*/
/*    background-color: transparent;*/
/*    border:  none;*/
/*    text-align: center;*/
/*    width: 50px;*/
/*    outline: none;*/
/*	line-height: 26px;*/
/*}*/

/*span.product_amount_wrapper {*/
/*    position: relative;*/
/*	white-space: nowrap;*/
/*}*/

/*.amount_add, .amount_sub {*/
/*	position: absolute;*/
/*	background-color: var(--text-gradient-fit);*/
/*	color: var(--btn-primary);*/
/*	cursor: pointer;*/
/*	height: 20px;*/
/*	width: 20px;*/
/*	border-radius: 50%;*/
/*	line-height: 22px;*/
/*	text-align: center;*/
/*	font-weight: bold;*/
/*	font-size: 20px;*/
/*	top: 50%;*/
/*	transform: translateY(-50%);*/
/*}*/

/*.amount_sub.disabled {*/
/*	pointer-events: none;*/
/*	background-color: var(--light-green);*/
/*	color: #2f2f2f;*/
/*	cursor: no-drop;*/
/*}*/

/*.cart_item .amount_add, .cart_item .amount_sub {*/
/*	color: #000;*/
/*	background-color: var(--site-borders-primary);*/
/*}*/

/*span.amount_add {*/
/*	left: 100%;*/
/*}*/

/*span.amount_sub {*/
/*	left: -20px;*/
/*}*/

/*.collected_item_cell.collected_title {*/
/*    width: 120px;*/
/*    padding-left: 21px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.collected_item_cell.collected_amount {*/
/*    width: 70px;*/
/*}*/

/*.collected_item_cell.collected_points.points {*/
/*    width: 90px;*/
/*}*/

/*.product_calc input {*/
/*    width: 130px;*/
/*    text-align: center;*/
/*	line-height: 40px;*/
/*    height: 40px;*/
/*    border: none;*/
/*    font-size: 18px;*/
/*	max-width: 100%;*/
/*	background-color: #fff;*/
/*}*/

/*.product_side .product_calc {*/
/*    text-align: right;*/
/*}*/

/*.points_slider_wrapper.inline .points_slider {*/
/*    width: calc(100% - 111px);*/
/*}*/

/*.product_side .product_calc .inline {*/
/*    text-align: center;*/
/*	margin: 15px 0 35px;*/
/*	white-space: nowrap;*/
/*}*/

/*.product_calc .inline > * {*/
/*    vertical-align: top;*/
/*	display: inline-block;*/
/*}*/

/*input[type=number]::-webkit-inner-spin-button {*/
/*  display: none;*/
/*}*/

/*input[type=number]::-webkit-outer-spin-button,*/
/*input[type=number]::-webkit-inner-spin-button {*/
/*    -webkit-appearance: none;*/
/*    margin: 0;*/
/*}*/

/*input[type=number] {*/
/*    -moz-appearance:textfield;*/
/*}*/

/*.product_calc .inline .pos_abs {*/
/*    color: #444444;*/
/*    font-weight: bold;*/
/*    margin-top: 4px;*/
/*}*/

/*.product_calc .inline .plus {*/
/*    line-height: 40px;*/
/*    width: calc(100% - 267px);*/
/*    min-width: 30px;*/
/*    font-size: 25.5px;*/
/*}*/

/*.points_slider {*/
/*	width: 100%;*/
/*}*/

/*.product_side.container .points_slider {*/
/*	width: 95%;*/
/*}*/

/*.points_slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {*/
/*    height:  8px;*/
/*    background-color: #ccccd8;*/
/*    border-radius: 4px;*/
/*    margin: 20px 9px 20px 3px;*/
/*   !*  display: block;*/
/*    position: relative; *!*/
/*}*/

/*.points_slider.ui-slider .ui-widget-header {*/
/*	background-color: var(--btn-primary);*/
/*}*/

/*.points_slider.ui-slider span.ui-slider-handle {*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    border-radius: 50%;*/
/*    color: #fff;*/
/*	display: inline-block;*/
/*	background-color: var(--btn-extra);*/
/*	outline: none;*/
/*	border: none;*/
/*	top: -14px;*/
/*	margin-left: -17px;*/
/*	cursor: grab;*/
/*}*/

/*.points_slider.ui-slider span.ui-slider-handle.ui-state-active {*/
/*	cursor: grabbing;*/
/*}*/

/*.points_slider span.ui-slider-handle:before, .points_slider span.ui-slider-handle:after {*/
/*	font-family: 'FontAwesome';*/
/*	font-size: 17px;*/
/*	line-height: 35px;*/
/*	color: #fff;*/
/*	top: 0px;*/
/*	font-weight: bold;*/
/*}*/

/*.points_slider.ui-slider span.ui-slider-handle:before {*/
/*	content: '\f0d9';*/
/*	left: 7px;*/
/*	position: absolute;*/
/*}*/

/*.points_slider span:after {*/
/*	content: '\f0da';*/
/*	right: 7px;*/
/*	position: absolute;*/
/*}*/

/*!* .points_slider_wrapper span.max {*/
/*    margin-left: 10px;*/
/*} *!*/

/*.points_slider_wrapper span.min {*/
/*    margin-right: 13px;*/
/*}*/

/*.product_butts_pay {*/
/*	display: grid;*/
/*	grid-template-rows: repeat( auto-fit, minmax(35px, 1fr) );*/
/*	grid-template-columns: repeat(2,1fr);*/
/*	gap: 20px;*/
/*	margin: 18px 0px;*/
/*}*/

/*.special_price {*/
/*	grid-column: 1/-1;*/
/*	background: var(--btn-primary);*/
/*}*/

/*.product_butts_pay > * {*/
/*    width: 100%;*/
/*    text-align: center;*/
/*    !*margin-bottom: 10px;*!*/
/*}*/

/*.product_butts_pay .butt_light {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	color: var(--btn-text);*/
/*	border: 2px solid var(--btn-primary);*/
/*	font-size: 18px;*/
/*	font-weight: 400;*/
/*	border-radius: 7px;*/
/*	background: var(--btn-gradient);*/
/*}*/

/*.product_butts_pay .butt_light.fast_buy.no_special_price {*/
/*	background: var(--btn-primary);*/
/*}*/

/*.content_wrapper .low-prices {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 29px;*/
/*	border-radius: 7px;*/
/*	border: 1px solid var(--main-red);*/
/*	background-color: rgba(240, 28, 0, 0.2);*/
/*	color: var(--main-red);*/
/*	margin-bottom: 20px;*/
/*}*/

/*.content_wrapper .low-prices span{*/
/*	font-weight: bold;*/

/*}*/

/*.product_butts_pay .butt_light:before {*/
/*    font-family: 'FontAwesome';*/
/*    !*content: '\f07a';*!*/
/*    padding: 0px 5px;*/
/*}*/

/*.product_total_pay .item_price {*/
/*    font-size: 32px;*/
/*	color: var(--text-price);*/
/*}*/

/*.hide-extra {*/
/*	display: none !important;*/
/*}*/

/*.product-buy-container .item_price div {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: flex-start;*/
/*	gap: 20px;*/
/*	!*flex-basis: 60%;*!*/
/*	width: 100%;*/
/*}*/

/*.product-buy-container .item_price .product_amount.inline {*/
/*	justify-content: flex-end;*/
/*	margin-left: 20px;*/
/*}*/

/*.product-buy-container .item-payment-data > *{*/
/*	flex: 1;*/
/*}*/

/*.product-buy-container .item-payment-data span {*/
/*	color: var(--footer-primary);*/
/*}*/

/*.product-buy-container .item-payment-data span.ml_price {*/
/*	color: #757575;*/
/*}*/

/*.product-buy-container .item-payment-data span.bold {*/
/*	font-weight: bold;*/
/*}*/


/*.product-buy-container .item-payment-data {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	flex-direction: column;*/
/*	color: #757575;*/
/*}*/

/*.product_nav {*/
/*	color: white;*/
/*}*/

/*.product_nav > span a{*/
/*	color: var(--footer-primary);*/
/*}*/

/*.product_nav > span {*/
/*    margin-left: 5px;*/
/*}*/

/*.product_nav > span:last-child {*/
/*    color: #a8ff78;*/
/*}*/

/*#product_main .product_nav {*/
/*	color: black*/
/*}*/

/*#product_main .product_nav > span a{*/
/*	color: var(--footer-primary);*/
/*}*/

/*#product_main .product_nav > span {*/
/*	margin-left: 5px;*/
/*}*/

/*#product_main .product_nav > span:last-child {*/
/*	color: grey;*/
/*}*/

/*.product_gallery {*/
/*	position: relative;*/
/*	!* width: calc(100% - 365px); *!*/
/*	max-width: 830px;*/
/*	padding-top: 10px;*/
/*}*/

/*.product_like {*/
/*	position: absolute;*/
/*	width: 40px;*/
/*	height: 40px;*/
/*	line-height: 40px;*/
/*	border-radius: 50%;*/
/*	color: #fff;*/
/*	background-color: #ccccd8;*/
/*	top: 0;*/
/*	right: 20px;*/
/*	text-align: center;*/
/*	font-size: 18px;*/
/*    z-index: 1;*/
/*	cursor: pointer;*/
/*}*/

/*.product_like:after {*/
/*	font-family: 'FontAwesome';*/
/*	content: url(https://www.htzone.co.il/_media/images/empty_heart.svg);*/
/*	line-height: 42px;*/
/*}*/

/*div#promoted_items_gallery, div#promoted_items_cart {*/
/*    max-width: 100%;*/
/*    width: 600px;*/
/*    margin: 0;*/
/*    overflow: hidden;*/
/*    height: 590px;*/
/*	padding: 0px 0px 0px;*/
/*	position: relative;*/
/*	white-space: nowrap;*/
/*}*/

/*#product_main div#promoted_items_gallery {*/
/*	height: 675px;*/
/*}*/

/*div#promoted_items_cart {*/
/*	background-color: #fff;*/
/*    padding: 0px 0px 10px;*/
/*	width: 340px;*/
/*    margin-right: 0;*/
/*    !*margin-top: 15px;*!*/
/*	height: 508px;*/
/*	overflow: visible;*/
/*}*/

/*div#promoted_items_cart .gallery_elems {*/
/*	!*bottom: -2px;*!*/
/*}*/

/*div#promoted_items_cart .gallery_items {*/
/*	height: 445px;*/
/*	!*box-shadow: 5px 3px 10px rgba(180, 180, 180, 0.23);*!*/
/*	width: 340px;*/
/*}*/

/*#cart_main #promoted_items_cart {*/
/*	height: 480px;*/
/*}*/

/*#cart_main #promoted_items_cart .gallery_title {*/
/*	display: block;*/
/*	margin: 15px 0;*/
/*}*/

/*div#promoted_items_cart.gallery .gallery_title {*/
/*    max-height: 300px;*/
/*	display: none;*/
/*}*/

/*div#promoted_items_cart.gallery .item_img img:first-child {*/
/*    max-height: 300px;*/
/*}*/

/*div#promoted_items_cart .gallery_items_inner {*/
/*	min-width: 100%;*/
/*}*/

/*#promoted_items_cart .gallery_elems .arrow_left {*/
/*    left: -2%;*/
/*}*/

/*#promoted_items_cart .gallery_elems .arrow_right {*/
/*    right: -2%;*/
/*}*/

/*.item_img img {*/
/*    margin: auto;*/
/*    display: block;*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*}*/

/*.nav_cat_wrapper .promo_div .gallery_elems {*/
/*	!*position: absolute;*!*/
/*	bottom: 0;*/
/*	right: 0;*/
/*	width: 100%;*/
/*}*/

/*#product_main .gallery_elems {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*}*/

/*.gallery_elems .arrow_left, .gallery_elems .arrow_right {*/
/*	position: absolute;*/
/*	right: -3%;*/
/*	top: 50%;*/
/*}*/

/*.product_gallery .gallery_elems .arrow_left, .product_gallery .gallery_elems .arrow_right {*/
/*	bottom: 355px;*/
/*}*/

/*.promo_div .gallery_nav {*/
/*    width: 200px;*/
/*	margin: 10px auto auto;*/
/*	display: block;*/
/*    height: 20px;*/
/*    text-align: center;*/
/*	max-width: 100%;*/
/*}*/

/*.promo_div .gallery_nav > span {*/
/*    background-color: #6f7584;*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 50%;*/
/*    margin: auto 3px;*/
/*}*/

/*.product_pay_wrapper.container_item.item {*/
/*    width: 100%;*/
/*	padding: 20px 0px 0px;*/
/*}*/

/*.product_pay_wrapper.container_item.item .product_warrenty {*/
/*	padding: 0;*/
/*}*/

/*.special_price_modal {*/
/*	position: fixed;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	background: rgba(0, 0, 0, 0.7);*/
/*	display: none;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	z-index: 40;*/
/*}*/

/*.special_price_modal.show {*/
/*	display: flex;*/
/*}*/

/*.special_price_modal .content {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	text-align: center;*/
/*	position: relative;*/
/*	background-color: #fff;*/
/*	width: 30vw;*/
/*	padding: 25px 15px 20px;*/
/*	border-radius: 7px;*/
/*}*/

/*.special_price_modal .content .close_icon {*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	position: absolute;*/
/*	top: 0;*/
/*	left: 0;*/
/*	margin: 20px;*/
/*	width: 28px;*/
/*	height: 28px;*/
/*	background: #0096FF;*/
/*	color: #fff;*/
/*	font-weight: bold;*/
/*	border-radius: 50%;*/
/*	font-size: 19px;*/
/*	cursor: pointer;*/
/*	align-items: center;*/
/*	padding-top: 3px;*/
/*}*/

/*.special_price_modal .content h3 {*/
/*	font-size: 20px;*/
/*	color: var(--footer-primary);*/
/*	font-weight: bold;*/
/*}*/
/*.special_price_modal .content h2 {*/
/*	font-size: 22px;*/
/*	font-weight: bold;*/
/*	color: var(--footer-primary);*/
/*}*/
/*.special_price_modal .content .input_container {*/
/*	width: 100%;*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*}*/

/*.special_price_modal .content .input_container.checkbox {*/
/*	display: flex;*/
/*	flex-direction: row !important;*/
/*	width: 90%;*/
/*}*/

/*.special_price_modal .content .input_container.checkbox input#agree_tos {*/
/*	display: flex;*/
/*	margin-left: 10px;*/
/*	width: 16px;*/
/*	align-items: center;*/
/*}*/

/*.special_price_modal .content .input_container:last-child {*/
/*	width: 100%;*/
/*	display: flex;*/
/*	flex-direction: row;*/
/*	align-items: center;*/
/*}*/

/*.special_price_modal .content .input_container:last-child input{*/
/*	width: auto;*/
/*}*/

/*.special_price_modal .content input {*/
/*	border: 1px solid #4bb5ff;*/
/*	border-radius: 7px;*/
/*	height: 45px;*/
/*	width: 70%;*/
/*}*/

/*.special_price_modal .content form {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	gap: 20px;*/
/*}*/

/*.special_price_modal .content label {*/
/*	font-size: 17px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.special_price_modal .content .error_msg {*/
/*	color: red;*/
/*	display: none;*/
/*	font-weight: bold;*/
/*}*/

/*.special_price_modal .content .error_msg.show {*/
/*	color: red;*/
/*	display: none;*/
/*}*/

/*.special_price_modal .special_price_btn {*/
/*	border: none;*/
/*}*/

/*.promo_div .gallery_nav > span.active {*/
/*    background-color: var(--site_primary);*/
/*    width: 12px;*/
/*    height: 12px;*/
/*}*/

/*.gallery_item {*/
/*	display: inline-block;*/
/*    !* margin-left: 50px; *!*/
/*	!* padding: 0px 82px;*/
/*	padding: 0px 5%; *!*/
/*	max-width: 90vw;*/
/*	width: 600px;*/
/*	text-align: right;*/
/*	position: relative;*/
/*}*/

/*.gallery_items {*/
/*	position: relative;*/
/*	height: 100%;*/
/*	width: 100%;*/
/*	overflow: hidden;*/
/*	font-size: 0;*/
/*}*/

/*.gallery_items_inner {*/
/*    display: inline-block;*/
/*	position: absolute;*/
/*    height: 100%;*/
/*	width: max-content;*/
/*}*/

/*#nav_cat_wrapper #promoted_items_cart {*/
/*	height: auto;*/
/*}*/

/*#promoted_items_cart .gallery_title {*/
/*	margin-bottom: 25px;*/
/*}*/

/*#promoted_items_cart .gallery_item {*/
/*	width: 340px;*/
/*	padding: 0 10px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.calc_money, .calc_points {*/
/*	max-width: 40%;*/
/*}*/

/*.gallery_nav {*/
/*    white-space: nowrap;*/
/*    display: block;*/
/*    max-width: 100%;*/
/*    height: 85px;*/
/*    margin: auto;*/
/*    margin-top: 20px;*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*	text-align: center;*/
/*}*/

/*!* .loby_section.promotions_section .gallery_nav {*/
/*	height: 0;*/
/*} *!*/

/*.gallery_nav > span {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    width: 20%;*/
/*    cursor: pointer;*/
/*    margin-left: 2px;*/
/*    HEIGHT: 100%;*/
/*	position: relative;*/
/*	!*border: 2px solid var(--light-blue);*!*/
/*	border-radius: 7px;*/
/*}*/

/*!*.gallery_nav > span.active {*!*/
/*!*	border: 2px solid var(--cart-color);*!*/
/*!*}*!*/

/*.gallery_nav > span img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    margin:  auto;*/
/*    display: block;*/
/*}*/

/*span.arrow {*/
/*    font-size: 20px;*/
/*	background: var(--btn-gradient);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*    line-height: 30px;*/
/*    height: 30px;*/
/*    width: 30px;*/
/*    cursor: pointer;*/
/*    display: block;*/
/*    border-radius: 50%;*/
/*}*/

/*span.arrow:after {*/
/*    font-family: 'FontAwesome';*/
/*	font-weight: bold;*/
/*}*/

/*.arrow_left span.arrow:after {*/
/*    content: '\f104';*/
/*	background: var(--btn-gradient);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*.arrow_right span.arrow:after {*/
/*    content: '\f105';*/
/*	background: var(--btn-gradient);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*.gallery_elems .arrow_left {*/
/*    right: auto;*/
/*    left: -3%;*/
/*	text-align: left;*/
/*}*/

/*div.misc-header {*/
/*	!*background-color: var(--site_primary);*!*/
/*	background-color: #fff;*/
/*	color: var(--text-primary);*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	align-items: center;*/
/*	transition: transform 0.3s ease-in-out;*/
/*	z-index: 1000;*/
/*	font-size: 17px;*/
/*	font-weight: bold;*/
/*}*/

/*div.misc-header > * {*/
/*	display: flex;*/
/*	gap: 25px;*/
/*	flex-direction: row;*/
/*	align-items: center;*/
/*	font-weight: inherit;*/
/*}*/

/*div.misc-header > * > * {*/
/*	padding: 10px 0;*/
/*}*/

/*div.misc-header .desktop > * {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	gap: 10px;*/
/*	font-weight: inherit;*/
/*}*/

/*.misc-header > .mobile {*/
/*	display: flex;*/
/*	flex-direction: row;*/
/*	align-items: center;*/
/*	gap: 10px;*/
/*}*/

/*.misc-header .right-side> * {*/
/*	font-weight: bold;*/
/*}*/

/*.misc-header a:visited {*/
/*	color: #000;*/
/*}*/

/*.misc-header .drop-down .drop-down-arrow:after {*/
/*	font-family: 'FontAwesome';*/
/*	font-weight: bold;*/
/*	content: '\f107';*/
/*}*/

/*.menu_top_cat .drop-down-arrow:after {*/
/*	position: absolute;*/
/*	left: 0;*/
/*	color: var(--footer-primary);*/
/*	transition: .2s transform ease-in-out;*/
/*}*/

/*.menu_top_cat li.open .drop-down-arrow:after {*/
/*	transform: rotate(180deg);*/
/*}*/

/*#mobile_nav_cat_wrapper .menu_cat_top .return-to-cat {*/
/*	font-weight: bold;*/
/*	font-size: 18px;*/
/*}*/

/*#mobile_nav_cat_wrapper .menu_cat_top .return-to-cat .return-arrow:after {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f054';*/
/*	font-weight: bold;*/
/*	margin-left: 5px;*/
/*}*/

/*ul.menu_top_cat li .sub_cat {*/
/*	opacity: 0;*/
/*	max-height: 0;*/
/*	padding: 0;*/
/*	transition: .2s opacity, .2s max-height ease-in-out;*/
/*}*/

/*ul.menu_top_cat li.open .sub_cat {*/
/*	opacity: 1;*/
/*	max-height: 1000px;*/
/*}*/

/*ul.menu_top_cat li .sub_cat li {*/
/*	list-style: none;*/
/*	font-size: 16px;*/
/*	padding: 5px 0 ;*/
/*}*/

/*ul.menu_top_cat .cat_text {*/
/*	font-weight: bold;*/
/*}*/

/*ul.menu_top_cat li.open .cat_text {*/
/*	border-bottom: 2px solid #a8ff78;*/
/*}*/

/*.misc-header .drop-down {*/
/*	font-weight: inherit;*/
/*}*/

/*.misc-header .user-menu {*/
/*	position: absolute;*/
/*	top: 105%;*/
/*	right: 0;*/
/*	width: 140%;*/
/*	z-index: 90;*/
/*	background: white;*/
/*	cursor: initial;*/
/*	box-shadow: 0px 0px 7.300000190734863px 0px #00000014;*/
/*}*/

/*.misc-header .user-menu .menu-content {*/
/*	width: 100%;*/
/*	position: absolute;*/
/*	background-color: #f9f9f9;*/
/*	min-width: 160px;*/
/*	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
/*	z-index: 1;*/
/*	opacity: 0;*/
/*	visibility: hidden;*/
/*	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;*/
/*	padding: 18px 0 0;*/
/*}*/

/*.misc-header .user-menu .menu-content .login-btn div,*/
/*#header_mobile #menu_mobile .login-btn {*/
/*	background: var(--btn-primary);*/
/*	color: var(--text-primary);*/
/*	text-align: center;*/
/*	border-radius: 7px;*/
/*	padding: 10px;*/
/*	cursor: pointer;*/
/*}*/

/*.misc-header .user-menu .menu-content > *:not(hr, .menu-options) {*/
/*	padding: 8px 17px;*/
/*}*/

/*.user-menu .menu-options a {*/
/*	color: #000;*/
/*}*/

/*.menu-options > *:not(:last-child) {*/
/*	padding: 11px 15px;*/
/*}*/

/*.menu-options.logged-in-menu > *:nth-child(4) {*/
/*	padding-bottom: 30px;*/
/*}*/

/*.menu-options.logged-in-menu > *:nth-child(5) {*/
/*	padding-top: 22px;*/
/*}*/


/*.menu-options > *:last-child {*/
/*	padding: 8px 15px;*/
/*}*/

/*.menu-options.logged-in-menu > *:nth-last-child(-n+2) {*/
/*	background-color: var(--light-green);*/
/*}*/


/*.menu-options.guest-menu > *:nth-last-child(-n+2) {*/
/*	background-color: var(--light-green);*/
/*}*/

/*.menu-options.guest-menu > *:nth-child(3) {*/
/*	padding-bottom: 30px;*/
/*}*/

/*.menu-options.guest-menu > *:nth-child(4) {*/
/*	padding-top: 22px;*/
/*}*/

/*.misc-header .my-account.hovering .user-menu .menu-content {*/
/*	opacity: 1;*/
/*	visibility: visible;*/
/*}*/

/*.misc-header .user-menu .menu-content > * {*/
/*	width: 100%;*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	justify-content: center;*/
/*}*/

/*.misc-header .user-menu hr {*/
/*	height: 1px;*/
/*	background-color: #d2e8f6;*/
/*	border: none;*/
/*	width: 100%;*/
/*}*/

/*.misc-header .customer-service {*/
/*	color: var(--footer-primary);*/
/*}*/

/*.print-icon:after {*/
/*	font-family: 'FontAwesome';*/
/*	font-weight: bold;*/
/*	content: '\f03e';*/
/*}*/

/*.print-icon {*/
/*	display: flex;*/
/*}*/

/*#menu_mobile .nav_wrapper .extra_links {*/
/*	display: flex;*/
/*	gap: 15px;*/
/*}*/

/*#menu_mobile .nav_wrapper .extra_links a {*/
/*	display: flex;*/
/*	gap: 5px;*/
/*	font-size: 16px;*/
/*	font-weight: bold;*/
/*	color: var(--main-blue);*/
/*}*/

/*div#search_wrapper {*/
/*    width: 50vw;*/
/*    !*max-width: 45%;*!*/
/*    !*margin: auto;*!*/
/*    position: relative;*/
/*	z-index: 3;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	!*flex-basis: 40%;*!*/
/*}*/

/*div#search {*/
/*	width: 100%;*/
/*	position: relative;*/
/*	border-radius: 10.5px;*/
/*	!*box-shadow: 0 0 15px 2px rgba(96, 96, 96, 0.20);*!*/
/*	background-color: #fff;*/
/*	z-index: 3;*/
/*	border: 2px solid black;*/
/*}*/

/*#header div#search {*/
/*	height: 48px;*/
/*}*/

/*#header_mobile div#search {*/
/*	height: 45px;*/
/*}*/

/*div#search input {*/
/*    width: 90%;*/
/*    margin: auto;*/
/*    outline: none;*/
/*    border: none;*/
/*    height: 60px;*/
/*    line-height: 60px;*/
/*	display: block;*/
/*	background-color: transparent;*/
/*    font-size: 22px;*/
/*    color: #6f7584;*/
/*    text-align: right;*/
/*	padding: 0px 10px;*/
/*	position: absolute;*/
/*	max-width: 90%;*/
/*}*/

/*span.search_placeholder {*/
/*	position: absolute;*/
/*	font-size: 19px;*/
/*	color: #6f7584;*/
/*	width: 100%;*/
/*	margin: auto;*/
/*	pointer-events: none;*/
/*	padding: 0 3vw;*/
/*	height: 50px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*}*/

/*#header div#search input {*/
/*	right: 0;*/
/*    left: 0;*/
/*	height: 50px;*/
/*}*/

/*#header_mobile {*/
/*	display: none;*/
/*	padding: 0;*/
/*}*/

/*#header_mobile ul.header-nav-links {*/
/*	display: flex;*/
/*	list-style: none;*/
/*	gap: 20px;*/
/*	overflow-x: auto;*/
/*	padding: 0 20px 20px;*/
/*	margin-bottom: 0;*/
/*}*/

/*#header_mobile .close_filter_btn {*/
/*	display: none;*/
/*	position: absolute;*/
/*	top: calc(10px + 6%);*/
/*	right: -3%;*/
/*	z-index: 4;*/
/*}*/
/*#header_mobile .close_filter_btn:after {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f00d';*/
/*	font-size: 25px;*/
/*}*/

/*#header_mobile .mobile_search_header {*/
/*	position: relative;*/
/*}*/

/*#header_mobile .mobile_search_header.fixed-search {*/
/*	position: fixed;*/
/*}*/

/*a.customer-service.mobile.fixed-search {*/
/*	position: fixed;*/
/*	padding: 4px 0 !important;*/
/*}*/

/*!* width *!*/
/*.header-nav-links::-webkit-scrollbar {*/
/*	width: 5px;*/
/*	height: 7px;*/
/*}*/

/*!* Track *!*/
/*.header-nav-links::-webkit-scrollbar-track {*/
/*	background: var(--light-blue);*/
/*	border-radius: 10px;*/
/*}*/

/*!* Handle *!*/
/*.header-nav-links::-webkit-scrollbar-thumb {*/
/*	background: #188DD9;*/
/*	border-radius: 10px;*/
/*}*/



/*#header_mobile ul.header-nav-links::-webkit-scrollbar {*/
/*	width: 4px;*/
/*}*/

/*#header_mobile ul.header-nav-links::-webkit-scrollbar-track {*/
/*	background: var(--light-green); !* color of the track *!*/
/*}*/

/*#header_mobile ul.header-nav-links::-webkit-scrollbar-thumb {*/
/*	background: #a8ff78; !* color of the scrollbar thumb *!*/
/*}*/

/*#header_mobile ul.header-nav-links::-webkit-scrollbar-thumb:hover {*/
/*	background: #8fec5c; !* color when hovering over the scrollbar thumb *!*/
/*}*/

/*!* Customizing the scrollbar for Firefox *!*/
/*#header_mobile ul.header-nav-links {*/
/*	scrollbar-color: #a8ff78 #E7FFDFFF;*/
/*	scrollbar-width: auto; !* 'auto' or 'thin' *!*/
/*}*/

/*#header_mobile ul.header-nav-links a {*/
/*	padding: 7px 0;*/
/*	background-color: var(--site_primary);*/
/*	width: auto;*/
/*	display: flex;*/
/*	min-width: 105px;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	border-radius: 7px;*/
/*	color: white;*/
/*	font-size: 14px;*/
/*	text-align: center;*/
/*}*/

/*#header_mobile ul.header-nav-links li {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	box-shadow: 0px 0px 5px 0px #0000001A;*/
/*	border-radius: 7px;*/
/*	background-color: var(--light-blue);*/
/*}*/

/*#header_mobile ul.header-nav-links li.highlighted a {*/
/*	color: #01FEB7;*/
/*	font-weight: bold;*/
/*}*/

/*#header, #header_mobile {*/
/*	position: relative;*/
/*	z-index: 4;*/
/*}*/

/*#header {*/
/*	!*height: 147px;*!*/
/*	box-shadow: 0 2px 4px 0 rgba(241, 241, 241, 0.5);*/
/*	padding: 0;*/
/*}*/

/*#header .left-side {*/
/*	display: flex;*/
/*	gap: 35px;*/
/*	flex-direction: row-reverse;*/
/*}*/

/*div#header_main {*/
/*    margin: 5px 0px;*/
/*	font-size: 0;*/
/*	!*flex-basis: 30%;*!*/
/*	display: flex;*/
/*}*/

/*div#header_main > span, div#header_main > span > * {*/
/*	line-height: 18px;*/
/*    height: 18px;*/
/*	font-size: 18px;*/
/*}*/

/*div#header_main .elal_register {*/
/*	color: var(--text-primary);*/
/*	font-size: 16px;*/
/*}*/

/*div#header_main .login_btn {*/
/*	background: var(--btn-primary);*/
/*	color: #fff;*/
/*	padding: 4px 10px;*/
/*	border-radius: 3px;*/
/*}*/

/*div#header_main .login_btn:before {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f007';*/
/*	margin-left: 5px;*/
/*}*/

/*div#header_main > span {*/
/*    padding: 0px 10px;*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    border-width: 0px 0px 0px 1px;*/
/*    !*border-style: solid;*!*/
/*    border-color: #898989;*/
/*}*/

/*div#header_main > span img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*div#header_main > span:last-child {*/
/*    border-width: 0px;*/
/*}*/

/*div#header_main > span.user {*/
/*    font-weight: bold;*/
/*}*/

/*div#header_main > span.user:before {font-family: 'FontAwesome';content: '\f007';margin-left: 3px;}*/

/*div#header_main > span.status {*/
/*    font-weight: bold;*/
/*}*/

/*span.status.status_gold {*/
/*    color: #c28900;*/
/*	font-weight: bold;*/
/*}*/

/*div#logo {*/
/*    width: 100%;*/
/*    float: left;*/
/*	text-align: left;*/
/*}*/

/*.mobile_scroll_bar div#logo {*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 100%;*/
/*}*/

/*div#logo img {*/
/*	width: 100px;*/
/*}*/

/*.mobile_scroll_bar div#logo img {*/
/*	width: 205px;*/
/*}*/

/*#header span.cart {*/
/*	cursor: pointer;*/
/*}*/

/*div#header_mobile .logo {*/
/*	display: inline-block;*/
/*	!*max-width: 158px;*!*/
/*}*/

/*div#header_mobile .logo a {*/
/*    cursor: default;*/
/*	max-width: 100%;*/
/*}*/

/*div#header_mobile .logo a img {*/
/*	max-width: 100%;*/
/*	max-height: 40px;*/
/*}*/

/*!* .loby_section.promotions_section .gallery_elems {*/
/*    margin-top: -10px;*/
/*    margin-bottom: 10px;*/
/*} *!*/

/*span.cart,*/
/*a.favorite,*/
/*span.favorite{*/
/*	height: 40px;*/
/*	width: 40px;*/
/*	text-align: center;*/
/*	line-height: 40px;*/
/*	font-size: 16px;*/
/*	color: var(--text-secondary);*/
/*	background-color: var(--cart-background-color);*/
/*	border-radius: 50%;*/
/*	display: inline-block;*/
/*	position: relative;*/
/*	font-weight: bold;*/
/*	cursor: pointer;*/
/*}*/

/*#header .favorite,*/
/*#header .cart {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 48px;*/
/*	width: 48px;*/
/*	font-size: 18px;*/
/*}*/

/*.header-icons .cart_num {*/
/*	position: absolute;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	width: 22px;*/
/*	height: 22px;*/
/*	border-radius: 50%;*/
/*	!* border-style: solid; *!*/
/*	border-width: 1px;*/
/*	border-color: var(--btn-gradient);*/
/*	background: var(--btn-gradient);*/
/*	color: var(--cart-color);*/
/*	font-weight: bold;*/
/*	right: -7px;*/
/*	top: -1px;*/
/*	line-height: 18px;*/
/*	text-align: center;*/
/*	font-size: 13px;*/

/*}*/

/*a.favorite:before,*/
/*span.favorite:before {*/
/*	font-family: 'FontAwesome';*/
/*	content: url(https://www.htzone.co.il/_media/images/empty_heart.svg);*/
/*	font-weight: 800;*/
/*}*/

/*a.favorite.active:before,*/
/*span.favorite.active:before {*/
/*	content: url(https://media.htzone.co.il/Images_New/IAI_green_heart.png) !important;*/
/*}*/

/*a.favorite.has_favorites:before {*/
/*	content: url(https://media.htzone.co.il/Images_New/IAI_green_heart.png) !important;*/
/*}*/

/*.item span.favorite:before,*/
/*.item-title-container .favorite:before{*/
/*	font-family: 'FontAwesome';*/
/*	content: url(https://www.htzone.co.il/_media/images/empty_heart.svg);*/
/*	font-weight: 400;*/
/*}*/

/*span.cart:before {*/
/*	font-family: 'FontAwesome';*/
/*	content: url(https://media.htzone.co.il/Images_New/IAI_cart_green.png);*/
/*}*/

/*div#header_left_menu > span {*/
/*    display: inline-block;*/
/*	vertical-align: middle;*/
/*    font-size: 18px;*/
/*    !*line-height: 1;*!*/
/*    padding: 0px 10px;*/
/*    cursor: pointer;*/
/*	margin-top: 20px;*/
/*}*/

/*div#header_left_menu > span.sale {*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 0px 2px;*/
/*    border-color: #898989;*/
/*}*/

/*div#header_left_menu > span.wishlist:before, div#header_left_menu > span.sale:before {*/
/*    font-family: 'FontAwesome';*/
/*    margin-left: 5px;*/
/*}*/

/*.header-icons .cart.inline,*/
/*.header-icons .cart,*/
/*.header-icons {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*}*/

/*div#header_left_menu > span.sale:before {*/
/*    content: '\f02b';*/
/*}*/

/*div#header_left_menu > span.wishlist:before {*/
/*    content:url(https://www.htzone.co.il/_media/images/empty_heart.svg);*/
/*    color: var(--site_primary);*/
/*}*/

/*.icon:before {*/
/*	font-family: 'FontAwesome';*/
/*}*/

/*#search .icon {*/
/*	position: absolute;*/
/*	left: 0;*/
/*	line-height: 60px;*/
/*	width: 44px;*/
/*	top: 0px;*/
/*	height: 99%;*/
/*	border-radius: 4px 7px 7px 4px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	color: #777777;*/
/*	z-index: -1;*/
/*	cursor: pointer;*/
/*}*/

/*#search .icon:before {*/
/*	font-family: 'FontAwesome';*/
/*	font-size: 18px;*/
/*	!*color: #777777;*!*/
/*	content: url(https://media.htzone.co.il/Images_New/search_IAI.png);*/
/*}*/

/*ul.menu_top_cat {*/
/*    height: 0px;*/
/*    margin: 0;*/
/*    !* padding: 30px 0px; *!*/
/*    padding: 0px;*/
/*    overflow: hidden;*/
/*	overflow-y: scroll;*/
/*    transition: all 0.4s ease-in-out;*/
/*	list-style: none;*/
/*}*/

/*#header .nav_menu.open ul.menu_top_cat {*/
/*    padding-top: 10px;*/
/*}*/

/*.nav_menu.open ul.menu_top_cat {*/
/*	max-height: 640px;*/
/*	height: 60vh;*/
/*	!*height: calc(80vh - 100px);*!*/
/*	!*overflow-y: auto;*!*/
/*}*/

/*.menu_top_cat::-webkit-scrollbar {*/
/*	width: 6px;*/
/*	margin-left: 2px;*/
/*}*/

/*.menu_top_cat::-webkit-scrollbar-track {*/
/*	background: #f1f1f1;*/
/*}*/

/*.menu_top_cat::-webkit-scrollbar-thumb {*/
/*	background: #a6adae61;*/
/*	border-radius: 5px;*/
/*}*/

/*.menu_top_cat::-webkit-scrollbar-thumb:hover {*/
/*	background: var(--site_primary);*/
/*}*/

/*.nav_menu {*/
/*	!*width: 287px;*!*/
/*	display: block;*/
/*	position: relative;*/
/*	!* margin-top: -17px; *!*/
/*	!*z-index: 1;*!*/
/*	color: var(--text-primary);*/
/*	height: 100%;*/
/*}*/

/*#header .content_wrapper {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	align-items: center;*/
/*    max-width: 100%;*/
/*    !*padding: 20px 65px;*!*/
/*    width: 100%;*/
/*	padding: 10px 0;*/
/*}*/

/*#header_mobile .content_wrapper.hidden {*/
/*	padding: 25px 0 0;*/
/*}*/

/*#header_wrapper #header .header-links {*/
/*	position: relative;*/
/*	display: flex;*/
/*	background-color: var(--site_primary);*/
/*	margin: 0 -4vw;*/
/*	padding: 0 4vw;*/
/*	color: #fff;*/
/*	align-items: center;*/
/*}*/

/*#header_wrapper #header .header-links .header-nav-links{*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	list-style: none;*/
/*	margin: 0;*/
/*	flex-basis: 85%;*/
/*	font-size: 17.5px;*/
/*}*/

/*#header_wrapper #header .header-links .header-nav-links li{*/
/*	font-size: 19px;*/
/*}*/
/*#header_wrapper #header .header-links .header-nav-links li a{*/
/*	color: #fff;*/
/*	padding: 15px;*/
/*	font-weight: inherit;*/
/*}*/
/*#header_wrapper #header .header-links .header-nav-links li a:visited{*/
/*	color: #fff;*/
/*}*/

/*#header_wrapper #header .header-links .header-nav-links li.highlighted{*/
/*	font-weight: bold !important;*/
/*	background: var(--btn-gradient);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*#header .nav_menu_butt {*/
/*	display: flex;*/
/*	flex-direction: row-reverse;*/
/*	justify-content: space-between;*/
/*	text-align: center;*/
/*	font-weight: bold;*/
/*	cursor: pointer;*/
/*	background: var(--menu-cat-primary);*/
/*	color: black;*/
/*	!* height: 70px; *!*/
/*	!* line-height: 70px; *!*/
/*	padding: 6.5px 15px;*/
/*	font-size: 19px;*/
/*	border-radius: 11px;*/
/*	margin: 8px 0;*/
/*	gap: 15px;*/
/*}*/

/*#header .nav_menu_butt:after {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f0c9';*/
/*	!*margin-right: 15px;*!*/
/*}*/

/*div#menu_mobile ul.menu_top_cat > li:before, #menu_mobile ul.menu_cat > .menu_cat_content > li > span:before {*/
/*	content: '\f104';*/
/*	left: 0;*/
/*	position: absolute;*/
/*	font-weight: bold;*/
/*	font-size: 20px;*/
/*	font-family: 'FontAwesome';*/
/*}*/

/*#menu_mobile ul.menu_cat > .menu_cat_content > li > span:before {*/
/*	content: '\f106';*/
/*}*/

/*#menu_mobile ul.menu_cat > .menu_cat_content > li.closed > span:before {*/
/*	content: '\f107';*/
/*}*/

/*.nav_menu_content {*/
/*	background-color: #fff;*/
/*	position: absolute;*/
/*	width: 190%;*/
/*	left: -35%;*/
/*	z-index: 5;*/
/*}*/

/*ul.menu_top_cat > li {*/
/*   !*padding: 15px 10px;*!*/
/*	padding-right: 45px;*/
/*   position: relative;*/
/*   cursor: default;*/
/*}*/

/*ul.menu_top_cat > li span {*/
/*    font-size: 18px;*/
/*	display: inline-block;*/
/*	width: 100%;*/
/*	padding: 15px 10px;*/
/*}*/

/*ul.menu_top_cat > li.active {*/
/*    background: var(--site-background);*/
/*}*/

/*ul.menu_top_cat > li.active span {*/
/*    font-weight: bold;*/
/*	color: #fff;*/
/*}*/

/*div#nav_cat_wrapper {*/
/*	position: absolute;*/
/*	right: 3%;*/
/*	!*top: 100%;*!*/
/*	!*width: auto;*!*/
/*	!* max-width: 100%; *!*/
/*	left: 190px;*/
/*	z-index: 10;*/
/*}*/

/*ul.menu_cat {*/
/*	max-height: 680px;*/
/*	height:60vh;*/
/*	!*height:calc(80vh - 61px);*!*/
/*	right: 190px;*/
/*    top: 0;*/
/*    background: var(--site-background);*/
/*    overflow: auto;*/
/*    padding: 30px 30px;*/
/*   !* column-count: 3; *!*/
/*    column-gap: 0;*/
/*	position: absolute;*/
/*    display: none;*/
/*    width: 100%;*/
/*	list-style: none;*/
/*	margin: 0;*/
/*	padding: 35px 50px 25px;*/
/*}*/

/*ul.menu_cat::-webkit-scrollbar {*/
/*	width: 6px;*/
/*}*/

/*ul.menu_cat::-webkit-scrollbar-track {*/
/*	background: #f1f1f1;*/
/*}*/

/*ul.menu_cat::-webkit-scrollbar-thumb {*/
/*	background: #a6adae61;*/
/*	border-radius: 5px;*/
/*}*/

/*ul.menu_cat::-webkit-scrollbar-thumb:hover {*/
/*	background: var(--site_primary);*/
/*}*/

/*.menu_cat #promoted_items_cart .gallery_title {*/
/*    margin-bottom: 52px;*/
/*}*/

/*.menu_cat_title.title {*/
/*    font-weight: normal;*/
/*}*/

/*ul.menu_cat > .menu_cat_content > li > span a, #mobile_menu ul.menu_cat > .menu_cat_content > li > span {*/
/*	font-size: 18px;*/
/*	!* margin-bottom: 15px; *!*/
/*	color: var(--category-primary);*/
/*	font-weight: bold;*/
/*}*/

/*ul.menu_cat > .menu_cat_content > li {*/
/*	!*margin-top: 30px;*!*/
/*    display: inline-block;*/
/*    vertical-align: top;*/
/*    !*margin-left: 50px;*!*/
/*    width: 180px;*/
/*	position: relative;*/
/*}*/

/*#header .menu_cat_title.title:after {*/
/*	content: '>';*/
/*	margin-right: 10px;*/
/*	*/
/*}*/

/*#menu_mobile .menu_cat_title.title:before {*/
/*	content: '<';*/
/*	margin-left: 10px;*/
/*	*/
/*}*/

/*.menu_cat_content span {*/
/*	display: block;*/
/*	height: auto;*/
/*	background: var(--btn-gradient);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*ul.menu_subcat {*/
/*	list-style: none;*/
/*	padding: 0;*/
/*	margin-top: 10px;*/
/*	font-size: 15px;*/
/*}*/

/*ul.menu_subcat li {*/
/*    padding: 3px 0;*/
/*}*/

/*ul.menu_subcat li a {*/
/*	margin: 5px 0px;*/
/*	!* color: #444444; *!*/
/*	color: var(--footer-primary);*/

/*}*/

/*ul.menu_subcat li a:hover {*/
/*	font-weight: bold;*/
/*	color: var(--site_primary);*/
/*}*/

/*ul.menu_cat > .menu_cat_content > li > span a:hover {*/
/*	color: var(--site_primary);*/
/*}*/

/*div#nav_wrapper {*/
/*    z-index: 2;*/
/*    !*position: absolute;*!*/
/*	!*width: 100vw;*!*/
/*	!*height: 10px;*!*/
/*}*/

/*.desc_mobile {*/
/*	display: none;*/
/*}*/

/*.rank_form .mobile_butt {*/
/*	display: none;*/
/*	font-size: 18px;*/
/*	font-weight: bold;*/
/*	color: var(--site_primary);*/
/*}*/

/*#product_main > .content_wrapper > .inline > * {*/
/*	vertical-align: top;*/
/*}*/

/*.nav_butt_icon:after {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f0c9';*/
/*	font-size: 30px;*/
/*	line-height: 40px;*/
/*	cursor: pointer;*/
/*}*/

/*.nav_butt_icon {*/
/*    margin-left: 20px;*/
/*}*/

/*#header_mobile .nav_menu {*/
/*	width: auto;*/
/*}*/

/*#header_mobile .search_butt {*/
/*	margin-left: 25px;*/
/*}*/

/*#header_mobile .search_butt:after {*/
/*	font-size: 20px;*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f002';*/
/*	*/
/*}*/

/*div#menu_mobile {*/
/*	display: block !important;*/
/*}*/

/*div#menu_mobile {*/
/*	display: none;*/
/*}*/

/*div#menu_mobile.open {*/
/*	display: block;*/
/*}*/

/*div#menu_mobile, #search_mobile {*/
/*	position: absolute;*/
/*	background-color: #fff;*/
/*	right: -4vw;*/
/*	top: 35px;*/
/*	height: 0;*/
/*	padding: 0px 35px;*/
/*	overflow: hidden;*/
/*	transition: all 0.4s ease-in-out;*/
/*	max-width: 95vw;*/
/*	width: 600px;*/
/*	z-index: 5;*/
/*	overflow-y: auto;*/
/*}*/

/*!*div#search_mobile.open,*!*/
/*.open div#menu_mobile {*/
/*    padding: 15px 15px;*/
/*    height: 850px;*/
/*    max-height: 70vh;*/
/*}*/

/*div#menu_mobile.fixed-search {*/
/*	right: -3vw;*/
/*	top: 8%;*/
/*}*/

/*div#search_mobile .search_results_wrapper {*/
/*    position: relative;*/
/*	padding: 0;*/
/*}*/

/*div#search_mobile .search_results_wrapper.search_padding,*/
/*#header .search_results_wrapper.search_padding {*/
/*	padding: 30px 2.5% 15px;*/
/*}*/

/*div#search_mobile {*/
/*    background-color: #fff;*/
/*}*/

/*#header_mobile .login-btn {*/
/*	cursor: pointer;*/
/*}*/

/*.user_name.user {*/
/*    color: var(--footer-primary);*/
/*    font-size: 14px;*/
/*	font-weight: bold;*/
/*}*/

/*!*.user_name.user:before {*!*/
/*!*	font-family: 'FontAwesome';*!*/
/*!*	margin-left: 6px;*!*/
/*!*	content: '\f007';*!*/
/*!*}*!*/

/*.menu_user > div {*/
/*    padding: 5px 0px;*/
/*}*/

/*.menu_user {*/
/*    color: var(--text-primary);*/
/*	padding: 10px 0px 18px;*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 1px;*/
/*    border-color: #ebebeb;*/
/*}*/

/*.menu_user .inline > * {*/
/*    padding: 0px 9px;*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 0px 2px;*/
/*    border-color: #eeeeee;*/
/*    line-height: 25px;*/
/*}*/

/*.menu_user .inline > *:last-child {*/
/*    border: none;*/
/*}*/

/*.menu_user span.points .num {*/
/*    font-size: 18px;*/
/*}*/

/*.menu_user .inline > *:first-child {*/
/*    padding-right: 0;*/
/*}*/

/*div#menu_mobile .menu_nav > .float_left > * {*/
/*    font-weight: bold;*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 0px 1px;*/
/*    border-color: #eeeeee;*/
/*    padding: 0px 12px;*/
/*}*/

/*div#menu_mobile .menu_nav > .float_left > *:last-child {*/
/*    border: none;*/
/*    padding-left: 0;*/
/*}*/

/*.search.icon:before {*/
/*    content: '\f002';*/
/*}*/

/*.home.icon:before {*/
/*    content: '\f015';*/
/*}*/

/*.close.icon:before {*/
/*    content: '\f00d';*/
/*	cursor: pointer;*/
/*}*/

/*div#menu_mobile .menu_nav .close.icon:before {*/
/*    font-size: 20px;*/
/*    margin-top: -5px;*/
/*	display: inline-block;*/
/*}*/

/*div#menu_mobile {*/
/*    box-shadow: 1px 5px 8px rgba(0,0,0,0.2);*/
/*}*/

/*.nav_wrapper {*/
/*    position: relative;*/
/*}*/

/*div#menu_mobile ul.menu_cat {*/
/*    right: 0px;*/
/*	padding: 0px;*/
/*	height: 550px;*/
/*	background: #fff;*/
/*	overflow-y: auto;*/
/*}*/

/*div#mobile_nav_cat_wrapper .butt_light {*/
/*    font-size: 16px;*/
/*    font-weight: normal;*/
/*}*/

/*.menu_cat_top {*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 1px;*/
/*    border-color: #eeeeee;*/
/*    padding-bottom: 15px;*/
/*}*/

/*#menu_mobile ul.menu_cat > li {*/
/*    margin: 0;*/
/*    width: 100%;*/
/*	font-size: 18px;*/
/*}*/

/*#menu_mobile ul.menu_cat > li > span {*/
/*    display: block;*/
/*    line-height: 1.44;*/
/*    margin: 0;*/
/*    padding: 15px 0px;*/
/*}*/

/*ul.menu_cat > li:not(.closed) > span, ul.menu_cat > li:hover > span {*/
/*	font-weight: bold;*/
/*}*/

/*.closed ul.menu_subcat {*/
/*    margin-top:  0;*/
/*    height: 0;*/
/*    overflow: hidden;*/
/*	transition: all 0.4s linear;*/
/*}*/

/*ul.search_results_inner {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    text-align: right;*/
/*	margin: 0px;*/
/*}*/

/*ul.search_results_inner li {*/
/*    cursor: pointer;*/
/*    font-size: 18px;*/
/*	padding: 0px 10px;*/
/*}*/

/*.search_results_wrapper {*/
/*	padding: 30px 5% 15px;*/
/*    position: absolute;*/
/*	top: 65px;*/
/*    background-color: #fff;*/
/*    width: 100%;*/
/*    margin-top: -15px;*/
/*    border-radius: 0px 0px 10px 10px;*/
/*    max-height: 0;*/
/*    overflow: hidden;*/
/*    padding: 0 5%;*/
/*    transition: max-height 0.4s linear;*/
/*}*/


/*div#search_mobile.open .search_results_wrapper,*/
/*#header .search_results_wrapper.search_padding {*/
/*	background-color: #fff;*/
/*    padding: 30px 5% 15px;*/
/*    max-height: 80vh;*/
/*	overflow-y: auto;*/
/*}*/

/*.search_results_wrapper::-webkit-scrollbar {*/
/*	width: 6px;*/
/*	margin-left: 2px;*/
/*}*/

/*.search_results_wrapper::-webkit-scrollbar-track {*/
/*	background: #f1f1f1;*/
/*}*/

/*.search_results_wrapper::-webkit-scrollbar-thumb {*/
/*	background: #a6adae61;*/
/*	border-radius: 5px;*/
/*}*/

/*.search_results_wrapper::-webkit-scrollbar-thumb:hover {*/
/*	background: var(--site_primary);*/
/*}*/

/*.search_results_all.butt_light {*/
/*    font-size: 18px;*/
/*}*/

/*.search_results_all.butt_light:after {*/
/*    font-family: 'FontAwesome';*/
/*	content: '\f104';*/
/*	margin-right: 10px;*/
/*}*/

/*div#filter_div {*/
/*	!*box-shadow: 0px 0px 12px 0px #00000012;*!*/
/*	background-color: #fff;*/
/*	padding: 15px;*/
/*	border-radius: 7px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.filter_section {*/
/*    padding: 15px;*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 1px;*/
/*	border-color: var(--site-borders-primary);*/
/*}*/

/*.filter_section.inline:nth-child(1) {*/
/*	padding: 0 15px 5px;*/
/*}*/

/*.side_filter {*/
/*    width: 273px;*/
/*}*/

/*.filter_section .butt_light.float_left {*/
/*	line-height: 30px;*/
/*}*/

/*.filter_subtitle {*/
/*    font-weight: bold;*/
/*    font-size: 18px;*/
/*}*/

/*.filter_subtitle:last-child {*/
/*	cursor: pointer;*/
/*}*/

/*ul.filter_list {*/
/*    padding: 0;*/
/*    list-style: none;*/
/*}*/

/*ul.filter_list input {*/
/*    margin-left: 18px;*/
/*}*/

/*.search_results_section ul.search_results_inner {*/
/*    color: #444444;*/
/*}*/

/*.search_results_section {*/
/*	display: none;*/
/*}*/

/*.search_results_title {*/
/*    color: #6f7584;*/
/*    font-weight: bold;*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 1px;*/
/*    border-color: #eeeeee;*/
/*    padding: 5px 0px;*/
/*}*/

/*div#search_mobile .icon.close {*/
/*    position: absolute;*/
/*    left: 5%;*/
/*}*/


/*div#search_mobile .search_results_wrapper {*/
/*    background-color: #fff;*/
/*	padding-right: 0;*/
/*	padding-left: 0;*/
/*	top: 0;*/
/*}*/

/*#search_mobile.open.show .search_results_wrapper {*/
/*	background-color: #fff;*/
/*}*/

/*div#search_mobile div#search input {*/
/*    text-align: right;*/
/*    font-size: 16px;*/
/*	height: 46px;*/
/*	line-height: 45px;*/
/*}*/

/*div#search_mobile #search .icon {*/
/*    line-height: 36px;*/
/*}*/

/*.filter_section .butt_light {*/
/*    padding: 0;*/
/*}*/

/*.filter_section.collapsable .filter_subtitle:last-child:after {*/
/*	content: 'הצג יותר';*/
/*	position: absolute;*/
/*	left: 0;*/
/*	color: var(--cart-color);*/
/*	font-size: 15px;*/
/*	font-weight: normal;*/
/*}*/

/*.filter_subtitle {*/
/*    position: relative;*/
/*}*/

/*.filter_subtitle:last-child {*/
/*	padding-bottom: 20px;*/
/*}*/

/*.filter_section.collapsable.collapsed .filter_subtitle:after {*/
/*	content: 'הצג פחות';*/
/*	color: var(--cart-color);*/
/*	font-size: 15px;*/
/*	font-weight: normal;*/
/*}*/

/*.collapsed ul.filter_list {*/
/*    height: 130px;*/
/*}*/

/*ul.filter_list {*/
/*    overflow: hidden;*/
/*	max-height: 130px;*/
/*}*/

/*.full_height ul.filter_list {*/
/*	max-height: 1000px;*/
/*}*/


/*.filter_section.dont_expand .filter_subtitle:after {*/
/*	display: none;*/
/*}*/

/*.filter_section.dont_expand .filter_subtitle {*/
/*	pointer-events: none;*/
/*	cursor: text;*/
/*}*/

/*.filter_section.full_height .filter_subtitle:last-child:after {*/
/*	content: 'הצג פחות';*/
/*}*/

/*.collapsed .show_more {*/
/*	display: none;*/
/*}*/

/*.show_more:after {*/
/*    margin-right: 8px;*/
/*    content: '\f107';*/
/*	font-family: 'FontAwesome';*/
/*}*/

/*.full_height .show_more:after {*/
/*    content: '\f106';*/
/*}*/

/*ul.filter_list li {*/
/*    padding: 6px 0px;*/
/*    font-size: 14px;*/
/*}*/

/*ul.filter_list li label {*/
/*	display: flex;*/
/*}*/

/*ul.filter_list li label .filter_container {*/
/*	display: flex;*/
/*	flex-direction: row;*/
/*	justify-content: space-between;*/
/*	width: 100%;*/
/*}*/

/*span.checkbox {*/
/*    width: 23px;*/
/*    height: 20px;*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    border-style: solid;*/
/*    border-width: 2px;*/
/*    margin-left: 12px;*/
/*	border-radius: 4px;*/
/*}*/

/*.filter_title {*/
/*    font-size: 22px;*/
/*    font-weight: bold;*/
/*}*/

/*.checked span.checkbox {*/
/*    border-color: var(--site_primary);*/
/*}*/

/*li.checked label {*/
/*    font-weight: bold;*/
/*    color: 00003c;*/
/*}*/

/*.checked span.checkbox:before {*/
/*    position: absolute;*/
/*    content: '✔';*/
/*    color: var(--site_primary);*/
/*    font-size: 25px;*/
/*    top: -10px;*/
/*    right: -2px;*/
/*    font-weight: bold;*/
/*	font-family: 'FontAwesome';*/
/*}*/

/*span.checkbox {*/
/*    position: relative;*/
/*}*/

/*.range_slider {*/
/*    width: 100%;*/
/*    !* background-color: #989db3; *!*/
/*    height: 2px;*/
/*    position: relative;*/
/*}*/

/*!*.range_slider:before {*!*/
/*!*    position: absolute;*!*/
/*!*    left: -2px;*!*/
/*!*    content: '•';*!*/
/*!*    top: -24px;*!*/
/*!*    font-size: 25px;*!*/
/*!*    color: #989db3;*!*/
/*!*	z-index: 1;*!*/
/*!*}*!*/

/*span.range_num.range_divider {*/
/*	transform: translate(75%, -22%);*/
/*	border: none;*/
/*	font-weight: bold;*/
/*}*/

/*span.range_num.range_divider:before {*/
/*	content: '';*/
/*}*/

/*.range_bar.inline {*/
/*    position: absolute;*/
/*	font-size: 0;*/
/*}*/

/*!*.range_slider:after {*!*/
/*!*    position: absolute;*!*/
/*!*    right: -8px;*!*/
/*!*    content: '•';*!*/
/*!*    top: -24px;*!*/
/*!*    font-size: 25px;*!*/
/*!*    color: #989db3;*!*/
/*!*	z-index: 1;*!*/
/*!*}*!*/

/*span.range_num {*/
/*	display: flex;*/
/*	flex-direction: row-reverse;*/
/*	justify-content: center;*/
/*	position: absolute;*/
/*	font-size: 14px;*/
/*	margin-top: 10px;*/
/*	border: 1px solid var(--site-borders-primary);*/
/*	padding: 5px 20px;*/
/*	border-radius: 8px;*/
/*	text-align: center;*/
/*	width: 85px;*/
/*	bottom: 0;*/
/*}*/

/*span.range_num:before {*/
/*	content: ' ₪';*/
/*}*/

/*span.range_num.start {*/
/*    left: 0;*/
/*}*/

/*.range_slider {*/
/*    margin: 35px 0px;*/
/*}*/

/*span.circ, .range_bar.ui-widget-content .ui-state-default {*/
/*    width: 15px;*/
/*    height: 15px;*/
/*    border-radius: 50%;*/
/*	background-color: var(--site-borders-primary);*/
/*	border-style: solid;*/
/*	border-width: 1px;*/
/*	border-color: var(--site-borders-primary);*/
/*	position: absolute;*/
/*    top: -7px;*/
/*    margin-left: -7px;*/
/*    left: 0%;*/
/*	outline: none;*/
/*	cursor: grab;*/
/*}*/

/*span.circ, .range_bar.ui-widget-content .ui-state-default.ui-state-active {*/
/*	cursor: grabbing;*/
/*}*/

/*.range_bar.ui-widget-content > .ui-state-default {*/
/*	left: 100%;*/
/*}*/

/*.range_bar.inline {*/
/*    top: 25px;*/
/*    direction: ltr;*/
/*    text-align: left;*/
/*    width: 100%;*/
/*	height: 1px;*/
/*    background-color: #c5c5c5;*/
/*}*/

/*.range_slider {*/
/*    direction: ltr;*/
/*}*/

/*span.range_num.end {*/
/*    right: 0;*/
/*}*/

/*span.line.ui-widget.ui-widget-content  {*/
/*    height: 1px;*/
/*    width: 100%;*/
/*    background-color: var(--site-borders-primary);*/
/*	border: none;*/
/*}*/

/*.line span.line  {*/
/*	height: 1px;*/
/*	width: 100%;*/
/*	border: none;*/
/*	background: var(--btn-gradient);*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*.points_num_wrapper {*/
/*    width: 130px;*/
/*    margin: 15px auto;*/
/*    height: 28px;*/
/*    line-height: 28px;*/
/*    background-color: #fff;*/
/*    font-size: 12px;*/
/*}*/

/*.points_num_wrapper * {*/
/*    line-height: 28px;*/
/*}*/

/*.points_num_wrapper .points_num {*/
/*    font-size: 18px;*/
/*    margin-left: 4px;*/
/*}*/

/*.points_slider_wrapper.inline > * {*/
/*    vertical-align: middle;*/
/*}*/

/*.points_slider_wrapper.inline {*/
/*    direction: ltr;*/
/*    font-size: 11px;*/
/*	white-space: nowrap;*/
/*}*/

/*.points_slider_wrapper.inline .points_slider {*/
/*    margin-right: 8px;*/
/*    margin-left: 8px;*/
/*}*/

/*div#category_main .content_wrapper > .inline > * {*/
/*    vertical-align: top;*/
/*}*/

/*div#category_main .content_wrapper > .inline > .container {*/
/*    width: calc(100% - 278px);*/
/*}*/

/*.padding_0, .content_wrapper.padding_0 {*/
/*    padding: 0;*/
/*}*/

/*.padding_0_bottom, .content_wrapper.padding_0_bottom {*/
/*	padding-bottom: 0;*/
/*}*/

/*select[name="sort_select"],*/
/*select[name="sort_select_mobile"]{*/
/*    background-color: transparent;*/
/*    outline: none;*/
/*    border-width: 0px 0px 2px;*/
/*    margin-right: 5px;*/
/*    color: var(--text-gradient-fit);*/
/*    width: 125px;*/
/*    font-weight: bold;*/
/*    padding: 5px 0px;*/
/*    position: relative;*/
/*	border-bottom: 1px solid;*/
/*}*/

/*label.sort_select {*/
/*	line-height: 45px;*/
/*	color: var(--text-gradient-fit);*/
/*	font-weight: bold;*/
/*	font-size: 16px;*/
/*}*/

/*.filter_sort_mobile {*/
/*	display: none;*/
/*}*/

/*.subcat_background_pic_container img {*/
/*	width: 100%;*/
/*}*/

/*#filter_div .close.icon {*/
/*	display: none;*/
/*	text-align: left;*/
/*	position: absolute;*/
/*    top: 7px;*/
/*    left: 13px;*/
/*}*/

/*.category_top {*/
/*    !*background-color: #fff;*!*/
/*}*/

/*div#category_main .title {*/
/*	padding-top: 20px;*/
/*	color: var(--category-primary);*/
/*	font-size: 3.5vw;*/
/*	margin-bottom: 80px;*/
/*	border-bottom: 1px solid var(--site-borders-primary);*/
/*	padding-bottom: 0;*/
/*	background: var(--category-primary);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*.cart_item {*/
/*	position: relative;*/
/*}*/
/*	*/
/*.cart_item .icon.close {*/
/*	position: absolute;*/
/*	left: 20px;*/
/*}*/

/*div#cart_main select[name="sort_select"] {*/
/*    color: var(--text-primary);*/
/*    font-weight: normal;*/
/*    width: 162px;*/
/*	display: block;*/
/*	margin-bottom: 10px;*/
/*}*/

/*.cart_item {*/
/*    padding-left: 50px;*/
/*	*/
/*}*/

/*.cart_item .item_text, .cart_item .item_price {*/
/*	color: var(--text-primary);*/
/*}*/

/*#cart_main .inline > * {*/
/*    vertical-align: top;*/
/*}*/

/*.product_total_pay .butt {*/
/*    width: 100%;*/
/*    margin-top: 8px;*/
/*}*/

/*.product_total_pay .butt {*/
/*	padding: 10px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*}*/

/*#cart_main .product_total_pay .item_price {*/
/*    margin: 0;*/
/*}*/

/*#cart_main .product_total_pay {*/
/*    width: 350px;*/
/*    max-width: 100%;*/
/*}*/

/*.cart_div {*/
/*    max-width: 100%; */
/*	width: 620px;*/
/*	height: 100%;*/
/*}*/

/*#category_main .container_item.item {*/
/*    margin-bottom: 25px;*/
/*	text-align: right;*/
/*}*/

/*.promo_div {*/
/*    background-color: #fff;*/
/*	!*width: calc(100% - 710px);*!*/
/*	width: max-content;*/
/*    !*margin-right: 25px;*!*/
/*    max-width: 780px;*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    left: 10%;*/
/*    top: 5%;*/
/*    padding: 0px 15px;*/
/*	box-shadow: 0px 0px 12px 0px #00000012;*/
/*	border-radius: 8px;*/
/*}*/

/*div#cart_main {*/
/*	display: block;*/
/*    position: absolute;*/
/*	height: 0;*/
/*    overflow: hidden;*/
/*    transition: all 0.4s ease-in-out;*/
/*	background-color: #f8f8f8;*/
/*	width: 100%;*/
/*	z-index: 30;*/
/*}*/

/*div#cart_main.open {*/
/*	height: 550px;*/
/*	max-height: 70vh;*/
/*}*/

/*div#cart_main.fixed-search {*/
/*	position: fixed;*/
/*	top: 100px;*/
/*}*/

/*#header_wrapper {*/
/*	z-index: 12;*/
/*	background: #f8f8f8;*/
/*	position: sticky;*/
/*	top: 0;*/
/*	!*box-shadow: 0 0 3px 0 grey;*!*/
/*}*/

/*div#header_mobile > * {*/
/*	padding: 10px 4vw;*/
/*	margin: 0;*/
/*}*/

/*div#header_mobile {*/
/*	padding: 0;*/
/*}*/

/*div#header_wrapper .mobile_scroll_bar {*/
/*	position: fixed;*/
/*	top: 0px;*/
/*	width: 100%;*/
/*	background: #fff;*/
/*	height: 130px;*/
/*	border-bottom: 1px solid var(--light-blue);*/
/*	box-shadow: 0px -2px 10px 0px #0000001A;*/
/*}*/

/*.mobile_search_header.fixed-search {*/
/*	position: fixed;*/
/*	width: 95%;*/
/*	border: 0px transparent !important;*/
/*	top: 40px;*/
/*	left: 0;*/
/*	margin: 0 auto !important;*/
/*	z-index: 10;*/
/*}*/

/*#header_mobile span.inline.nav_menu.fixed-search  {*/
/*	position: fixed;*/
/*	top: 55px;*/
/*	right: 15px;*/
/*	z-index: 5;*/
/*}*/

/*#header_wrapper > * {*/
/*	background-color: #fff;*/
/*	padding: 0 4vw;*/
/*}*/

/*div#header_wrapper .mobile_scroll_bar {*/
/*	display: none;*/
/*}*/

/*!*.misc-header div:last-child  > * {*!*/
/*!*	display: flex;*!*/
/*!*	justify-content: center;*!*/
/*!*	flex-direction: column;*!*/
/*!*}*!*/

/*.misc-header .customer-service {*/
/*	flex-direction: row !important;*/
/*}*/

/*.misc-header .my-account {*/
/*	position: relative;*/
/*	gap: 10px;*/
/*	flex-direction: row;*/
/*	color: var(--site_primary);*/
/*}*/

/*.misc-header .my-account .profile {*/
/*	width: 32px;*/
/*	height: 32px;*/
/*	background-color: var(--light-blue);*/
/*	border-radius: 50%;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*}*/

/*.misc-header .my-account .profile:after {*/
/*	font-family: 'FontAwesome';*/
/*	font-weight: bold;*/
/*	content: url(https://media.htzone.co.il/Images_New/user_IAI.png);*/
/*	color: var(--footer-primary);*/
/*}*/

/*!*.product_side.container span:last-child {*!*/
/*!*	color: var(--footer-primary);*!*/
/*!*}*!*/

/*.product_side .item-customer-service{*/
/*	display: flex;*/
/*	align-items: center;*/
/*	color: var(--main-blue);*/
/*	gap: 10px;*/
/*}*/
/*.product_side .item-customer-service {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	color: var(--main-blue);*/
/*	gap: 10px;*/
/*	font-weight: bold;*/
/*}*/
/*!*.misc-header .my-account .profile:before {*!*/
/*!*	font-family: 'FontAwesome';*!*/
/*!*	content: '\f007';*!*/
/*!*}*!*/

/*!*.misc-header .customer-service {*!*/
/*!*	display: flex;*!*/
/*!*}*!*/

/*!*.misc-header .eilat .sun:before {*!*/
/*!*	font-family: 'FontAwesome';*!*/
/*!*	content: '\f185';*!*/
/*!*	font-weight: bold;*!*/
/*!*}*!*/

/*#cart_main > .content_wrapper > .inline > * {*/
/*    vertical-align: middle;*/
/*}*/

/*.gallery_title {*/
/*    font-size: 18px;*/
/*}*/

/*.cart_items_wrapper {*/
/*    height: 320px;*/
/*	!* max-height: 50%; *!*/
/*	height: calc(100% - 180px);*/
/*    overflow-x: hidden;*/
/*    overflow-y: auto;*/
/*}*/

/*.container.item_container > .container_items > a.template {*/
/*	display: none;*/
/*}*/

/*span.shekel_sign {*/
/*    position: absolute;*/
/*    left: 6px;*/
/*    line-height: 40px;*/
/*}*/

/*.calc_money {*/
/*    position: relative;*/
/*}*/

/*div#product_rank .content_wrapper {*/
/*	!* height: 700px; *!*/
/*}*/

/*.cart_item.template {*/
/*    display: none;*/
/*}*/

/*#cart_main .product_select {*/
/*    width: 125px;*/
/*}*/

/*#cart_main select[name="product_select"] {*/
/*    margin: 5px 0px;*/
/*}*/

/*#cart_main .item_text {*/
/*	height: 38px;*/
/*    max-width: 180px;*/
/*    font-size: 15px;*/
/*}*/

/*.loby_section.multiple_galleries .container_wrapper:not(.active) {*/
/*    display: none;*/
/*}*/

/*!* .loby_section.promotions_section .container.item_container.cubes_module .container_items {*/
/*	position: static;*/
/*} *!*/

/*.gallery_nav_butt {*/
/*    margin-left: 10px;*/
/*    cursor: pointer;*/
/*    color: #6f7584;*/
/*    border-style: solid;*/
/*    border-width: 0px 0px 2px;*/
/*    border-color: transparent;*/
/*}*/

/*.gallery_nav_butt:last-child {*/
/*    margin-left: 0;*/
/*}*/

/*.gallery_nav_butt.active {*/
/*    color: var(--site_primary);*/
/*    font-weight: bold;*/
/*    border-color: var(--site_primary);*/
/*}*/

/*.product_side.container .item_flag_container {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	gap: 10px;*/
/*	position: relative;*/
/*}*/

/*.product_side.container .btn_container .show_hidden_text {*/
/*	cursor: pointer;*/
/*}*/



/*.product_side.container .btn_container {*/
/*	padding: 10px;*/
/*}*/

/*.product_side.container .btn_container .show_hidden_text {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 20px;*/
/*	width: 20px;*/
/*	background-color: var(--site_primary);*/
/*	color: #fff;*/
/*	border-radius: 300px;*/
/*}*/

/*.product_side.container .hidden_text {*/
/*	display: none;*/
/*	position: absolute;*/
/*	width: 100%;*/
/*}*/

/*.product_side.container .hidden_text.open {*/
/*	display: block;*/
/*	background: #fff;*/
/*	border: 1px solid var(--site_primary);*/
/*	border-radius: 7px;*/
/*	padding: 30px 15px;*/
/*	z-index: 5;*/
/*	top: 100%;*/
/*	margin-top: 0px;*/
/*	box-shadow: 0px -2px 10px 0px #0000001A;*/
/*}*/

/*.product_side.container .item-title-container {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*}*/

/*.product_side.container .item-title-container div{*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	justify-content: flex-start;*/
/*}*/

/*.product_side.container .item-title-container .favorite-item{*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	justify-content: flex-start;*/
/*	cursor: pointer;*/
/*	height: 100%;*/
/*}*/

/*.product_side.container .item-title-container .favorite-item.active .favorite {*/
/*	color: #fff;*/
/*	font-size: 18px;*/
/*	font-weight: 800;*/
/*}*/

/*.item-title-container .favorite-item.active .favorite:before{*/
/*	font-weight: 800;*/
/*}*/

/*.product_side.container .item-title-container .favorite {*/
/*	transition: transform .15s ease-in-out, color .3s ease-in-out, font-size .17s ease-in-out;*/
/*}*/

/*.container_item_wrapper .favorite.active,*/
/*.product_side.container .favorite-item:hover .favorite {*/
/*	color: #fff;*/
/*	font-size: 18px;*/
/*	background: var(--favorite-background);*/
/*}*/

/*.container_item_wrapper .favorite.active:before,*/
/*.product_side.container .favorite-item:hover .favorite:before {*/
/*	font-weight: 800;*/
/*}*/

/*.product_side.container .item-title-container div span:last-child {*/
/*	width: min-content;*/
/*	text-align: center;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.product_side.container .item-title-container .favorite {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	background-color: var(--favorite-background);*/
/*	color: var(--light-blue);*/
/*	font-size: 17px;*/
/*	height: 30px;*/
/*	width: 30px;*/
/*}*/

/*a.loby_gallery_item {*/
/*    width: 19.5%;*/
/*	margin-bottom: 35px;*/
/*}*/

/*.loby_gallery_item_inner_wrapper {*/
/*    max-width: 90%;*/
/*    margin: auto;*/
/*	width: 180px;*/
/*}*/

/*.loby_gallery_item .item_text {*/
/*	font-size: 18px;*/
/*	text-align: center;*/
/*	color: var(--text-primary);*/
/*	overflow: hidden;*/
/*	height: 45px;*/
/*	margin-top: 20px;*/
/*}*/

/*.item_text {*/
/*	height: 90px;*/
/*}*/

/*.after_arrow:after {*/
/*	font-family: 'FontAwesome';*/
/*    content: '\f104';*/
/*    margin-right: 8px;*/
/*    font-weight: bold;*/
/*    font-size: 15px;*/
/*}*/

/*.butt_light.more_categories:after {*/
/*    content: '+';*/
/*    margin-right: 2px;*/
/*}*/

/*.loby_section.open .loby_gallery a.loby_gallery_item {*/
/*    display: inline-block;*/
/*}*/

/*.loby_section.open .butt_light.more_categories:after {*/
/*    content: '-';*/
/*}*/

/*.butt_light.more_categories {*/
/*    display: none;*/
/*    text-align: center;*/
/*    width: 150px;*/
/*    margin: 20px auto 0px;*/
/*}*/

/*.loby_gallery .gallery_items {*/
/*    height: 310px;*/
/*}*/

/*.loby_gallery .gallery_item {*/
/*    height: 100%;*/
/*    width: 1500px;*/
/*    max-width: 90vw;*/
/*	position: relative;*/
/*	text-align: right;*/
/*}*/

/*#home_gallery {*/
/*	max-width: 100vw;*/
/*	position: relative;*/
/*}*/

/*#home_gallery .gallery_elems .arrow_left,*/
/*#home_gallery .gallery_elems .arrow_right {*/
/*	position: absolute;*/
/*	width: 100px;*/
/*	height: 90px;*/
/*	line-height: 90px;*/
/*	background: #484848;*/
/*	background-color: rgba(0, 0, 0, .4);*/
/*	bottom: 50%;*/
/*	margin-bottom: -45px;*/
/*	border-radius: 50%;*/
/*	transform: translateY(-50%);*/
/*	cursor: pointer;*/
/*}*/

/*#home_gallery .gallery_elems .arrow_left .arrow,*/
/*#home_gallery .gallery_elems .arrow_right .arrow {*/
/*	height: 30px;*/
/*	width: 30px;*/
/*	position: absolute;*/
/*	font-size: 50px;*/
/*	bottom: 35%;*/
/*	cursor: pointer;*/
/*}*/

/*#home_gallery .gallery_elems .arrow_left span.arrow:after,*/
/*#home_gallery .gallery_elems .arrow_right span.arrow:after {*/
/*	font-weight: 300;*/
/*}*/

/*#home_gallery .gallery_elems .arrow_left .arrow {*/
/*	left: 60px;*/
/*}*/

/*#home_gallery .gallery_elems .arrow_right .arrow {*/
/*	right: 60px;*/
/*}*/

/*#home_benefits_section {*/
/*	background: #585858 !important;*/
/*}*/

/*#home_gallery.loby_gallery .gallery_item {*/
/*    max-width: calc(100vw - 17px);*/
/*    !* max-width: 100vw; *!*/
/*	width: 100%;*/
/*}*/

/*.loby_section {*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*	background: var(--site-background);*/
/*}*/

/*.loby_section.promotions_section {*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*}*/

/*.loby_section.subcat_section .arrow_right span.arrow:after {*/
/*	background: var(--btn-gradient);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*!* .loby_section.promotions_section .container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*	position: static;*/
/*	max-width: 100%;*/
/*}*/

/*.loby_section.promotions_section .container.item_container.cubes_module {*/
/*	height: auto;*/
/*}*/
/*	*/
/*.loby_section.promotions_section .gallery_elems .arrow_left, .loby_section.promotions_section .gallery_elems .arrow_right {*/
/*    display: none;*/
/*} *!*/

/*.sub_category_box .icon_wrapper img {*/
/*	height: 80%;*/
/*}*/
/*  */
/*.loby_gallery .gallery_item .item_img {*/
/*    height: 100%;*/
/*}*/

/*.loby_gallery .gallery .item_img img {*/
/*    width: 100%;*/
/*}*/

/*#product_main .gallery .item_img {*/
/*	width: 480px;*/
/*    height: 480px;*/
/*    margin: 0 auto;*/
/*	max-width: 100%;*/
/*}*/

/*#product_main hr {*/
/*	height: 1px;*/
/*	background-color: #DAE8F0;*/
/*	border: none;*/
/*}*/

/*.loby_gallery .gallery_items_inner {*/
/*    white-space: nowrap;*/
/*}*/

/*!* .loby_section .gallery_items_inner {*/
/*	width: 100%;*/
/*} *!*/

/*!*.loby_gallery .gallery_elems {*!*/
/*!*    width: 165px;*!*/
/*!*    margin: auto;*!*/
/*!*    position: relative;*!*/
/*!*}*!*/

/*.loby_gallery .gallery_elems arrow_left, .loby_gallery .gallery_elems arrow_right {*/
/*	bottom: 50px;*/
/*	cursor: pointer;*/
/*}*/

/*.disabled span.arrow {*/
/*    color: #bfbfbf;*/
/*	cursor: default;*/
/*}*/

/*.loby_gallery .gallery_nav {*/
/*	width: 150px;*/
/*	margin: auto;*/
/*	display: block;*/
/*	height: 30px;*/
/*	line-height: 30px;*/
/*	text-align: center;*/
/*}*/

/*.loby_gallery .gallery_nav > span {*/
/*	width: 8px;*/
/*	height: 8px;*/
/*	border-radius: 50%;*/
/*	margin: 9px 3px;*/
/*}*/

/*#home_gallery.loby_gallery .gallery_nav > span {*/
/*	background-color: #ccccd8;*/
/*}*/

/*.loby_gallery .gallery_nav > span.active {*/
/*	width: 10px;*/
/*	height: 10px;*/
/*}*/

/*#home_gallery.loby_gallery .gallery_nav > span.active {*/
/*	background-color: #898989;*/
/*}*/

/*.padding_bottom_50, .padding_bottom_50.content_wrapper {*/
/*	padding-bottom: 50px;*/
/*}*/

/*div#loby_top_gallery {*/
/*    background-color: #fff;*/
/*}*/

/*#body.home_page div.loby_section {*/
/*	background-color: #f2f2f2;*/
/*}*/

/*.butt.to_left {*/
/*	margin-left: 0;*/
/*	margin-right: auto;*/
/*	display: block;*/
/*}*/

/*.loby_section .title {*/
/*    margin: 0;*/
/*	line-height: 1;*/
/*}*/

/*.subtitle {*/
/*    font-size: 18px;*/
/*}*/

/*.loby_section .title,*/
/*.loby_section .title .subtitle {*/
/*    font-size: 30px;*/
/*	font-weight: bold;*/
/*	background: var(--category-primary);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*	color: var(--category-primary);*/
/*}*/

/*div#loby_top_gallery .title {*/
/*    font-size: 58px;*/
/*}*/

/*.loby_section.multiple_galleries .galleries_nav {*/
/*    !* line-height: 54px; *!*/
/*	margin-top: 32px;*/
/*}*/

/*div#loby_top_gallery .content_wrapper {*/
/*    padding-bottom: 0;*/
/*}*/

/*.title_img img {height: 52px;width: 42px;margin-left: 25px;}*/

/*div#home_footer .content_wrapper > div {*/
/*    width: 49%;*/
/*}*/

/*div#home_footer .content_wrapper > div:nth-child(2) img {*/
/*    height: 304px;*/
/*}*/

/*div#home_footer .content_wrapper div.img > img {*/
/*    max-width: 100%;*/
/*}*/

/*div#home_footer .content_wrapper > div {*/
/*    padding: 0px;*/
/*    vertical-align: top;*/
/*}*/

/*#home_footer .title, #home_footer .text {*/
/*	color: var(--text-primary);*/
/*	max-width: 400px;*/
/*	text-align: right;*/
/*}*/

/*#home_footer .title {*/
/*    font-size: 30px;*/
/*    margin: 5px 0px;*/
/*}*/

/*#home_footer .text {*/
/*    font-size: 18px;*/
/*}*/

/*#home_footer  .home_footer_text_div .title {*/
/*	font-weight: normal;*/
/*	font-size: 38px;*/
/*}*/

/*#home_footer  .home_footer_text_div .text {*/
/*	font-weight: light;*/
/*}*/

/*#body.home_page div#home_footer.loby_section {*/
/*	background-color: #fff;*/
/*}*/

/*#body div#home_categories.loby_section {*/
/*	background-color: #fff;*/
/*}*/

/*.home_footer_img_div, .home_footer_text_div {*/
/*    margin-bottom: 70px;*/
/*	display: inline-block;*/
/*}*/

/*div#home_footer .content_wrapper > div:nth-child(1) {*/
/*    text-align: left;*/
/*	padding-left: 50px;*/
/*}*/

/*div#home_footer .content_wrapper > div:nth-child(2) {*/
/*   padding-right: 50px;*/
/*}*/

/*div#home_footer .content_wrapper > div:nth-child(1) > div {*/
/*    width: 400px;*/
/*	max-width: 100%;*/
/*}*/

/*div#home_footer .content_wrapper > div:nth-child(2) > div {*/
/*    width: 500px;*/
/*	max-width: 100%;*/
/*}*/

/*.item_content {*/
/*    position: absolute;*/
/*    bottom: 15px;*/
/*	width: 100%;*/
/*	max-width: 100%;*/
/*}*/

/*.item_content .item_title {*/
/*    !*text-shadow: 0 2px 5px rgba(255, 255, 255, 0.5);*!*/
/*    font-size: 30px;*/
/*    padding: 10px 0px;*/
/*    line-height: 1;*/
/*    color: #fff;*/
/*	height: auto !important;*/
/*	font-weight: bold;*/
/*}*/

/*.item_content .item_text {*/
/*    !*text-shadow: 0 2px 3px rgba(255, 255, 255, 0.8);*!*/
/*    font-size: 18px;*/
/*    padding: 3px 0px 10px;*/
/*    line-height: 1.1;*/
/*    color: #fff;*/
/*    letter-spacing: 0.2px;*/
/*    font-weight: normal;*/
/*    max-width: 80%;*/
/*	height: auto !important;*/
/*}*/

/*.item_content {*/
/*    padding: 0px 30px;*/
/*}*/

/*div#home_benefits_gallery .gallery_nav {*/
/*    display: none;*/
/*}*/

/*div#home_benefits_gallery.loby_gallery .gallery_elems {*/
/*    width: 100%;*/
/*}*/

/*div#home_benefits_gallery.loby_gallery .gallery_elems > div {*/
/*    bottom: 275px;*/
/*}*/


/*#home_benefits_gallery .gallery_items .item_img {*/
/*	position: relative;*/
/*	overflow-y: hidden;*/
/*	border-radius: 7px;*/
/*	width: 470px;*/
/*	height: 100%;*/
/*}*/

/*!*#home_benefits_gallery .gallery_items .item_img::before {*!*/
/*!*	content: '';*!*/
/*!*	position: absolute;*!*/
/*!*	top: 0;*!*/
/*!*	left: 0;*!*/
/*!*	right: 0;*!*/
/*!*	bottom: 0;*!*/
/*!*	background: linear-gradient(349.43deg, var(--footer-primary) 13.5%, rgba(0, 150, 255, 0.45) 45.97%, rgba(255, 255, 255, 0) 93.06%);*!*/
/*!*	z-index: 1;*!*/
/*!*}*!*/

/*#home_benefits_gallery .gallery_items .item_img img {*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	right: 0;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*}*/


/*#home_benefits_gallery.loby_gallery .gallery_items {*/
/*    height: 631px;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery .item_img {*/
/*	width: 100%;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery .item_img img {*/
/*	!*height: 600px;*!*/
/*    width: 470px;*/
/*	max-height: 600px;*/
/*	position: absolute;*/
/*    bottom: 0;*/
/*	right: 0;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.second img {*/
/*	height: 100%;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items a:nth-child(3) .gallery_item img {*/
/*	height: 655px;*/
/*	max-height: none;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .gallery_item {*/
/*    vertical-align: bottom;*/
/*	position: relative;*/
/*	height: 470px;*/
/*    width: 470px;*/
/*	margin: 0 12px;*/
/*	overflow: hidden;*/
/*	transition: height 0.4s linear;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .gallery_item {*/
/*	background-color: #585858;*/
/*	border-radius: 10px;*/
/*	padding: 4px;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.second {*/
/*	height: 600px;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.first {*/
/*	height: 535px;*/
/*}*/

/*div#home_benefits_gallery.loby_gallery .gallery_items_inner {*/
/*    height: auto;*/
/*	min-width: 100%;*/
/*	text-align: center;*/
/*    margin-bottom: 30px;*/
/*	bottom: 0;*/
/*}*/

/*!* .promotions_section .gallery_items_inner {*/
/*	height: auto;*/
/*} *!*/

/*div#body.home_page {*/
/*    !* background-color: #f2f2f2; *!*/
/*    background: var(--site-background);*/
/*}*/

/*div#home_benefits_gallery.loby_gallery .gallery_elems .arrow_left {*/
/*	left: -3%;*/
/*}*/

/*div#home_benefits_gallery.loby_gallery .gallery_elems .arrow_right {*/
/*	right: -3%;*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .item_img {*/
/*	position: relative;*/
/*	display: block;*/
/*	background: linear-gradient(356deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0.5));*/
/*}*/

/*#home_benefits_gallery.loby_gallery .gallery_items .item_img img {*/
/*	display: block;*/
/*	width: 100%;*/
/*	mix-blend-mode: overlay;*/
/*}*/

/*#home_gallery .gallery_items_inner {*/
/*	min-width: 100%;*/
/*}*/

/*#home_gallery.loby_gallery .gallery_items {*/
/*    height: calc(100vw * 0.3);*/
/*}*/

/*.cart_item_text .item_text {*/
/*    height: 50px;*/
/*}*/

/*!* .loby_section.promotions_section .container.item_container.cubes_module .container_items {*/
/*	width: 100%;*/
/*} *!*/

/*.desc_gallery {*/
/*    overflow: hidden;*/
/*}*/

/*#home_gallery.loby_gallery .gallery_elems {*/
/*    !* margin-top: 15px; *!*/
/*}*/

/*.section_title {*/
/*    margin-bottom: 35px;*/
/*}*/

/*div#home_benefits_gallery {*/
/*    max-width: 1480px;*/
/*    margin: auto;*/
/*}*/

/*.position_relative {*/
/*    position: relative;*/
/*}*/

/*.div_sort_select {*/
/*    position: absolute;*/
/*    bottom: -60px;*/
/*    left: 0;*/
/*}*/

/*span.sort_butt {*/
/*    pointer-events: auto;*/
/*}*/

/*div.filter-selection.open.mobile {*/
/*	display: flex !important;*/
/*	justify-content: flex-end;*/
/*	flex-direction: column;*/
/*	background: rgb(0 0 0 / 50%);*/
/*	width: 100%;*/
/*	height: 100vh;*/
/*	z-index: 2000;*/
/*	top: 0;*/
/*	right: 0;*/
/*	color: #fff;*/
/*}*/

/*div.filter-selection.open.mobile .filter-title {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: space-between;*/
/*	width: 100%;*/
/*	box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.12);*/
/*	margin-bottom: 0 !important;*/
/*}*/

/*div.filter-selection.open.mobile .filter-title h3 {*/
/*	padding: 0;*/
/*	margin: 0;*/
/*	color: var(--text-primary);*/
/*}*/

/*div.filter-selection.open.mobile .filter-title .close.icon {*/
/*	padding: 10px;*/
/*	cursor: pointer;*/
/*}*/

/*div.filter-selection.open.mobile .filter-title .close.icon:before {*/
/*	font-size: 19px;*/
/*}*/

/*div.filter-selection.open.mobile .options {*/
/*	position: absolute;*/
/*	bottom: 0;*/
/*	display: flex;*/
/*	align-items: flex-start;*/
/*	justify-content: center;*/
/*	flex-direction: column;*/
/*	width: 100%;*/
/*	background-color: #fff;*/
/*	color: var(--footer-primary);*/
/*	margin-bottom: 0;*/
/*	padding: 0 0 110px;*/
/*}*/

/*div.filter-selection.open.mobile .options > * {*/
/*	padding: 0 20px;*/
/*	margin: 0 auto;*/
/*}*/

/*div.filter-selection.open.mobile .options .option {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	font-size: 18px;*/
/*	color: var(--text-primary);*/
/*	width: 100%;*/
/*}*/

/*div.filter-selection.open.mobile .options .btn {*/
/*	font-size: 18px;*/
/*	width: 70%;*/
/*	margin: 5px auto;*/
/*	background: var(--cart-color);*/
/*	color: #fff;*/
/*	border: none;*/
/*	border-radius: 8px;*/
/*	padding: 10px;*/
/*	cursor: pointer;*/
/*}*/

/*div.filter-selection.open.mobile .options label {*/
/*	padding: 10px 0;*/
/*	width: 100%;*/
/*}*/

/*div.filter-selection.open.mobile .options .option input {*/
/*	margin: 0 5px;*/
/*}*/


/*.filter-selection.mobile {*/
/*	position: fixed;*/
/*}*/

/*.filter_sort_mobile {*/
/*    pointer-events: none;*/
/*	background: #fff;*/
/*    position: relative;*/
/*	border-radius: 7px;*/
/*}*/

/*span.filter_butt {*/
/*    pointer-events: all;*/
/*}*/

/*div#home_categories .item_img {*/
/*    height: 100px;*/
/*}*/

/*.home_footer_img_div .img {*/
/*    text-align: right;*/
/*}*/

/*.gallery .item_img img.img_mobile {*/
/*    display: none;*/
/*}*/

/*#cart_preview .cart_items_wrapper {*/
/*    height: auto;*/
/*}*/

/*#cart_preview span.icon.close {*/
/*    display: none;*/
/*}*/

/*#cart_preview .product_select_wrapper {*/
/*    display: none;*/
/*}*/

/*#cart_preview .product_amount {*/
/*    display: none;*/
/*}*/

/*#cart_preview .cart_item .inline > * {*/
/*    padding: 0px 5px;*/
/*	position: static;*/
/*}*/

/*#cart_preview .cart_item {*/
/*    padding: 0;*/
/*    height: 115px;*/
/*    box-shadow: 5px 5px 8px rgba(142, 140, 140, 0.09);*/
/*	margin-bottom: 7px;*/
/*}*/

/*#cart_preview .cart_item img {*/
/*	width: 105px;*/
/*	height: 105px;*/
/*	margin: 1px 0px;*/
/*}*/

/*#cart_preview .cart_item_text {*/
/*    max-width: calc(100% - 120px);*/
/*}*/

/*#cart_preview {    */
/*	position: fixed;*/
/*    left: 20px;*/
/*    top: 150px;*/
/*    background: #fff;*/
/*    padding: 10px 15px;*/
/*    text-align: right;*/
/*    color: var(--text-primary);*/
/*    box-shadow: 5px 6px 10px rgba(0,0,0,0.15);*/
/*    max-width: 90vw;*/
/*    width: 390px;*/
/*	z-index: 5;*/
/*}*/

/*.butt.add_to_cart {*/
/*    position: relative;*/
/*}*/

/*div#header_left_menu {*/
/*    text-align: left;*/
/*	display: block;*/
/*}*/

/*div#product_desc ul {*/
/*    margin: 0;*/
/*}*/

/*div.product_gallery {*/
/*    !* width: calc(100% - 450px); *!*/
/*    margin-left: 45px;*/
/*	width: 550px;*/
/*}*/

/*.product_gallery .gallery_item {*/
/*	width: 550px;*/
/*	border: 2px solid var(--light-blue);*/
/*	border-radius: 7px;*/
/*}*/

/*div.product_gallery .gallery_items {*/
/*	width: 100%;*/
/*}*/

/*.product_gallery img.brand_logo.field_img_brand {*/
/*	position: absolute;*/
/*    top: 73%;*/
/*    max-width: 200px;*/
/*	width: 15%;*/
/*}*/

/*.promo_div {*/
/*    height: fit-content;*/
/*    overflow-x: hidden;*/
/*    overflow-y: hidden;*/
/*}*/

/*.loby_section.subcat_section .container_item_wrapper, .loby_section.promotions_section .container_item_wrapper {*/
/*	width: 325px;*/
/*}*/

/*.favorite-items .loby_section.promotions_section .container_item_wrapper {*/
/*	width: 325px;*/
/*}*/

/*.container_item_wrapper .favorite {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 28px;*/
/*	width: 28px;*/
/*	font-size: 14px;*/
/*	color: var(--light-blue);*/
/*	background-color: var(--favorite-background);*/
/*	position: absolute;*/
/*	left: -1%;*/
/*	top: 19px;*/
/*	transform: translateX(70%);*/
/*	transition: transform .15s ease-in-out, color .3s ease-in-out, font-size .17s ease-in-out;*/
/*	z-index: 5;*/
/*}*/

/*.empty-favorites .favorite {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	height: 35px;*/
/*	width: 35px;*/
/*	font-size: 18px;*/
/*	color: var(--light-blue);*/
/*	background-color: #fff;*/
/*}*/

/*.container_item_wrapper .favorite.active {*/
/*	font-size: 18px;*/
/*}*/

/*.container_item_wrapper .misc-container {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	position: absolute;*/
/*	height: 40%;*/
/*	width: 100%;*/
/*	z-index: 2;*/
/*	right: 0;*/
/*	top: 5%;*/
/*	gap: 10px;*/
/*}*/

/*.container_item_wrapper .misc-container .text-tag {*/
/*	display: inline-block;*/
/*	z-index: 3;*/
/*	font-size: 16px;*/
/*	line-height: 1.5;*/
/*	width: max-content;*/
/*	padding: 0 10px;*/
/*	border-radius: 8px 0 0 8px;*/
/*}*/

/*.container_item_wrapper .misc-container .yellow-tag{*/
/*	color: var(--footer-primary);*/
/*	background-color: #F1C934;*/
/*	font-weight: bold;*/
/*}*/

/*.container_item_wrapper .misc-container .red-tag{*/
/*	color: #fff;*/
/*	background-color: #F01C00;*/
/*}*/

/*.item_flag_container .text-tag {*/
/*	display: inline-block;*/
/*	z-index: 3;*/
/*	font-size: 16px;*/
/*	line-height: 1.5;*/
/*	width: max-content;*/
/*	padding: 0 10px;*/
/*	border-radius: 8px;*/
/*	font-weight: bold;*/
/*}*/

/*.item_flag_container .text-tag.yellow-tag {*/
/*	color: var(--footer-primary);*/
/*	background-color: #F1C934;*/
/*}*/

/*.text-tag.red-tag .sale_flag_element {*/
/*	top: 40px !important;*/
/*}*/

/*.container_item_wrapper span.favorite:hover {*/
/*	font-size: 18px;*/
/*}*/

/*.container_item_wrapper span.favorite:before {*/
/*	transition: font-weight .15s ease-in-out;*/
/*	font-weight: 400;*/
/*}*/

/*.container_item_wrapper span.favorite:hover:before {*/
/*	font-weight: 800;*/
/*}*/

/*.category_title {*/
/*	margin-top: 30px;*/
/*}*/

/*.category_title .title {*/
/*	font-size: 50px;*/
/*	background: var(--category-primary);*/
/*	-webkit-background-clip: text;*/
/*	-webkit-text-fill-color: transparent;*/
/*}*/

/*.category_title hr {*/
/*	height: 1px;*/
/*	background-color: var(--site-borders-primary);*/
/*	border: none;*/
/*}*/

/*div#cart_main > .content_wrapper > .inline {*/
/*    height: 100%;*/
/*}*/

/*div#cart_main > .content_wrapper {*/
/*    position: static;*/
/*	padding-top: 35px;*/
/*	height: 100%;*/
/*}*/

/*.loby_section.subcat_section .gallery_nav, .loby_section.promotions_section .gallery_nav  {*/
/*    pointer-events: none;*/
/*    position: absolute;*/
/*}*/

/*.loby_section.subcat_section > .content_wrapper > .inline, .loby_section.promotions_section > .content_wrapper > .inline {*/
/*    margin-bottom: 20px;*/
/*}*/

/*#overlay {*/
/*	position: fixed;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	margin: 0;*/
/*	display: block;*/
/*	z-index: 10;*/
/*	background: rgba(0,0,0,0.6);*/
/*	top: 0;*/
/*}*/

/*.gallery_overlay {*/
/*	position: absolute;*/
/*	height: calc(100% - 27px);*/
/*	width: 100px;*/
/*	left: 0;*/
/*	top: 10px;*/
/*	background-image: linear-gradient(to right, #fff , #ffffff00);*/
/*	display: none;*/
/*}*/

/*span.color_label {*/
/*    width: 50px;*/
/*    display: inline-block;*/
/*	line-height: 1;*/
/*}*/

/*.loby_section .gallery .item_img img:not(.brand_logo) {*/
/*	width: 75%;*/
/*	!* height: 250px; *!*/
/*	object-fit: cover;*/
/*	margin: 0;*/
/*}*/

/*!* .loby_section.promotions_section .gallery .item_img img:not(.brand_logo) {*/
/*    height: auto;*/
/*	max-height: 100%;*/
/*}*/
/* *!*/
/*.collected_item_cell.collected_amount input {*/
/*	font-size: 19px;*/
/*    width: 25px;*/
/*    text-align: center;*/
/*    border: none;*/
/*    background: transparent;*/
/*    line-height: 21px;*/
/*    outline: none;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.item-table-options {*/
/*	display: grid;*/
/*	align-items: center;*/
/*	grid-template-columns: repeat(3, 1fr);*/
/*	border-bottom: 1px solid #d1e8f7;*/
/*	font-size: 19px;*/
/*	background-color: var(--light-blue);*/
/*	padding: 5px;*/
/*	margin: 0 10px*/
/*}*/

/*.item-table-options .item-table-cell {*/
/*	font-size: 16px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.item-table-options .collected_price {*/
/*	font-size: 21px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.collected_items .butt_light.toggle_collected_expand {*/
/*	float: left;*/
/*}*/

/*.item-table-options .nis:before {*/
/*	content: '₪';*/
/*	font-size: 12px;*/
/*	margin-right: 2px;*/
/*}*/

/*.item-table-options .collected_item_cell.collected_amount {*/
/*	justify-self: end;*/
/*	margin-left: 20%;*/
/*}*/

/*.item-table-options .nis span {*/
/*	position: relative;*/
/*	display: inline-block;*/
/*}*/

/*.price-container {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	position: relative;*/
/*	width: 100%;*/
/*	font-size: 1em;*/
/*}*/

/*.text-bold.item-price-money,*/
/*.item-price-before-discount {*/
/*	position: relative;*/
/*	z-index: 2;*/
/*}*/

/*.text-bold.item-price-money:before {*/
/*	content: '₪';*/
/*}*/

/*.item-price-money {*/
/*	font-weight: bold;*/
/*}*/

/*.item-price-before-discount {*/
/*	font-size: 19px;*/
/*	color: #757575 !important;*/
/*}*/

/*.discount-slash::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	left: 0;*/
/*	bottom: 50%;*/
/*	width: 100%;*/
/*	height: 1px;*/
/*	background-color: #757575;*/
/*	transform: rotate(346deg);*/
/*	z-index: 1;*/
/*}*/

/*.item-table-options .item_price_before_discount {*/
/*	text-decoration: none;*/
/*}*/

/*.item-table-options .nis span::after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	left: -30%;*/
/*	top: 73%;*/
/*	width: 150%;*/
/*	height: 1px;*/
/*	background-color: #757575;*/
/*	transform: rotate(347deg);*/
/*	transform-origin: left center;*/
/*}*/

/*.item-table-options .item-table-price{*/
/*	display: flex;*/
/*	align-items: center;*/
/*}*/

/*!*.collected_item_row .amount_add, .collected_item_row .amount_sub {*!*/
/*!*    width: 21px;*!*/
/*!*    height: 21px;*!*/
/*!*    line-height: 21px;*!*/
/*!*}*!*/

/*.nis:before {*/
/*	content: '₪';*/
/*	font-size: 12px;*/
/*	margin-right: 2px;*/
/*}*/

/*.collected_points:after {*/
/*    content: "נק'";*/
/*    font-size: 12px;*/
/*    margin-right: 2px;*/
/*}*/

/*.collected_item_cell {*/
/*	vertical-align: middle;*/
/*}*/

/*!*div.collected_item_row {*!*/
/*!*	display:none;*!*/
/*!*}*!*/

/*!*div.collected_item_row:nth-child(1), div.collected_item_row:nth-child(2), div.collected_item_row:nth-child(3), div.collected_item_row:nth-child(4) {*!*/
/*!*	display: table-row;*!*/
/*!*}*!*/

/*!*.collected_items.open div.collected_item_row {*!*/
/*!*	display: table-row;*!*/
/*!*}*!*/

/*.butt_light.toggle_collected_expand:after {*/
/*	content: 'עוד +';*/
/*}*/
/*	*/
/*.collected_items.open .butt_light.toggle_collected_expand:after {*/
/*	content: 'פחות -';*/
/*}*/

/*.collected_item_cell.collected_full_price {*/
/*	position: relative;*/
/*	display: flex;*/
/*	flex-direction: row-reverse;*/
/*    font-size: 13px;*/
/*    !*text-decoration: line-through;*!*/
/*    padding: 10px 12px 10px 12px;*/
/*}*/

/*.item-table-options .nis:before {*/
/*	content: '₪';*/
/*	font-size: 12px;*/
/*	margin-right: 2px;*/
/*}*/

/*.collected_item_cell.collected_price {*/
/*    padding-right: 5px;*/
/*	font-weight: bold;*/
/*}*/

/*.collected_points {*/
/*    position: relative;*/
/*}*/
/*!*.collected_price:after {*/
/*	content: '+';*/
/*	position: absolute;*/
/*	left: -6px;*/
/*}*!*/

/*.collected_price {*/
/*    position: relative;*/
/*}*/

/*.collected_price, .collected_points {*/
/*    text-align: center;*/
/*}*/

/*.product_select label.color_label > * {*/
/*    vertical-align: middle;*/
/*}*/

/*div.product_select label.color_label {*/
/*	padding: 2px 5px;*/
/*}*/

/*.home_benefits_item {*/
/*    display: inline-block;*/
/*}*/

/*!* .loby_section.promotions_section .gallery .item_img {*/
/*    max-height: calc(100vw / 4 - 90px);*/
/*} *!*/

/*.feature_value span.color_cube {*/
/*	z-index: 3;*/
/*}*/

/*.menu_cat {*/
/*	display: grid;*/
/*	grid-template-columns: repeat(2,1fr);*/
/*}*/

/*.menu_cat_content {*/
/*	display: grid;*/
/*	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));*/
/*    width: 710px;*/
/*	gap: 40px;*/
/*	row-gap: 20px;*/
/*}*/

/*.search_results {*/
/*	display: none;*/
/*}*/
/*	*/
/*.search_results span.title {*/
/*    font-size: 15px;*/
/*	display: block;*/
/*	margin: 0;*/
/*}*/

/*.search_results span.subtitle {*/
/*    font-size: 15px;*/
/*	display: block;*/
/*}*/

/*.search_results span.cat_title {*/
/*    text-decoration: underline;*/
/*	text-decoration-color: var(--site_primary);*/
/*}*/

/*.search_results span.cat_title:before {*/
/*    content: '>';*/
/*	padding-left: 3px;*/
/*}*/

/*#search_wrapper ul.search_results_inner > li a, #search_wrapper ul.search_results_inner_cat > li a {*/
/*	width: 100%;*/
/*	height: 20%;*/
/*	padding: 7px 0px;*/
/*	display: block;*/
/*	white-space: nowrap;*/
/*}*/

/*#search_mobile_wrapper ul.search_results_inner > li a, #search_mobile_wrapper ul.search_results_inner_cat > li a {*/
/*	width: 100%;*/
/*	padding: 7px 0px;*/
/*	display: block;*/
/*	white-space: nowrap;*/
/*}*/

/*#search_wrapper ul.search_results_inner_cat > li a {*/
/*	white-space: normal;*/
/*	padding: 7px 0px;*/
/*}*/

/*#search_wrapper ul.search_results_inner > li:hover {*/
/*	background: #eee;*/
/*}*/

/*ul.search_results_inner_cat {*/
/*    width: 245px;*/
/*	list-style: none;*/
/*}*/

/*ul.search_results_inner {*/
/*    width: 360px;*/
/*	overflow: hidden;*/
/*	max-width: 100%;*/
/*}*/

/*ul.search_results_inner .search_li_txt {*/
/*	max-width: calc(100% - 48px);*/
/*}*/

/*.search_results.inline > * {*/
/*	vertical-align: top;*/
/*	list-style: none;*/
/*}*/

/*.search_li_img {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*}*/

/*.search_li_img img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*	padding-left: 6px;*/
/*}*/

/*.search_li_img, .search_li_txt {*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*}*/

/*div#search_mobile_wrapper ul.search_results_inner li {*/
/*    margin-bottom: 12px;*/
/*    white-space: nowrap;*/
/*}*/

/*#promoted_items_cart .item_text {*/
/*	height: 68px;*/
/*	max-width: 100%;*/
/*}*/

/*div#promoted_items_cart.gallery .item_img img:not(.brand_logo) {*/
/*    max-height: 200px;*/
/*    width: auto;*/
/*}*/

/*.loby_section.subcat_section .gallery .item_text,*/
/*.loby_section.promotions_section .gallery .item_text,*/
/*.inline .container_items .item_text {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	justify-content: space-between;*/
/*	min-height: 80px;*/
/*}*/

/*.loby_section.subcat_section .gallery .item_text, .loby_section.promotions_section .gallery .item_text,*/
/*.inline .container_items .item_text {*/
/*	display: block;*/
/*	!*height: auto;*!*/
/*	!*min-height: 100px;*!*/
/*}*/

/*div#category_main {*/
/*    min-height: calc(100% - 147px);*/
/*}*/

/*#promoted_items_cart .item_img {*/
/*    position: relative;*/
/*}*/

/*div#promoted_items_cart .brand_logo {*/
/*    margin-top: 0;*/
/*    bottom: 8px;*/
/*	max-height: 25px;*/
/*}*/

/*div#home_benefits_gallery .item_title {*/
/*    height: 55px;*/
/*}*/

/*div#home_benefits_gallery .item_text {*/
/*    height: 60px;*/
/*}*/

/*.search_results_all.butt_light {display: block;text-align: left;}*/

/*ul.search_results_inner, ul.search_results_inner_cat {*/
/*	width: 100%;*/
/*}*/

/*ul.search_results_inner_cat {*/
/*	display: none;*/
/*}*/

/*.loby_gallery_inner_wrapper {*/
/*    max-width: 1200px;*/
/*    margin: auto;*/
/*}*/

/*.field_title {*/
/*	font-weight: bold;*/
/*	display: block;*/
/*	line-height: 1.2;*/
/*	margin-bottom: 10px;*/
/*	color: inherit;*/
/*}*/

/*.field_sub_title {*/
/*	font-size: 80%;*/
/*}*/

/*footer.footer-club {*/
/*	display: flex;*/
/*	flex-direction: row-reverse;*/
/*	text-align: center;*/
/*	padding: 67px 5vw 90px;*/
/*	color: #fff;*/
/*	font-size: 14px;*/
/*	background: var(--footer-primary);*/
/*	gap: 60px;*/
/*	justify-content: space-between;*/
/*	border-top: 3px solid transparent;*/
/*	border-image: var(--btn-gradient) 1 stretch;*/
/*}*/

/*footer .media-container {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: flex-end;*/
/*	gap: 20px;*/
/*}*/

/*footer .media-container .media{*/
/*	display: flex;*/
/*	justify-content: space-evenly;*/
/*	flex-direction: row-reverse;*/
/*	flex-wrap: wrap;*/
/*	gap: 52px;*/
/*}*/

/*footer .categories-container {*/
/*	display: flex;*/
/*	flex-wrap: wrap;*/
/*	text-align: right;*/
/*	font-weight: normal;*/
/*	white-space: nowrap;*/
/*	height: max-content;*/
/*	gap: 102px;*/
/*}*/

/*footer .categories-container .category{*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	height: 100%;*/
/*	width: max-content;*/
/*}*/

/*footer .categories-container .category .category_title {*/
/*	font-weight: bold;*/
/*	transition: color .1s ease-in-out;*/
/*}*/

/*footer .categories-container .category .category_title.cursor-pointer:hover{*/
/*	font-weight: bold;*/
/*	cursor: pointer;*/
/*	color: var(--cart-background-color);*/
/*}*/

/*footer .categories-container .category .links{*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	gap: 10px;*/
/*	margin-top: 26px;*/
/*}*/

/*footer .categories-container .category .links a {*/
/*	cursor: pointer;*/
/*	color: #fff;*/
/*	transition: color .1s ease-in-out;*/
/*}*/

/*footer .categories-container .category .links a:hover{*/
/*	color: var(--site-borders-primary);*/
/*}*/

/*.copyright {*/
/*    margin: 2.6rem auto 0;*/
/*    max-width: 1200px;*/
/*    color: #707070;*/
/*    font-size: 0.75rem;*/
/*    line-height: 1;*/
/*}*/

/*.footer-club .footer-nav ul li a {*/
/*    text-decoration: none;*/
/*    font-size: 0.75rem;*/
/*    color: #a3a3a3;*/
/*    transition: color .75s ease;*/
/*}*/

/*.footer-club .footer-nav ul li:before {*/
/*    width: 0.25rem;*/
/*    height: 0.25rem;*/
/*    background: #a3a3a3;*/
/*    border-radius: 50%;*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: -1rem;*/
/*    top: 45%;*/
/*    opacity: 0.75;*/
/*    !* line-height: 40px; *!*/
/*}*/

/*.footer-club .footer-nav ul li {*/
/*    margin-right: 1rem;*/
/*    margin-left: 0.8rem;*/
/*    position: relative;*/
/*}*/

/*.footer-club .footer-nav ul {*/
/*    margin: 1rem 0 0;*/
/*    padding: 0;*/
/*    list-style: none;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*}*/

/*!*.logo-flycard img {*!*/
/*!*    width: 17.625rem;*!*/
/*!*}*!*/

/*.media-container .logo-flycard img {*/
/*	width: 22vw;*/
/*}*/

/*.product_select_wrapper span.error_msg {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    bottom: -17px;*/
/*    color: red;*/
/*}*/

/*.product_select {*/
/*    position: relative;*/
/*	margin: 20px 0;*/
/*}*/

/*div.product_amount span.quantity_error {*/
/*	position: absolute;*/
/*	font-size: 13px;*/
/*	!* right: -20px; *!*/
/*	bottom: -13px;*/
/*	margin: 0;*/
/*	line-height: 1;*/
/*	width: fit-content;*/
/*	left: 0;*/
/*}*/

/*span#item_max_val {*/
/*    display: inline-block;*/
/*    font-weight: bold;*/
/*}*/

/*.product_calc.hidden {*/
/*    display: none;*/
/*}*/

/*.item_price.price_fixed:not(.price_from) .item_price_from_txt {*/
/*	display: none;*/
/*}*/

/*.discount {*/
/*	color: var(--text-price) !important;*/
/*}*/

/*div#product_desc {*/
/*	background: #F8F8F8;*/
/*}*/

/*.extra_information {*/
/*	margin-top: 100px;*/
/*	background-color: #f2f6f9;*/
/*}*/

/*.extra_information .buyers_guide {*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*	padding-bottom: 80px;*/
/*	font-size: 15px;*/
/*}*/

/*.extra_information .buyers_guide h2 {*/
/*	margin: 0;*/
/*	padding-bottom: 15px;*/
/*}*/

/*.extra_information .buyers_guide div.subtitle {*/
/*	font-weight: bold;*/
/*	color: var(--footer-primary);*/
/*	font-size: 20px;*/
/*}*/

/*.extra_information h2 {*/
/*	font-weight: bold;*/
/*	color: var(--footer-primary);*/
/*	font-size: 30px;*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*	padding: 50px 0px;*/
/*}*/

/*.extra_information .info_box_container {*/
/*	display: flex;*/
/*	width: 90%;*/
/*	margin: 0 auto 110px;*/
/*	gap: 20px;*/
/*}*/

/*.extra_information .info_box_container .info_box {*/
/*	width: 350px;*/
/*	background: #fff;*/
/*	padding: 4px 4px;*/
/*	border-radius: 8px;*/
/*	color: var(--footer-primary);*/
/*}*/

/*.extra_information .info_box_container .info_box img {*/
/*	width: 100%;*/
/*	border-radius: 7px;*/
/*}*/

/*.extra_information .info_box_container .info_box .text_container {*/
/*	padding: 0 16px;*/
/*}*/

/*.info_box_container .info_box .text_container h3 {*/
/*	font-weight: bold;*/
/*	font-size: 19px;*/
/*	width: 55%;*/
/*}*/

/*.info_box_container .info_box .text_container .link {*/
/*	text-decoration: none;*/
/*	margin: 25px 0 10px;*/
/*}*/

/*.info_box_container .info_box .text_container a {*/
/*	color: #0077CC;*/
/*	cursor: pointer;*/
/*	font-weight: bold;*/
/*}*/

/*.extra_information .info_box_container > * {*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*}*/

/*.extra_information .info_box_container h2 {*/
/*	font-weight: bold;*/
/*	color: var(--footer-primary);*/
/*	font-size: 30px;*/
/*}*/

/*.mail-updates-container {*/
/*	display: flex;*/
/*	position: relative;*/
/*	min-height: 200px;*/
/*	background-color: var(--light-blue);*/
/*	color: var(--footer-primary);*/
/*	gap: 428px;*/
/*}*/

/*.mail-updates-container .img-container {*/
/*	position: relative;*/
/*}*/

/*.mail-updates-container .img-container img {*/
/*	position: absolute;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*}*/

/*.mail-updates-container .item-updates-container {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: space-around;*/
/*	flex-wrap: wrap;*/
/*	text-align: center;*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*	margin-left: 40px;*/
/*	gap: 20px;*/
/*}*/

/*.mail-updates-container .item-updates-container .mailing-list{*/
/*	flex-basis: 40%;*/
/*}*/

/*.mail-updates-container .item-updates-container h3 {*/
/*	font-size: 30px;*/
/*	font-weight: bold;*/
/*	margin: 0;*/
/*}*/

/*.mail-updates-container .item-updates-container span {*/
/*	font-size: 19px;*/
/*}*/

/*.mail-updates-container .item-updates-container input[type='email'] {*/
/*	background-color: transparent;*/
/*	width: 86%;*/
/*	border-radius: 0px 7px 7px 0px;*/
/*	border: 2px solid var(--cart-color);*/
/*	border-left: 0;*/
/*	padding: 11px;*/
/*}*/

/*.mail-updates-container .item-updates-container .full-btn {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	background-color: var(--cart-color);*/
/*	color: #fff;*/
/*	border: none;*/
/*	border-radius: 7px;*/
/*	position: absolute;*/
/*	left: -6px;*/
/*	top: 0;*/
/*	bottom: 0;*/
/*	padding: 20px;*/
/*}*/

/*.item-updates-container .success-message {*/
/*	display: none;*/
/*}*/

/*.item-updates-container .success-message {*/
/*	flex-direction: column;*/
/*	font-weight: normal;*/
/*	border: 1px solid var(--category-primary);*/
/*	border-radius: 7px;*/
/*	padding: 25px;*/
/*}*/

/*.item-updates-container .success-message .bold{*/
/*	font-weight: bold;*/
/*}*/

/*.mail-updates-container .offers-form {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	gap: 20px;*/
/*}*/

/*.mail-updates-container .offers-form .input-container {*/
/*	display: flex;*/
/*	position: relative;*/
/*}*/

/*.mail-updates-container .offers-form label {*/
/*	display: flex;*/
/*}*/

/*form.offers-form {*/
/*	margin: 0;*/
/*}*/

/*.authCode-input-container {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	direction: ltr;*/
/*}*/

/*.authCode-input-container input {*/
/*	width: 30px;*/
/*	padding: 7px;*/
/*	margin: 5px;*/
/*	text-align: center;*/
/*	font-size: 20px;*/
/*	border: 2px solid var(--btn-primary);*/
/*	border-radius: 4px;*/
/*	color: var(--site_primary);*/
/*}*/




/*@media only screen and (max-width: 1420px){*/
/*	.favorite-items .container_items.gallery_items_inner {*/
/*		display: grid !important;*/
/*		width: 100%;*/
/*	}*/
/*}*/

/*@media only screen and (max-width: 1650px){*/
/*	ul.search_results_inner_cat {*/
/*		margin: 0;*/
/*		padding: 0;*/
/*		padding-right: 10px;*/
/*	}*/
/*	*/
/*	!* ul.search_results_inner, ul.search_results_inner_cat {*/
/*		width: 100%;*/
/*	} *!*/
/*}*/

/*@media only screen and (max-width: 1500px){*/
/*	#home_benefits_gallery .gallery_items .item_img {*/
/*		height: 100%;*/
/*	}*/

/*	.loby_section.subcat_section .container_item_wrapper, .loby_section.promotions_section .container_item_wrapper {*/
/*		width: 275px;*/
/*	}*/
/*	*/
/*	#home_gallery.loby_gallery .gallery_items {*/
/*		height: calc(100vw * 0.3);*/
/*	}*/

/*	div#home_benefits_gallery.loby_gallery .gallery_item {*/
/*		padding: 0;*/
/*		margin: 0px 6px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery .item_img img {*/
/*		right: 0px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.second img {*/
/*		height: 585px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery_items a:nth-child(3) .gallery_item img {*/
/*		height: 610px;*/
/*		max-height: none;*/
/*	}*/

/*	div#home_benefits_gallery {*/
/*		max-width: 1000px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .item_title {*/
/*		font-size: 22px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .item_text {*/
/*		font-size: 16px;*/
/*		height: 60px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .item_content {*/
/*		padding: 0px 10px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item {*/
/*		height: 335px;*/
/*		width: 315px;*/
/*		margin: 0 8px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.second {*/
/*		height: 395px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.first {*/
/*		height: 365px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery .item_img img {*/
/*		!*height: 395px;*!*/
/*		width: 315px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items {*/
/*		height: 426px;*/
/*	}*/
/*	*/
/*	div#home_benefits_gallery.loby_gallery .gallery_elems > div {*/
/*		bottom: 200px;*/
/*	}*/
/*}*/
/*@media only screen and (max-width: 1290px) {*/
/*	#body.home_page .loby_section.top_sub_categories .sub_category_box {*/
/*		min-width: 150px;*/
/*	}*/
/*}*/
/*@media only screen and (max-width: 1100px){*/
/*	#home_benefits_gallery.loby_gallery .item_title {*/
/*		font-size: 19px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .item_text {*/
/*		font-size: 14px;*/
/*		height: 50px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .item_content {*/
/*		padding: 0px 6px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items #item2.home_benefits_item.gallery_item.active_right0 .gallery_item {*/
/*		margin-right: 0;*/
/*	}*/
/*	*/
/*	#home_gallery.loby_gallery .gallery_item {*/
/*		max-width: 100vw;*/
/*	}*/

/*}*/

/*@media only screen and (max-height: 820px){*/
/*	#nav_cat_wrapper .promo_div {*/
/*		display: none;*/
/*	}*/
/*	.menu_cat_content {*/
/*		width: 100%;*/
/*	}*/
/*}*/

/*@media only screen and (max-width: 1450px){*/
/*	#category_main .container .container_item_wrapper {*/
/*		width: 33.3%;*/
/*	}*/
/*	#product_desc .container .container_item {*/
/*		width: 255px;*/
/*	}*/
/*	#nav_cat_wrapper .promo_div {*/
/*		display: none;*/
/*	}*/
/*	.menu_cat_content {*/
/*		width: 100%;*/
/*	}*/
/*}*/

/*@media only screen and (max-width: 1250px) {*/
/*	#promoted_items_cart .gallery_item, div#promoted_items_cart, div#promoted_items_cart .gallery_items {*/
/*		width: 315px;*/
/*	}*/

/*	.mail-updates-container .item-updates-container .mailing-list {*/
/*		flex-basis: 60%;*/
/*		margin-bottom: 15px;*/
/*	}*/

/*	.mail-updates-container .offers-form {*/
/*		flex-direction: column-reverse;*/
/*	}*/

/*	.mail-updates-container .offers-form label {*/
/*		justify-content: center;*/
/*		font-size: 17.5px;*/
/*	}*/
/*}*/

/*@media only screen and (max-width: 1150px) {*/

/*	.nav_menu.open ul.menu_top_cat {*/
/*		max-height: 640px;*/
/*		height: 70%;*/
/*	}*/

/*	.special_price_modal .content {*/
/*		width: 80vw;*/
/*		padding: 15px;*/
/*	}*/

/*	.special_price_modal .content input {*/
/*		width: 80%;*/
/*		height: 45px;*/
/*	}*/

/*	.customer-service.mobile {*/
/*		display: block;*/
/*		position: relative;*/
/*		width: 100%;*/
/*		font-size: 19px;*/
/*		background-color: var(--site_primary);*/
/*		color: #fff;*/
/*		text-align: center;*/
/*		padding: 8px 0 !important;*/
/*		z-index: 20;*/
/*	}*/

/*	.container_item_wrapper span.favorite:before {*/
/*		padding: 10px 20px;*/
/*	}*/

/*	#search_mobile .title {*/
/*		font-size: 16px;*/
/*	}*/

/*	.search_results {*/
/*		padding: 0 10px;*/
/*	}*/

/*	#header_mobile .mobile_search_header {*/
/*		border-bottom: 1px solid var(--light-blue);*/
/*		margin: 0 auto;*/
/*		transition: width .25s ease-in-out;*/
/*		padding-bottom: 20px;*/
/*	}*/

/*	#header_mobile .content_wrapper {*/
/*		max-width: 100% !important;*/
/*		padding: 20px 4vw;*/
/*	}*/

/*	.mobile_search_header div#search_mobile {*/
/*		padding: 0;*/
/*	}*/

/*	span.cart {*/
/*		background-color: var(--footer-primary);*/
/*		color: #fff;*/
/*	}*/

/*	.mobile-footer {*/
/*		display: block;*/
/*	}*/

/*	#home_benefits_gallery .gallery_items .item_img {*/
/*		height: 100%;*/
/*	}*/

/*	.extra_information .info_box_container {*/
/*		display: grid;*/
/*		grid-template-rows: repeat( auto-fit, minmax(250px, 1fr) );*/
/*		grid-template-columns: repeat( auto-fit, minmax(350px, 1fr) );*/
/*		!*margin: 0;*!*/
/*	}*/

/*	.mail-updates-container .item-updates-container {*/
/*		align-items: center;*/
/*		flex-direction: column;*/
/*		text-align: center;*/
/*		gap: 35px;*/
/*		padding-top: 30px;*/
/*		margin: 0 auto;*/
/*	}*/

/*	!*.mail-updates-container .item-updates-container span {*!*/
/*	!*	font-weight: bold;*!*/
/*	!*}*!*/

/*	.mail-updates-container .offers-form {*/
/*		flex-direction: column-reverse;*/
/*	}*/

/*	.mail-updates-container {*/
/*		display: flex;*/
/*		position: relative;*/
/*		flex-direction: column-reverse;*/
/*		min-height: 200px;*/
/*		gap: 30px;*/
/*	}*/

/*	.mail-updates-container .img-container {*/
/*		position: relative;*/
/*		!* width: 100%; *!*/
/*		height: 207px;*/
/*		background: #2c8bcb;*/
/*	}*/

/*	.mail-updates-container .img-container img {*/
/*		position: absolute;*/
/*		right: 0;*/
/*		bottom: 0;*/
/*		width: 435px;*/
/*		margin: 0 auto;*/
/*		margin-left: auto;*/
/*		margin-right: auto;*/
/*		left: 0;*/
/*		right: 0;*/
/*		text-align: center;*/
/*	}*/

/*	.loby_section .content_wrapper {*/
/*		padding: 25px 0px 22px;*/
/*	}*/

/*	#search .icon {*/
/*		position: absolute;*/
/*		left: 0;*/
/*		line-height: 60px;*/
/*		width: 42px;*/
/*		top: 0px;*/
/*		height: 100%;*/
/*		border-radius: 4px 7px 7px 4px;*/
/*		display: flex;*/
/*		align-items: center;*/
/*		justify-content: center;*/
/*		color: #777777;*/
/*		z-index: -1;*/
/*	}*/

/*	.red-box {*/
/*		font-size: 14px;*/
/*	}*/

/*	.item_price {*/
/*		flex-wrap: wrap;*/
/*	}*/

/*	#body.home_page .loby_section.top_sub_categories .sub_category_box {*/
/*		flex: 1 0 25%;*/
/*	}*/

/*	!* .loby_section.promotions_section .container.item_container.cubes_module {*/
/*		white-space: normal;*/
/*		height: auto;*/
/*	} *!*/

/*	#header_wrapper > * {*/
/*		padding: 0 4vw;*/
/*		column-gap: 20px;*/
/*		 display: flex;*/
/*		 flex-wrap: wrap;*/
/*		 justify-content: space-around;*/
/*		 height: fit-content;*/
/*		display: none;*/
/*	}*/

/*	div#header_wrapper .mobile_scroll_bar {*/
/*		display: inherit;*/
/*	}*/

/*	!*#header_mobile .mobile_search_header #search_mobile {*!*/
/*	!*	position: fixed;*!*/
/*	!*	overflow: visible;*!*/
/*	!*	display: block;*!*/
/*	!*	height: auto;*!*/
/*	!*	width: 100%;*!*/
/*	!*	top: 160px;*!*/
/*	!*	right: 2.5%;*!*/
/*	!*}*!*/
/*	#header_mobile .mobile_search_header #search_mobile {*/
/*		position: static;*/
/*		overflow: visible;*/
/*		display: block;*/
/*		height: auto;*/
/*		width: 100%;*/
/*	}*/

/*	.loby_section.subcat_section .container.item_container.cubes_module .container_items.gallery_items_inner,*/
/*	.loby_section.promotions_section .container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*		height: auto;*/
/*	}*/

/*	#header_mobile .mobile_search_header.fixed-search #search_mobile {*/
/*		position: static;*/
/*	}*/

/*	#header_mobile .mobile_search_header #search_mobile #search_mobile_wrapper {*/
/*		height: 60px;*/
/*	}*/

/*	.media-container .logo-flycard img {*/
/*		width: 27vw;*/
/*	}*/

/*	.product_butts_pay {*/
/*		position: fixed;*/
/*		bottom: 0;*/
/*		background: white;*/
/*		z-index: 30;*/
/*		width: 100%;*/
/*		right: 0;*/
/*		margin: 0;*/
/*		padding: 20px 10px;*/
/*		box-shadow: 0px -2px 10px 0px #0000001A;*/
/*	}*/

/*	footer .media-container {*/
/*		display: flex;*/
/*		flex-direction: column;*/
/*		align-items: center;*/
/*		gap: 10px;*/
/*	}*/

/*	.misc-header .mobile {*/
/*		display: flex !important;*/
/*	}*/

/*	.misc-header .desktop {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	div#promoted_items_gallery {*/
/*		margin: 30px 0 0;*/
/*		height: 550px;*/
/*		!* padding: 0px 50px 0px; *!*/
/*	}*/
/*	*/
/*	.product_gallery .gallery_elems .arrow_left, .product_gallery .gallery_elems .arrow_right {*/
/*		bottom: 315px;*/
/*	}*/

/*	#product_desc .container .container_item {*/
/*		width: 210px;*/
/*		padding: 20px 6px 0px;*/
/*	}*/
/*	*/
/*	#product_desc .container .item_img {*/
/*		height: 175px;*/
/*	}*/
/*	*/
/*	#product_desc .container.item_container.cubes_module {*/
/*		height: 405px;*/
/*	}*/
/*	*/
/*	.promo_div {*/
/*		display: none !important;*/
/*	}*/
/*	*/
/*	#header_mobile {*/
/*		display: block;*/
/*	}*/

/*	#header_wrapper {*/
/*		position: relative;*/
/*	}*/
/*	*/
/*	#category_main .container .container_item_wrapper {*/
/*		width: 50%;*/
/*	}*/

/*	.inline .container_items {*/
/*		display: grid;*/
/*		grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );*/
/*	}*/

/*	#category_main .container .container_item_wrapper {*/
/*		width: 100%;*/
/*	}*/
/*	*/
/*	#header {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.product_nav {*/
/*		margin: 0px auto 25px;*/
/*		width: 90%;*/
/*	}*/

/*	footer.footer-club {*/
/*		display: flex;*/
/*		flex-wrap: wrap;*/
/*		align-items: center;*/
/*		flex-direction: column;*/
/*	}*/

/*	footer .categories-container {*/
/*		gap: 20px;*/
/*		padding-bottom: 60px;*/
/*	}*/

/*	footer .categories-container .category {*/
/*		flex-basis: calc(41% - 10px);*/
/*		font-size: 1.225em;*/
/*		width: 100%;*/
/*	}*/

/*	footer .categories-container .drop_down_arrow:after {*/
/*		font-family: 'FontAwesome';*/
/*		content: '\f104';*/
/*		position: absolute;*/
/*		left: 0;*/
/*		transform: rotate(270deg);*/
/*		transition: transform 0.2s ease-in-out;*/
/*	}*/

/*	footer .categories-container .drop_down_arrow.rotate:after {*/
/*		font-family: 'FontAwesome';*/
/*		content: '\f104';*/
/*		position: absolute;*/
/*		left: 0;*/
/*		transform: rotate(90deg);*/
/*	}*/

/*	footer .categories-container .category .links {*/
/*		opacity: 0;*/
/*		max-height: 0;*/
/*		pointer-events: none;*/
/*		transition: max-height 0.3s ease-in-out, opacity .1s ease-in-out;*/
/*	}*/

/*	footer .categories-container .category .links.active {*/
/*		opacity: 1;*/
/*		max-height: 1000px;*/
/*		pointer-events: auto;*/
/*	}*/

/*	footer .categories-container .category .category_title {*/
/*		font-size: 1.355em;*/
/*		border-bottom: 1px solid var(--text-gradient-fit);*/
/*		position: relative;*/
/*		cursor: pointer;*/
/*	}*/

/*	footer .categories-container {*/
/*		flex-direction: column;*/
/*		text-align: center;*/
/*		align-items: center;*/
/*		width: 90%;*/
/*	}*/

/*	.promo_div {*/
/*		left: 7%;*/
/*	}*/

/*	.content_wrapper {*/
/*		padding: 25px 0px;*/
/*	}*/

/*	.product_side {*/
/*		!* width: 300px; *!*/
/*		!* margin: auto; *!*/
/*		max-width: calc(100% - 575px);*/
/*		min-width: 300px;*/
/*	}*/
/*	*/
/*	div.product_gallery {*/
/*		width: 525px;*/
/*	}*/
/*	!* .loby_section.promotions_section  .field_title {*/
/*		margin-bottom: 2px;*/
/*		font-size: 16px;*/
/*	} *!*/

/*	#orders_content .profile-table-header {*/
/*		display: none !important;*/
/*	}*/

/*	#orders_content .order-filter {*/
/*		margin-bottom: 30px;*/
/*	}*/

/*	.order-data-container.row {*/
/*		grid-template-rows: 1fr repeat(5,1fr);*/
/*		grid-template-columns: none !important;*/
/*	}*/
/*	#orders_content .desktop {*/
/*		display: none;*/
/*	}*/

/*	#orders_content .mobile {*/
/*		display: flex !important;*/
/*		justify-content: space-between;*/
/*	}*/

/*	#orders_content .grayed-out {*/
/*		color: #757575;*/
/*	}*/

/*	.order-data-container.row .order-status .dropdown-arrow:before {*/
/*		display: none;*/
/*	}*/

/*	.order-click.open .slide-out-content .divider {*/
/*		background: rgb(209, 232, 247) !important;*/
/*	}*/

/*	.order-data-container.row .dropdown-arrow.mobile:before {*/
/*		font-family: 'FontAwesome';*/
/*		content: '\f078';*/
/*		background: var(--btn-gradient);*/
/*		-webkit-background-clip: text;*/
/*		-webkit-text-fill-color: transparent;*/
/*		font-weight: bold;*/
/*		font-size: 14px;*/
/*		padding-top: 2px;*/
/*		transition: transform .2s ease-in-out;*/
/*	}*/

/*	.order-click .slide-out-content .contact-details {*/
/*		margin: 0 !important;*/
/*	}*/

/*	.order-click .slide-out-content .contact-extras.mobile {*/
/*		width: 100%;*/
/*	}*/

/*	.order-click .slide-out-content .contact-extras.mobile a{*/
/*		font-weight: bold;*/
/*	}*/

/*	.order-click.open .order-data-container.row .dropdown-arrow.mobile:before {*/
/*		transform: rotate(180deg);*/
/*	}*/

/*	.order-click .slide-out-content .divider.mobile {*/
/*		width: 100%;*/
/*	}*/

/*	.order-click .slide-out-content .contact-details {*/
/*		flex-direction: column;*/
/*		gap: 0 !important;*/
/*	}*/

/*	#orders_content .slide-out-content .item-wrapper {*/
/*		margin: 0 !important;*/
/*	}*/

/*	#orders_content .item-wrapper span {*/
/*		width: 90% !important;*/
/*	}*/

/*	#orders_content .slide-out-content .item-wrapper {*/
/*		grid-template-columns: 1fr 0.35fr !important;*/
/*	}*/

/*	.order-click .slide-out-content .delivery-data {*/
/*		flex-direction: column;*/
/*		gap: 12px !important;*/
/*	}*/

/*	.container:not(.product_side) .container_item {*/
/*		min-height: 405px;*/
/*	}*/

/*	#credit-card-section {*/
/*		align-items: center;*/
/*		justify-content: center;*/
/*		margin-bottom: 40px;*/
/*	}*/

/*}*/

/*@media only screen and (max-width: 1510px){*/
/*	#body.home_page .loby_section.top_sub_categories::-webkit-scrollbar-thumb {*/
/*		background: var(--site-borders-primary);*/
/*		border-radius: 10px;*/
/*	}*/

/*	#body.home_page .loby_section.top_sub_categories::-webkit-scrollbar {*/
/*		width: 1px;*/
/*		height: 5px;*/
/*	}*/

/*	#body.home_page .loby_section.top_sub_categories::-webkit-scrollbar-track {*/
/*		background: #f6fff1; !* color of the track *!*/
/*	}*/

/*	#body.home_page .loby_section.top_sub_categories::-webkit-scrollbar-thumb {*/
/*		background: var(--site-borders-primary); !* color of the scrollbar thumb *!*/
/*	}*/

/*	#body.home_page .loby_section.top_sub_categories::-webkit-scrollbar-thumb:hover {*/
/*		background: #f6fff1; !* color when hovering over the scrollbar thumb *!*/
/*	}*/

/*	#body.home_page .loby_section.top_sub_categories {*/
/*		scrollbar-color: var(--site-borders-primary) #f6fff1;*/
/*		scrollbar-width: thin;*/
/*		flex-wrap: nowrap;*/
/*		overflow-x: auto;*/
/*		justify-content: flex-start;*/
/*		padding: 0 5px 15px;*/
/*	}*/

/*}*/

/*@media only screen and (max-width: 1150px){*/
/*	.container:not(.product_side) .container_item.item span.favorite {*/
/*		transform: translateX(70%);*/
/*	}*/

/*	div#home_benefits_gallery .gallery_nav {*/
/*		display: block;*/
/*	}*/
/*	*/
/*	div#home_benefits_gallery div.gallery_elems {*/
/*		height: 20px;*/
/*	}*/
/*	*/
/*	div#home_benefits_gallery div.gallery_nav > span {*/
/*		background-color: #6f7584;*/
/*	}*/
/*	*/
/*	div#home_benefits_gallery div.gallery_nav > span.active {*/
/*		background-color: var(--site-borders-primary);*/
/*	}*/
/*	*/
/*	div#home_benefits_gallery.loby_gallery .arrow_right, div#home_benefits_gallery.loby_gallery .arrow_left, div#home_gallery.loby_gallery .arrow_right, div#home_gallery.loby_gallery .arrow_left {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item {*/
/*		height: 357px;*/
/*		width: 285px;*/
/*		margin: 0 0px;*/
/*		margin-left: 15px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.second {*/
/*		height: 357px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.first {*/
/*		height: 357px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery .item_img img {*/
/*		!*height: 380px;*!*/
/*		width: 285px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery_items .gallery_item.second img {*/
/*		height: 350px;*/
/*	}*/

/*	#home_benefits_gallery.loby_gallery .gallery_items a:nth-child(3) .gallery_item img {*/
/*		height: 340px;*/
/*	}*/
/*	*/
/*	#home_benefits_gallery.loby_gallery .gallery_items {*/
/*		height: 388px;*/
/*	}*/

/*}*/

/*@media only screen and (max-width: 1000px){*/
/*	.product_side.container {*/
/*		margin: auto;*/
/*		max-width: 100%;*/
/*	}*/

/*	img.brand_logo.field_img_brand {*/
/*		bottom: 21%;*/
/*	}*/
/*}*/
/*	*/
/*@media only screen and (max-width: 960px){*/
/*	.media-container .logo-flycard img {*/
/*		width: 40vw;*/
/*	}*/

/*	div#promoted_items_gallery {*/
/*		height: 525px;*/
/*	}*/
/*	*/
/*	.product_gallery .gallery_elems .arrow_left, .product_gallery .gallery_elems .arrow_right {*/
/*		bottom: 310px;*/
/*	}*/
/*	*/
/*}*/

/*@media only screen and (max-width: 900px){*/
/*	div#menu_mobile, #search_mobile {*/
/*		right: -5vw;*/
/*	}*/

/*	#product_main div#promoted_items_gallery {*/
/*		margin: 0 auto;*/
/*		height: 610px;*/
/*	}*/
/*	*/
/*	#product_main div.product_gallery {*/
/*		margin-left: 0px;*/
/*		margin-bottom: 20px;*/
/*	}*/
/*	*/
/*	div.product_gallery {*/
/*		width: 550px;*/
/*	}*/
/*	*/
/*	.field_title {*/
/*		margin-bottom: 2px;*/
/*	}*/

/*	.product_nav {*/
/*		width: 95%;*/
/*	}*/
/*	*/
/*	.div_sort_select {*/
/*		width: 50%;*/
/*	}*/

/*	.loby_section.subcat_section .container_item_wrapper, .loby_section.promotions_section .container_item_wrapper {*/
/*		width: 245px;*/
/*	}*/
/*	*/
/*	!* .loby_section:not(.promotions_section) .gallery .item_img img:not(.brand_logo) {*/
/*		height: 215px;*/
/*	} *!*/
/*	*/
/*	.loby_section:not .gallery .item_img img:not(.brand_logo) {*/
/*		height: 215px;*/
/*	}*/
/*	*/
/*	.gallery_overlay {*/
/*		display: none;*/
/*	}*/

/*	.category_title {*/
/*		margin-top: 0;*/
/*	}*/

/*	.category_title .title {*/
/*		font-size: 44px;*/
/*		line-height: 1.2;*/
/*	}*/

/*	.product_gallery .gallery_item {*/
/*		width: 600px;*/
/*		max-width: 95vw;*/
/*	}*/

/*	div.gallery_elems {*/
/*		height: 20px;*/
/*	}*/
/*	*/
/*	div.product_gallery div.gallery_nav {*/
/*		height: 20px;*/
/*		display: block;*/
/*	}*/

/*	div.product_gallery {*/
/*		width: 100%;*/
/*		margin-left: 0;*/
/*	}*/

/*	.container.item_container.cubes_module {*/
/*		height: 480px;*/
/*		max-height: 500px;*/
/*	}*/
/*	*/
/*	!* .loby_section.promotions_section .container.item_container.cubes_module {*/
/*		height: auto;*/
/*		max-height: initial;*/
/*	} *!*/

/*	div#category_main .title {*/
/*		font-size: 5.5vw;*/
/*		padding-bottom: 10px;*/
/*		margin-bottom: unset;*/
/*		border-bottom: none;*/

/*	}*/
/*	*/
/*	.container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*		position: absolute;*/
/*		height: 425px;*/
/*		right: 0 !important;*/
/*		overflow-y: hidden;*/
/*		overflow-x: auto;*/
/*		width: 100%;*/
/*	}*/
/*	*/
/*	.loby_section.subcat_section .container.item_container.cubes_module .container_items.gallery_items_inner, .loby_section.promotions_section .container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*		height: auto;*/
/*	}*/
/*	*/
/*	.loby_section.subcat_section .gallery .item_img, .loby_section.promotions_section .gallery .item_img {*/
/*		height: 150px;*/
/*		max-height: 150px;*/
/*	}*/

/*	.side_filter {*/
/*		width: unset;*/
/*		position: unset;*/
/*		top: unset;*/
/*		height: unset !important;*/
/*		overflow-y: unset;*/
/*	}*/

/*	!* .loby_section.promotions_section .container.item_container.cubes_module .container_items.gallery_items_inner {*/
/*		height: auto;*/
/*	} *!*/

/*	!* .loby_section.promotions_section .container.item_container.cubes_module .container_item_wrapper {*/
/*		width: 50%;*/
/*		margin: 9px 0px;*/
/*	} *!*/
/*	*/
/*	!* .loby_section:not(.multiple_galleries) .container .container_item_wrapper {*/
/*		width: auto;*/
/*	} *!*/
/*	*/
/*	#home_gallery .gallery .item_img img {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	#home_gallery .gallery .item_img img.img_mobile {*/
/*		display: block;*/
/*	}*/

/*	#home_gallery.loby_gallery .gallery_items {*/
/*		!* height: calc(100vw * 0.9); *!*/
/*		height: calc(100vw);*/
/*	}*/

/*	#category_main .container_item.item {*/
/*		padding: 15px 9px 0px;*/
/*	}*/

/*	.inline .container.item_container .container_items a {*/
/*		height: max-content;*/
/*	}*/
/*	*/
/*	!* .filter_sections_wrapper {*/
/*		max-height: 50vh;*/
/*		overflow-x: hidden;*/
/*		overflow-y: auto;*/
/*	} *!*/
/*	*/
/*	.points_num_wrapper {*/
/*		margin: 0 auto;*/
/*	}*/
/*	*/
/*	.range_slider {*/
/*		margin: 20px 0px;*/
/*	}*/
/*	*/
/*	div#filter_div {*/
/*		padding-bottom: 8px;*/
/*	}*/
/*	*/
/*	div#home_footer.loby_section .content_wrapper > div {*/
/*		width: 100%;*/
/*		text-align: center;*/
/*		padding: 0;*/
/*	}*/
/*	*/
/*	div#home_footer.loby_section .content_wrapper > div > div {*/
/*		width: 100%;*/
/*		max-width: 500px;*/
/*	}*/
/*	*/
/*	#home_footer .title, #home_footer .text {*/
/*		max-width: 90%;*/
/*	}*/
/*	*/
/*	div#home_footer .content_wrapper div.img > img {*/
/*		height: auto;*/
/*		max-width: 100%;*/
/*		max-height: 300px;*/
/*	}*/
/*	*/
/*	.home_footer_img_div, .home_footer_text_div {*/
/*		margin-bottom: 45px;*/
/*	}*/

/*	.title_img img {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.loby_section .title .subtitle {*/
/*		font-size: 16px;*/
/*		display: block;*/
/*		font-weight: normal;*/
/*	}*/

/*	!* .loby_section.promotions_section .container_item.item {*/
/*		padding: 10px;*/
/*		padding-bottom: 0px;*/
/*	} *!*/

/*	.title span.subtitle {*/
/*		margin: 0;*/
/*	}*/

/*	.subtitle {*/
/*		font-size: 16px;*/
/*	}*/

/*	.loby_section .title {*/
/*		font-size: 36px;*/
/*	}*/

/*	div#loby_top_gallery .title {*/
/*		font-size: 36px;*/
/*	}*/
/*	.butt_light.more_categories {*/
/*		display: block;*/
/*	}*/

/*	.loby_gallery a.loby_gallery_item {*/
/*		width: 24%;*/
/*	}*/
/*	*/
/*	.loby_gallery a.loby_gallery_item {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.loby_gallery a.loby_gallery_item:nth-child(1), .loby_gallery a.loby_gallery_item:nth-child(2), .loby_gallery a.loby_gallery_item:nth-child(3), .loby_gallery a.loby_gallery_item:nth-child(4){*/
/*		display: inline-block;*/
/*	}*/
/*	*/
/*	#product_main .product_side, #product_main .product_gallery {*/
/*		display: block !important;*/
/*		float: none;*/
/*		margin-left: auto;*/
/*		margin-right: auto;*/
/*	}*/
/*	*/
/*	div#filter_div .icon.close {*/
/*		display: block;*/
/*	}*/

/*	.product_side {*/
/*		width: 475px;*/
/*	}*/
/*	*/
/*	.product_gallery {*/
/*		width: 100%;*/
/*		margin: auto;*/
/*	}*/
/*	*/
/*	div#promoted_items_gallery {*/
/*		margin: 0 auto;*/
/*		height: 450px;*/
/*		margin-bottom: 35px;*/
/*		max-width: 100%;*/
/*	}*/
/*	*/
/*	#product_main div#promoted_items_gallery {*/
/*		height: 525px;*/
/*		max-height: 95vw;*/
/*	}*/
/*	*/
/*	.gallery_nav {*/
/*		width: 100px;*/
/*		margin: auto;*/
/*		margin-top: 20px;*/
/*		display: block;*/
/*		height: 20px;*/
/*		text-align: center;*/
/*	}*/
/*	*/
/*	.gallery_nav > span img {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	div.gallery_nav > span {*/
/*		background-color: #6f7584;*/
/*		width: 8px;*/
/*		height: 8px;*/
/*		border-radius: 50%;*/
/*		margin: auto 3px;*/
/*	}*/
/*	*/
/*	.gallery_nav > span.active {*/
/*		background-color: var(--btn-secondary);*/
/*		width: 12px;*/
/*		height: 12px;*/
/*	}*/
/*	*/
/*	.cart_item_img {*/
/*		position: absolute;*/
/*		right: 0;*/
/*	}*/
/*	*/
/*	.cart_item_img img {*/
/*		height: 97px;*/
/*	}*/

/*	.cart_item {*/
/*		padding-right: 105px;*/
/*		height: auto;*/
/*	}*/

/*	.inline > .cart_item_img {*/
/*		padding: 0px 10px;*/
/*	}*/

/*	div#category_main {*/
/*		background-color: #f8f8f8;*/
/*	}*/

/*	#filter_div .close.icon {*/
/*		display: block;*/
/*	}*/
/*	*/
/*	.category_top {*/
/*		padding: 0px 0px;*/
/*		box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.12);*/
/*		background: var(--site-background);*/
/*	}*/

/*	.filter_sort_mobile.inline > * {*/
/*		width: 50%;*/
/*		text-align: center;*/
/*		border-width: 0px 0px 0px 1px;*/
/*		border-style: solid;*/
/*		border-color: #ccccd8;*/
/*		color: var(--text-price);*/
/*		font-size: 16px;*/
/*		font-weight: bold;*/
/*		padding: 10px 0px;*/
/*	}*/

/*	.filter_sort_mobile.inline > *:last-child {*/
/*		border: none;*/
/*	}*/

/*	.filter_sort_mobile.inline > .filter_butt:before {*/
/*		font-family: 'FontAwesome';*/
/*		content: '\f0b0';*/
/*		margin-left: 7px;*/
/*	}*/

/*	.filter_sort_mobile.inline > .sort_butt:after {*/
/*		font-family: 'FontAwesome';*/
/*		content: '\f0dc';*/
/*		margin-right: 7px;*/
/*		color: var(--btn-primary);*/
/*	}*/

/*	.filter_sort_mobile {*/
/*		display: flex;*/
/*	}*/
/*	*/
/*	label.sort_select {*/
/*		!* display: none; *!*/
/*		opacity: 0;*/
/*	}*/

/*	label.sort_select.mobile {*/
/*		!* display: none; *!*/
/*		opacity: 1;*/
/*		pointer-events: auto;*/
/*	}*/

/*	.item_text {*/
/*		font-size: 16px;*/
/*		height: 95px;*/
/*	}*/

/*	.item_warrenty, div.item_warrenty.field_item_warrenty {*/
/*		font-size: 10px;*/
/*		height: 48px;*/
/*	}*/

/*	.item_price span.text_22, .item_price span.text_26 {*/
/*		font-size: 17px;*/
/*	}*/

/*	.container:not(.product_side) .container_item {*/
/*		padding: 10px 8px 0px;*/
/*		!*width: 230px;*!*/
/*	}*/

/*	.container:not(.product_side) .container_item {*/
/*		min-height: 450px;*/
/*	}*/

/*	.gallery_item.item .best-seller, .inline .container_items .best-seller {*/
/*		font-size: 12px;*/
/*		padding: 0 5px;*/
/*	}*/
/*	*/
/*	!* .multiple_galleries .container .container_item {*/
/*		width: 320px;*/
/*	} *!*/
/*	*/
/*	!* .promotions_section .container .container_item {*/
/*		width: 245px;*/
/*	} *!*/
/*	*/
/*	.loby_section .gallery .item_img img:not(.brand_logo), .loby_section.subcat_section .gallery .item_img, .loby_section.promotions_section .gallery .item_img {*/
/*		height: 200px;*/
/*	}*/
/*	*/
/*	!* .loby_section.promotions_section .gallery div.item_img {*/
/*		max-height: calc(50vw / 2 + 40px);*/
/*	} *!*/
/*	*/
/*	#category_main .product_calc {*/
/*		position: fixed;*/
/*		width: 100%;*/
/*		right: 0;*/
/*		z-index: -1;*/
/*		bottom: -2px;*/
/*		overflow: hidden;*/
/*		margin-bottom: 0;*/
/*		box-shadow: 0 -1px 9px 0 rgba(0, 0, 0, 0.13);*/
/*		height: 100px;*/
/*		padding-top: 3px;*/
/*	}*/

/*	.side_filter {*/
/*		position: absolute;*/
/*		z-index: 12;*/
/*		right: 0;*/
/*		margin-top: -185px;*/
/*	}*/
/*	*/
/*	div#category_main .content_wrapper > .inline > .container {*/
/*		width: 100%;*/
/*	}*/
/*	*/
/*	#filter_div {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	#filter_div.active {*/
/*		display: block;*/
/*		position: fixed;*/
/*		width: 290px;*/
/*		height: 60vh;*/
/*		overflow-y: scroll;*/
/*		top: 50px;*/
/*		transform: translateY(40%);*/
/*		z-index: 30;*/
/*	}*/

/*	.side_filter.fixed-search #filter_div {*/
/*		top: 0;*/
/*	}*/

/*	div#category_main {*/
/*		min-width: 320px;*/
/*	}*/

/*	.open .desc_mobile {*/
/*		display: block;*/
/*	}*/

/*	.desc_text {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.desc_nav_butt,.desc_nav_butt.delivery {*/
/*		display: block;*/
/*		width: 100%;*/
/*		height: auto;*/
/*	}*/

/*	.filter_section:nth-child(2) {*/
/*		min-height: 125px;*/
/*	}*/

/*	.range_bar.inline {*/
/*		top: 40px;*/
/*	}*/

/*	span.range_num {*/
/*		bottom: -20px;*/
/*	}*/

/*	.desc_nav_butt span {*/
/*		border-width: 0px 0px 1px 0px;*/
/*		border-color: #ccccd8;*/
/*		margin: 0;*/
/*		padding: 12px 0px;*/
/*		!* display: block; *!*/
/*		font-weight: bold;*/
/*		height: auto;*/
/*		position: relative;*/
/*		color: var(--btn-secondary);*/
/*		text-align: right;*/
/*	}*/

/*	.desc_nav_butt > span:after {*/
/*		position: absolute;*/
/*		font-family:FontAwesome;*/
/*		left: 0;*/
/*		content: '\f107';*/
/*		font-size: 25px;*/
/*	}*/
/*	.desc_nav_butt.open > span:after {*/
/*		content: '\f106';*/
/*	}*/

/*	.desc_nav_butt.active {*/
/*		border: none;*/
/*	}*/

/*	.desc_mobile {*/
/*		text-align: right;*/
/*		padding: 20px;*/
/*		background-color: #fff;*/
/*		box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08), inset 0 1px 0 0 #ccccd8;*/
/*	}*/
/*	*/
/*	.rank_form {*/
/*		float: none;*/
/*		margin: 0;*/
/*	}*/
/*	*/
/*	.rank_form.open {*/
/*		margin: auto;*/
/*	}*/
/*	*/
/*	.rank_form:not(.open) {*/
/*		background-color: transparent;*/
/*		height: auto;*/
/*		padding: 0;*/
/*	}*/
/*	*/
/*	.rank_form:not(.open) * {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.rank_form:not(.open) .mobile_butt {*/
/*		display: block;*/
/*	}*/
/*	*/
/*	.category_items {*/
/*		padding-top: 30px;*/
/*		background: var(--site-background);*/
/*	}*/
/*	*/
/*	.product_gallery .gallery_elems .arrow_left, .product_gallery .gallery_elems .arrow_right {*/
/*		bottom: 265px;*/
/*	}*/
/*	*/
/*	.product_gallery img.brand_logo.field_img_brand {*/
/*		top: 0px;*/
/*		top: auto;*/
/*		max-width: 20%;*/
/*	}*/
/*	*/
/*	!* .loby_section.promotions_section .gallery_elems .arrow_left, .loby_section.promotions_section .gallery_elems .arrow_right {*/
/*		display: block;*/
/*	} *!*/

/*	.loby_section.subcat_section .gallery_elems .arrow_left, .loby_section.subcat_section .gallery_elems .arrow_right,*/
/*	.loby_section.promotions_section .gallery_elems .arrow_left, .loby_section.promotions_section .gallery_elems .arrow_right {*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.butt.to_left {*/
/*		margin: auto;*/
/*	}*/
/*	*/
/*	.content_wrapper {*/
/*		max-width: 95%;*/
/*	}*/

/*}*/

/*@media only screen and (max-width: 830px){*/
/*	.mobile_search_header.fixed-search {*/
/*		width: 88%;*/
/*	}*/

/*	#header_mobile span.inline.nav_menu.fixed-search {*/
/*		height: fit-content;*/
/*		position: fixed;*/
/*		top: 53px;*/
/*		right: 3%;*/
/*		z-index: 15;*/
/*	}*/

/*	.container .item_img, .loby_section.subcat_section .gallery .item_img, .loby_section.promotions_section .gallery .item_img {*/
/*		max-height: 20%;*/
/*	}*/
/*}*/

/*@media only screen and (max-width: 600px){*/
/*	.gallery_overlay {*/
/*		height: calc(100% - 20px);*/
/*	}*/
/*	a.loby_gallery_item {*/
/*		width: 50%;*/
/*	}*/
/*	*/
/*	.loby_gallery a.loby_gallery_item {*/
/*		width: 49%;*/
/*		margin-bottom: 20px;*/
/*	}*/

/*	.float_left.galleries_nav {*/
/*		float: none;*/
/*		width: 100%;*/
/*		margin-top: 12px;*/
/*		margin-right: 5px;*/
/*	}*/
/*	*/
/*	.loby_section.multiple_galleries .galleries_nav {*/
/*		margin-top: 32px;*/
/*	}*/
/*	*/
/*	.product_like {*/
/*		margin-bottom: 5px;*/
/*		right: 0;*/
/*	}*/
/*	*/
/*	div#promoted_items_gallery {*/
/*		height: 81vw;*/
/*	}*/
/*	*/
/*	.product_gallery .gallery_elems .arrow_left, .product_gallery .gallery_elems .arrow_right {*/
/*		!* bottom: 240px; *!*/
/*		display: none;*/
/*	}*/
/*	*/
/*	.container.item_container.cubes_module {*/
/*		height: 545px;*/
/*		max-height: 545px;*/
/*	}*/
/*	*/
/*}*/

/*@media only screen and (max-width: 480px){*/
/*	.extra_information .info_box_container {*/
/*		display: grid;*/
/*		grid-template-rows: repeat( auto-fit, minmax(250px, 1fr) );*/
/*		grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );*/
/*	}*/

/*	.extra_information .info_box_container .info_box {*/
/*		width: 100%;*/
/*	}*/

/*	.mail-updates-container .img-container {*/
/*		background: transparent;*/
/*	}*/

/*	.mail-updates-container .img-container img {*/
/*		width: 100vw;*/
/*	}*/

/*	div#promoted_items_gallery {*/
/*		height: 85vw;*/
/*	}*/
/*	*/
/*	.product_gallery .gallery_elems .arrow_left, .product_gallery .gallery_elems .arrow_right {*/
/*		bottom: 150px;*/
/*	}*/
/*	*/
/*	#cart_main .inline .product_select_wrapper {*/
/*		width: 100%;*/
/*	}*/
/*	.authCode-input-container input {*/
/*		width: 20px;*/
/*		padding: 2px;*/
/*		margin: 2px;*/
/*		text-align: center;*/
/*		font-size: 16px;*/
/*	}*/
/*}*/

/*@media only screen and (max-width: 360px){*/
/*	.field_title {*/
/*		line-height: 1.2;*/
/*		font-size: 15px;*/
/*	}*/

/*	.field_sub_title {*/
/*		line-height: 1.1;*/
/*	}*/

/*	.item_price span.text_22, .item_price span.text_26 {*/
/*		font-size: 14px;*/
/*	}*/

/*	.item_price {*/
/*		font-size: 8px;*/
/*	}*/

/*	.item_price_before_discount {*/
/*		font-size: 12px;*/
/*		height: 15px;*/
/*	}*/
/*	*/
/*	span.text_bold.text_22.item_price_from_txt {*/
/*		font-size: 10px;*/
/*	}*/
/*}*/

/*.container .item_img img.brand_logo {*/
/*	max-width: 40% !important;*/
/*	max-height: 22px;*/
/*	width: auto;*/
/*	bottom: -20px;*/
/*}*/
/*div#shadow,*/
/*div#popup_shadow {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: RGBA(0,0,0,0.6);*/
/*    z-index: 999;*/
/*}*/

/*div#login_pop,*/
/*div#popup_message {*/
/*    position: fixed;*/
/*    width: 100%;*/
/*    max-width: 550px;*/
/*    top: 10%;*/
/*    right: 0;*/
/*    left: 0;*/
/*    margin: auto;*/
/*    text-align: center;*/
/*    z-index: 999999;*/
/*    background: #fff;*/
/*    padding: 30px 0 16px;*/
/*    box-shadow: 2px 2px 7px 3px RGBA(0,0,0,0.6);*/
/*}*/

/*div#popup_message {*/
/*	top: 50%;*/
/*	transform: translateY(-50%);*/
/*	background: transparent;*/
/*	box-shadow: none;*/
/*}*/

/*div#login_pop span {*/
/*    display: block;*/
/*    max-width: 80%;*/
/*    margin: auto;*/
/*    font-size: 17px;*/
/*}*/
/*div#login_pop span.pop-title {*/
/*    font-weight: bold;*/
/*    font-size: 19px;*/
/*}*/
/*div#login_pop a.pop-btn {*/
/*    background: var(--site_primary);*/
/*    color: #fff;*/
/*    display: block;*/
/*    width: 85px;*/
/*    margin: 20px auto 0;*/
/*    border-radius: 20px;*/
/*    font-weight: bold;*/
/*    height: 30px;*/
/*    line-height: 30px;*/
/*}*/
/*div#login_pop i.x-btn,*/
/*div#popup_message i.x-btn {*/
/*    position: absolute;*/
/*    top: 5%;*/
/*    left: 2%;*/
/*}*/
/*div#popup_message i.x-btn {*/
/*	position: absolute;*/
/*	top: 0%;*/
/*	left: 15%;*/
/*	color: #fff;*/
/*	font-weight: bold;*/
/*	padding: 20px;*/
/*}*/
/*div#login_pop i.x-btn:before,*/
/*div#popup_message i.x-btn:before {*/
/*    content: '╳';*/
/*    font-style: normal;*/
/*    cursor: pointer;*/
/*}*/
/*.container_item_wrapper.item_out_of_stock .item:before {*/
/*    content: url(/images/out_of_stock_2.png);*/
/*    width: 50px;*/
/*    height: 50px;*/
/*    display: block;*/
/*    position: absolute;*/
/*    z-index: 1;*/
/*    !*margin-right: 10px;*!*/
/*}*/

/*.item:not(.product_pay_wrapper) .item_price.price_zero .item_price_money, .item:not(.product_pay_wrapper) .item_price.price_zero .nis_sign, .item:not(.product_pay_wrapper) .item_price.price_zero span.text_26.text_bold, .item:not(.product_pay_wrapper) .item_price.price_zero .plus_sign {*/
/*    display: none;*/
/*}*/


/*.section_summary .summary_pay_with_coupon_div {*/
/*	display: none;*/
/*}*/

/*.section_summary.valid_coupon .summary_pay_div {*/
/*	display: none;*/
/*}*/

/*.section_summary.valid_coupon .summary_pay_with_coupon_div {*/
/*	display: block;*/
/*}*/

/*.item_cart.providedByBox .cell.points:not(.valid_coupon) .item_row_pay_with_coupon {*/
/*	display: none;*/
/*}*/

/*.item_cart.providedByBox .cell.points.valid_coupon .item_row_pay {*/
/*	display: none;*/
/*}*/

/*.summary_pay_row > * {*/
/*	display: inline-block;*/
/*}*/

/*.section_summary {*/
/*	width: 200px;*/
/*}*/

/*.section_summary .summary_pay_label {*/
/*	width: 150px;*/
/*}*/

/*.section_summary .summary_pay_value {*/
/*	width: 95px;*/
/*	text-align: left;*/
/*	direction: ltr;*/
/*}*/

/*.section_summary .coupon_div {*/
/*	max-width: 300px;*/
/*}*/

/*.summary_pay_div {*/
/*	margin-top: 20px;*/
/*}*/

/*.item_row_pay_with_coupon .summary_pay_row.final_sum .summary_pay_label {*/
/*	font-weight: bold;*/
/*}*/

/*span.item_final_sum.nis_sum {*/
/*	font-weight: bold;*/
/*	font-size: 18px;*/
/*	color: var(--site_primary);*/
/*}*/

/*.summary_total_div .summary_pay_row.final_sum .summary_pay_label, .summary_total_div #total_sum_coupon {*/
/*	font-weight: bold;*/
/*	color: var(--site_primary);*/
/*}*/

/*.my-coupons .my-coupons-wrapper .data-row.price .value.per:before {*/
/*	content: '%';*/
/*}*/

/*.coupon_div_wrap {*/
/*	direction: ltr;*/
/*}*/

/*.coupon_div {*/
/*	max-width: 400px;*/
/*	text-align: right;*/
/*	border-top: 1px solid #d1e8f7;*/
/*	margin-top: 10px;*/
/*	padding-top: 10px;*/
/*}*/

/*.item_cart .coupon_div {*/
/*	border-top: none;*/
/*}*/

/*.item_cart coupon_div {*/
/*	border-top: none;*/
/*}*/

/*.container_item .coupon_title {*/
/*	color: var(--footer-primary);*/
/*}*/

/*.coupon_title {*/
/*	color: var(--text-primary);*/
/*	font-size: 15px;*/
/*	margin-bottom: 5px;*/
/*	font-weight: bold;*/
/*}*/

/*.coupon_msg {*/
/*	font-size: 14px;*/
/*	margin-top: 6px;*/
/*}*/

/*input[name="coupon_input"] {*/
/*	border: none;*/
/*	outline: none;*/
/*	background: transparent;*/
/*}*/

/*.coupon_input_wrap {*/
/*	padding: 7px 9px;*/
/*	!* background: #f3f3f3; *!*/
/*	position: relative;*/
/*	background: #fff;*/
/*	border-radius: 7px;*/
/*	border: 1px solid var(--footer-primary);*/
/*	cursor: text;*/
/*}*/

/*.coupon_div.valid_coupon .coupon_input_wrap {*/
/*	background: var(--light-blue);*/
/*}*/

/*.coupon_input_text {font-size: 15px;color: #939393;}*/

/*.coupon_div.valid_coupon .coupon_msg {*/
/*	color: var(--footer-primary);*/
/*}*/

/*.coupon_div.valid_coupon .coupon_title:before {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f058';*/
/*	color: var(--footer-primary);*/
/*	margin-left: 5px;*/
/*	font-size: 22px;*/
/*	display: inline-block;*/
/*}*/

/*.coupon_input_list {*/
/*	position: absolute;*/
/*	width: 100%;*/
/*	right: 0;*/
/*	top: 47px;*/
/*	background: #fff;*/
/*	box-shadow: 0px 0px 14px rgba(0,0,0,0.2);*/
/*}*/

/*.coupon_input_el {*/
/*	padding: 10px 8px;*/
/*	font-size: 16px;*/
/*}*/

/*.coupon_input_el.checked {*/
/*	background: var(--main-blue);*/
/*	color: #fff;*/
/*}*/

/*.coupon_input_el label {*/
/*	display: block;*/
/*}*/

/*.coupon_input_drop_butt {*/
/*	position: absolute;*/
/*	left: 12px;*/
/*	top: 10px;*/
/*	cursor: pointer;*/
/*}*/

/*.coupon_input_drop_butt:before {*/
/*	font-family: 'FontAwesome';*/
/*	content: '\f107';*/
/*	font-size: 18px;*/
/*}*/

/*.coupon_input_wrap.open .coupon_input_drop_butt:before {*/
/*	content: '\f106';*/
/*}*/

/*.coupon_input_wrap:not(.open) .coupon_input_list {*/
/*	display: none;*/
/*}*/

/*.coupon_input_wrap:not(.empty) .coupon_input_text {*/
/*	display: none;*/
/*}*/

/*.coupon_input_wrap.empty input[name="coupon_input"] {*/
/*	display: none;*/
/*}*/

/*.coupon_input_wrap.no_list .coupon_input_list, .coupon_input_wrap.no_list .coupon_input_drop_butt {*/
/*	display: none;*/
/*}*/

/*input[name="coupon_input"]:-webkit-autofill,*/
/*input[name="coupon_input"]:-webkit-autofill:hover,*/
/*input[name="coupon_input"]:-webkit-autofill:focus,*/
/*input[name="coupon_input"]:-webkit-autofill:active {*/
/*	transition: background-color 5000s ease-in-out 0s;*/
/*	-webkit-fill-color: transparent !important;*/
/*}*/

/*input[name="open_coupon"] {*/
/*	display: inline-block;*/
/*	width: auto;*/
/*}*/

/*span.sale_flag_element span.flag_icon {*/
/*	display: none !important;*/
/*}*/

/*span.sale_flag_element:first-child {*/
/*	background: var(--main-red) !important;*/
/*}*/

/*span.sale_flag_element:nth-child(2) {*/
/*	background: var(--main-red) !important;*/
/*}*/

/*span.sale_flag_element span.flag_text {*/
/*	color: var(--text-primary) !important;*/
/*	background: unset !important;*/
/*	-webkit-background-clip: unset !important;*/
/*	-webkit-text-fill-color: unset !important;*/
/*}*/

/*span.sale_flag_element:first-child span.flag_text {*/
/*	!*color: var(--footer-primary) !important;*!*/
/*	color: #fff !important;*/
/*}*/

/*span.sale_flag_element:nth-child(2) span.flag_text {*/
/*	color: #fff !important;*/
/*}*/

/*.login-popup {*/
/*	position: fixed;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	background: rgba(0, 0, 0, 0.7);*/
/*	 display: none;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	z-index: 20;*/
/*}*/

/*.login-popup.show {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*}*/

/*.login-popup .content {*/
/*	position: relative;*/
/*	background-color: #fff;*/
/*	width: 70vw;*/
/*	padding-top: 20px;*/
/*}*/

/*.login-popup .hide {*/
/*	display: none;*/
/*}*/

/*.login-popup .navbar {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	width: 90%;*/
/*	margin: 0 auto;*/
/*}*/

/*.login-popup .navbar div {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	width: 50%;*/
/*	border-bottom: 1px solid black;*/
/*	padding: 10px 0;*/
/*	cursor: pointer;*/
/*	font-size: 18px;*/
/*}*/

/*.login-popup div.selected {*/
/*	border-bottom: 3px solid #319bf5;*/
/*	color: #319bf5;*/
/*}*/

/*.login-popup .body-data {*/
/*	padding: 30px 10vw 24px;*/
/*}*/

/*.login-popup .divider {*/
/*	position: relative;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	margin: 3px 0 20px;*/
/*}*/

/*.login-popup .divider .line {*/
/*	position: absolute;*/
/*	left: 0;*/
/*	top: 50%;*/
/*	transform: translateY(-50%);*/
/*	background: black;*/
/*	width: 100%;*/
/*	height: 1px;*/
/*}*/

/*.login-popup .divider .word {*/
/*	font-size: 14px;*/
/*	text-align: center;*/
/*	display: inline-block;*/
/*	width: 50px;*/
/*	background: white;*/
/*	z-index: 2;*/
/*}*/

/*.login-popup .body-data .social-login {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*}*/

/*.login-popup .body-data .social-login a {*/
/*	padding: 10px;*/
/*}*/

/*.login-popup .registration-wrapper {*/
/*	display: none;*/
/*}*/

/*.login-popup .body-data.registration .registration-wrapper {*/
/*	display: block;*/
/*}*/

/*.login-popup .input_wrapper {*/
/*	position: relative;*/
/*	margin-bottom: 30px;*/
/*	color: #6f7584;*/
/*}*/

/*.login-popup .input_wrapper .input {*/
/*	border: unset;*/
/*	border-bottom: 1px solid lightgrey;*/
/*	width: 100%;*/
/*}*/

/*.login-popup .input_wrapper .placeholder {*/
/*	position: absolute;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	transition: bottom 200ms ease-in-out;*/
/*	pointer-events: none;*/
/*}*/

/*.login-popup .input_wrapper.animate .placeholder {*/
/*	bottom: 100%;*/
/*	color: var(--site_primary);*/
/*}*/

/*.login-popup .no-user {*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*}*/

/*.login-popup .body-data.registration .bottom-line,*/
/*.login-popup .body-data.registration .no-user {*/
/*	display: none;*/
/*}*/

/*.login-popup .no-user > span.clickable {*/
/*	color: #319bf5;*/
/*	text-decoration: underline;*/
/*	margin-right: 3px;*/
/*	cursor: pointer;*/
/*}*/

/*.login-popup .submit-btn,*/
/*.login-popup .change-password .email-btn{*/
/*	width: 100%;*/
/*	height: 45px;*/
/*	border-radius: 3px;*/
/*	background: var(--site_primary);*/
/*	color: white;*/
/*	font-size: 16px;*/
/*	border: unset;*/
/*	margin-bottom: 10px;*/
/*	cursor: pointer;*/
/*}*/

/*.login-popup .submit-btn {*/
/*	margin-top: 20px;*/
/*}*/

/*.login-popup .bottom-line {*/
/*	display: flex;*/
/*	justify-content: space-between;*/
/*	align-items: center;*/
/*	margin-bottom: 20px;*/
/*}*/

/*.login-popup .forget-password {*/
/*	color: #319bf5;*/
/*	text-decoration: underline;*/
/*	cursor: pointer;*/
/*}*/

/*.login-popup .change-password .cancel-span {*/
/*	display: block;*/
/*	text-align: center;*/
/*	color: #319bf5;*/
/*	text-decoration: underline;*/
/*	font-size: 14px;*/
/*	cursor: pointer;*/
/*}*/

/*.login-popup .body-data.password .social-wrapper,*/
/*.login-popup .body-data.password .divider,*/
/*.login-popup .body-data.password .regular-login {*/
/*	display: none;*/
/*}*/

/*.login-popup .change-password {*/
/*	display: none;*/
/*	padding-top: 25px;*/
/*}*/

/*.login-popup .body-data.password .change-password {*/
/*	display: block;*/
/*}*/

/*.login-popup .change-password .msg {*/
/*	font-size: 14px;*/
/*	line-height: 17px;*/
/*	text-align: center;*/
/*	margin-bottom: 50px;*/
/*}*/

/*.login-popup .change-password .input_wrapper .err-msg {*/
/*	position: absolute;*/
/*	top: 100%;*/
/*	right: 0;*/
/*	font-size: 12px;*/
/*	color: red;*/
/*	display: none;*/
/*}*/

/*.input_wrapper label.error {*/
/*	position: absolute;*/
/*	color: red;*/
/*	right: 0;*/
/*	top: 100%;*/
/*	font-size: 12px;*/
/*}*/

/*.login-popup .change-password .input_wrapper.err .err-msg {*/
/*	display: block;*/
/*}*/

/*.login-popup .social-wrapper {*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	width: 100%;*/
/*	margin: 0 auto;*/
/*}*/

/*.login-popup .cb-wrapper {*/
/*	display: flex;*/
/*	align-items: flex-start;*/
/*	cursor: pointer;*/
/*}*/

/*.login-popup .cb-wrapper >img {*/
/*	position: relative;*/
/*	width: 15px;*/
/*	margin-left: 5px;*/
/*	top: 4px;*/
/*}*/

/*.login-popup .social-link {*/
/*	position: relative;*/
/*	display: block;*/
/*	margin-bottom: 13px;*/
/*	cursor: pointer;*/
/*}*/

/*.login-popup .social-link >img {*/
/*	width: 100%;*/
/*}*/

/*.login-popup .social-link .social-name {*/
/*	position: absolute;*/
/*	display: block;*/
/*	width: 160px;*/
/*	font-size: 16px;*/
/*	text-align: center;*/
/*	color: white;*/
/*	top: 50%;*/
/*	left: 50%;*/
/*	transform: translate(-50%, -50%);*/
/*}*/

/*.login-popup .cb-wrapper.err {*/
/*	color: red;*/
/*}*/

/*.login-popup .cb-wrapper .label .clickable,*/
/*.purchace_section .clickable{*/
/*	color: #319bf5;*/
/*	text-decoration: underline;*/
/*}*/

/*.extra-layout {*/
/*	background: rgba(0, 0, 0, 0.7);*/
/*	position: fixed;*/
/*	top: 0;*/
/*	left: 0;*/
/*	right: 0;*/
/*	bottom: 0;*/
/*	display: none;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	z-index: 11;*/
/*}*/

/*.extra-layout .content {*/
/*	width: 475px;*/
/*	padding: 20px;*/
/*}*/

/*.extra-layout.mail-verification .title-wrapper {*/
/*	display: none;*/
/*}*/

/*.extra-layout .content .btn-submit {*/
/*	display: block;*/
/*	background: var(--site_primary);*/
/*	color: white;*/
/*	border: unset;*/
/*	border-radius: 3px;*/
/*	font-size: 18px;*/
/*	width: 150px;*/
/*	height: 40px;*/
/*	margin: 0 auto;*/
/*}*/

/*.extra-layout .content .content-data .msg {*/
/*	font-weight: bold;*/
/*	font-size: 14px;*/
/*	line-height: 20px;*/
/*}*/

/*.verification{*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	align-content: center;*/
/*	align-items: center;*/
/*	border: solid 2px var(--btn-primary);*/
/*	border-radius: 20px;*/
/*	background-color: var(--light-blue);*/
/*	padding: 10px;*/
/*}*/
/*.js-login-code{*/
/*	background-color: var(--btn-primary);*/
/*	color: white;*/
/*	border-radius: 5px;*/
/*	border: none;*/
/*	font-size: 16px;*/
/*	padding: 5px;*/
/*}*/
/*.resend-btn{*/
/*	background-color: var(--btn-primary);*/
/*	color: white;*/
/*	border-radius: 5px;*/
/*	border: none;*/
/*	font-size: 16px;*/
/*}*/
/*.resend-btn:disabled{*/
/*	background-color: lightgrey;*/
/*}*/
/*.send-methods{*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	gap: 20px;*/
/*}*/

/*.auth-success-message {*/
/*	color: var(--site_primary);*/
/*	font-size: 16px;*/
/*	font-weight: bold;*/
/*	text-align: center;*/
/*}*/

/*.auth-fail-message {*/
/*	color: red;*/
/*	font-size: 16px;*/
/*	font-weight: bold;*/
/*	text-align: center;*/
/*}*/

/*footer a.logo-container.logo-flycard {*/
/*	max-width: 250px;*/
/*}*/

/*footer a.logo-container.logo-flycard img {*/
/*	max-width: 100%;*/
/*}*/

/*.align-center {*/
/*	display: flex;*/
/*	justify-content: center;*/
/*}*/

/*@media screen and (min-height: 500px) and (max-height: 899px) {*/
/*	div#search_mobile.open .search_results_wrapper,*/
/*	#header .search_results_wrapper.search_padding {*/
/*		height: 50vh;*/
/*	}*/
/*}*/

