@charset "UTF-8";
/*
	orange = #f78e1e;
*/
:root{
	--orange:#f78721;
	--orange-hover: #f9a64e;
	--blue:#002559;
	--blue-hover: #0a4dab;
}
.img-fluid{	
    max-width: 100%;
    height: auto;
}
.d-flex{
	display:flex;
}
.d-inline-block{
	display:inline-block;
}
.d-block{
	display:block; 
}
.flex-column{
	flex-direction:column;
}
.flex-grow-1 {
	flex-grow:1;
}
.justify-content-end{
	justify-content:end;
}
.justify-content-between{
	justify-content:space-between;
}
.align-items-center{
	align-items:center;
}
.mx-auto{
	margin-inline:auto;
}
.mx-1{
	margin-inline:0.25rem;
}
.mx-2{
	margin-inline:0.5rem;
}
.my-1{
	margin-block:0.25rem;
}
.my-2{
	margin-block:0.5rem;
}
.my-3{
	margin-block:1rem;
}
.ms-2{
	margin-inline-start:0.5rem;
}
.me-2{
	margin-inline-end:0.5rem;
}
.me-3{
	margin-inline-end:1rem;
}
.px-2{
	padding-inline:0.5rem;
}
.px-3{
	padding-inline:1rem;
}
.py-2{
	padding-block:0.5rem;
}
.ps-2{
	padding-inline-start:0.5rem;
}
.pe-2{
	padding-inline-end:0.5rem;
}
.rotate-45{
	transform:rotate(45deg);
}
.sr-only{
	position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
	background-color:#fff;
	color:#000;
}
.lh-1{
	line-height:1;
}
.container{
	max-width:1280px;
	margin:0 auto;
    padding-left: 20px;
    padding-right: 20px;
	box-sizing:border-box;
	width:100%;
}
.image-stack{
	position:relative;
	line-height:1;
}
.stacked-image{
	position:absolute;
	top:50%;
	left:0;
	width:100%;
	height:auto;
	opacity:0;
	z-index:1;
	transform:translateY(-50%);
	transition:opacity 0.3s linear;
}
.image-stack-container:hover .stacked-image,
.image-stack-container:focus .stacked-image,
.image-stack-container:active .stacked-image,
.image-stack:hover .stacked-image,
.image-stack:focus .stacked-image,
.image-stack:active .stacked-image{
	opacity:1;
}
.header-top{
	background-color:var(--blue);
	padding:10px 0;
	position:sticky;
	top:0;
	z-index:1030;
}
.header-top .logo{
	float:none;
	width:auto;
	max-width:none;
	margin:0;
}
.header-top a{
	color:#fff;	
}
.header-top a:hover,
.header-top a:active,
.header-top a:focus{
	color:var(--orange);
}
.header-top-right > * {
    display: flex;
    align-items: center;
}
.header-top-right > * + * {
    border-left: 1px solid #fff;
}
#header-selling-points{    
	background: #fff;
    padding: 10px 0;
    box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
    margin-bottom: 0;
    position: relative;
}
.selling-point {
    text-transform: uppercase;
    color: var(--blue);
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.telephone-number {
	color:#fff;
	transition:color 0.3s linear;
}
.telephone-number:hover,
.telephone-number:focus,
.telephone-number:active
 {
	color:var(--orange);
 }
.telephone-number .fa{
	border: 2px solid currentColor;
    border-radius: 50%;
    width: 28px;
    text-align: center;
    height: 28px;
    line-height: 28px;
	color:var(--orange);
}
.header-top-link{
	line-height:1.5625rem;
}
.header-top-link{
	line-height:1.5625rem;
}
.header-top-link .fa{
	font-size:1.5625rem;	
}
.header-top-link .fa.fa-sign-out{
	font-size:2.2rem;	
}
.minicart-wrapper{
    margin: 0;
    border: 2px solid var(--orange);
    border-radius: 5px;
    padding: 4px 8px 2px;
    height: 36px;
    box-sizing: border-box;
}
.minicart-wrapper .action.showcart .counter.qty{
    background: transparent;
    color: var(--orange);
    margin: 0;
    padding: 0;
    height: auto;
    line-height: 24px;
}
.minicart-wrapper .action.showcart.active,
.minicart-wrapper .action.showcart{
	display:flex;
}
.minicart-wrapper .action.showcart.active:before,
.minicart-wrapper .action.showcart:before{
    display:none;
}
.minicart-wrapper .action.showcart:before,
.header-top-link .fa{
	color:var(--orange);
	transition:color 0.3s linear;
}

.minicart-wrapper .ui-dialog{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1030;
    background-color: #fff;
    box-shadow: 0 3px 3px rgb(0 0 0 / 15%);
    border: 1px solid #bbbbbb;
}
.minicart-wrapper .block-minicart{
	border:0;
	box-shadow:none;
    display: block;
    position: initial;
    right: 0;
    /* width: 400px; */
    /* max-width: 90%; */
}
.ui-dialog .block-minicart{
    position: initial;
	width: 400px;
    max-width: 90%;
    padding: 25px 20px;
}
.minicart-wrapper .block-minicart::before,
.minicart-wrapper .block-minicart::after{
	display:none;
}
.minicart-wrapper .action.showcart:hover:before,
.minicart-wrapper .action.showcart:focus:before,
.minicart-wrapper .action.showcart:active:before,
.header-top-link .fa:hover,
.header-top-link .fa:focus,
.header-top-link .fa:active{
	color:#fff;
}
.header-top-nav{	
    padding: 30px 0 50px;
    background-color: #e4eaf0;
}
.block-minicart .items-total{
    float: none;
    text-align: center;
    margin: 0;
}
.block-minicart .subtotal {
    margin: 0 10px 10px;
    text-align: right;
    display: flex;
    justify-content: space-between;
}
#top-cart-btn-checkout{
    font-size: 1rem;
    line-height: 1.2;
	width:100%;
}
.block-minicart .block-content > #minicart-buttons > .actions > *{	
	margin:0 10px 15px;
}

.switcher-options{
	line-height:1;
} 
.switcher-trigger{
	background-color: var(--orange);
	color: #fff;
	/* amea */
	color:var(--blue);
	border-radius: 5px;
	padding: 4px 8px;
	line-height: 1;
	font-size: 17px;
	text-transform: uppercase;
	cursor:pointer;
	transition:color 0.3s linear, background-color 0.3s linear;
}
.action.skip.contentarea{
	/* amea */
	color:#000;
	background-color:#fff;
}
.switcher-trigger:hover,
.switcher-trigger:focus,
.switcher-trigger:active
{
	color:var(--orange);
	background-color:#fff;
}
#switcher-language-trigger span{
	
}
.nav-toggle{
    background-color: var(--blue);
    color: #fff;
	/* amea */
	color:#fff;
    border-radius: 5px;
    padding: 8px 14px;
    display: inline-block;
    position: initial;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--blue);
	transition:color 0.3s linear, background-color 0.3s linear;
	text-transform:uppercase;
}
.nav-toggle:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '';
    color: #fff;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    width: 2rem;
    display: block;
    height: 10px;
    margin-inline-end: 0.5rem;
	transition:color 0.3s linear;
}
.nav-toggle:hover:before,
.nav-toggle:focus:before,
.nav-toggle:active:before{
	color:var(--blue);
}
.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active{
	background-color:#fff;
	color:var(--blue);
}
.block-search .nested{
	display:none;
}
.block-search .control{
	padding:0;
}
input#search{
	border:0;
	border-bottom:2px solid var(--blue);
	text-align:center;
	height:50px;
    padding: 0px 10px 0px 45px;
}
input#search::placeholder {
    font-weight: bold;
    opacity: .5;
    color: var(--blue);
}
.switcher-label{
	display:none;
}
.page-header .switcher,
.page-footer .switcher{
	position:relative;
}
.page-header .switcher .options ul.dropdown, 
.page-footer .switcher .options ul.dropdown{
	position:absolute;
    right: 0;
    width: auto;
    margin: 0;
	background-color:#fff;
	list-style:none;
}
.page-header .switcher .options ul.dropdown li, 
.page-footer .switcher .options ul.dropdown li{
	margin-bottom:0;
}
.page-header .switcher .options ul.dropdown a, 
.page-footer .switcher .options ul.dropdown a
{
	color:var(--blue);
}
.page-header .switcher .options ul.dropdown a:hover, 
.page-header .switcher .options ul.dropdown a:focus, 
.page-header .switcher .options ul.dropdown a:active, 
.page-footer .switcher .options ul.dropdown a:hover,
.page-footer .switcher .options ul.dropdown a:focus, 
.page-footer .switcher .options ul.dropdown a:active
{
	color:var(--orange);
}

/* Define standard variables and values for website */
.page-footer {
  position: relative;
  padding-bottom: 60px;
}
.page-footer a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .page-footer {
    padding-bottom: 0;
  }

  .footer-bottom_list li {
    display: inline-block;
    margin-inline-end: 0.25rem !important;
    margin-inline-start: 0.25rem !important;
  }
}
.footer-heading {
  border-bottom: 1px solid currentColor;
  padding-inline-start: 0.5rem;
  padding-block-end: 0.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight:bold;
  position:relative;
    margin-block-end: 1.4rem;
}
.footer-heading::before {
    content: "";
    width: 44px;
    background-color: var(--orange);
    height: 2px;
    bottom: 0;
    position: absolute;
}
.footer-heading::after {
  content: "＋";
}
.footer-heading[aria-expanded=true]::after {
  content: "−";
}

.footer-list ul {
  margin-bottom: 1rem !important;
}
.footer-list ul li {
  margin: 0.25rem 0 !important;
}
.footer-list {
	font-size:1rem;
	padding:0 10px;
}
.footer-list p{
	margin-block-end:0.5rem;
}
.footer-top_logo {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background-image: url("../images/footer_logo_top.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 238px;
  height: 59px;
  text-align: center;
}
.footer-top_logo img {
  margin-top: 28px;
}

.footer-map_trigger {
	cursor: pointer;
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-image: url("../images/footer_map_toggle.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	width: 238px;
	height: 59px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 17px;
}
.footer-map_trigger img{
	width:21px;
	margin-top:6px;
}
.footer-map_container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: height 0.3s linear 0s;
}
.footer-map_container.active {
    height: calc(100% + 10px );
    border-top: 10px solid var(--orange);
}
.footer-map_container.active .footer-map_trigger{
    bottom: calc( 100% + 10px);
}

.footer-bottom {
  margin-top: 10px;
}

.footer-payment_gateways img {
  margin: 0 4px;
  filter: grayscale(0.8);
}

#gmap_canvas {
  background-color: #f78721;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fs-2 {
  font-size: 1.75rem;
}

.fs-3 {
  font-size: 1.25rem;
}

.fs-4 {
  font-size: 1rem;
}

.clr-2 {
  color: #f78721;
}

@media (min-width: 576px) {
  ._disable_collapse_sm {
    cursor: initial;
    border-bottom-width: 0;
  }
  ._disable_collapse_sm::after {
    display: none;
  }
  ._disable_collapse_sm + .collapse {
    display: block;
  }
}
@media (min-width: 768px) {
  ._disable_collapse_md {
    cursor: initial;
    border-bottom-width: 0;
  }
  ._disable_collapse_md::after {
    display: none;
  }
  ._disable_collapse_md + .collapse {
    display: block;
  }
}
hr {
  border-color: currentColor;
}

.row-fluid,
.flex-container{
	display:flex;
	flex-wrap:wrap;
}
.flex-container .orario-container{
	width:360px;
	min-width:360px;
	margin-right:30px;
	margin-bottom:20px;
	order:1;
}
.flex-container .owl-carousel-container{
	max-width:calc( 100% - 390px );
	margin-bottom:20px;
	order:2;
	flex:1;
}
.span12{
	width:100%;
}
.span6{
	width:calc(50% - 10px );
}
.span6 + .span6{
	margin-left:20px;
}
@media only screen and (max-width: 767.98px) {
	.row-fluid,
	.flex-container{
		flex-direction:column;
	}
	
	.span6,
	.flex-container .orario-container{
		width:100%;
		margin-right:0;		
	}
.span6 + .span6{
	margin-left:0px;
}
	.flex-container .owl-carousel-container{
		max-width:100%;
		margin-bottom:20px;
	}
}
.flex-container .orario-map{
	width:100%;
	order:3;
}

.horizontal-border{
	border-bottom: 2px solid;
	margin-bottom: 20px;
    padding-bottom: 20px;
}

.owl-carousel-container .owl-controls{
    background: rgba(0, 37, 89,0.5);
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.owl-carousel-container .owl-theme .owl-controls .owl-page span{
	border-radius: 5px;
    transform: skew(-14deg);
    border: 1px solid #fff;
    background: transparent;
	opacity: 1;
	width: 15px;
    height: 15px;
    margin: 6px 2px 2px;
}
.owl-carousel-container .owl-theme .owl-controls .owl-page:hover span,
.owl-carousel-container .owl-theme .owl-controls .owl-page.active span{
	background:#fff;
}
.faqlist {
	list-style:none;
}
.faqitem [data-content-type='heading']:before ,
.faqlist h3:before {
	content: "";
    border-radius: 0.25em;
    background-color: var(--orange);
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translate(-24px, -50%);
    left: 0;
    z-index: 1;
}
.faqitem [data-content-type='heading']:before{
	transform: translate(0px, -50%);
}
.faqitem [data-content-type='heading']:after,
.faqlist h3:after {
	content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-16px, -6px) rotate(45deg);
    z-index: 2;
    border: 1px solid var(--blue);
    border-top-width: 0;
    border-left-width: 0;
}
.faqitem [data-content-type='heading']:after{
    transform: translate(7px, -6px) rotate(45deg);
}
.faqitem [data-content-type='heading'],
.faqitem [data-content-type='text']{
    padding-inline-start: 40px !important;
}
.faqitem [data-content-type='heading'],
.faqlist h3 {
	position:relative;
    font-size: 14px;
    line-height: 30px;
    font-weight: bold;
    display: block;
    margin: 0px;
    padding: 5px 0px 5px 10px;
    cursor: pointer;
    color: #002e62;
}
.faqitem [data-content-type='heading']{
    border-bottom: 2px solid var(--orange);
}
.faqlist > li{
	border-bottom:2px solid var(--orange);
}
.faqlist .content {
    margin: 0px;
    padding: 20px; 
}
.instructions {
    margin: 20px 0 40px;
}
.instructions h2 {
    font-size:1.4rem;
    font-weight: bold;

}
.owl-carousel.owl-theme .owl-dots .owl-dot span{
	background:var(--blue);
}
.owl-carousel.owl-theme .owl-dots .owl-dot.active span, 
.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--orange);
}
.responsive-map{
	height:100%;
}
.stores-page-container iframe{
	height:calc( 100% - 1rem );
	min-height:300px;
	border:0;
}
.stores-page-container .block-static-block.widget{
	margin-bottom:0;
}
.page-layout-cms-full-width #maincontent{
	max-width:100%;
}

.stores-page-container .instructions{
	background: #e4eaf0;
    padding: 30px 0;
	margin:0 -20px;
    position: relative;
    overflow: hidden;
	border-bottom:3px solid var(--blue);
	margin-bottom:30px;
}

.instructions.athens_gr::before {
    content: 'ΑΘΗΝΑ';
}
.instructions.paiania_gr::before {
    content: 'ΠΑΙΑΝΙΑ';
}
.instructions::before {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
    font-size: 22rem;
	line-height:22rem;
    opacity: 0.1;
}
.shipping-method-description{
    background: #e4eaf0;
    margin: 10px 0;
    padding: 10px 15px;
    color: var(--blue);
    border-radius: 5px;
	border-bottom:0;
}
.download-product-attachment{
	display: inline-flex;
    border: 1px solid #f1f1f1;
    flex-direction: column;
    padding: 0.5rem;
    border-radius: 0.25rem;
    background-color: #f1f1f1;
    margin-inline-end: 0.5rem;
    color: var(--blue);
	align-items:center;
}

.download-product-attachment:hover{
    border: 1px solid var(--orange);
}
.mb-2{
	margin-block-end:.5rem; 
}
.block.filter [type="radio"]{
	display:none;
}
.grid-product-actions .actions-primary .stock.unavailable{
	display:none;
}
.am-filter-items-category_ids .items {
	padding-inline-start:.5rem;
}
.totals.table th,
.totals.table td{
	border-bottom:2px solid #EFEFEF;
}
.cart-summary .block.discount {
    border: 1px solid var(--blue);
    margin-top: 10px;
    padding: 0;
    margin-bottom: 10px;
}
.cart-summary .block.discount .title{
	border-top:0;
	cursor:initial;
	padding:7px 10px ;
    background: var(--blue);
    color: #fff;
}
.cart-summary .block.discount > .title:after{
	content:none;
}
.cart-summary .block.discount > .content{
	display:block;
}
.cart-summary .block.discount .fieldset{
    margin: 10px;
	
}


.filter-options-item .filter-options-content .amshopby-slider-wrapper {
    margin: 0 10px
}

.amasty-catalog-topnav .filter-options-item .filter-options-content .amshopby-slider-wrapper,.filter-options-item .filter-options-content .amshopby-slider-wrapper>.items:not(.items-children):not(.am-category-view),.filter-options-item .filter-options-content .amshopby-slider-wrapper .amshopby-fromto-wrap {
    margin: 0
}

.amshopby-slider-container {
    margin: 10px 0 5px
}

.amshopby-slider-container .ui-slider-range {
    position: absolute;
    z-index: 2
}

.amshopby-slider-container .am-slider:not(.-loaded) {
    opacity: 0;
    visibility: hidden
}

.amshopby-slider-container .am-slider:before,.amshopby-slider-container .am-slider:after {
    border-radius: 20px;
    content: '';
    position: absolute;
    z-index: 1
}

.amshopby-slider-container .am-slider .ui-slider-handle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    margin: 0;
    overflow: inherit;
    padding: 0
}

.amshopby-slider-container .amshopby-slider-display {
    margin: 10px 0 0;
    text-align: center
}

.amshopby-slider-container .ui-slider-handle.ui-state-hover~.ui-slider-handle,.amshopby-slider-container .ui-slider-handle.ui-state-active~.ui-slider-handle {
    pointer-events: none;
    user-select: none
}

.amshopby-slider-container .amshopby-slider-tooltip {
    border: 1px solid #fff;
    border-radius: 2px;
    bottom: calc(100% + 7px);
    box-sizing: border-box;
    display: flex;
    font-size: 12px;
    justify-content: center;
    letter-spacing: .03em;
    line-height: 1;
    padding: 3px;
    position: absolute;
    transition: none;
    z-index: 1
}

.amshopby-slider-container .ui-slider-handle .amshopby-slider-corner {
    position: absolute;
    top: -12px;
    width: 8px;
    z-index: 2
}

.amshopby-slider-container .ui-slider-handle .amshopby-slider-corner:before,.amshopby-slider-container .ui-slider-handle .amshopby-slider-corner:after {
    border: 1px solid;
    border-color: inherit;
    box-sizing: content-box;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    content: '';
    display: block;
    height: 6px;
    position: absolute;
    transform: rotate(45deg);
    width: 6px
}

.amshopby-slider-container .ui-slider-handle .amshopby-slider-corner:after {
    background: inherit
}

.amshopby-slider-container.-default .am-slider {
    background: #dadada;
    height: 10px;
    margin: 0 8px
}

.amshopby-slider-container.-default .am-slider:before,.amshopby-slider-container.-default .am-slider:after {
    height: 10px;
    width: 16px
}

.amshopby-slider-container.-default .am-slider:before {
    left: -8px
}

.amshopby-slider-container.-default .am-slider:after {
    right: -8px
}

.amshopby-slider-container.-default .ui-slider-range {
    background: #b6b6b6;
    height: 10px
}

.amshopby-slider-container.-default .am-slider .ui-slider-handle {
    border-radius: 50%;
    height: 16px;
    transform: translate(-8px, -3px);
    width: 16px
}

.filter-options-item .filter-options-content .amshopby-fromto-wrap .am-fromto-widget {
    flex-wrap: wrap;
    margin-top: 10px
}

.filter-options-item .filter-options-content .amshopby-slider-wrapper .amshopby-fromto-wrap .am-fromto-widget {
    margin-top: 25px
}

.filter-options-item .filter-options-content .amshopby-slider-wrapper.-volumetric .amshopby-fromto-wrap .am-fromto-widget {
    margin-top: 35px
}

.amasty-catalog-topnav .amshopby-fromto-wrap .am-fromto-widget {
    max-width: 210px
}

.amshopby-fromto-wrap .am-fromto-widget>.amshopby-input-wrapper {
    max-width: 50%;
    position: relative;
    width: calc(50% - 7px)
}

.amshopby-fromto-wrap .am-fromto-widget .am-filter-price {
    background-clip: padding-box;
    border: 1px solid #dfdedd;
    color: #494949;
    font-size: 14px;
    height: 40px;
    letter-spacing: .03em;
    text-align: center;
    width: 100%
}

.amshopby-fromto-wrap .am-fromto-widget>.delimiter {
    line-height: 40px;
    margin: 0;
    width: 14px
}

.amshopby-fromto-wrap .am-fromto-widget>.am-filter-go {
    margin: 15px 0 0;
    width: 100%
}

.amshopby-fromto-wrap .am-fromto-widget>.am-filter-go:not(.primary),.amshopby-fromto-wrap .am-fromto-widget>.am-filter-go:active {
    box-shadow: none
}

.amshopby-input-wrapper .amshopby-currency {
    background: #fff;
    bottom: calc(100% - 10px);
    color: #494949;
    font-size: 14px;
    left: 4px;
    letter-spacing: .03em;
    line-height: 16px;
    padding: 2px;
    position: absolute
}

.amshopby-slider-tooltip {
    color: #fff
}

.ui-slider-handle:not(.ui-state-hover):not(.ui-state-active) .amshopby-slider-corner,.ui-slider-handle:not(.ui-state-hover):not(.ui-state-active) .amshopby-slider-tooltip {
    opacity: 0;
    visibility: hidden
}

.amshopby-slider-container.-improved {
    margin-top: 30px
}

.amshopby-slider-container.-improved .am-slider {
    background: #dfdedd;
    height: 4px;
    margin: 0 8px
}

.amshopby-slider-container.-improved .am-slider:before,.amshopby-slider-container.-improved .am-slider:after {
    background: #dfdedd;
    height: 4px;
    width: 16px
}

.amshopby-slider-container.-improved .am-slider:before {
    left: -8px
}

.amshopby-slider-container.-improved .am-slider:after {
    right: -8px
}

.amshopby-slider-container.-improved .ui-slider-range {
    height: 4px
}

.amshopby-slider-container.-improved .am-slider .ui-slider-handle {
    border-radius: 50%;
    height: 16px;
    top: -6px;
    transform: translateX(-8px);
    width: 16px
}

.amshopby-slider-container.-volumetric {
    margin-top: 20px
}

.amshopby-slider-container.-volumetric .am-slider {
    background: #dfdedd;
    border-radius: 20px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
    height: 4px;
    margin: 0 4px
}

.amshopby-slider-container.-volumetric .am-slider:before,.amshopby-slider-container.-volumetric .am-slider:after {
    display: none
}

.amshopby-slider-container.-volumetric .ui-slider-range {
    border-radius: 20px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
    height: 4px
}

.amshopby-slider-container.-volumetric .am-slider .ui-slider-handle {
    border-radius: 2px;
    height: 12px;
    transform: translate(-4px, 10px);
    width: 8px
}

.amshopby-slider-container.-volumetric .am-slider .ui-slider-handle:before {
    background: inherit;
    bottom: calc(100% - 4px);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    content: '';
    display: block;
    height: 6px;
    left: calc(50% - 3px);
    position: absolute;
    transform: rotate(-135deg);
    width: 6px
}

.amshopby-slider-container.-volumetric .amshopby-slider-tooltip {
    border-radius: 3px;
    bottom: calc(100% + 17px)
}

.amshopby-slider-container.-volumetric .amshopby-slider-corner {
    top: -23px
}

.amshopby-slider-container.-volumetric .amshopby-slider-display {
    margin-top: 20px
}

.amshopby-slider-container.-light {
    margin-top: 30px
}

.amshopby-slider-container.-light .am-slider {
    background: #dfdedd;
    height: 1px;
    margin: 0 8px
}

.amshopby-slider-container.-light .am-slider:before,.amshopby-slider-container.-light .am-slider:after {
    background: #dfdedd;
    height: 1px;
    width: 16px
}

.amshopby-slider-container.-light .am-slider:before {
    left: -8px
}

.amshopby-slider-container.-light .am-slider:after {
    right: -8px
}

.amshopby-slider-container.-light .ui-slider-range {
    height: 1px
}

.amshopby-slider-container.-light .am-slider .ui-slider-handle {
    background: #fff;
    border: 1px solid #dfdedd;
    border-radius: 50%;
    box-sizing: border-box;
    height: 16px;
    top: -8px;
    transform: translateX(-8px);
    width: 16px
}

.amshopby-slider-container.-light .amshopby-slider-corner {
    background: #fff;
    border-color: #dfdedd
}

.amshopby-slider-container.-light .amshopby-slider-tooltip {
    border-color: #dfdedd
}

.amshopby-slider-container.-dark {
    margin-top: 30px
}

.amshopby-slider-container.-dark .am-slider {
    background: #4a4948;
    height: 3px;
    margin: 0 5px
}

.amshopby-slider-container.-dark .am-slider:before,.amshopby-slider-container.-dark .am-slider:after {
    height: 3px;
    width: 10px
}

.amshopby-slider-container.-dark .am-slider:before {
    left: -5px
}

.amshopby-slider-container.-dark .am-slider:after {
    right: -5px
}

.amshopby-slider-container.-dark .ui-slider-range {
    height: 3px
}

.amshopby-slider-container.-dark .am-slider .ui-slider-handle {
    border-radius: 2px;
    height: 15px;
    top: -6px;
    transform: translateX(-5px);
    width: 10px
}

.filter-options-item .filter-options-content {
    padding-bottom: 5px
}

.filter-options-item .filter-options-content .am-swatch-wrapper .swatch-option.image,.filter-options-item .filter-options-content .swatch-attribute.size .swatch-option.selected,.filter-options-item .filter-options-content .swatch-attribute.manufacturer .swatch-option.selected {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat
}

.filter-options-item .filter-options-content .range {
    display: flex;
    align-items: center;
    margin-top: 15px;
    text-align: center
}

.filter-options-item .filter-options-content .items:not(.items-children):not(.am-category-view),.filter-options-item .filter-options-content .am-category-wrapper,.filter-options-item .filter-options-content .amshopby-fromto-wrap {
    margin: 0 10px
}

.filter-options-item .filter-options-content .am-shopby-form {
    margin: 0 7px
}

.filter-options-item .filter-options-content .items [class*='am-filter-item'] {
    margin-left: 0;
    padding: 0
}

.filter-options-item .filter-options-content .count {
    display: inline-flex;
    padding-left: 0
}

.filter-options-item .filter-options-content .am-shopby-swatch-label .count {
    margin: 0;
    padding: 0
}

.filter-options-item .filter-options-content .am-shopby-swatch-label .label {
    margin-right: 5px
}

.filter-options-item .filter-options-content .am-shopby-form {
    overflow-x: hidden;
    overflow-y: auto;
    margin-bottom: -15px;
    padding: 3px
}

.filter-options-item .filter-options-content .am-shopby-form .swatch-attribute .swatch-option-link-layered:hover {
    background-color: unset
}

.amasty-catalog-topnav .filter-options-item .filter-options-content {
    padding-bottom: 10px
}

.amasty-catalog-topnav .filter-options-item .filter-options-content .items:not(.items-children):not(.am-category-view),.amasty-catalog-topnav .filter-options-item .filter-options-content .am-shopby-form,.amasty-catalog-topnav .filter-options-item .filter-options-content .am-category-wrapper,.amasty-catalog-topnav .filter-options-item .filter-options-content .amshopby-fromto-wrap {
    margin: 0
}

.filter-options .items.-am-overflow {
    overflow-x: hidden;
    overflow-y: auto
}

.filter-options .items .items-children.-folding {
    padding-left: 20px;
    width: 100%;
    list-style: none
}

.filter-options .items.-am-singleselect .item.-is-by-click .items-children.-folding .item .amshopby-filter-parent {
    padding-left: 20px
}

.filter-options .items.-am-multiselect .item.-is-expanded .items-children.-folding {
    padding-left: 0
}

.filter-options .items .items-children.-folding .item {
    margin: 5px 0
}

.filter-options .item.-empty-value {
    opacity: .5;
    pointer-events: none;
    user-select: none
}

.filter-options .ui-widget-overlay {
    background: #aaa;
    opacity: .3
}

.filter-options .ui-widget-shadow {
    box-shadow: 0 0 5px #666
}

.filter-options .am-category-view {
    position: absolute;
    z-index: 9;
    display: none;
    overflow-y: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 10px;
    max-height: 300px;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    white-space: nowrap
}

.filter-options .items.am-category-view,.filter-options .am-category-view ol.items {
    margin: 0
}

.filter-options .am-category-view.-am-singleselect .am-collapse-icon {
    top: 0
}

.filter-options .am-category-view.-am-singleselect .am-collapse-icon:after,.filter-options .am-category-view.-am-singleselect .am-show-more:before {
    right: inherit;
    left: 0
}

.filter-options .am-category-view .item a.amshopby-filter-parent {
    padding-left: 20px
}

.filter-options .am-category-view.-am-multiselect .item>.am-collapse-icon~a.amshopby-filter-parent {
    padding-left: 40px
}

.filter-options .am-category-view [class*='am-filter-item'] {
    display: inline-block;
    white-space: initial
}

.filter-options .filter-options-content .rating-summary {
    display: inline-block;
    vertical-align: sub
}

.filter-options .amshopby-search-box {
    margin: 0 0 15px
}

.filter-options .am-labels-folding.-am-singleselect .item .am-input,.filter-options [class*='am-filter-items-'].am-labels-folding.-am-singleselect .item:not(.swatch-option-link-layered) input[type='radio'],.filter-options .amshopby-category-dropdown+form .-am-singleselect .item input[type='radio'],.filter-options .am-category-view input[type='radio'] {
    display: none
}

.filter-options .am-labels-folding.-am-singleselect .item {
    padding: 0
}

.filter-options .am-category-wrapper .items.-am-multiselect .item.-filter-parent:not(.-is-collapsible),.filter-options .items:not(.items-children)>.item.-is-by-click.-filter-parent~.item.-is-expanded {
    margin-left: 20px
}

.filter-options-content .am-ranges .items.-am-multiselect .item {
    position: relative
}

.filter-options-content .am-ranges .items.-am-multiselect .item [class*='am-filter-item'] {
    padding-left: 20px
}

.filter-actions .filter-clear {
    color: #1979c3;
    font-size: 14px;
    line-height: 19px
}

.filter-actions .filter-clear:hover {
    color: #399ae6;
    text-decoration: none
}

.filter-actions .filter-clear:focus,.filter-actions .filter-clear:active {
    color: #135d96
}

.filter-options-content .item a:hover {
    background-color: transparent;
    color: #1979c3
}

.filter-options-content .item a:hover .count {
    color: #1979c3
}

.filter-options-content .item a:active,.filter-options-content .item a:active .count {
    color: #135d96;
    text-decoration: none
}

.filter-options-content .item:first-child {
    margin-top: 0
}

.filter-options-content .item:last-child {
    margin-bottom: 0
}

.filter-options-content .item>a {
    display: block
}

.filter-options-content .items.-am-singleselect .item>input[type='radio'] {
    display: none
}

.filter-options-content .items.-am-singleselect .amshopby-link-selected,.filter-options-content .swatch-option.selected+.am-shopby-swatch-label {
    color: #1979c3
}

.filter-options-content .items.-am-singleselect .amshopby-link-selected .count,.filter-options-content .swatch-option.selected+.am-shopby-swatch-label .count {
    color: #1979c3
}

.am-show-more,.filter-options-content .am-show-more {
    position: relative;
    display: none;
    margin: 10px 0 0;
    padding: 0 22px 0 0;
    color: #070605;
    letter-spacing: .03em;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    background: transparent;
    border: 0
}

.amasty-catalog-topnav .filter-options-content .am-show-more {
    padding-left: 0
}

.filter-options-content .am-show-more {
    padding-left: 10px
}

.am-show-more:hover,.filter-options-content .am-show-more:hover {
    background-color: transparent;
    color: #838382;
    text-decoration: none
}

.am-show-more:active,.filter-options-content .am-show-more:active {
    color: #070605;
    box-shadow: none
}

.am-show-more:before {
    top: 0
}

.am-show-more.-active {
    display: inline-flex;
    align-items: center
}

.am-show-more .am-counter {
    display: inline-block;
    margin: 0 2px;
    opacity: .5
}

.am-show-more[data-is-hide='false']:before {
    transform: rotate(180deg)
}

.amshopby-link-selected {
    color: #1979c3
}

.items[class*='category_ids']:not(.items-children)>.item>a {
    font-weight: 700
}

.filter-options .items:not(.items-children).-am-multiselect>.item.-is-by-click .items-children.-folding {
    padding-left: 0
}

.filter-options .items:not(.items-children).-am-multiselect>.item.-is-by-click .items-children.-folding .item.-is-expanded {
    margin-left: 20px
}

.am-filter-items-stock .amshopby-link-selected,.am-filter-items-rating .amshopby-link-selected {
    text-decoration: none
}

.filter-content [class*='am-filter-item']:hover~.amshopby-choice:before {
    border-color: #1979c3
}

.filter-content .items.-am-multiselect [class*='am-filter-item']:hover {
    color: inherit
}

.filter-content .items.-am-multiselect [class*='am-filter-item']:hover .count {
    color: #757575
}

.amshopby-fly-out-view.ui-menu,.amshopby-flyout-block .items.amshopby-fly-out-view .item .items-children {
    position: relative;
    padding: 13px 0;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(190,199,219,0.21),0 6px 25px rgba(190,199,219,0.28)
}

.amshopby-fly-out-view .ui-menu {
    width: 100%
}

.amshopby-fly-out-view .items-children:not(.ui-menu) {
    display: none
}

.amshopby-fly-out-view .am-input {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 0
}

.amshopby-fly-out-view .am-input[type='radio']+.amshopby-choice {
    display: none
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    margin: 0;
    padding: 4px 20px;
    font-size: 14px;
    line-height: 18px
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item:hover {
    background-color: #f8f8f9
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item .items-children {
    position: absolute;
    z-index: 995
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item>.amshopby-choice {
    position: relative;
    top: inherit;
    left: inherit;
    margin: 3px 0;
    padding-left: 22px
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item [class*='am-filter-item-'] {
    display: inline-block;
    width: 100%
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item [class*='am-filter-item-']:hover {
    background-color: transparent;
    color: inherit
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item [class*='am-filter-item-']:hover>.count {
    color: #757575
}

.amshopby-flyout-block .items.amshopby-fly-out-view .item .amshopby-choice:hover:before,.amshopby-flyout-block .items.amshopby-fly-out-view .item [class*='am-filter-item-']:hover~.amshopby-choice:before {
    border-color: #e3e3e3
}

.am_shopby_apply_filters {
    position: fixed;
    bottom: -80px;
    z-index: 999;
    width: 100%;
    transition: left .2s ease-in-out
}

.am_shopby_apply_filters.visible {
    bottom: 0
}

.am-show-button {
    z-index: 211;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 15px 0;
    width: 100%;
    border-top: 1px solid #ccc;
    background: #fff;
    text-align: center
}

.am-show-button>.am-items {
    margin: 0;
    padding: 0 10px;
    color: #070605;
    font-size: 14px;
    line-height: 22px
}

.am-show-button>.am-items.-loading {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('../Amasty_Shopby/images/svg/loader.svg') center / 30px no-repeat;
    vertical-align: middle
}

.am-show-button>.amshopby-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    min-width: 90px;
    line-height: 1
}

.ie11 .am-show-button>.amshopby-button {
    padding: 10px
}

#amasty-shopby-product-list {
    z-index: 1
}

#amasty-shopby-product-list .products.wrapper {
    position: relative
}

.amshopby-overlay-block {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 230;
    display: none;
    width: 100%;
    background: rgba(255,255,255,0.5)
}

.amshopby-overlay-block>.amshopby-loader {
    position: absolute;
    top: 10%;
    left: 50%;
    display: block;
    width: 100px;
    height: 100px;
    background: url('../Amasty_Shopby/images/svg/loader.svg') center / 100px no-repeat;
    transform: translate(-50%, -10%)
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.amshopby-slider-settings {
    list-style: none
}

.amshopby-slider-settings.-style {
    max-width: 214px
}

.amshopby-slider-settings.-style .amshopby-slider-container.-default .amshopby-label {
    padding-bottom: 15px
}

.amshopby-slider-settings.-style .am-slider {
    z-index: 0;
    margin: 0
}

.amshopby-slider-settings.-style .amshopby-label {
    display: flex;
    align-items: center;
    padding-bottom: 45px
}

.amshopby-slider-settings.-style .amshopby-input {
    display: flex;
    align-items: center;
    justify-content: center
}

.amshopby-slider-settings.-style .amshopby-input:checked {
    background: #007bdb
}

.amshopby-slider-settings.-style .amshopby-input:checked:after {
    position: initial;
    margin: 0;
    width: 6px;
    height: 6px;
    background: #fff
}

.amshopby-slider-settings.-style .amshopby-title {
    padding-left: 7px
}

.amshopby-slider-settings.-style .amshopby-slider-tooltip {
    visibility: visible;
    opacity: 1;
    transition: none
}

.ambrands-word-break {
    word-wrap: break-word;
    word-break: break-word
}

.ie11 .ambrands-word-break {
    word-break: break-all
}

.amrelated-grid-wrapper .amshopby-option-link {
    margin-bottom: 10px
}

.amshopby-brand-title-link {
    font-weight: bold
}

.amshopby-brand-tooltip.-no-double~.amshopby-brand-tooltip.-no-double {
    visibility: hidden;
    opacity: 0
}

.ambrands-letters-filter {
    display: flex;
    flex-wrap: wrap
}

.ambrands-letters-filter .ambrands-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 12px 12px 0;
    padding: 6px;
    min-width: 34px;
    min-height: 34px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer
}

.ambrands-letters-filter .ambrands-letter:hover {
    border-color: #006bb4;
    background: #fff;
    text-decoration: none
}

.ambrands-letters-filter .ambrands-letter.-disabled {
    border-color: #ececec;
    background: #ececec;
    box-shadow: none;
    color: #ccc;
    pointer-events: none
}

.ambrands-letters-filter .ambrands-letter.hide {
    display: none
}

.ambrands-letters-filter .ambrands-letter.-active {
    border-color: #006bb4;
    background: #dff1ff;
    color: #006bb4
}

.ambrands-letters-filter .ambrands-letter.-letter-all {
    padding: 6px 11px
}

.ambrands-filters-block {
    display: inline-block;
    margin: 20px 0 53px;
    width: 100%
}

.ambrands-search-wrapper {
    margin-bottom: 30px;
    max-width: 460px
}

.ambrands-search-block {
    position: relative;
    display: block
}

.ambrands-search-block:before {
    position: absolute;
    top: calc(50% - 20px / 2);
    left: 15px;
    display: flex;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wIDcuNjkyYTcuNjkyIDcuNjkyIDAgMTAxNS4zODUgMEE3LjY5MiA3LjY5MiAwIDAwMCA3LjY5MnptMS41MzggMGE2LjE1NCA2LjE1NCAwIDExMTIuMzA4IDAgNi4xNTQgNi4xNTQgMCAwMS0xMi4zMDggMHoiIGZpbGw9IiNDN0M3QzciLz48cGF0aCBkPSJNMTkuMjMyIDIwYS43Ni43NiAwIDAxLS41NDQtLjIyNmwtNi42MzYtNi42NDZhLjc3Ljc3IDAgMTExLjA3Ny0xLjA5N2w2LjY0NyA2LjY0NmMuMy4zLjMuNzg3IDAgMS4wODdhLjc2Ljc2IDAgMDEtLjU0NC4yMzZ6IiBmaWxsPSIjQzdDN0M3Ii8+PC9zdmc+) center no-repeat;
    content: '';
    pointer-events: none
}

.ambrands-search-block .ambrands-clear {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 10px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00LjIzIDQuMjNhLjc4My43ODMgMCAwMTEuMTA2IDBMMTAgOC44OTJsNC42NjQtNC42NjRhLjc4My43ODMgMCAwMTEuMTA3IDEuMTA3TDExLjEwNyAxMGw0LjY2NCA0LjY2NGEuNzgzLjc4MyAwIDAxLTEuMTA3IDEuMTA3TDEwIDExLjEwNyA1LjMzNiAxNS43N2EuNzgzLjc4MyAwIDAxLTEuMTA3LTEuMTA3TDguODkzIDEwIDQuMjMgNS4zMzZhLjc4My43ODMgMCAwMTAtMS4xMDd6IiBmaWxsPSIjMzMzIi8+PC9zdmc+) center no-repeat;
    cursor: pointer
}

.ambrands-search-block .ambrands-clear:not(.-active) {
    display: none
}

.ambrands-search-block .ambrands-input {
    display: block;
    box-sizing: border-box;
    margin: 0 0 10px;
    padding: 10px 40px;
    max-width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.ambrands-search-block .ambrands-input::-webkit-input-placeholder {
    color: #575757;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.ambrands-search-block .ambrands-input:-moz-placeholder {
    color: #575757;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    opacity: 1
}

.ambrands-search-block .ambrands-input::-moz-placeholder {
    color: #575757;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    opacity: 1
}

.ambrands-search-block .ambrands-input:-ms-input-placeholder {
    color: #575757;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.ambrands-search-block .ambrands-input:focus::-webkit-input-placeholder {
    color: #c7c7c7
}

.ambrands-search-block .ambrands-input:focus:-moz-placeholder {
    color: #c7c7c7
}

.ambrands-search-block .ambrands-input:focus::-moz-placeholder {
    color: #c7c7c7
}

.ambrands-search-block .ambrands-input:focus:-ms-input-placeholder {
    color: #c7c7c7
}

.ambrands-search-block .ambrands-input:hover,.ambrands-search-block .ambrands-input:focus {
    border-color: #006bb4
}

._keyfocus .ambrands-search-block .ambrands-input:focus,.ambrands-search-block .ambrands-input:not([disabled]):focus {
    box-shadow: none
}

.ambrands-livesearch-block {
    position: absolute;
    z-index: 99;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 250px;
    width: 460px;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(190,199,219,0.21),0 6px 25px rgba(190,199,219,0.28)
}

.ambrands-livesearch-block:not(.-active) {
    display: none
}

.ambrands-livesearch-block>.ambrands-item {
    display: block;
    float: left;
    box-sizing: border-box;
    padding: 5px 10px;
    width: 100%;
    color: #000
}

.ambrands-livesearch-block>.ambrands-item:hover {
    background-color: #e8e8e8;
    text-decoration: none
}

.amshopby-filter-current .amshopby-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 12px;
    left: 0;
    position: absolute;
    width: 12px
}

.ie11 .amshopby-filter-current .amshopby-remove {
    top: calc(50% - (12px / 2))
}

.amshopby-filter-current .amshopby-remove:hover:after,.amshopby-filter-current .amshopby-remove:hover:before {
    background-color: #494949
}

.amshopby-filter-current .amshopby-remove:hover~* {
    opacity: .5
}

.amshopby-filter-current .amshopby-remove:after,.amshopby-filter-current .amshopby-remove:before {
    background-color: #c7c7c7;
    content: '';
    height: 1px;
    position: absolute;
    width: 100%
}

.amshopby-filter-current .amshopby-remove:after {
    transform: rotate(45deg)
}

.amshopby-filter-current .amshopby-remove:before {
    transform: rotate(-45deg)
}
.amshopby-item-removed {
    text-decoration: none
}

.am-category-image {
    vertical-align: middle
}

.amshopby-filter-current .filter-label {
    vertical-align: middle
}

.amshopby-filter-current .amshopby-items {
    padding: 0 0 0 10px
}

.amshopby-filter-current .amshopby-item.item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 0 0 20px;
    position: relative
}

.amshopby-filter-current .amshopby-filter-name {
    display: flex;
    font-weight: 600;
    padding: 0 5px 0 0
}

.amshopby-filter-current .amshopby-filter-name:after {
    content: ':'
}
.amasty-catalog-topnav .filter-clear{
	display:none;
}
.bundle-summary,
.bundle-info .product-image-container,
.bundle-info .product-details .name,
.bundle-options-container .block-bundle-summary .title,
.bundle-options-wrapper,
.page-product-bundle .product-info-price,
.page-product-bundle .product-info-main .stock.available,
.page-product-bundle .bundle-actions
{
	display:none;
}
.bundle-options-container .product-add-form{
	display:block;
}
.bundle-options-container .bundle-options-wrapper, 
.bundle-options-container .product-options-wrapper,
.bundle-options-container .block-bundle-summary{
	float:none;
	width:100%;
    background: transparent;
    padding: 0;
}
button.bundle-options-selector {
    width: 100%;
    margin-block-end: 0.75rem;
    background: transparent;
    color: var(--blue);
    text-align: left;
    font-weight: normal;
    display: flex;
	font-size:1rem;
    padding: 1rem;
	justify-content:space-between;
	transition:all 0.2s ease 0s;
}
button.bundle-options-selector:hover,
button.bundle-options-selector.active {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 3px 0px var(--blue);
}
button.bundle-options-selector del{
    font-size: .85em;
    color: #cecece;
	/* amea */
	color:#767676;
}
button.bundle-options-selector.active del{
    color: #cecece;
	
}
.bundle-options-selector-price{
	width:120px;
	text-align:end;
}

.page-product-bundle .product-info-main .price-box{
	margin-top:2rem;
}
.page-product-bundle .box-tocart,
.page-product-bundle .box-tocart > .fieldset{
	display:flex;
}
.page-product-bundle .bundle-options-container .block-bundle-summary .box-tocart .actions,
.page-product-bundle .product-info-main .box-tocart .field.qty{
	margin-bottom:20px;
}

#minicart-content-wrapper [type="bundle"] .toggle{
	display:none;
}
#minicart-content-wrapper [type="bundle"] .content{
	display:block !important;
}
#minicart-content-wrapper [type="bundle"] .options .label{
	font-size:.65em;
}
#minicart-content-wrapper [type="bundle"] .options .values{
	font-size:.6em;
    color: #454545;
}
#minicart-content-wrapper [type="bundle"] .options .values .price{
	display:none;
}
#shopping-cart-table [type="bundle"] .item-options .price{
	display:block;
	height:0;
	overflow:hidden;
}

#b2b-button{
    display: flex;
    border: 2px solid var(--orange);
    font-weight: 600;
    height: 46px;
    width: 290px;
    border-radius: 0.45rem;
	margin-left:15px;
	color:var(--blue);
}
#b2b-button:hover{
	color:var(--orange);
}
#b2b-button img{
    padding: 4px 8px;
    border-right: 2px solid var(--orange);
    margin-right: 8px;
}
#b2b-button::after{
	content: "\f110";
    font-family: 'woodmart-font';
    background: var(--blue);
    color: #fff;
    font-size: 1.4rem;
    padding: 0px 3.4px 0 7.9px;
    display: block;
    border-radius: 50%;
    margin: 4px 8px;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
}

.pm-widget-wrap .pm-prev::before,
.pm-widget-wrap .pm-next::before{
	content: '';
    background-color: var(--orange);
    width: 40px;
    height: 40px;
    display: block;
    box-sizing: border-box;
    background-size: 24px;
    border-radius: 50%;
    background-repeat: no-repeat;
    border: 10px solid var(--orange);
    transition: border-color 0.3s linear, background-color 0.3s linear;
}
.pm-widget-wrap .pm-next::before{
	background-image: url(../images/chevron_right.png);
    background-position: right center;
}
.pm-widget-wrap .pm-prev::before{
	background-image: url(../images/chevron_left.png);
    background-position: right center;
}

.pm-widget-wrap .pm-prev:hover::before,
.pm-widget-wrap .pm-next:hover::before{
    background-color: var(--blue);
    border: 10px solid var(--blue);
}
@media (max-width: 768px) {
.header-top-nav .container{
	flex-direction:column;
}
.header-top-nav .block-search{
	margin-bottom:10px;
	width:100%;
}
}

.level0.ui-menu-item > .level-top.has_image {
	display:flex;
	align-items:center;
}
.level0.ui-menu-item > .level-top.has_image > span {
	flex:1;
}
.level0.ui-menu-item > .level-top > img {
	margin-inline-end:.5rem;
	object-fit: contain;
    width: 30px;
    height: 30px;
    margin-block: 0.25rem;
}
.filter-options .item input[type="checkbox"]{
	position:absolute;
}

.product_grid__attribute_list{
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: .8rem;
}
.product_grid__attribute_list li{
	margin-bottom:.1rem; 
}

.amsearch-form-block{
	width:auto !important;	
}
/*
.amsearch-wrapper-block{
	padding-left:0;
	margin-left:15px;
	flex:1;
	position:relative;
}
.amsearch-form-block{
	width:auto !important;	
}

.amsearch-wrapper-block .amsearch-input{
    border: 0;
    border-bottom: 2px solid var(--blue);
    text-align: center;
    height: 50px;
    padding: 0px 10px 0px 45px;
}
.amsearch-wrapper-block .amsearch-result-section{	
    background: #fff;
    position: absolute;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
	z-index:10;
}
.amsearch-wrapper-block .amsearch-button.-close{
    width: 40px;
    height: 48px;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
	padding:0;
	background-color:transparent;
}
.amsearch-wrapper-block .amsearch-button.-close::after, 
.amsearch-wrapper-block .amsearch-button.-close::before {
    content: '';
    width: 25px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg) translate3d(-50%, -50%, 0);
    background-color: currentColor;
    transform-origin: left;
    left: 19px;
}
.amsearch-wrapper-block .amsearch-button.-close::after {
    transform: rotate(135deg) translate3d(-50%, -50%, 0);
}
.amsearch-wrapper-block .amsearch-button.-loupe{
	background:url("../images/header_search_icon.png");
    width: 40px;
    height: 48px;
    background-size: contain;
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
}
*/

@-webkit-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@media all and (min-width: 768px),print {
	.amasty_xlanding-page-view .products-grid .product-items {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .amasty_xlanding-page-view .products-grid .product-items .product-item {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center
    }

    .amasty-xlanding-columns3.amasty_xlanding-page-view .products-grid .product-items .product-item {
        margin-left: 0;
        width: 33.33333333%
    }

    .amasty-xlanding-columns3.amasty_xlanding-page-view .products-grid .product-items .product-item:nth-of-type(3n) {
        -ms-flex-pack: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end
    }

    .amasty-xlanding-columns3.amasty_xlanding-page-view .products-grid .product-items .product-item:nth-of-type(3n + 1) {
        -ms-flex-pack: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }

    .amasty-xlanding-columns4.amasty_xlanding-page-view .products-grid .product-items .product-item {
        margin-left: 0;
        width: 25%
    }

    .amasty-xlanding-columns4.amasty_xlanding-page-view .products-grid .product-items .product-item:nth-of-type(4n) {
        -ms-flex-pack: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end
    }

    .amasty-xlanding-columns4.amasty_xlanding-page-view .products-grid .product-items .product-item:nth-of-type(4n + 1) {
        -ms-flex-pack: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }

    .amasty-xlanding-columns5.amasty_xlanding-page-view .products-grid .product-items .product-item {
        margin-left: 0;
        width: 20%
    }

    .amasty-xlanding-columns5.amasty_xlanding-page-view .products-grid .product-items .product-item:nth-of-type(5n) {
        -ms-flex-pack: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end
    }

    .amasty-xlanding-columns5.amasty_xlanding-page-view .products-grid .product-items .product-item:nth-of-type(5n + 1) {
        -ms-flex-pack: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start
    }

    
	
	.abs-visually-hidden-desktop,.modes-label,.block-search .label,.block-collapsible-nav .title {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    .abs-forms-general-desktop,.form.search.advanced,.form-giftcard-redeem,.form-giftregistry-create {
        max-width: 500px
    }

    .abs-forms-general-desktop .legend,.form.search.advanced .legend,.form-giftcard-redeem .legend,.form-giftregistry-create .legend {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    .abs-forms-general-desktop .legend+br,.form.search.advanced .legend+br,.form-giftcard-redeem .legend+br,.form-giftregistry-create .legend+br {
        display: none
    }

    .amblog-search-block .amblog-list {
        padding: 0
    }

    .amblog-search-block .amblog-content {
        justify-content: space-between;
        padding-bottom: 25px
    }

    .amblog-search-block .amblog-content>*:first-child {
        margin-left: 0
    }

    .amblog-search-block .amblog-content>*:not(:last-child) {
        margin-right: 0
    }

    .amblog-search-block .amblog-content>*:not(:last-child, :first-child) {
        padding: 0 25px
    }

    .amblog-search-block .amblog-author-name {
        align-items: center;
        display: flex;
        flex-direction: column
    }

    .amblog-search-block .amblog-description {
        flex: 1 0 22%
    }

    .amblog-search-block .amblog-social-container {
        flex-grow: 1;
        justify-content: flex-end
    }

    .amblog-search-block .amblog-description+.amblog-social-container {
        flex-grow: initial
    }

    .amblog-search-titles {
        border-bottom: 1px solid #e5e5e5
    }

    .amblog-search-title {
        position: relative;
        width: auto
    }

    .amblog-search-title:after {
        background: transparent;
        content: '';
        height: 1px;
        left: 0;
        position: absolute;
        top: 100%;
        width: 100%
    }

    .amblog-search-title.open:after {
        background: #1979c2
    }

    .amblog-search-content {
        margin-top: 40px;
        width: 100%
    }

    .amelsearch-further-section {
        display: block
    }

    .amsearch-wrapper-block {
        order: initial;
        width: auto
    }

    .amsearch-wrapper-block {
        order: initial;
        width: auto
    }

    .page-header .amsearch-wrapper-block {
        /* float: right; */
        /* margin: 0; */
        /* padding: 0; */
        /* width: auto */
    }

    .page-header .amsearch-wrapper-block:before {
        content: none
    }

    .amsearch-loader-block {
        right: 30px
    }

    .amsearch-emptysearch-cms {
        padding: 40px
    }

    .amsearch-emptysearch-cms .amsearch-content>.amsearch-title {
        font-size: 54px
    }

    .amsearch-emptysearch-cms .amsearch-text {
        font-size: 22px
    }

    .amsearch-button.-close:hover,.amsearch-button.-close:hover {
        filter: brightness(0%)
    }

    .amsearch-slider-section {
        max-width: 575px
    }

    .amsearch-slider-section.slick-slider {
        padding: 0 40px
    }

    .amsearch-products-section {
        border-top: none;
        display: flex;
        flex-wrap: wrap
    }

    .amsearch-products-section:not(:first-child) {
        border-left: 1px solid #ccc
    }

    .amsearch-products-section .amsearch-description {
        width: auto
    }

    .amsearch-products-section.-list .amsearch-image {
        max-width: 125px
    }

    .amsearch-products-section.-list .product-item-actions {
        align-content: flex-start;
        display: flex
    }

    .amsearch-products-section.-list .amsearch-description {
        padding-left: 20px
    }

    .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
        max-width: calc(33.33333333%)
    }

    .amsearch-result-tabs .title:hover:before,.amsearch-result-tabs .title.active:before {
        background: #fff;
        bottom: -1px;
        content: '';
        height: 2px;
        left: 1px;
        position: absolute;
        width: calc(100% - 2px)
    }

    .amsearch-result-section {
        min-width: 100%;
        width: inherit
    }

    .amsearch-result-section:not(.-small) {
        flex-wrap: nowrap
    }

    .amsearch-result-block.-preload {
        flex-wrap: nowrap
    }

    .amsearch-result-block.-preload .amsearch-products-list:not(:first-child) {
        border-left: 1px solid #ccc;
        width: calc(100% - 283px)
    }

    .page-header:not(.amsearch-full-width) .amsearch-input-wrapper.-dynamic-width {
        width: 100%
    }

    .page-header .amsearch-input-wrapper {
        min-width: 283px;
        width: auto
    }

    .amsearch-item-container {
        padding: 0 0 25px
    }

    .amsearch-item-container .amsearch-link {
        padding: 5px 20px
    }

    .amsearch-items-section {
        padding: 25px 0
    }

    .amsearch-items-section:not(:first-child:last-child) {
        max-width: 283px;
        width: 100%
    }

    .amsearch-full_width-title {
        display: none
    }

    .page-header.amsearch-full-width.-opened .ammenu-logo,.page-header.amsearch-full-width.-opened .logo {
        margin: 0 auto 0 4vw;
        z-index: 11
    }

    .page-header.amsearch-full-width.-opened .amsearch-wrapper-block {
        z-index: 10
    }

    .page-header.amsearch-full-width.-opened .amsearch-button.-full-close {
        right: 4vw
    }

    .page-header.amsearch-full-width .amsearch-input-wrapper {
        flex-grow: initial
    }

    .page-header.amsearch-full-width .amsearch-button.-search {
        flex-grow: initial
    }

    .page-header.amsearch-full-width .amsearch-wrapper-block {
        background: #fff;
        display: inline-block
    }

    .page-header.amsearch-full-width:not(.-opened) .amsearch-wrapper-block {
        position: static;
        width: auto
    }

    .page-header.amsearch-full-width .amsearch-form-block {
        height: 100%;
        justify-content: center;
        padding: 0
    }

    .page-header.amsearch-full-width .amsearch-result-section {
        padding: 0 calc(4vw - 15px)
    }

    .page-header.amsearch-full-width .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
        max-width: calc(25%)
    }

    .page-header.amsearch-full-width .amsearch-products-section.-list .amsearch-item {
        width: 50%
    }

    .page-header.amsearch-full-width .amsearch-button.-full-close {
        margin: auto
    }

    .page-header .amsearch-button.-loupe-trigger {
        display: none
    }

    .amsearch-search-page.page-products .columns {
        z-index: 0
    }

    .block-search {
        float: right;
        padding-left: 15px;
        position: relative;
        width: 250px;
        z-index: 4
    }

    .block-search .control {
        border-top: 0;
        margin: 0;
        padding: 0
    }

    .block-search input {
        margin: 0;
        padding-right: 35px;
        position: static
    }

    .block-search input::-webkit-input-placeholder {
        color: #575757
    }

    .block-search input:-moz-placeholder {
        color: #575757
    }

    .block-search input::-moz-placeholder {
        color: #575757
    }

    .block-search input:-ms-input-placeholder {
        color: #575757
    }

    .block-search .action.search {
        display: inline-block;
        background-image: none;
        background: none;
        -moz-box-sizing: content-box;
        border: 0;
        box-shadow: none;
        line-height: inherit;
        margin: 0;
        padding: 0;
        text-decoration: none;
        text-shadow: none;
        font-weight: 400;
        position: absolute;
        right: 10px;
        top: 0;
        z-index: 1
    }

    .block-search .action.search>span {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    .block-search .action.search:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 16px;
        line-height: 32px;
        color: #757575;
        content: '\e615';
        font-family: 'luma-icons';
        margin: 0;
        vertical-align: top;
        display: inline-block;
        font-weight: normal;
        overflow: hidden;
        speak: none;
        text-align: center
    }

    .block-search .action.search:hover:before {
        color: #333
    }

    .block-search .action.search:active:before {
        color: inherit
    }

    .block-search .action.search:focus,.block-search .action.search:active {
        background: none;
        border: none
    }

    .block-search .action.search:hover {
        background: none;
        border: none
    }

    .block-search .action.search.disabled,.block-search .action.search[disabled],fieldset[disabled] .block-search .action.search {
        pointer-events: none;
        opacity: .5
    }

    .block-search .action.search:focus:before {
        color: #333
    }

    .search-autocomplete {
        margin-top: 0
    }

    
}

@media all and (min-width: 1024px),print {
	.amasty_xlanding-page-view .products-grid .product-items {
        margin: 0
    }

    .amsearch-emptysearch-cms {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 40px 70px
    }

    .amsearch-emptysearch-cms>.amsearch-item {
        max-width: 50%
    }

    .amsearch-emptysearch-cms>.amsearch-content {
        padding-right: 10px
    }

    .amsearch-emptysearch-cms .amsearch-content>.amsearch-title {
        font-size: 72px;
        margin: 0 0 20px
    }

    .amsearch-emptysearch-cms .amsearch-text {
        font-size: 28px;
        line-height: 33px
    }

    .amsearch-emptysearch-cms .amsearch-contacts-block {
        font-size: 22px;
        margin-top: 45px
    }

    .amsearch-emptysearch-cms .amsearch-image-block {
        margin-top: 0
    }

    .amsearch-emptysearch-cms .amsearch-contacts-block>.amsearch-title {
        margin-bottom: 10px
    }

    .amsearch-result-block:not(.-preload) .amsearch-products-section {
        width: calc(100% - 283px)
    }

    .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
        max-width: calc(25%)
    }

    .page-header.amsearch-full-width .amsearch-products-section.-grid:not(.-slider) .amsearch-item {
        max-width: calc(20%)
    }

    
}
.amblog-index-index .amblog-ref,.amblog-index-search .amblog-ref,.amblog-index-tag .amblog-ref,.amblog-index-category .amblog-ref,.amblog-index-post .amblog-ref,.amblog-index-author .amblog-ref {
    color: #1979c2;
    font-size: 1.4rem;
    font-weight: 600
}

.amblog-index-index .amblog-ref:hover,.amblog-index-search .amblog-ref:hover,.amblog-index-tag .amblog-ref:hover,.amblog-index-category .amblog-ref:hover,.amblog-index-post .amblog-ref:hover,.amblog-index-author .amblog-ref:hover {
    color: #1979c2
}

.amblog-search-block .amblog-content {
    align-items: center;
    display: flex
}

.amblog-search-block .amblog-content>* {
    margin: auto
}

.amblog-form-search.amblog-item {
    padding: 0 25px 25px
}

.amblog-form-search .amblog-form-container {
    position: relative
}

.amblog-form-search .amblog-input,.amblog-form-comment .amblog-input {
    border: 1px solid #e5e5e5;
    color: #525252;
    border-radius: 3px;
    font-size: 1.4rem;
    height: 100%;
    padding: 11px 60px 11px 14px;
    width: 100%
}

.amblog-form-search .amblog-input:hover,.amblog-form-comment .amblog-input:hover {
    border-color: #b3b3b3
}

.amblog-form-search .amblog-input::-webkit-input-placeholder,.amblog-form-search .amblog-input:-ms-input-placeholder,.amblog-form-search .amblog-input::-moz-placeholder,.amblog-form-comment .amblog-input::-webkit-input-placeholder,.amblog-form-comment .amblog-input:-ms-input-placeholder,.amblog-form-comment .amblog-input::-moz-placeholder {
    color: #999
}

.amblog-form-search .amblog-input:focus,.amblog-form-comment .amblog-input:focus {
    border: 1px solid #499bf8;
    box-shadow: none
}

.amblog-form-search .amblog-input:focus::-webkit-input-placeholder,.amblog-form-search .amblog-input:focus::-moz-placeholder,.amblog-form-search .amblog-input:focus:-ms-input-placeholder,.amblog-form-comment .amblog-input:focus::-webkit-input-placeholder,.amblog-form-comment .amblog-input:focus::-moz-placeholder,.amblog-form-comment .amblog-input:focus:-ms-input-placeholder {
    color: transparent
}

.amblog-loader.-search {
    display: none;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%)
}

.amblog-form-search .amblog-btn {
    background: url("../Amasty_Blog/images/svg/loupe.svg");
    background-repeat: no-repeat;
    border: none;
    height: 16px;
    opacity: .5;
    padding: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s ease-in-out;
    width: 16px
}

.amblog-form-search .amblog-btn:hover {
    opacity: 1
}

.amblog-form-search .amblog-input-wrapper {
    display: inline-block;
    width: 100%
}

.amblog-search-suggest {
    background: #fff;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1.4rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: calc(100% + 10px);
    width: 100%;
    z-index: 10
}

.amblog-search-suggest.-live-active {
    border: 1px solid #b3b3b3
}

.amblog-search-suggest>li {
    margin: 0;
    padding: 12px
}

.amblog-search-suggest>li:not(:first-child) {
    border-top: 1px solid #e5e5e5
}

.amblog-search-suggest .amblog-suggest-title {
    font-weight: 700;
    padding-bottom: 8px;
    pointer-events: none;
    text-transform: capitalize
}

.amblog-search-suggest .amblog-suggest-title+.amblog-suggest {
    border-top: none
}

.amblog-search-suggest .amblog-suggest:hover {
    background: #499bf8;
    color: #fff;
    transition: all .3s ease-in-out
}

.amblog-search-suggest .amblog-suggest a {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-weight: 400;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: none
}

.amblog-search-suggest .amblog-suggest a,.amblog-search-suggest .amblog-suggest a:hover,.amblog-search-suggest .amblog-suggest a:focus {
    color: inherit;
    text-decoration: none
}

.amblog-search-titles {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.amblog-search-titles:not([role='tablist'])~.amblog-search-content {
    display: none
}

.amblog-search-title {
    font-size: 1.4rem;
    text-align: center;
    text-transform: capitalize
}

.amblog-search-items {
    margin-bottom: 40px
}

.amblog-search-title.open {
    font-weight: 700
}

.amblog-search-switch {
    display: block;
    padding: 12px 35px
}

.amblog-search-switch,.amblog-search-switch:active,.amblog-search-switch:visited,.amblog-search-switch:hover,.amblog-search-switch:focus {
    color: #333;
    text-decoration: none
}
.amelsearch-further-section {
    display: none;
    margin: 0 0 40px
}

.amelsearch-further-section .amelsearch-label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px
}

.amelsearch-further-section .amelsearch-form-section {
    align-content: center;
    align-items: center;
    display: inline-flex;
    max-width: 362px;
    position: relative;
    width: 100%
}

.amelsearch-further-section .amelsearch-button.-loupe,.amelsearch-further-section .amelsearch-button.-close {
    height: 100%;
    margin: auto 0;
    position: absolute;
    right: 85px
}

.amelsearch-further-section .amelsearch-form-section.-focused .amelsearch-input {
    padding-left: 33px
}

.amelsearch-further-section .amelsearch-form-section.-focused .amelsearch-button.-loupe {
    bottom: 0;
    left: 10px;
    right: auto;
    top: 0
}

.amelsearch-further-section .amelsearch-input {
    border-radius: 20px
}

.amelsearch-further-section .amelsearch-button.-primary {
    height: 100%;
    position: absolute;
    right: 0
}

.amelsearch-input {
    border: 1px solid #ccc;
    color: #333;
    font-weight: 400;
    padding: 10px 5px;
    transition: .3s
}

.amelsearch-input ::placeholder {
    color: #ccc
}

.amelsearch-input:hover:not([disabled]),.amelsearch-input:focus:not([disabled]) {
    border-color: #1979c2;
    box-shadow: none
}

.amelsearch-button {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center
}

.amelsearch-button:hover,.amelsearch-button:focus {
    outline: none
}

.amelsearch-button:not(.primary) {
    box-shadow: none
}

.amelsearch-button.-disabled {
    opacity: .7;
    pointer-events: none
}

.amelsearch-button.-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    height: 20px;
    padding: 0;
    width: 20px;
    background: none
}

.amelsearch-button.-icon:after {
    content: '';
    height: 10px;
    width: 10px
}

.amelsearch-button.-close:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMWwxMCAxMG0wLTEwTDEgMTEiIHN0cm9rZT0iI0IyQjJCMiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==) no-repeat center
}

.amelsearch-button.-loupe:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1Ni45NjYgNTYuOTY2Ij48cGF0aCBkPSJNNTUuMTQ2IDUxLjg4N0w0MS41ODggMzcuNzg2QTIyLjkyNiAyMi45MjYgMCAwIDAgNDYuOTg0IDIzYzAtMTIuNjgyLTEwLjMxOC0yMy0yMy0yM3MtMjMgMTAuMzE4LTIzIDIzIDEwLjMxOCAyMyAyMyAyM2M0Ljc2MSAwIDkuMjk4LTEuNDM2IDEzLjE3Ny00LjE2MmwxMy42NjEgMTQuMjA4Yy41NzEuNTkzIDEuMzM5LjkyIDIuMTYyLjkyLjc3OSAwIDEuNTE4LS4yOTcgMi4wNzktLjgzN2EzLjAwNCAzLjAwNCAwIDAgMCAuMDgzLTQuMjQyek0yMy45ODQgNmM5LjM3NCAwIDE3IDcuNjI2IDE3IDE3cy03LjYyNiAxNy0xNyAxNy0xNy03LjYyNi0xNy0xNyA3LjYyNi0xNyAxNy0xN3oiIGZpbGw9IiNhOWE5YTkiLz48L3N2Zz4=) no-repeat center
}

.amelsearch-button.-primary {
    background-color: #1979c2;
    border-color: #1979c2;
    border-radius: 80px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    height: 32px;
    min-width: 78px;
    padding: 7px 10px
}

.amelsearch-button.-primary:hover {
    background-color: #166bab;
    border-color: #166bab
}

.amelsearch-button.-primary:active {
    background-color: #135d95;
    border-color: #135d95
}

.amelsearch-button.-primary.-disabled {
    opacity: .8
}
.am-search-box-wrapper:before,.am-search-box-wrapper:after {
    content: '';
    display: table
}

.am-search-box-wrapper:after {
    clear: both
}

.am-search-box-wrapper .am-widget-center {
    margin: auto
}

.am-search-box-wrapper .am-widget-right {
    float: right
}

.am-search-box-wrapper .amfaq-search {
    max-width: initial
}

.amfaq-pager {
    float: right
}
.search-autocomplete .amfaq-question-container.selected {
    background: #fff
}

.search-autocomplete .amfaq-question-container .amfaq-option-name {
    color: #1979c2
}

.search-autocomplete .amfaq-question-container.selected .amfaq-option-name {
    text-decoration: underline
}
.amsearch-form-block {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    position: relative;
    transition: .3s
}

.amsearch-form-block.-opened {
    z-index: 98
}
.amsearch-loader-block {
    background: url(data:image/gif;base64,R0lGODlhEAALAPQAAP///wAAANra2tDQ0Orq6gYGBgAAAC4uLoKCgmBgYLq6uiIiIkpKSoqKimRkZL6+viYmJgQEBE5OTubm5tjY2PT09Dg4ONzc3PLy8ra2tqCgoMrKyu7u7gAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCwAAACwAAAAAEAALAAAFLSAgjmRpnqSgCuLKAq5AEIM4zDVw03ve27ifDgfkEYe04kDIDC5zrtYKRa2WQgAh+QQJCwAAACwAAAAAEAALAAAFJGBhGAVgnqhpHIeRvsDawqns0qeN5+y967tYLyicBYE7EYkYAgAh+QQJCwAAACwAAAAAEAALAAAFNiAgjothLOOIJAkiGgxjpGKiKMkbz7SN6zIawJcDwIK9W/HISxGBzdHTuBNOmcJVCyoUlk7CEAAh+QQJCwAAACwAAAAAEAALAAAFNSAgjqQIRRFUAo3jNGIkSdHqPI8Tz3V55zuaDacDyIQ+YrBH+hWPzJFzOQQaeavWi7oqnVIhACH5BAkLAAAALAAAAAAQAAsAAAUyICCOZGme1rJY5kRRk7hI0mJSVUXJtF3iOl7tltsBZsNfUegjAY3I5sgFY55KqdX1GgIAIfkECQsAAAAsAAAAABAACwAABTcgII5kaZ4kcV2EqLJipmnZhWGXaOOitm2aXQ4g7P2Ct2ER4AMul00kj5g0Al8tADY2y6C+4FIIACH5BAkLAAAALAAAAAAQAAsAAAUvICCOZGme5ERRk6iy7qpyHCVStA3gNa/7txxwlwv2isSacYUc+l4tADQGQ1mvpBAAIfkECQsAAAAsAAAAABAACwAABS8gII5kaZ7kRFGTqLLuqnIcJVK0DeA1r/u3HHCXC/aKxJpxhRz6Xi0ANAZDWa+kEAA7AAAAAAAAAAAA) no-repeat center;
    bottom: 0;
    height: 11px;
    margin: auto 5px auto 0;
    position: absolute;
    right: 40px;
    top: 0;
    width: 16px;
    z-index: 1000
}

.amsearch-message-block {
    align-items: center;
    background: #fafafa;
    display: flex;
    font-size: 18px;
    justify-content: center;
    line-height: 25px;
    margin: 20px;
    padding: 20px;
    text-align: center;
    width: 100%
}

.amsearch-message-block b {
    padding: 0 0 0 5px
}

.amsearch-link {
    color: #1979c2;
    text-decoration: none
}

.amsearch-link:hover {
    color: #006bb4;
    text-decoration: underline
}

.amsearch-link:active {
    color: #004c80
}

.amsearch-wrapper-block {
    /* box-sizing: border-box; */
    /* display: inline-block; */
    /* margin: 10px 0 0 0; */
    /* order: 1; */
    /* padding: 20px 0; */
    /* width: 100%;  */
    position: relative;
    flex: 1;
    margin-left: 15px;
}
.page-header .amsearch-wrapper-block:before {
    /* background: #ccc; */
    /* content: ''; */
    /* height: 1px; */
    /* margin: 0 ; */
    /* position: absolute; */
    /* top: 0; */
    /* width: 100%; */
}

.amsearch-emptysearch-cms {
    background: #fbfcfe;
    color: #1f1b1b;
    padding: 30px
}

.amsearch-emptysearch-cms>.amsearch-content {
    word-break: break-word;
    word-wrap: break-word
}

.ie11 .amsearch-emptysearch-cms>.amsearch-content {
    word-break: break-all
}

.amsearch-emptysearch-cms .amsearch-content>.amsearch-title {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 20px
}

.amsearch-emptysearch-cms .amsearch-text {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px
}

.amsearch-emptysearch-cms .amsearch-contacts-block {
    font-size: 14px;
    margin-top: 30px
}

.amsearch-emptysearch-cms .amsearch-image-block {
    margin-top: 30px
}

.amsearch-emptysearch-cms .amsearch-contacts-block>.amsearch-title {
    margin-bottom: 5px
}

.amsearch-highlight {
    color: var(--orange, #3ac39c);
    font-weight: 700
}

@-webkit-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-moz-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-ms-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-o-keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes amsearch-animation__fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.amsearch-button {
    cursor: pointer;
    display: inline-block;
    transition: .3s
}

.amsearch-button.-icon {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px
}

.amsearch-button.-icon:hover,.amsearch-button.-icon:focus {
    filter: brightness(.5)
}

.amsearch-button.-clear {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0
}

.amsearch-button.-clear:active,.amsearch-button.-clear:hover,.amsearch-button.-clear:focus {
    border: none;
    box-shadow: none
}

.amsearch-button.-close {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMWwxMCAxMG0wLTEwTDEgMTEiIHN0cm9rZT0iI0IyQjJCMiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==);
    border: 0;
    padding: 16px
}

.amsearch-button.-loupe {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1Ni45NjYgNTYuOTY2Ij48cGF0aCBkPSJNNTUuMTQ2IDUxLjg4N0w0MS41ODggMzcuNzg2QTIyLjkyNiAyMi45MjYgMCAwIDAgNDYuOTg0IDIzYzAtMTIuNjgyLTEwLjMxOC0yMy0yMy0yM3MtMjMgMTAuMzE4LTIzIDIzIDEwLjMxOCAyMyAyMyAyM2M0Ljc2MSAwIDkuMjk4LTEuNDM2IDEzLjE3Ny00LjE2MmwxMy42NjEgMTQuMjA4Yy41NzEuNTkzIDEuMzM5LjkyIDIuMTYyLjkyLjc3OSAwIDEuNTE4LS4yOTcgMi4wNzktLjgzN2EzLjAwNCAzLjAwNCAwIDAgMCAuMDgzLTQuMjQyek0yMy45ODQgNmM5LjM3NCAwIDE3IDcuNjI2IDE3IDE3cy03LjYyNiAxNy0xNyAxNy0xNy03LjYyNi0xNy0xNyA3LjYyNi0xNyAxNy0xN3oiIGZpbGw9IiNhOWE5YTkiLz48L3N2Zz4=);
    border: 0;
    box-shadow: none;
    height: 20px;
    padding: 0;
    width: 20px
}

.amsearch-button.-wishlist,.amsearch-button.-compare {
    background-size: 18px
}

.amsearch-button.-wishlist:before {
	line-height:1;
   font-size: 20px;
    transition: opacity .15s ease;
    content: "\f08a";
    font-family: 'FontAwesome';
    display: block;
    color: var(--orange);
}
.amsearch-button.-wishlist:focus:before,
.amsearch-button.-wishlist:hover:before {
    content: "\f004";
    color: var(--orange);
	opacity:1;
}


.amsearch-button.-compare:before {
    font-size: 20px;
    transition: opacity .15s ease;
    content: "\f122";
    font-family: woodmart-font;
    display: block;
	line-height:1;
    color: var(--orange);
}
.amsearch-button.-compare:focus:before,
.amsearch-button.-compare:hover:before {    
    color: var(--blue);
}


.amsearch-button.-disabled {
    opacity: .7;
    pointer-events: none
}

.amsearch-button.-primary {
    background: #1979c2;
    border: 1px solid #1979c2;
    border-radius: 0;
    color: #1979c2;
    letter-spacing: -.015em;
    transition: .3s
}

.amsearch-button.-primary:hover {
    background: #1979c2
}

.amsearch-button.-primary:active {
    background: #1979c2
}

.amsearch-button.-search {
    background-color: var(--amsearch-color-search_button, #1979c2);
    border-color: var(--amsearch-color-search_button, #1979c2);
    color: var(--amsearch-color-search_button_text, #fff)
}

.amsearch-button.-search:hover {
    background: var(--amsearch-color-search_button-hover, #166bab);
    border-color: var(--amsearch-color-search_button-hover, #166bab)
}

.amsearch-button.-search:active {
    background: var(--amsearch-color-search_button-focus, #135d95);
    border-color: var(--amsearch-color-search_button-focus, #135d95)
}

.amsearch-button.-full-close {
    align-items: center;
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    font-size: 10px;
    height: 32px;
    justify-content: center;
    padding: 0;
    width: 32px
}

.amsearch-button.-full-close:after {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgMWwxMCAxMG0wLTEwTDEgMTEiIHN0cm9rZT0iI0IyQjJCMiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvc3ZnPg==);
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px
}

.amsearch-button.-full-close:hover {
    background-color: #e8e8e8
}

.amsearch-button.-full-close:active {
    background-color: #dcdcdc
}

.amsearch-slider-section {
    box-sizing: border-box;
    display: flex
}

.amsearch-slider-section .amsearch-item:hover,.amsearch-slider-section .amsearch-item.selected {
    background-color: transparent
}

.amsearch-slider-section .amsearch-item .amsearch-image {
    pointer-events: auto;
    width: 100%
}

.amsearch-slider-section.slick-slider {
    padding: 0
}

.amsearch-slider-section .slick-dots {
    background: inherit;
    border: none;
    top: 100%
}

.amsearch-slider-section .slick-dots>li[role='presentation'] {
    align-items: center;
    border: none;
    display: inline-flex;
    height: 6px;
    justify-content: center;
    margin: 0 6px;
    padding: 0;
    text-align: inherit;
    white-space: inherit;
    width: 6px
}

.amsearch-slider-section .slick-dots>li[role='presentation']:hover,.amsearch-slider-section .slick-dots>li[role='presentation'].selected {
    background: inherit
}

.amsearch-slider-section .slick-dots>li[role='presentation'].slick-active button {
    background: #ff5502;
    border-color: #ff5502
}

.amsearch-slider-section .slick-dots>li[role='presentation'] button {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 100%;
    height: 100%;
    padding: 0;
    width: 100%
}

.amsearch-slider-section .slick-dots>li[role='presentation'] button:before {
    content: none
}

.amsearch-slider-section button.slick-arrow {
    background: #fff url('data:image/svg+xml;base64, PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxMSAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEwLjU0NTQgOS4zNzY2OEwyLjE5ODk1IDAuNDA5MThMMC43NDIyNjEgMS44NDg5Mkw3Ljc1MDEzIDkuMzc2NjhMMC41NDU0MSAxNy4xNTEzTDEuOTYyNzMgMTguNTkxTDEwLjA3MyA5LjkxMTQ0TDEwLjU0NTQgOS4zNzY2OFoiIGZpbGw9IiM5OTk5OTkiLz4KPC9zdmc+Cg==') center no-repeat !important;
    border-radius: 0;
    bottom: 0;
    height: 40px;
    margin: auto 0;
    top: 0;
    width: 40px;
    z-index: 2
}

#amasty-shopby-product-list {
    max-width: 100%;
    order: 10
}

.amsearch-products-section {
    align-content: flex-start;
    border-left: none;
    border-top: 1px solid #ccc;
    box-sizing: border-box;
    padding: 20px 0 0;
    position: relative;
    transition: .1s;
    width: 100%
}

.amsearch-products-section .amsearch-sku-block {
    padding: 0 0 10px;
    font-size: .8rem;
}

.amsearch-products-section .amsearch-link {
    color: var(--blue, #3ac39c);
	font-size:1rem;
}

.amsearch-products-section .amsearch-link:hover {
    color: var(--blue, #3ac39c)
}

.amsearch-products-section .amsearch-block-header {
    padding: 0 10px 0;
}

.amsearch-products-section .amsearch-item .product-item-description,.amsearch-products-section .amsearch-item .item-description {
    word-break: keep-all
}

.amsearch-products-section .product-item-description {
    color: #999;
    font-size: 1.2rem;
    margin: 0;
    padding: 0 0 10px
}
.amsearch-products-section .product-item .price-box .price{
	font-size:1.1rem;
	color:#ef4135;
}

.amsearch-products-section .amsearch-product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0
}

.amsearch-products-section .amsearch-item {
    align-content: flex-start;
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 10px;
    position: relative
}

.amsearch-products-section .amsearch-item:hover {
    background: var(--amsearch-color-hover, #f4f5fa);
    z-index: 8
}

.amsearch-products-section .amsearch-item:not(:hover) .dropdown {
    display: none
}

.amsearch-products-section .product-item-details {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-height: 100px
}

.amsearch-products-section .amsearch-wrapper-inner {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.amsearch-products-section .product-item-link {
    padding: 0;
    word-break: keep-all
}

.amsearch-products-section .action.tocart {
    position: relative;
    bottom: 0;
    right: 0;
    width: 45px;
    opacity: 1;
    z-index: 2;
    background-color: transparent;
    height: 45px;
    padding: 8px;
    border-radius: 10px;
    margin-right: 5px;
    transition: transform 0.3s ease;
    border: 2px solid var(--orange);
    box-shadow: none;
}
.amsearch-products-section .action.tocart:hover{
    background-color: var(--orange);
}
.amsearch-products-section .action.tocart span{
	display:none;
}
.amsearch-products-section .action.tocart::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/cart_icon.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.amsearch-products-section .action.tocart::after{
    
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/cart_icon_hover.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.amsearch-products-section .action.tocart:hover::after{
	opacity:1;
}
.ie11 .amsearch-products-section .action.tocart {
    word-break: break-all
}

.amsearch-products-section .product-item [data-role='priceBox'] {
    display: flex;
    /* flex-basis: 100%; */
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    order: 1;
}

.amsearch-products-section .product-item [data-role='priceBox'] p,.amsearch-products-section .product-item [data-role='priceBox'] span {
    flex-basis: 100%;
    padding: 0 0 5px
}

.amsearch-products-section .product-reviews-summary {
    margin: 0;
    padding: 0 0 10px
}

.amsearch-products-section .actions-secondary {
    align-items: center;
    display: flex;
    padding: 5px
}

.amsearch-products-section .actions-secondary .amsearch-button.-icon {
    margin: 5px
}

.amsearch-products-section .actions-secondary>.action {
    flex-grow: inherit;
    line-height: normal;
    margin-right: 5px
}

.amsearch-products-section.-list .amsearch-item {
    width: 100%
}

.amsearch-products-section.-list .amsearch-image {
    max-width: 132px;
    width: 40%
}

.amsearch-products-section.-list .actions-secondary {
    padding: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.amsearch-products-section.-list .amsearch-description {
    padding: 0 0 0 10px
}

.amsearch-products-section.-grid .amsearch-image {
    padding-bottom: 10px;
    width: 100%
}

.amsearch-products-section.-grid:not(.-slider) .amsearch-item {
    flex-wrap: wrap;
    max-width: 50%
}

.amsearch-collapsible-section[data-collapsible].-opened .amsearch-collapsible-title:after {
    transform: rotate(225deg) translate(-5px, 0)
}

.amsearch-collapsible-section[data-collapsible] .amsearch-collapsible-title {
    align-items: center;
    cursor: pointer;
    display: flex
}

.amsearch-collapsible-section[data-collapsible] .amsearch-collapsible-title:after {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    content: '';
    display: inline-block;
    height: 10px;
    transform: rotate(45deg) translate(0, -5px);
    transition: .3s all;
    width: 10px
}

.amsearch-block-header {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 0 20px 2px;
    width: 100%
}

.amsearch-block-header .amsearch-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: capitalize;
    word-break: break-word;
    word-wrap: break-word
}

.amsearch-block-header .amsearch-link {
    line-height: 26px;
    min-width: 90px
}

.amsearch-block-header .amsearch-link.-view-all .amsearch-count {
    font-weight: inherit
}

.amsearch-block-header .amsearch-link .amsearch-count:before {
    content: '(+'
}

.amsearch-block-header .amsearch-count {
    font-weight: 300
}

.amsearch-block-header .amsearch-count:before {
    content: '('
}

.amsearch-block-header .amsearch-count:after {
    content: ')'
}

.amsearch-category-tab .amsearch-item {
    font-size: 1.6rem;
    margin-bottom: 10px
}

.amsearch-category-tab .amsearch-item .am-item-link:not(:last-of-type):after {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB2aWV3Qm94PSIwIDAgNDUxLjg0NiA0NTEuODQ3Ij48cGF0aCBkPSJNMzQ1LjQ0MSAyNDguMjkyTDE1MS4xNTQgNDQyLjU3M2MtMTIuMzU5IDEyLjM2NS0zMi4zOTcgMTIuMzY1LTQ0Ljc1IDAtMTIuMzU0LTEyLjM1NC0xMi4zNTQtMzIuMzkxIDAtNDQuNzQ0TDI3OC4zMTggMjI1LjkyIDEwNi40MDkgNTQuMDE3Yy0xMi4zNTQtMTIuMzU5LTEyLjM1NC0zMi4zOTQgMC00NC43NDggMTIuMzU0LTEyLjM1OSAzMi4zOTEtMTIuMzU5IDQ0Ljc1IDBsMTk0LjI4NyAxOTQuMjg0YzYuMTc3IDYuMTggOS4yNjIgMTQuMjcxIDkuMjYyIDIyLjM2NiAwIDguMDk5LTMuMDkxIDE2LjE5Ni05LjI2NyAyMi4zNzN6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIGRhdGEtb2xkX2NvbG9yPSIjYTNhM2EzIiBmaWxsPSIjYTNhM2EzIi8+PC9zdmc+) no-repeat center;
    background-size: contain;
    content: '';
    display: inline-block;
    height: 10px;
    margin: 0 10px;
    width: 10px
}

.amsearch-result-tabs {
    margin-top: 5px;
    z-index: initial
}

.amsearch-result-tabs>.data.item.content:not([aria-hidden='false']) {
    display: none
}

.amsearch-result-tabs .title {
    box-sizing: border-box;
    position: relative
}

.amsearch-result-tabs .title.active .amsearch-results-count {
    display: none
}

.amsearch-result-tabs .title.active .switch {
    padding-bottom: 1px
}

.amsearch-result-tabs .data.content {
    display: none
}

.amsearch-result-tabs .data.content[aria-hidden='false'] {
    display: block
}

.amsearch-result-tabs .data.title {
    margin-right: 5px
}

.amsearch-result-tabs .data.title.active {
    background: #d8d8d8;
    box-sizing: border-box
}

.amsearch-result-tabs .data.title.last {
    margin-bottom: 8px
}

.page-header:not(.amsearch-full-width) .amsearch-result-section {
    -webkit-animation: amsearch-animation__fadeIn .3s forwards;
    animation: amsearch-animation__fadeIn .3s forwards
}

.page-header .amsearch-result-section {
    right: 0
}

.amsearch-result-section {
    overflow: hidden;
    overflow-y: auto;
    scrollbar-color: #adadad rgba(255,255,255,0.2);
    scrollbar-width: thin;
    background-color: #fff;
    border: 0 solid transparent;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(84,95,125,0.12),0 5px 8px rgba(155,159,174,0.1);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    margin: 5px 0;
    max-height: 90vh;
    position: absolute;
    top: 100%;
    transition: .3s;
    width: 100%;
    z-index: 99
}

.amsearch-result-section::-webkit-scrollbar {
    background: #f0f0f0
}

.amsearch-result-section::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #adadad;
    cursor: pointer
}

.amsearch-result-section ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff
}

.amsearch-result-section::-webkit-scrollbar {
    width: 4px
}

.amsearch-result-section::-webkit-scrollbar-thumb {
    width: 4px
}

.amsearch-result-section ::-webkit-scrollbar-track {
    width: 4px
}

.amsearch-result-section:empty {
    display: none
}

.amsearch-result-section .amsearch-result-block {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%
}

.amsearch-result-section .amsearch-result-block:empty {
    display: none
}

.amsearch-result-block.-preload {
    display: flex;
    flex-wrap: wrap
}

.amsearch-result-block.-preload:empty {
    display: none
}

.amsearch-result-block.-preload .amsearch-item:first-child:last-child {
    max-width: 100%;
    width: 100%
}

.amsearch-result-block.-preload .amsearch-slider-section {
    width: 100%
}

.amsearch-result-block.-preload .amsearch-products-list {
    display: flex;
    flex-direction: column;
    width: 100%
}

.page-header .amsearch-input-wrapper {
    width: 100%
}

.amsearch-input-wrapper {
    max-width: 100%;
    position: relative;
    transition: .3s
}

.amsearch-input-wrapper.-typed .amsearch-button.-loupe {
    left: 10px;
    right: auto
}

.amsearch-input-wrapper.-typed .amsearch-input {
    padding-left: 33px;
    padding-right: 33px
}

.amsearch-input-wrapper .amsearch-input {
    /* border: 1px solid #ccc; */
    /* padding: 5px 10px; */
    /* transition: .3s */
	
    border: 0;
    border-bottom: 2px solid var(--blue);
    text-align: center;
    height: 50px;
    padding: 0px 10px 0px 45px;
}

.amsearch-input-wrapper .amsearch-input:focus {
    border: 1px solid #1979c2;
    box-shadow: none
}

.amsearch-input-wrapper .amsearch-input:focus::placeholder,.amsearch-input-wrapper .amsearch-input:focus::-webkit-input-placeholder {
    color: transparent
}

.amsearch-input-wrapper .amsearch-input::placeholder,.amsearch-input-wrapper .amsearch-input::-webkit-input-placeholder {
    color: #999
}

.amsearch-input-wrapper .amsearch-button.-close {
    bottom: 0;
    font-size: 1rem;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0
}

.amsearch-input-wrapper .amsearch-button.-loupe {
    border: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    right: 5px;
    top: 0
}

body.-amsearch-overlay-opened .logo,body.-amsearch-overlay-opened .nav-sections {
    z-index: 0
}

.page-header.amsearch-full-width.-opened {
    z-index: 12
}

.amsearch-overlay-block {
    background: rgba(0,0,0,0.19);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 11
}

.amsearch-overlay-block .amsearch-overlay {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.amsearch-items-section {
    padding: 25px 0 0 0;
    width: 100%
}

.amsearch-items-section:empty {
    display: none
}

.amsearch-item-container {
    flex-basis: 100%;
    padding: 0 0 20px;
    position: relative
}

.amsearch-item-container.-opened {
    padding: 0 0 32px
}

.amsearch-item-container.-page a.amsearch-link {
    color: var(--blue, #3ac39c);
    font-weight: 600
}

.amsearch-item-container.-recent_searches:not(.-closed) .amsearch-block-header {
    padding: 0 20px 15px
}

.amsearch-item-container.-recent_searches .amsearch-tab-items {
    padding: 0 20px
}

.amsearch-item-container.-recent_searches .amsearch-item {
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 25px;
    box-sizing: border-box;
    display: inline-block;
    margin: 0 8px 10px 0;
    order: 1;
    text-decoration: none
}

.amsearch-item-container.-recent_searches .amsearch-item.-match {
    background-color: var(--amsearch-color-hover, #f4f5fa)
}

.amsearch-item-container.-recent_searches .amsearch-item .amsearch-link {
    padding: 6px 15px
}

.amsearch-item-container.-recent_searches .amasty-xsearch-num-results {
    display: none
}

.amsearch-item-container.-popular_searches .amasty-xsearch-num-results {
    display: none;
    font-size: 12px
}

.amsearch-item-container.-brands .amasty-xsearch-num-results {
    color: #ccc;
    display: inline-block;
    float: none
}

.amsearch-item-container .amsearch-tab-items {
    list-style: none;
    margin: 0;
    padding: 0
}

.amsearch-item-container .amsearch-description {
    padding: 8px 20px
}

.amsearch-item-container .amsearch-item {
    cursor: pointer;
    margin: 0;
    overflow: hidden;
    text-transform: capitalize
}

.amsearch-item-container .amsearch-item .amsearch-link {
    color: var(--blue, #3ac39c);
    display: block;
    font-size: 1rem;
    font-weight: 400;
    outline: none;
    padding: 8px 20px;
    text-decoration: none
}

.amsearch-item-container .amsearch-item .amsearch-link:hover {
    background: var(--amsearch-color-hover, #f4f5fa);
    color: var(--blue, #3ac39c)
}

.amsearch-item-container .amsearch-item .amsearch-link:focus {
    background: var(--amsearch-color-hover-focus, #f4f5fa);
    color: var(--blue, #3ac39c)
}

.amsearch-related-terms {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0
}

.amsearch-related-terms>.amsearch-title {
    font-weight: 700;
    margin: 0 0 15px 0;
    width: 100%
}

.amsearch-related-terms>.amsearch-item {
    background: #d8eeff;
    border-radius: 20px;
    color: #252525;
    font-size: 12px;
    line-height: 1.3;
    margin: 0 15px 10px 0;
    padding: 5px 15px;
    transition: .1s
}

.amsearch-related-terms>.amsearch-item:hover {
    background: #b7e0ff
}

.amsearch-related-terms>.amsearch-item:hover,.amsearch-related-terms>.amsearch-item:active {
    text-decoration: none
}

.amsearch-related-terms .amsearch-count {
    color: #757575
}

.amsearch-button.-full-close {
    display: none
}

.page-header .amsearch-button.-loupe-trigger {
    background-size: 20px;
    filter: brightness(75%);
    float: right;
    height: 20px;
    margin: 14px;
    width: 20px
}

.page-header.amsearch-full-width .header.content {
    transition: none
}

.page-header.amsearch-full-width .amsearch-full_width-title {
    flex-basis: 100%;
    font-size: 2.6rem;
    font-weight: 300;
    margin: 0;
    padding: 0 0 20px 0;
    z-index: 15
}

.page-header.amsearch-full-width .amsearch-input-wrapper {
    flex-grow: 10;
    width: initial
}

.page-header.amsearch-full-width .amsearch-button.-search {
    flex-grow: 1
}

.page-header.amsearch-full-width .amsearch-wrapper-block {
    display: none
}

.page-header.amsearch-full-width .amsearch-form-block {
    flex-wrap: wrap;
    height: auto;
    justify-content: flex-start;
    min-width: 100%;
    padding: 20px 15px;
    transition: none
}

.page-header.amsearch-full-width .amsearch-button.-full-close {
    bottom: 0;
    margin: 20px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 98
}

.page-header.amsearch-full-width .amsearch-result-section {
    border-radius: 0;
    border-top: 1px solid #ccc;
    margin: 0;
    transition: none;
    width: 100%
}

.page-header.amsearch-full-width .amsearch-slider-section {
    max-width: none;
    width: 100%
}

.page-header.amsearch-full-width .amsearch-wrapper-block {
    background: #f5f5f5;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 14
}

.page-header.amsearch-full-width.-opened {
    height: 134px;
    transition: .1s
}

.page-header.amsearch-full-width.-opened .panel.wrapper {
    display: none
}

.page-header.amsearch-full-width.-opened .header.content {
    align-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    max-width: 100%;
    padding: 0
}

.page-header.amsearch-full-width.-opened .minicart-wrapper {
    display: none
}

.page-header.amsearch-full-width.-opened .amsearch-wrapper-block {
    display: inline-block
}

.page-header.amsearch-full-width.-opened .amsearch-button.-full-close {
    display: inline-flex
}
.catalogsearch-advanced-result .message.error {
    margin-top: -60px
}
.search .fieldset .control .addon input {
    flex-basis: auto;
    width: 100%
}

.block-search {
    margin-bottom: 0
}

.block-search .block-title {
    display: none
}

.block-search .block-content {
    margin-bottom: 0
}

.block-search .label {
    /* text-decoration: none; */
    /* display: none; */
    /* float: right */
}

.block-search .label>span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.block-search .label:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 28px;
    color: #757575;
    content: '\e615';
    font-family: 'luma-icons';
    margin: 0 10px 0 0;
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center
}

.block-search .label:hover:before {
    color: #333
}

.block-search .label:active:before {
    color: #333
}

.block-search .label.active+.control input {
    position: static
}

.block-search .action.search {
    display: none
}

.block-search .control {
	/*
    border-top: 1px solid #ccc;
    clear: both;
    margin: 0 -15px -1px;
    padding: 0 15px
	*/
}

.block-search input {
    font-size: 16px;
    margin: 15px 0;
}

.block-search .nested {
    display: none
}

.search-autocomplete {
    display: none;
    margin-top: -15px;
    overflow: hidden;
    position: absolute;
    z-index: 3
}

.search-autocomplete ul {
    margin: 0;
    padding: 0;
    list-style: none none
}

.search-autocomplete ul:not(:empty) {
    background: #fff;
    border: 1px solid #c2c2c2;
    border-top: 0
}

.search-autocomplete ul li {
    border-top: 1px solid #e5e5e5;
    cursor: pointer;
    margin: 0;
    padding: 5px 40px 5px 10px;
    position: relative;
    text-align: left;
    white-space: normal
}

.search-autocomplete ul li:first-child {
    border-top: none
}

.search-autocomplete ul li:hover,.search-autocomplete ul li.selected {
    background: #e8e8e8
}

.search-autocomplete ul li .amount {
    color: #999;
    position: absolute;
    right: 7px;
    top: 5px
}

.form.search.advanced .fields.range .field:first-child {
    position: relative
}

.form.search.advanced .fields.range .field:first-child .control {
    padding-right: 25px
}

.form.search.advanced .fields.range .field:first-child .control:after {
    content: ' \2013 ';
    display: inline-block;
    position: absolute;
    right: 0;
    text-align: center;
    top: 6px;
    width: 25px
}

.form.search.advanced .fields.range .field:last-child {
    position: relative
}

.form.search.advanced .fields.range .field:last-child div.mage-error[generated] {
    left: 0;
    position: absolute;
    top: 32px
}

.form.search.advanced .fields.range .field.with-addon .control {
    padding-right: 45px
}

.form.search.advanced .group.price .addon .addafter {
    background: none;
    border: 0;
    padding-top: 6px;
    position: absolute;
    right: 0;
    top: 0
}


.cms-hotel-full-of-energy #samaritan-container,
.cms-hotel-full-of-energy #header-selling-points,
.cms-hotel-full-of-energy .header-top-nav
.cms-enarxi-touristikis-sezon #samaritan-container,
.cms-enarxi-touristikis-sezon #header-selling-points,
.cms-enarxi-touristikis-sezon .header-top-nav{
	display:none !important;
}

.cms-hotel-full-of-energy .page-header,
.cms-enarxi-touristikis-sezon  .page-header{
	position:sticky;
	top:0;
	z-index:2;
}

.search-terms {
    line-height: 2em
}

.search-terms>li {
    display: inline-block;
    margin-right: 10px
}

.search.found {
    margin-bottom: 10px
}
#cookiescript_injected .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background, #cookiescript_injected .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background, #cookiescript_injected_fsd .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background, #cookiescript_injected_fsd .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background{
	background-color: rgb(247 135 33 / 43%) !important;
}
#cookiescript_injected .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark, #cookiescript_injected_fsd .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{
	/* color:rgb(247 135 33 / 43%) !important; */
}
#cookiescript_injected .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background, #cookiescript_injected .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background, #cookiescript_injected_fsd .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background, #cookiescript_injected_fsd .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background{
    border-color: var(--orange) !important;
    background-color: var(--orange) !important;
}
#cardlink_checkout--modal{
	display:none;
}

div.snize#snize_results {
    position: relative;
}
div.snize#snize_results div.snize-main-panel{
    border:0;
    width:auto;
    display: flex;
    flex-wrap: wrap;
    margin-left: 245px;
    align-items: center;
    margin-block-end: 1rem;
}
div.snize#snize_results div.snize-header{
    position:absolute;
    top:0;
    right:0;
    margin: 0;
    width: auto;
    overflow: auto;
}
div.snize#snize_results div.snize-header .snize-search-results-header{
    vertical-align: middle;
    height: 42px;
    line-height: 42px;
    float:none;
    font-size: 16px;
    margin:0;
    min-width: none;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-controls{
    display: none;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-view-mode{
    float:none;
    margin:0;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-view-mode .snize-view-mode-icon{
    width:34px;
    height:34px;
    margin-inline:4px;
    opacity:1;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-view-mode .snize-view-mode-icon > svg{
    display:none;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-view-mode .snize-view-mode-icon:before{
    font-size: 34px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: inherit;
    color: #ccc;
    content: '\e60d';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-view-mode .snize-view-mode-icon.active:before{
    color: #2d2a2a;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-view-mode .snize-view-mode-icon.snize-list-mode-icon:before{
    content: '\e60b';
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-dropdown{
    float:none;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-dropdown {
    margin-left: 8px;
}
div.snize#snize_results div.snize-main-panel .snize-main-panel-dropdown .snize-main-panel-dropdown-button{
    border: 0;
    border-bottom: 2px solid #8E8E8E;
    background: #ffffff;
    background-clip: padding-box;
    border-radius: 1px;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    height: 42px;
    padding: 0px 10px 0px;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    margin-inline-start: 0;
    display: inline-flex;
    align-items: center;
    min-width: 130px;
}
div.snize#snize_results div.snize-main-panel-dropdown ul.snize-main-panel-dropdown-content{
    left: 0;
    right: auto;
    margin: 0;
}
div.snize#snize_results div.snize-main-panel-dropdown ul.snize-main-panel-dropdown-content a{
    padding-block:3px;
    font-size: 1rem;

}
div.snize#snize_results div.snize-main-panel-dropdown a .caret,
div.snize#snize_results div.snize-filters-dropdown-title .caret{
    width: 5px;
    height: 5px;
    border-bottom: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    margin-left: auto !important;
    border-left: 0;
    border-top: 0;
}
div.snize#snize_results div.snize-filters-sidebar{
    border:0;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title {
    padding:0;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title .snize-product-filters-reset {
    background: transparent;
    display: block;
    width: auto;
    height: auto;
    font-style: normal;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title .snize-product-filters-reset::before {
    content: "\f057";
    font-family: 'FontAwesome';
    display: block;
    color: var(--orange);
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-block {
    border-bottom: 0;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-block:hover {
    background-color: transparent;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title .snize-product-filters-open,
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title .snize-product-filters-close{
    display: none;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title > span{
    padding-bottom: 4px;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
    cursor: initial;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title > span:before {
    content: "";
    width: 40px;
    background-color: var(--orange);
    height: 2px;
    bottom: 0;
    position: absolute;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title .snize-product-filters-reset-wrap{
    margin-inline-start: auto;
}
div.snize#snize_results div.snize-filters-sidebar .snize-product-filters-title .snize-product-filters-price-symbol{
    display: none;
}
div.snize#snize_results ul.snize-product-filters-list{
    display: block !important;
    padding: 0;
    border-bottom: 1px solid rgba(129,129,129,.2);
    margin-bottom: 25px;
}
div.snize#snize_results ul.snize-product-filters-list li{
    margin-bottom:0;
}
div.snize#snize_results ul.snize-product-filters-list li .snize-filter-checkbox{
    display: none;
}
div.snize#snize_results ul.snize-product-filters-list li .needsclick{
    padding: 0;
    font-size: 1rem;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
div.snize#snize_results ul.snize-product-filters-list .snize-filter-variant-count:before,
div.snize#snize_results ul.snize-product-filters-list .snize-filter-variant-count:after{
    display: none;
}
div.snize#snize_results ul.snize-product-filters-list .snize-filter-variant-count{
    padding-right: 5px;
    padding-left: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid;
    border-radius: 35px;
    color: #777;
	/* amea */
	color:#767676;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
    margin-left: .5rem;
}
div.snize ul.snize-product-filters-list li span.snize-range-divider{
    color: #767676 !important;
}

#snize-modal-mobile-filters-dialog .snize-modal-content .snize-filters-show-more .snize-select-show-more,
div.snize#snize_results ul.snize-product-filters-list li .snize-select-show-more{
    display: block;
    margin: .5rem;
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 1rem;
    transition:color 0.3s linear, background-color 0.3s linear, border-color 0.3s linear;
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-filters-show-more .snize-select-show-more:hover,
div.snize#snize_results ul.snize-product-filters-list li .snize-select-show-more:hover{
    background: var(--orange);
    border-color: var(--orange);
}
div.snize#snize_results ul.snize-product-filters-list li.snize-filter-checked > label .needsclick,
div.snize#snize_results ul.snize-product-filters-list li > label:hover .needsclick{
    color: var(--orange);
}
div.snize#snize_results ul.snize-product-filters-list li.snize-filter-checked > label .snize-filter-variant-count,
div.snize#snize_results ul.snize-product-filters-list li > label:hover .snize-filter-variant-count{
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
div.snize#snize_results div.slider-container.snize-theme .selected-bar{
    background-color: var(--orange);
}
div.snize#snize_results div.slider-container.snize-theme .back-bar .pointer{
    background-color: var(--orange);
    width:16px;
    height:16px;
    border-radius: 8px;
}
div.snize#snize_results div.slider-container.snize-theme .scale span{
    border-left: 0;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product{
    border:0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    border-radius: 5px;
}
div.snize#snize_results #snize-search-results-grid-mode .snize-thumbnail-wrapper{
    padding:0;
}
div.snize#snize_results #snize-search-results-grid-mode .snize-thumbnail-wrapper .snize-thumbnail{
    width:auto;
    height: auto !important;
    padding:0;
}
div.snize#snize_results #snize-search-results-grid-mode .snize-thumbnail-wrapper .snize-thumbnail img{
    max-width: 100%;
    max-height:none !important;
    position:relative;
    top:0;
    bottom:0;
}
div.snize#snize_results #snize-search-results-grid-mode span.snize-overhidden{
    padding: 0 15px 10px !important;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product span.snize-title{
    font-family: Poppins, Arial, Helvetica, sans-serif;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    text-align: left;
    transition: color 0.3s linear;
    overflow: visible;
    max-height: none !important;
    -webkit-line-clamp: none !important;
    width: 100%;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-view-link,
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-view-link .snize-item{
    height: 100%;
}

div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-view-link span.snize-overhidden{
    display: flex;
    /*flex-direction: column;*/
    flex-wrap: wrap;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-view-link .snize-reviews{
    margin-top:auto;
    width: 100%;
}

div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-custom-attributes{
    width:100%;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-custom-attributes:last-child{
    border-bottom:1px solid #ccc;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-button{
    position: relative;
    top:auto;
    right: auto;
    bottom:auto;
    left:auto;
    width: 45px;
    opacity: 1;
    z-index: 2;
    background-color: transparent;
    height: 45px;
    padding: 8px;
    border-radius: 10px;
    margin-right: 5px;
    transition: transform 0.3s ease;
    border: 2px solid var(--orange);
    box-shadow: none;
    font-size: 0;
    margin:0;
    padding: 0;
    transition: background-color 0.3s ease;
    order:1;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-price-list{
    order:2;
    display: flex;
    margin: 0 0 0 auto;
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
    align-items: center;
    flex-direction: column;
    justify-content:  center;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-price-list .snize-price{
    margin:0;
    line-height: 1;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-price-list .snize-price.snize-price-with-discount{
    display: none;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-price-list .snize-discounted-price{
    /*font-weight: 400;*/
    /*order:-1;*/
    /*font-size: 1.2rem;*/
    /*line-height: 1.3;*/
    /*margin:0;*/
    /*color:#BDBDBD;*/
    color: inherit;
    text-decoration: none;
    font-size: 1.4rem;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-button:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/cart_icon.png);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: background 0.3s ease;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-button:hover{
    background-color: var(--orange);
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-button:hover:before{
    background-image: url('../images/cart_icon_hover.png');
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-reviews{
    height: auto;
}
div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-sku{
    font-size: .8rem;
    margin-bottom:.5rem;
    width:100%;
}
html[lang="el"] div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-sku:before{
    content: 'Κωδικός : ';
}
html[lang="en"] div.snize#snize_results #snize-search-results-grid-mode li.snize-product .snize-sku:before{
    content: 'Code : ';
}

div.snize#snize_results div.snize-pagination ul li a,
div.snize#snize_results div.snize-pagination ul li span{
    border:0;
    width:32px;
    line-height:32px;
    height:32px;
    font-size:14px;
    padding: 0;
    margin:0 1px;
    font-weight: 600;
    border-radius: 0;
}
div.snize#snize_results div.snize-pagination .snize-pagination-next.disabled,
div.snize#snize_results div.snize-pagination .snize-pagination-prev.disabled{
    display: none;
}
div.snize#snize_results div.snize-pagination .snize-pagination-next ,
div.snize#snize_results div.snize-pagination .snize-pagination-prev{
    font-size: 0;
    position: relative;
}

div.snize#snize_results div.snize-pagination .snize-pagination-next:before,
div.snize#snize_results div.snize-pagination .snize-pagination-next:after{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 46px;
    line-height: inherit;
    color: var(--blue);
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
    font-family: 'icons-blank-theme';
    margin: 0 0 0 -6px;
}
div.snize#snize_results div.snize-pagination .snize-pagination-next:hover:before,
div.snize#snize_results div.snize-pagination .snize-pagination-next:hover:after{
    color:#fff;
}
div.snize#snize_results div.snize-pagination .snize-pagination-next:before{
    content: '\e608';
}
div.snize#snize_results div.snize-pagination .snize-pagination-prev:before{
    content: '\e617';
}

div.snize#snize_results div.snize-pagination ul li a.active,
div.snize#snize_results div.snize-pagination ul li a:hover{
    background-color: var(--main-color);
    color:#fff;
}

div.snize#snize_results .snize-product .snize-custom-attributes > li{
    font-size: .8rem;
    margin-right: 0;
    color: var(--blue);
    margin-left: 0;
    list-style-type: none !important;
}
div.snize#snize_results .snize-product .snize-custom-attributes > li:before{
    content: '•';
    margin-right: 4px;
}

div.snize#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode ul,
div.snize#snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode ul,
div.snize#snize_results.snize-mobile-design.snize-new-version div.disabled-opacity{
    width:100%;
    margin-left:0;
    margin-right:0;
}
div.snize#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product:nth-child(even){
    width: 49% !important;
    margin-left: 1%;
    margin-bottom:1rem;
}
div.snize#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product:nth-child(odd){
    width: 49% !important;
    margin-right: 1%;
    margin-bottom:1rem;
}
#snize-modal-mobile-filters-dialog.snize{
    border-radius: 0;
    height: 100%;
    top: 0;
    width: min(400px, 90%);
}
#snize-modal-mobile-filters-dialog .snize-modal-content{
    overflow: auto;
    padding-inline:1rem;
    height: 100%;
}
#snize-modal-mobile-filters-dialog #snize_filters_block_header{
    position:sticky;
    top:0;
    z-index: 1;
    background-color: #fff;
    padding-block: 1rem;
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-product-filters-header .snize-product-filters-title{
    padding-bottom: 4px;
    color: var(--blue);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    display: block;
    margin-bottom: .5rem;
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-product-filters-header .snize-product-filters-title:before{
    content: "";
    width: 40px;
    background-color: var(--orange);
    height: 2px;
    bottom: 0;
    position: absolute;
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-back-to-filters{
    display: none !important;
}
#snize-modal-mobile-filters-dialog .snize-modal-content #snize_filters_block{
    display: none !important;
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-product-filters-header,
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-product-filter-container{
    display: block !important;
    position: relative;
    top: 0px;
    padding-top: 0;
    left: 0;
    right: 0;
    text-align: left;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li:first-child{
    margin-top:2px;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li{
    margin-block:2px;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li>label{
    padding: 0;
    border: 0;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li .snize-filter-checkbox span{
    width: 1rem;
    height:1rem;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li .snize-filter-checkbox span:after{
    width: 11px;
    height: 6px;
    top: 4px;
    left: 3px;
    border: 3px solid #0288d1;
    border-top: none;
    border-right: none;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li label .snize-filter-variant-count{
    padding-right: 5px;
    padding-left: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid;
    border-radius: 35px;
    color: #777;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li.snize-filter-checked label .snize-filter-variant-count,
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li label:hover .snize-filter-variant-count{
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
#snize-modal-mobile-filters-dialog .snize-modal-content  ul.snize-product-filters-list li > label > .needsclick{
    font-size: 1rem;
    line-height: 1.2;
    color: var(--blue);
    padding-left: 1.2rem;
}
#snize-modal-mobile-filters-dialog .snize-modal-content ul.snize-product-filters-list li.snize-filter-checked > label > .needsclick{
    color: var(--orange);
}
#snize-modal-mobile-filters-dialog .snize-modal-content div.snize-product-filters-buttons-container{
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding-block: .5rem;
    background: #fff;
}
div#snize-modal-mobile-filters-dialog.snize div.slider-container.snize-theme{
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-price-range-input{
    width:46%;
}
#snize-modal-mobile-filters-dialog .snize-modal-content .snize-price-range-slider{
    width:100%;
    margin-top:4px;
}
div#snize-modal-mobile-filters-dialog.snize div.slider-container.snize-theme .selected-bar{
    background-color: var(--orange);
}

#snize-modal-mobile-filters-dialog .snize-modal-content div.slider-container.snize-theme .back-bar .pointer{
    background-color: var(--orange);
    width: 16px;
    height:16px;
    border-radius: 8px;
}
#snize-modal-mobile-filters-dialog .snize-modal-content div.snize-product-filters-buttons-container .snize-product-filters-show-products{
    background-color: var(--blue);
    border-color: var(--blue);
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}
#snize-modal-mobile-filters-dialog .snize-modal-content div.snize-product-filters-buttons-container .snize-product-filters-show-products:hover{
    background-color: var(--orange);
    border-color: var(--orange);
}
#snize-modal-mobile-sortby-dialog ul.snize-main-panel-dropdown-content li a{
    display: block;
    width:auto !important;
}
#snize_results.snize-mobile-design.snize-new-version div.snize-main-panel-view-mode{
    max-width: none !important;
}
#snize_results.snize-mobile-design div.snize-main-panel-view-mode a.snize-list-mode-icon,
#snize_results.snize-mobile-design div.snize-main-panel-view-mode a.snize-grid-mode-icon{
    background: transparent !important;
    border:0 !important;
    padding:0 !important;
    display: block !important;
}
#snize_results.snize-mobile-design .snize-main-panel div.snize-main-panel-mobile-filters{
    max-width: none !important;
}

#snize_results.snize-mobile-design .snize-main-panel div.snize-main-panel-mobile-filters a {
    border-radius: 4px !important;
    color: #fff;
    background-color: var(--orange);
    border-color: var(--orange) !important;
}

#snize_results.snize-mobile-design .snize-main-panel div.snize-main-panel-mobile-filters a:before {
    content: "\f1de";
    font-family: FontAwesome;
    margin-right:4px;
}

div.snize#snize_results #snize-search-results-list-mode li.snize-product{
    box-shadow:0 0 10px rgba(0, 0, 0, .15);
    margin-bottom:1rem;
    padding:.5rem;
}

div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item{
    display: flex;
    flex-wrap: wrap;
}

div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex:1;
}

div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-custom-attributes,
div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-sku,
div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-title{
    width:100%;
    display: block;
}
div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-sku{
    margin: 0;
}
div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-button{
    order:1;
    margin:0;
    opacity: 1;
    margin-left: auto;
    font-size: 13px;
    padding: 11px 20px;
    line-height: 1;
    margin-top:auto;
    background-color: var(--blue);
    border-color: var(--blue);
}
div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-button:hover{
    background-color: var(--orange);
    border-color: var(--orange);
}
div.snize#snize_results #snize-search-results-list-mode li.snize-product .snize-item .snize-overhidden .snize-price-list{
    order: 2;
    margin: 0;
    display: flex;
    margin-left: 1rem;
    height: 43px;
    align-items: center;
    margin-top: auto;
}

div.snize#snize_results #snize-search-results-list-mode span.snize-thumbnail{
    border:0;
    width:240px !important;
    height: auto !important;
}
div.snize#snize_results #snize-search-results-list-mode span.snize-thumbnail img{
    position: relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
    max-width: 240px;
    max-height: none;
}
div.snize#snize_results #snize-search-results-list-mode li.snize-product span.snize-title{
    font-size: 20px;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 26px;
    display: block;
    height: max-content !important;
    max-height: max-content !important;
}
#snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode span.snize-thumbnail img{
    width:240px;
    height: auto;
    max-width: 240px !important;
    max-height: none !important;
}
#snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode .snize-search-results-content .snize-thumbnail-wrapper{
    margin-right: 15px;
}
#snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode span.snize-thumbnail{
    float: none !important;
}
#snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode .snize-custom-attributes:last-child{
    margin-bottom: 10px;
}
#snize-search-results-grid-mode .snize-thumbnail::before,
#snize-instant-search-results .snize-thumbnail::before{
	position: absolute;
    top: .125rem;
    right: .125rem;
    z-index: 3;
    padding: .125rem 0.25rem;
    font-size: .625rem;
    border-radius: .25rem;
    color: #fff;
	 display:none; 
}
#snize-search-results-grid-mode .snize-thumbnail::before{
    top:6px;
    right:6px;
    font-size:15px;
}
html[lang="en"] #snize-search-results-grid-mode .stock-positive .snize-thumbnail::before,
html[lang="en"] .snize-ac-results .stock-positive .snize-thumbnail::before{
	content:'In Stock';
    background-color: #1eb500;
}
html[lang="el"] #snize-search-results-grid-mode .stock-positive .snize-thumbnail::before,
html[lang="el"] .snize-ac-results .stock-positive .snize-thumbnail::before{
	content:'Διαθέσιμο';
    background-color: #1eb500;
}

#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Out Of Stock"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Out Of Stock"] .snize-thumbnail::before{
	content:'Out Of Stock';
	background-color:#ff0000;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Soon Available"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Soon Available"] .snize-thumbnail::before{
	content:'Soon Available';
	background-color:#F78F1E;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Pre Order"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Pre Order"] .snize-thumbnail::before{
	content:'Pre Order';
	background-color:#36b3d8;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="On Order"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="On Order"] .snize-thumbnail::before{
	content:'On Order';
	background-color:#002559;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Εξαντλημένο"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Εξαντλημένο"] .snize-thumbnail::before{
	content:'Εξαντλημένο';
	background-color:#ff0000;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Σύντομα Διαθέσιμο"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Σύντομα Διαθέσιμο"] .snize-thumbnail::before{
	content:'Σύντομα Διαθέσιμο';
	background-color:#F78F1E;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Προπαραγγελία"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Προπαραγγελία"] .snize-thumbnail::before{
	content:'Προπαραγγελία';
	background-color:#36b3d8;	
}
#snize-search-results-grid-mode .stock-negative[data-status_out_of_stock="Κατόπιν Παραγγελίας"] .snize-thumbnail::before,
.snize-ac-results .stock-negative[data-status_out_of_stock="Κατόπιν Παραγγελίας"] .snize-thumbnail::before{
	content:'Κατόπιν Παραγγελίας';
	background-color:#002559;	
}


#snize-instant-search-results.snize-ac-results .snize-thumbnail{
	background:#fff;
}

body.checkout-onepage-success .page-title-wrapper{
    color:#fff;
    font-weight:600;
}
body.checkout-onepage-success #maincontent{
    background:radial-gradient(circle, rgba(124,182,230,1) 0%, rgba(4,41,93,1) 100%);
    max-width: none;
    padding-top: 50px;
}
body.checkout-onepage-success #maincontent > *{
    max-width: min(1280px, 100%);
    margin: 0 auto;
}
body.checkout-onepage-success #maincontent  .page-title-wrapper .page-title{
    color:var(--orange);
    font-weight: 600;
}
body.checkout-onepage-success #maincontent  #registration,
body.checkout-onepage-success #maincontent  .checkout-success{
    text-align: center;
    color:#fff;
}
.text-white{
    color:#fff;
}
.text-underline{
    text-decoration: underline;
}
.justify-content-center{
    justify-content: center;
}
.block-static-block.widget, .block-cms-link.widget{
    margin-bottom: 0 !important;
}
#header-top-global-notice{
    display:none;
}
@media only screen and (max-width: 767px) {
	.amsearch-wrapper-block{
		width:100%;
		margin-left:0;
		margin-block-end:10px;
	}
	.amblog-search-block .amblog-content {
        flex-direction: column;
        padding-top: 25px
    }

    .amblog-search-block .amblog-content>*:not(:last-child) {
        margin-bottom: 25px
    }
	.amblog-search-switch {
        padding: 8px 15px
    }

    .amblog-search-titles {
        padding-top: 10px
    }

    .amblog-search-title {
        background: #f5f5f5;
        border: 1px solid #e5e5e5;
        border-radius: 80px;
        margin: 0 10px 10px 0;
        width: auto
    }

    .amblog-search-title.open {
        border-color: #1979c2
    }

    .amblog-search-content {
        margin-top: 20px
    }
    .block-search {
        margin-top: 10px
    }
	.form.search.advanced .field.price .with-addon .input-text {
        flex-basis: auto;
        width: 100%
    }
	.catalogsearch-result-index .amsearch-pagebuilder-carousel .product-item-info {
        margin: 0 auto;
        width: 240px
    }
}
@media only screen and (max-width: 575px){
    #snize_results.snize-mobile-design.snize-new-version #snize-search-results-list-mode .snize-search-results-content .snize-thumbnail-wrapper{
        width: 100% !important;
        margin-right: 0 !important;
    }
    div.snize#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product:nth-child(even){
        width: 100% !important;
        margin-left: 0%;
        margin-bottom:1rem;
    }
    div.snize#snize_results.snize-mobile-design.snize-new-version #snize-search-results-grid-mode.snize-two-columns li.snize-product:nth-child(odd){
        width: 100% !important;
        margin-right: 0%;
        margin-bottom:1rem;
    }
}
@media all and (min-width: 640px) {
	
	.catalogsearch-advanced-result .message.error {
        margin-top: 0
    }
}