:root {
    --blue: #0B9BD8;
    --yellow: #FFDD00;
    --orange: #FFCE00;
    --orange2: #FF9900;
}

/* SCROLL BARS */
/* Mozilla ScrollBar */
* {
    scrollbar-color: var(--blue) #f5f5f5;
    scrollbar-width: thin;
}
/* Chrome Scrollbar */
*::-webkit-scrollbar-track {
    --webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #f5f5f5;
}

*::-webkit-scrollbar-thumb {
    --webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: var(--blue);
}
/* END SCROLL BARS */

body {
    font-size: 16px;
    background: #ffffff !important;
    font-family: 'Patrick Hand', cursive !important;
}
b, strong {
    font-weight: bold !important;
}
p {
    font-size: 16px;
}

a {
    color: var(--blue);
}

a:active,
a:hover,
a:focus {
    color: var(--blue) !important;
}

.alert-volume {
    font-size: 14px !important;
    background-color: #fd09;
    border: 1px dashed #000000;
}

.alert.alert-special {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 18px !important;
    font-weight: bold;
    color: #ca0303;
    margin: 0 0 1rem 0 !important;
}

.alert-delivery {
    border: none;
    background: #d6eed1;
    font-weight: bold;
    color: #458057;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
	color: #ffffff !important;
}

.btn-primary.active,
.btn-primary:active,
.open>.btn-primary.dropdown-toggle {
	color: #ffffff !important;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover {
	color: #ffffff !important;
}

.btn-secondary,
.btn-tertiary {
	color: #ffffff !important;
}

.d-block {
    display: block;
}
.text-center {
    text-align: center;
}
.p-3 {
    padding: 1rem;
}
.py-3 {
    padding: 1rem 0;
}
.mt-5 {
    margin-top: 3rem;
}
.mb-5 {
    margin-bottom: 3rem;
}
.my-5 {
    margin: 3rem 0;
}

.border-0 {
    border: none;
}

.card {
    background-color: transparent;
}
.card-header,
.card-footer {
    border: none;
    background: transparent;
}
.card-body {
    padding: 1.25rem;
}
.card-img-top {
    max-width: 100%;
}

/* CONVERT FLOAT TO FLEX GRID */
.row.display-flex {
    display: flex !important;
    flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
/* --- */

/* LightGallery */
.lg-backdrop {
    z-index: 9990;
}
.lg-outer {
    z-index: 9991;
}
.lg-has-iframe .lg-video {
    -webkit-overflow-scrolling: touch;
    overflow: auto;
}

/* HEADER */
#header {
    border-bottom: 4px solid #d8e9f4;
    background: rgba(0, 0, 0, 0) url(../img/aximage/header-bg.png) repeat scroll center bottom / cover;
}
#header .header-nav {
    background: var(--yellow);
}
/* HEADER TOP */
#header .header-top {
    padding: 15px 0;
    background: none;
}
#header .header-top .row {
    display: flex;
    justify-content: center;
}
#header .header-top .row > [class*='col-'] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.shopping-cart .cart-products-count,
.shopping-cart .cart-products-count-media {
    background-color: var(--blue);
}
.shopping-cart .cart-products-count-media {
    width: 17px;
    height: 17px;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    line-height: 17px;
    font-weight: 400;
    text-align: center;
    letter-spacing: .2px;
    display: inline-block;
    vertical-align: top;
    float: none;
    position: absolute;
    top: 0;
    left: 25px;
    right: auto;
}
#_desktop_user_info {
    margin: 0 10px;
}
.ax-user-info .user-info-inner a span,
.ax_cart.cart-hover-content.dropdown-menu.no-item {
    font-size: 16px !important;
}
/* SEARCH BAR */
#search_widget {
    width: 100%;
}
#search_widget form {
    position: relative;
}
#search_widget form input[type=text] {
    width: 100%;
    color: #ffffff;
    height: 48px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.72px;
    padding: 0 40px 0 15px;
    background: #ffffff;
    line-height: 25px;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    background-color: var(--blue);
}
#search_widget form input[type=text]::placeholder {
    color: #ffffff;
    opacity: 1;
}
#search_widget form button[type=submit] {
    background-color: var(--blue);
    background-image: url(../img/aximage/search_button.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px auto;
    color: #7a7a7a;
    width: 55px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    border: none;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}
#search_widget form button[type=submit] .material-icons {
    display: none;
}

#results .price {
    font-size: 32px;
}
#results .regular_price {
    font-size: 20px;
}
#results .discount {
    padding: 5px 10px;
    font-size: 16px;
}
#results a {
    color: #000000;
}
/* ---- */

/* MENU */
.menu-item .menu-link,
.submenu .submenu-item a {
    color: #000000;
}

@media (min-width: 992px) {
    .menu-item .menu-link {
        font-size: 20px;
    }
    .submenu .submenu-item {
        margin: 0;
        padding: 10px;
        padding-left: 35px;
        text-align: left;
        font-size: 18px !important;
    }
}
/* --- */

/* slick arrow */
.arrows {
    width: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 2;
    opacity: 0;
    background-color: #fff;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}
#aei_cmscategory .arrows {
    top: 45%;
}
.special-products .arrows {
    top: 45%;
}
.feature-products .arrows,.newproduct .arrows,#bestseller .arrows,#aeicategorytabs .arrows {
   top: -73px;
}
.homeblog .slick-prev,#aei_cmscategory .slick-prev {
    left: 15px;
}
.homeblog .slick-next,#aei_cmscategory .slick-next {
    right: 15px;
}
.aei_cmsbanner .slick-prev,.aei_cmsbanner .slick-next {
    display: none !important;
}

#aeicmstestimony {
    margin-top: 45px;
}

/* CONTENT */
#main .page-header {
    text-align: center;
}
#main .page-header h1 {
    font-size: 28px;
}
.page-not-found {
    text-align: center !important;
}
.feature-products .arrows,
.newproduct .arrows,
#bestseller .arrows,
#aeicategorytabs .arrows {
    top: 45%;
}
.feature-products:hover .arrows,
.newproduct:hover .arrows,
.product-accessories:hover .arrows,
.aei_cmsbanner:hover .arrows,
#bestseller:hover .arrows,
.aei-producttab:hover .arrows,
.special-products:hover .arrows,
.homeblog:hover .arrows,
#aeicategorytabs:hover .arrows,
#aei_cmscategory:hover .arrows,
#aeicmstestimony:hover .arrows
{
    opacity: 1;
}
.brands .arrows {
    width: 100%;
    top: 45%;
    opacity: 0;
    background-color: transparent;
    left: 0;
    right: 0
}
.brands:hover .arrows {
	opacity: 1;
}
.brands .ax-product-title {
    display: none;
}

#manufacturer h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.brand {
    padding: 15px;
}

.brand div {
    margin-bottom: 8px;
}

/* custom link */
#_desktop_links_block_top {
    float: left;
    width: 70%;
    padding: 0 0 3px;
}
#_desktop_links_block_top #aei_customlink {
    margin: 0;
}
#_desktop_links_block_top li a {
    font-size: 13px;
    font-weight: 400;
    color: #a1a1a1;
    line-height: 35px;
    letter-spacing: 0.78px;
    text-transform: capitalize;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
#_desktop_links_block_top li:hover a {
    color: #00b7d1;
}
#_desktop_links_block_top li {
    display: inline;
    margin: 0 20px 0 0;
}

/* services */
#aei_cmsservice {
    width: 100%;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 65px 0 0;
}
#aei_cmsservice .aei-service-item {
    width: 33.33%;
    float: left;
    border-left: none;
    position: relative;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: #ff529b;
    padding: 20px 0;
}
#aei_cmsservice .slick-slide:nth-child(2) .aei-service-item {
    background-color: #2f9aff;
}
#aei_cmsservice .slick-slide:last-child .aei-service-item {
   background-color: #afe04d;
}

#aei_cmsservice .aei-image-block {
    text-align: center;
    display: block;
    position: relative;
}
#aei_cmsservice #service-item {
	margin: 0;
    width: 100%;
	float: left;
}

#aei_cmsservice .aei-image-icon {
	width: 66px;
    height: 66px;
	display: block;
	background: #fff url("../img/aximage/service-1.svg") no-repeat center center/40px;
	transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
    margin: 0 auto;
    border-radius: 50px;
    border: 2px solid transparent;
}
#aei_cmsservice .aei-service-item:hover .aei-image-icon {
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
	/* background-image: url("../img/aximage/service-1-hover.svg"); */
    background-color: var(--yellow);
    border: 2px solid rgba(255,255,255,.5);
}
#aei_cmsservice .aei-service-item.second .aei-image-icon {
    background-image: url("../img/aximage/service-2.svg");
    background-size: 32px;
}
#aei_cmsservice .aei-service-item.third .aei-image-icon {
   background-image: url("../img/aximage/service-3.svg");
}
#aei_cmsservice .aei-service-item.fourth .aei-image-icon {
   background-image: url("../img/aximage/service-4.svg");
}
/* cmsservice hover icon */
/* #aei_cmsservice .aei-service-item.second:hover .aei-image-icon {
    background-image: url("../img/aximage/service-2-hover.svg");
}
#aei_cmsservice .aei-service-item.third:hover .aei-image-icon {
   background-image: url("../img/aximage/service-3-hover.svg");
}
#aei_cmsservice .aei-service-item.fourth:hover .aei-image-icon {
   background-image: url("../img/aximage/service-4-hover.svg");
} */

#aei_cmsservice .aei-service-item a {
    line-height: normal;
    text-align: center;
    z-index: 1;
    position: relative;
}
#aei_cmsservice .service-right {
    display: block;
    float: none;
    text-align: center;
    padding-top: 15px;
}
#aei_cmsservice .service-right .aei-service-title {
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.94px;
    line-height: normal;
    color: #000;
    text-transform: capitalize;
    margin: 0;
}
#aei_cmsservice li:hover .service-right .aei-service-title {
    color: var(--yellow);
}
#aei_cmsservice .service-right .aei-service-desc {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 20px;
    margin-top: 10px;
    padding: 0 15px;
    letter-spacing: 1.02px;
    display: block;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

/* colorbox  */
.main_inline_content {
    display: none;
}
#cboxLoadedContent .content {
    text-align: center;
}
#cboxLoadedContent .content .aei-service-title,#cboxLoadedContent .content span {
    display: block;
    text-transform: capitalize;
}
#cboxLoadedContent .content .aei-service-desc2 {
    font-size: 13px;
    color: #737373;
}
#cboxLoadedContent {
    max-width: 500px;
}
#cboxLoadedContent .content .aei-service-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
#cboxLoadedContent .content .service-right {
    margin: 20px 0 0;
    padding: 0 30px;
}
#cboxLoadedContent .content .service-right .aei-service-desc1 {
    margin: 10px 0 5px;
}
#cboxLoadedContent .content .aei-image-block .aei-image-icon {
    padding: 20px;
    background-color: #f5f5f5;
}

/* banner cms block */
.aei_cmsbanner {
	position: relative;
    background: transparent;
}
.aeibannerblock .banner-title {
    font-size: 32px;
    text-transform: capitalize;
    text-align: center;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
}
.aeibannerblock .banner-desc {
    text-align: center;
    width: 75%;
    margin: 0 auto;
    padding: 50px 0;
    color: #a1a1a1;
    font-size: 16px
}
.progress-circle {
    text-align: center;
}
.progress-circle .title {
    color: #ffffff;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 500;
}
.progress-circle span {
    border: 5px solid #00b7d1;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 95px;
    font-size: 22px;
    color: #fff;
    position: relative;
    transition: all 0.5s ease;
}
.progress-circle span::before {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    top: -10px;
    left: -10px;
    padding: 8px;
    opacity: 0;
    box-shadow: 3px 3px #00b7d1;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    -moz-transition: opacity 0.2s, -moz-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
}
.progress-circle span:hover::before {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}
.progress-circle span:hover {
    border-color: transparent;
}
.progress-circle span::after {
    content: '%';
}
.aei_cmsbanner .banner-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -205px;
    margin: 0 auto;
    text-align: center;
}
.aei_cmsbanner .banner-inner {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}
.aei_cmsbanner .banner-inner.first, .aei_cmsbanner .banner-inner.third {
    padding-top: 125px;
}
.banner-inner-main {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.aei_cmsbanner .aeibannerblock {
  position: relative;
  display: inline-block;
    vertical-align: top;
    width: 100%;
    padding:100px 0;
}

.aei_cmsbanner .banner-description {
   
    position: relative;
}
.aei_cmsbanner .banner-description .banner-text-first {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.96px;
    display: inline-block;
    vertical-align: top;
    text-transform: capitalize;
    line-height: 30px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.aei_cmsbanner .banner-inner:hover .banner-description .banner-text-first {
    color: #00b7d1;
}
.aei_cmsbanner .banner-description .banner-text-third {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.2px;
    display: block;
    color: #666666;
    text-transform: capitalize;
    line-height: 26px;
}
.aei_cmsbanner .banner-description .banenr-icon {
    display: block;
    margin: 0 0 15px;
}
.aei_cmsbanner .banner-description .btn {
    padding: 7px 26px;
}
.banner-main.center .banner-slider {
    padding: 0 0 30px;
    margin: 0;
}
.aei-cmscategory-inner .slick-slider {
    margin: 0;
}

/* paymentcms block */
#aeicmspayment {
    float: right;
    margin-top: 15px;
}
#aeicmspayment li {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 5px;
}
.payment-block-inner {
    margin: 0;
}
#aeicmspayment .payment-icon .app-icon-inner {
    display: inline-block;
    vertical-align: top;
    margin: 0 3px;
}

/* brand logo */
.brands {
    position: relative;
    padding:60px 0;
    display: none;
}
#index .brands {
    display: block;
}
.brands .brand-image img {
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    position: relative;
    z-index: 1;
    width: auto;
}
.brands .item {
    position: relative;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    vertical-align: top;
    padding: 0;
    overflow: hidden;
}
.brands .slick-current .item {
    border: none;
}
.brands #aeibrand-slider {
    margin: 0;
}
.brands .brand-image:hover img {
	opacity: 1;
}

/* top cms */
/* #aeicmstop {
    float: left;
    padding: 10px 0;
}
#aeicmstop .customtext {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.70px;
    text-transform: capitalize;
    position: relative;
    padding: 0;
}

#aeicmstop .customtext span {
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.82px;
}
#aeicmstop .customtext:hover span {
    color: #00b7d1;
} */

/* category cms */
#aei_cmscategory {
    clear: both;
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin:80px 0 0;
}
.aei-cmscategory-inner .aei-cat-details {
    right: 0;
    left: 0;
    margin: 0 auto;
    top:auto;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    text-align: center;
    position: absolute;
    top: 20px;
}
#aei_cmscategory .cms-category-block .aei-cat-item:nth-child(2) .aei-cat-details {
    top:auto;
    bottom: 20px;
}
#aei_cmscategory .cms-category-block .aei-cat-item:hover .aei-cat-details {
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.aei-cmscategory-inner {
    margin: 0;
    float: left;
    width: 100%;
    z-index: 1;
    position: relative;
}
#aei_cmscategory .left-part {
    position: relative;
    background: var(--blue);
}
#aei_cmscategory .left-part .cat-inner {
    padding: 50px 30px 50px 30px;
}
#aei_cmscategory .heading_title {
    font-size: 26px;
    color: #fff;
    text-transform: capitalize;
}
#aei_cmscategory .heading_title span {
    border: 2px dashed #fff;
    display: inline-block;
    vertical-align: top;
    padding: 5px 10px;
    margin-top: 15px;
}
#aei_cmscategory .custom_desc {
    font-size: 16px;
    color: #fff;
    margin-top: 50px;
    line-height: 26px;
}
.custom_desc .cat-btn {
    margin-top: 40px;
}
#aei_cmscategory .left-part::after {
    content: "";
    width: auto;
    height: auto;
    right: 15px;
    left: 15px;
    top: 15px;
    bottom: 15px;
    border: 3px solid #fff;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.right-part {
    padding: 0;
}
.right-part .col-sm-6 {
    padding-right: 0;
}
#aei_cmscategory .aei-cat-details .aei-cat-name {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
    line-height: normal;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 15px;
}
#aei_cmscategory .cms-category-block .aei-cat-item:hover .aei-cat-name {
    color: var(--orange2);
}
#aei_cmscategory .aei-cat-desc {
    transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
}
#aei_cmscategory .aei-cat-desc p {
    color:#fff;
    font-size: 14px;
    text-transform: capitalize;
    padding: 30px;
    top:20%;
    position: relative;
}
#aei_cmscategory .aei-cat-desc .btn {
    background: #fff;
    color: #000;
}
#aei_cmscategory .aei-cat-desc .btn:hover {
   background: var(--blue);
    color: #ffffff;
}
#aei_cmscategory .aei-cat-desc .cat-btn {
    margin-top: 50px;
}
#aei_cmscategory .cms-category-block .aei-cat-item:hover .aei-cat-desc {
    opacity: 1;
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}
#aei_cmscategory  .btn {
   padding: 6px 26px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.cms-category-block .aei-cat-item .aei-cat-item-inner {
    position: relative;
}
#aei_cmscategory .cms-category-block .aei-cat-item {
    width: 33.33%;
    float: left;
    padding: 0 15px;
}
.aei-cat-img {
    position: relative;
    overflow: hidden;
}
.aei-cat-item .aei-cat-item-inner img {
    transition: all 2s ease;
    -webkit-transition: all 2s ease;
    -moz-transition: all 2s ease;
    -ms-transition: all 2s ease;
    -o-transition: all 2s ease;

}
.aei-cat-item:hover .aei-cat-item-inner img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

/* cms banner */
#aei_cmsbottom {
    float: left;
    text-align: center;
    position: relative;
    width: 25%;
}
#aei_cmsbottom .container {
    padding: 0;
}
#aei_cmsbottom  .cmsbottom-desc {
      margin-top: 15px;  
}
#aei_cmsbottom  .cmsbottom-desc p {
    margin: 0;
    color: #a1a1a1;
    cursor: pointer;
    font-size: 13px;
    font-weight: 400;
    line-height:normal;
    letter-spacing: 1.28px;
    text-transform: capitalize;
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}
#aei_cmsbottom .cmsbottom-inner {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.08px;
    cursor: pointer;
    text-transform: uppercase;
    margin: 0;
}
#aei_cmsbottom .arrows {
    top: 5px;
    width:100%;
}
#aei_cmsbottom:hover .arrows {
    opacity: 1;
}
#aei_cmsbottom .arrows .slick-prev, #aei_cmsbottom .arrows .slick-next {
    background-color: transparent;
}

li.product-flag.on-sale,
.product-miniature li.product-flag.on-sale {
    opacity: 1;
    padding: 5px 10px;
    color: #ffffff;
    background-color: #ca0303;
    border-radius: 25px;
    font-size: 16px;
}

/* SPINNER LOAGER */
.faceted-overlay .overlay__content {
    left: 45%;
}
.faceted-overlay .spinner {
    width: 150px;
    height: 150px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    animation: none;
    background-image: url(../img/aximage/site-loading.svg);
    background-size: 150px 150px;
}
/* --- */

/* MARCAS SLIDER */
.brands .ax-product-title {
    display: block;
}
#aeibrand-arrows .slick-prev,
#aeibrand-arrows .slick-next {
    top: -8px !important;
}
#aeibrand-slider .slick-slide {
    background-color: #ffffff !important;
}

/* NEWSLETTERS */
.block_newsletter {
    text-align: center;
}
.block_newsletter .newsletter-title {
    padding: 10px;
    float: none;
    width: 50%;
    background: none;
    text-align: center;
}
#block_newsletter-inner {
    display: inline-block;
    width: 50%;
    float: none;
}
.gdpr_module_15 {
    padding-top: 10px;
}
.newsletter-icon {
    width: 50px;
    padding-right: 10px;
}
/* NEWSLETTER ALERT */
.block_newsletter .alert {
    position: static;
    background: none;
    border: none;
    font-weight: bold;
}
.block_newsletter .alert.alert-danger {
    color: #d60303;
}
.block_newsletter .alert.alert-success {
    color: #049407;
}
/* --- */

/* MIGAS DE PAN */
.breadcrumb {
    background: #ffffff;
    margin: 0;
}
#wrapper .breadcrumb li {
    font-size: 18px;
}
#wrapper .breadcrumb li a:hover {
    color: var(--blue);
}
/* --- */

/* BANNER */
.banner {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}
@media (max-width: 768px) {
    .banner {
        margin-left: 15px;
        margin-right: 15px;
    }
}
/* --- */

/* TABS */
.tabs .nav-tabs .nav-link.active {
    color: var(--blue);
}
/* --- */

/* CART */
.cart-container .separator {
    width: 100% !important;
}
.promo-code {
    text-align: center;
}
.minicart-img img {
    height: 79px;
}
.product-line-grid {
    align-items: center;
}
.product-image img {
    height: 150px;
}
.cart-wishlist-viewcart {
    width: 100%;
}
.cart-hover-content .product-price {
    color: #646464;
}
.cart-summary .label,
.cart-summary .value,
.cart-summary-line .label,
.cart-summary-line .value,
.cart-hover-content .product-price {
    font-size: 20px !important;
}
.cart-summary .value
.cart-summary-line .value {
    font-weight: bold;
}
.cart-summary .cart-total .value,
.cart-summary-line.cart-total .value {
    color: var(--blue);
}
.cart-hover-content .cart-total {
    margin: 0 0 25px;
}
#blockcart-modal .modal-header {
    background: var(--blue);
}
.block-promo .cart-summary-line .label,
.promo-discounts .cart-summary-line .label {
    color: var(--blue) !important;
    font-size: 18px !important;
}
.block-promo .promo-input {
    font-size: 20px !important;
}
#payment-option-1-additional-information {
    display: none !important;
}
body#checkout section.checkout-step .payment-options label,
body#checkout section.checkout-step .payment-options .payment-option {
    display: flex !important;
    align-items: center;
}

body#checkout section.checkout-step .payment-options label span {
    margin-right: 10px;
}
.cart-item {
    border-bottom: 1px solid #f1f1f1;
}
.cart-item .product-price {
    display: flex;
    align-items: center;
}
.cart-item .product-price .product-discount {
    order: 2;
    margin: 0;
}
.cart-item .product-price .current-price {
    order: 1;
    margin-right: 10px;
}
.cart-grid-body .cart-overview {
    padding: 0;
}
#payment-option-4-additional-information {
    display: none !important;
}
.remove-from-cart {
    color: #000000;
}
/* --- */

/* CHECKOUT */
#ps_checkout-paypal-buttons-container,
#ps_checkout-paylater-buttons-container {
    max-width: 200px;
}
#ps_checkout-payment-method-logo-block-container {
    display: none !important;
}

/* ACCOUNT */
.account-link {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
}
.link-item {
    display: flex !important;
    justify-content: center;
    flex-direction: column;
}
.page-my-account #content .links a:hover i {
    color: var(--blue);
}
.register-form {
    display: flex;
    flex-direction: column;
}
.register-form > p {
    order: 1;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}
/* --- */

/* PRODUCT */
.duck {
    margin-right: 15px;
}
.product-description,
#product-description-short {
    font-size: 16px;
}
#product-availability {
    margin-left: 15px;
}
.product-prices div {
    display: block;
}
.product-cover .layer {
    width: 35px;
    height: 35px;
}
.product-cover .layer .zoom-in {
    font-size: 35px;
}
.product-prices .current-price {
    display: flex;
    align-items: center;
    font-size: 40px !important;
    color: var(--blue);
}
.product-prices .tax-shipping-delivery-label {
    display: none;
}
.social-sharing {
    margin-top: 25px !important;
}
.social-sharing li:hover {
    background-color: var(--blue);
}
.product-information .product-actions {
    background: transparent;
    padding: 0;
}
.product-information .product-features .feature-edad {
    /* display: flex;
    align-items: center; */
    font-weight: bold;
    display: inline-block;
    margin: 20px 10px;
    border-radius: 27px;
    padding: 10px 20px;
    background-color: #ffe200;
}
.product-information .product-features .feature-edad .icon {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    width: 20px;
    height: 20px;
    float: left;
    background: url(../img/huella_pato.svg) no-repeat scroll center center;
}
.product-information .product-features .feature-edad .text {
    float: left;
    line-height: 1.2;
    margin-left: 5px;
}
.product-add-to-cart .product-quantity {
    display: flex;
    padding-top: 15px;
}
.product-add-to-cart .product-quantity .qty {
    float: none;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 35px;
}
.product-add-to-cart .product-quantity .qty input {
    border: none;
    text-align: center;
    width: 55px;
    height: 27px;
    font-size: 20px;
}
.product-add-to-cart .product-quantity .qty-buttons {
    font-size: 16px;
}
.product-add-to-cart .product-quantity .qty-buttons span {
    color: var(--blue);
    background: #d8e9f4;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
}
.product-line-grid-right .row {
    display: flex;
    align-items: center;
}
.product-line-grid-right .qty {
    display: flex;
    align-items: center;
}
.product-line-grid-body .product-line-info a,
.product-line-grid-body .product-line-info .current-price {
    font-size: 18px;
}
.product-line-grid-right .price {
    text-align: center;
    font-size: 20px;
}
.product-images > li.thumb-container > .thumb.selected,
.product-images > li.thumb-container > .thumb:hover {
    border: 1px solid var(--blue);
}
.product-information .short-desc {
    font-size: 16px;
    margin-top: 15px;
}
.product-prices {
    margin: 20px 0 15px;
}
.productpage_title, .quickview h1.h1 {
    font-size: 30px;
    color: var(--orange2);
}
.product-discount {
    margin: 0 15px;
}
.product-discount .regular-price {
    margin: 0;
}
.has-discount .discount {
    background: var(--yellow);
    color: #000000;
    font-size: 16px;
    margin: 0;
}
.product-information .manufacturer-logo {
    width: 100px;
}
.product-manufacturer {
    margin: 15px 0;
}
.product-manufacturer img {
    max-width: 65px;
}
.product-actions .product-add-to-cart .add-to-cart {
    min-height: 82px;
    color: #ffffff;
    font-size: 22px;
    padding: 5px 25px;
    text-transform: uppercase;
    background: url(../img/boton.svg) no-repeat 0 0 !important;
}
.product-actions .product-add-to-cart .add-to-cart:hover {
    color: var(--yellow);
}
.product-tabcontent .tabs .nav-tabs .nav-link {
    color: #ffffff !important;
    background-color: var(--blue);
    font-size: 18px;
}
#products .product-miniature {
    width: 25%;
    padding: 15px;
}
.product-miniature .thumbnail-container .product-name,
.product-miniature .thumbnail-container .product-description {
    border: none !important;
}
.product-miniature .thumbnail-container .product-name {
    padding-bottom: 0;
}
.product-miniature .thumbnail-container .product-name .product-title a {
    font-size: 18px !important;
    font-weight: 500 !important;
}
.product-miniature .thumbnail-container .product-description .product-price-and-shipping {
    font-size: 32px !important;
    color: var(--blue) !important;
}
.product-miniature .thumbnail-container .product-description .product-price-and-shipping .regular-price {
    font-size: 20px !important;
}
.product-miniature .thumbnail-container .product-description .product-price-and-shipping .discount-percentage.discount-product {
    background: #ca0303 !important;
    color: #ffffff !important;
    padding: 5px 10px !important;
    border-radius: 25px !important;
    font-size: 16px !important;
}
.product-miniature .thumbnail-container .product-add-to-cart {
    opacity: 1;
    position: static;
    padding-top: 15px;
}
.product-miniature .product-add-to-cart .add-to-cart:hover .addtocart-tooltip,
.product-miniature .quick-view:hover .quickview-tooltip {
    z-index: 1500;
    text-transform: uppercase;
}

.ax-product-title {
    padding: 0 0 5px;
}

.products .all-product-link {
    margin-top: 20px;
    border-radius: 25px;
    background-color: var(--blue);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.products .all-product-link:hover {
    color: #000000;
    background-color: var(--yellow);
}
.featured-products-title {
    font-size: 28px;
    font-weight: 600;
}
.products-sort-order .select-list:hover {
    color: #ffffff !important;
    background: var(--blue);
}
/* --- */

/* CATEGORY */
.pagination {
    margin: 30px 0;
}
.pagination .current a,
.pagination a:hover,
.pagination span:hover {
    color: #ffffff !important;
    background-color: var(--blue);
    border-color: var(--blue);
}
.product-miniature .quick-view {
    background-color: var(--yellow);
}
.product-miniature .quick-view:hover {
    background-color: var(--orange);
}
.quickview .modal-footer {
    border: none;
}
#left-column .block_title,
#right-column .block_title {
    font-size: 18px;
    margin-bottom: 1rem;
    background-color: var(--blue);
}
.block-category .h1 {
    font-size: 30px;
    text-align: center;
}
.block-categories .category-sub-menu li {
    font-size: 18px;
}
.block-categories .category-sub-menu li[data-depth="0"] > a {
    margin-bottom: 8px;
}
#search_filters > p {
    font-size: 22px;
}
#search_filters .facet {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
}
#search_filters .facet .facet-title {
    font-size: 18px;
}
#search_filters .facet .facet-label {
    padding-left: 10px;
}
#search_filters .facet .facet-label a {
    color: #000000;
    text-transform: uppercase;
}
.active_filters .filter-block {
    color: #ffffff;
    background: var(--blue);
}
.active_filters .filter-block .close {
    color: #ffffff;
    text-shadow: none;
}
#_desktop_search_filters_clear_all {
    margin-bottom: 1rem;
}
.products-selection .sort-by-row {
    display: flex;
}
.products-selection .sort-by-row .products-sort-order {
    padding: 0;
    text-align: right;
}
.products-sort-order .select-title {
    text-align: left !important;
    width: auto !important;
    min-width: 150px !important;
}
.products-sort-order .dropdown-menu {
    right: 0;
    width: auto !important;
}
#search_filters > p {
    padding: 10px;
    color: #ffffff;
    background-color: var(--blue);
}
/* --- */

/* FILTROS */
.filtros li:nth-child(n+5) {
    display: none;
}

.filtros-vermas,
.filtros-vermenos {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.filtros-vermas,
.filtros-vermenos:hover {
    cursor: pointer;
}
/* --- */

/* BUTTONS */
.filter-button {
    text-align: right;
}
.btn-primary,
.btn-secondary {
    background-color: var(--blue) !important;
}
.btn {
    text-transform: uppercase !important;
}
.btn-orange {
    background-color: var(--orange2) !important;
}
.btn-orange:hover {
    color: #000000 !important;
}
/* --- */

/* ESTIMATED DELIVERY */
#estimateddelivery .ed_item {
    display: inline-block;
    padding: 10px 20px;
    margin: 15px 0 10px 0;
    border-radius: 8px;
}
#estimateddelivery .ed_item .ed_carrier_name {
    display: none;
}
#estimateddelivery .ed_item .ed_orderbefore {
    font-size: 18px;
}

.ed-cart-option {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 5px;
    border-radius: 8px;
    background: #FCFEFF;
    border-color: #ACD8E4 !important;
    border: 1px solid #ccc;
}
.ed-cart-option .ed_orderbefore {
    font-size: 15px;
}
.ed-cart-option .ed_custom_days {
    display: none;
}

.ed_with_carrier {
    display: none;
}

/* FORMS */
.custom-radio input[type=radio]:checked + span {
    background-color: var(--blue);
}
.input-group .input-group-btn > .btn:hover {
    background-color: var(--blue);
}
.form-control:focus {
    border-color: var(--blue);
}
/* --- */

/* BRANDS */
.brands .brands-header {
    margin: 0 0 40px;
}
.slick-track {
    display: flex !important;
    align-items: center !important;
}
/* --- */

/* SEPARATOR */
.separator {
    width: 300px;
    margin: 0 auto;
}
/* --- */

/* CMS CATALOG PAGE */
.page-title,
.pdf-title {
    color: var(--main-color);
}
.pdf-title {
    font-size: 20px;
}
.page-title {
    overflow-x: hidden;
}
.page-title span {
    position: relative;
    padding: 0 .625rem 0 0;
    text-decoration: none;
    text-transform: uppercase;
}
.page-title span::before {
    content: "";
    position: absolute;
    border-bottom: 2px solid var(--main-color);
    bottom: 8px;
    width: 1600px;
    left: 100%;
}
.open-pdf {
    position: relative;
}
.open-pdf > span {
    opacity: 0;
    margin: 0 auto;
    position: absolute;
    bottom: 45%;
    right: 0;
    left: 0;
    text-align: center;
}
.open-pdf > span > .btn > svg {
    display: flex;
}
.open-pdf:hover > span {
    opacity: 1;
}

/* FOOTER */
#aeicmspayment {
	margin: 0;
}

.copyright {
    padding: 0;
    width: auto;
}
.copyright .copyright {
    width: auto;
    float: none;
    color: var(--blue);
}

.closeButtonNormal {
    padding: 5px 10px !important;
    text-transform: capitalize;
}

.footer-before {
    background: var(--yellow);
}
.block-contact #contact-info-list .icon {
    background-color: var(--blue);
}
.footer-container li a,
.block-contact,
.block-contact a {
    font-size: 15px;
}
.footer-container li a:hover {
    color: var(--blue);
}
.social-sharing li.tiktok a::before,
.footer-container .block-social li.tiktok a::before {
    font-family: "Font Awesome 6 Brands";
    content: '\e07b';
    font-weight: 400;
}
.social-sharing li.tiktok a:hover,
.footer-container .block-social li.tiktok a:hover {
    background-color: #000000;
}
/* --- */

/* TIENDAS */
.contact-link {
    font-size: 18px;
}
/* --- */

/* SOCIAL LINKS */
.block-social {
    width: 25%;
    float: left;
    position: relative;
}
.block-social .instagram a:hover {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.social-sharing li a:hover,
.footer-container .block-social li a:hover {
    color: #ffffff !important;
}
/* --- */

/* SOCIAL SHARING */
.social-sharing li {
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}
.social-sharing li a::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.facebook a::before {
    content: '\f39e';
}

.pinterest a::before {
    content: '\f231';
}

.x a::before {
    content: '\e61b';
}

.whatsapp a::before {
    content: '\f232';
}
/* --- */

/* FOLLOWUP */
.ax-back-to-top {
    right: 15px;
    bottom: 90px;
    height: 68px;
    width: 32px;
    -webkit-animation: slideUp 1.5s linear;
    animation: slideUp 1.5s linear;
}
@keyframes slideUp {
    from {
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.ax-to-the-cloud {
    -webkit-animation: toTheCloud 1.5s linear;
    animation: toTheCloud 1.5s linear;
}
@keyframes toTheCloud {
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-1000px);
        transform: translateY(-1000px);
    }
}
/* --- */

/* COOKIES */
.en_cookieslaw_btn,
#en_cookieslaw_banner .en_cookieslaw_group {
    font-size: 16px;
}
/* --- */

/* SLICK SLIDER */
#aei_cmsservice .slick-dots li:hover,
#aei_cmsservice .slick-dots li.slick-active {
    background: var(--blue);
}
/* --- */

/* ALERT */
.alert {
    margin: 1rem !important;
    font-size: 16px;
}
/* --- */

/* FRESHDESK */
#freshworks-container #freshworks-frame-wrapper {
    left: 10px !important;
}
#freshworks-container div iframe {
    left: 0 !important;
}
/* --- */

/* ACORDEONES */
.abajo {
    margin-top: 30px;
}
.acordeon {
    color: var(--blue);
    font-size: 18px!important;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: left; 
    border: 1px solid var(--yellow);
    border-radius: 25px;
    outline: none;
    transition: 0.4s;
    margin-bottom: 16px!important;
}
.panel_acordeon {
    font-size: 16px!important;
}
.acordeon::after {
    content: '\f067';
    display: block;
    float: right;
    font-family: 'FontAwesome';
    font-weight: 500;
    color: var(--blue);
}
.acordeon.active::after {
    content: '\f068';
    font-family: 'FontAwesome';
}
.panel_acordeon {
    padding: 12px 32px;
    background-color: white;
    display: none;
    overflow: hidden;
    margin:0 auto;
}

/* CHAT */
#smartsupp-widget-container > div {
    right: 0 !important;
    left: auto !important;
    z-index: 1200 !important;
}

.overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    cursor: pointer;
    /* backdrop-filter: blur(5px); */
    background-color: rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1349px) {

}
@media (max-width: 1199px) {
    #aei_cmsservice #service-item {
        padding: 0;
    }
    #aei_cmsservice .aei-service-item::after {
        display: none;
    }
    #aei_cmscategory .aei-cat-details .aei-cat-name {
        font-size: 22px;
        margin-bottom: 10px;
    }
    #aei_cmscategory .aei-cat-desc p {
        padding: 15px;
        top: 20%;
    }
    #aeitestimony-carousel .slick-list.draggable {
        width: 100%;
    }
    .testimony-blog .product_inner_cms .desc p {
        empty-cells: 100%;
    }
}
@media (min-width: 991px) {
    /* CONTAINER */
    .container-extra {
        width: 1600px;
    }
    /* --- */
}
@media (max-width: 991px) {
    #aei_cmscategory {
        margin: 50px 0;
    }
    .right-part.col-sm-8 .col-sm-6 {
        padding-right: 15px;
    }
    #aeicmspayment .theme-logo {
        width: 100%;
        padding: 20px 0;
    }
    #aeicmspayment .payment-icon {
        width: 100%;
        border: none;
    }
 
    #_desktop_links_block_top {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .aei-cmscategory-inner .aei-cat-details {
        top: 12px;
    }
    #aei_cmscategory .btn {
        opacity: 1;
    }
    .brands .arrows {
        opacity: 1;
    }
    /* #aeicmstop {
        display: none;
    } */
    #aeicmspayment {
        text-align: center;
        margin: 0;
    }
    #aei_cmsservice .aei-image-icon {
        margin: 0 auto;
    }
    #aei_cmsservice #service-item {
        padding:0 0 40px;
    }
    #aei_cmsservice {
        border: none;
        margin: 30px 0 0;
    }
    .aei_cmsbanner .banner-image {
        width: 50%;
        bottom: -105px;
    }
    .brands {
       padding: 40px 0;
    }
    #aeitestimony-carousel .slick-list.draggable {
        width: 100%;
    }
    .testimony-blog .product_inner_cms .testmonial-image {
        float: none;
        width: 100%;
        border: none;
    }
    .testimony-blog #aeitestimony-carousel {
        width:100%
    }
    .testimony-blog .product_inner_cms .desc {
        float: none;
        width: 100%;
        padding: 10px 0 0;  
        margin: 0;
    }
    .testimony-blog .product_inner_cms .desc p {
        width: 100%;
        text-align: center;
    }
    .testimony-blog {
        margin: 30px 0 0;
    }
    #aei_cmscategory .heading_title span {
        border: none;
        padding: 0 5px;
        margin-top: 0;
    }
    #aei_cmscategory .cms-category-block .aei-cat-item {
        padding-top: 15px;
    }
    #aei_cmscategory .custom_desc {
        margin-top: 15px;
    }
    #aei_cmscategory .custom_desc {
        font-size: 14px;
    }
    .right-part .col-sm-6 {
        padding-right: 15px;
    }
    .testimony-blog .testmonial-image .test-img {
        display: block;
    }
    .testimony-blog .testmonial-image .text-desc {
        padding: 15px 0 0;
    }
    #aei_cmsbottom {
        margin-top: 25px;
        padding: 10px 0;
        width: 100%;
    }
    .block-social {
        width: 100%;
    }
    #block_newsletter-inner,
    .block_newsletter .newsletter-title {
        width: 75%;
    }
    #header .header-nav {
        padding: 0;
    }
    #products .product-miniature {
        width: 33.33%;
    }
    #search_filters .facet .title .collapse-icons {
        display: none !important;
    }
    #left-column #search_filter_controls {
        text-align: center;
        margin-bottom: 1rem;
    }
    /* CATEGORY PAGE */
	#search_filters_wrapper {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		background: #fff;
		z-index: 2300;
        width: 100%;
        max-width: 320px;
		padding: 65px 15px 85px 15px;
		margin: 0 !important;
		transition: transform 0.3s, opacity 0.3s;
		overflow-y: auto;
		overflow-x: hidden;
	}
	#search_filters_wrapper.hidden-sm-down {
		opacity: 0;
		transform: translateX(100%);
	}
    #search_filters_wrapper .facets-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 15px;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        width: 100%;
        max-width: 320px;
        backdrop-filter: blur(5px);
        background: rgb(11 155 216 / 90%);
    }
    #search_filters_wrapper .facets-header span.h6 {
        margin: 0;
        padding: 0;
        font-size: 16px;
        color: #ffffff;
        background-color: transparent;
    }
	#left-column #search_filter_controls,
	#right-column #search_filter_controls {
		position: fixed;
        right: 0;
        bottom: 0;
        margin: 0;
        z-index: 8;
        padding: 1rem 0;
        width: 100%;
        max-width: 320px;
        backdrop-filter: blur(5px);
        background: rgb(22 22 22 / 80%);
	}
    #search_filters_wrapper #search_filters .title {
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 15px;
        background-color: var(--blue);
    }
    #search_filters_wrapper #search_filters .title .facet-title {
        font-size: 16px;
        font-weight: 500;
        color: #ffffff !important;
    }
    #search_filter_controls {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    #search_filter_controls .btn i {
        margin: 0;
        font-size: 14px;
    }
    #left-column #search_filters_wrapper #search_filter_controls button.btn,
    #right-column #search_filters_wrapper #search_filter_controls button.btn {
        font-size: 12px;
        margin: 0;
        padding: 5px 15px !important;
    }
	#left-column #search_filter_controls button.ok,
	#right-column #search_filter_controls button.ok {
		color: #ffffff;
        text-transform: uppercase;
		background-color: var(--blue);
	}
    #left-column #search_filter_controls button.del,
    #right-column #search_filter_controls button.del {
        color: #262626;
        background-color: #f6f6f6;
        border-color: transparent;
        text-transform: uppercase;
    }
	#left-column .block, #right-column .block {
		margin: 0;
	}
	#left-column #search_filters .facet,
	#right-column #search_filters .facet {
		border: none !important;
        margin-bottom: 30px;
        padding-bottom: 15px;
	}
    .products-selection .sort-by-row .products-sort-order {
        text-align: left;
    }
    .products-sort-order .dropdown-menu {
        left: 0;
    }
    #category #left-column #search_filter_controls {
		margin: 0;
	}
}
@media (max-width: 767px) {
    .brands {
        padding: 40px 0;
    }
    #aei_cmsservice .aei-service-item {
        border:none;
    }
    .aei_cmsbanner .banner-inner.first, .aei_cmsbanner .banner-inner.third {
        padding-top: 0;
    }
    .aei_cmsbanner .banner-inner.first {
         width: 100%;
    }
    .aei_cmsbanner .aeibannerblock {
        padding: 40px 0;
    }
    .aei_cmsbanner .banner-image {
        display: none;
    }
    .aei_cmsbanner {
        margin: 0;
    }
    .aei_cmsbanner .banner-inner, .aei_cmsbanner .banner-inner.third {
        width: 50%;
        padding: 40px 0 0;
        padding-top: 40px;
    }
    #aei_cmscategory .cms-category-block .aei-cat-item {
        width: 100%;
        padding: 15px;
    }
    #block_newsletter-inner,
    .block_newsletter .newsletter-title {
        width: 100%;
    }
    .block_newsletter .newsletter-title {
        font-size: 16px;
    }
    .gdpr_module_15 .psgdpr_consent_message {
        font-size: 11px;
    }
    li.product-flag.on-sale, .product-miniature li.product-flag.on-sale {
        right: 0;
    }
    .store-picture {
        margin-bottom: 20px;
    }
    .block-category .h1 {
        font-size: 26px;
    }
    .acordeon {
        font-size: 16px !important;
    }
}
@media (max-width: 545px) {
    #aeicmspayment .payment-block-inner, #aeicmspayment .app-icon, .block-social {
        width: 100%;
    }
    #aeicmspayment .theme-logo {
        padding: 20px 0 0;
    }
    .copyright {
        margin-top: 25px;
    }
    #aeicmspayment {
        width: 100%;
    }
    li.product-flag.on-sale, .product-miniature li.product-flag.on-sale {
        top: 0 !important;
        right: 0;
    }
    #mobile_top_menu_wrapper .mobile-megamenu .menu-item span,
    .product-information .alert-warning span,
    #footer .footer-container a.cms-page-link,
    #en_cookieslaw_banner .en_cookieslaw_message,
    .block-contact #contact-info-list li div,
    .footer-after .copyright,
    a#en_cookieslaw-link {
        font-size: 16px;
    }
    .product-tabcontent .tabs .nav-tabs .nav-item:first-child .nav-link {
        margin-right: 20px;
    }
}
@media (max-width: 479px) {
    .special-products .special-product-banner .special-banner-desc .text1 {
        font-size: 24px;
    }
    .special-products .special-product-banner .special-banner-desc .text2 {
        font-size: 12px;
        margin: 0 0 20px;
    }
    #cboxLoadedContent {
        max-width: 300px;
    }
    #aeicategorytabs .arrows {
        left: 0;
    }
    .feature-products .arrows, .newproduct .arrows, #bestseller .arrows, #aeicategorytabs .arrows {
        top: -40px;
    }
    #_desktop_links_block_top li {
        margin: 0 10px 0 0;
    }
    .aei_cmsbanner .banner-inner, .aei_cmsbanner .banner-inner.third {
        width: 100%;
    }
    .arrows {
        width: 80px;
        top: 40px;
    }
    .feature-products .arrows, .newproduct .arrows, #bestseller .arrows, #aeicategorytabs .arrows {
        width: 80px;
    }
    .homeblog .slick-prev,#aei_cmscategory .slick-prev {
        left: 0px;
    }
    .homeblog .slick-next,#aei_cmscategory .slick-next {
        right: 0px;
    }
    .aeibannerblock .banner-desc {
        padding: 20px 0;
    }
    #aei_cmsservice {
        border:none;
    }
    #aei_cmsservice .slick-dots {
        bottom: -10px;
    }
    #aei_cmscategory .aei-cat-details .aei-cat-name {
        font-size: 24px;
    }
    #aei_cmsservice .aei-service-item {
        border: none;
    }
    #aei_cmscategory {
        margin: 0 0 30px;
    }
    #aei_cmsbottom .arrows {
        top: 20px;
        width: 100%;
    }
    .arrows {
        opacity: 1;
        width: 80px;
        top: 40px;
    }
    #aei_cmsservice #service-item {
        padding: 0 0 20px;
    }
    #aeicmstestimony .arrows {
        top: auto;
        width: 80px;
        bottom: 60px;
    }
    .testimony-title {
        padding-bottom: 30px;
    }
    .aei-cmscategory-inner {
        padding: 20px 0;
    }
    /* #aeicmstestimony {
        padding: 30px 0 110px;
    } */
    #aei_cmscategory .aei-cat-details .aei-cat-name {
        margin-bottom: 20px;
    }
    .testimony-blog {
        margin: 0;
    }
    #products .product-miniature {
        width: 50%;
    }
    .feature-products .arrows,
    .newproduct .arrows,
    #bestseller .arrows,
    #aeicategorytabs .arrows {
        top: 45%;
        width: 100%;
    }
}

/* ======== REVI STYLES ======== */
.revi-widget-floating-1 {
    z-index: 1000 !important;
}

.revi-widget-floating-1.revi-position__bottomLeft {
    bottom: 70px !important;
}

.revi_widget_wide_99 .flow-text {
    font-family: 'Patrick Hand', cursive !important;
}

.revi_widget_wide_99 .revi_date {
    font-family: 'Patrick Hand', cursive !important;
    color: var(--blue);
}

.revi_widget_wide_99 .revi_logo svg g path {
    fill: var(--blue) !important;
}

.revi_widget_wide_99 .revi_footer span {
    color: var(--blue) !important;
}

.revi_widget_wide_99 .revi_rating_zone .revi_rating strong {
    font-family: 'Patrick Hand', cursive !important;
}

.revi_widget_wide_99 .revi-container div {
    box-shadow: none !important;
}

.revi_widget_product_99 .revi-container .revi-rows .revi-tabs .revi_tab .revi_active::after {
    background: var(--blue) !important;
}

.revi_product_2 .revi_brand_floating svg g path {
    fill: var(--blue);
}

.revi_product_2 .revi_tab.revi_active::after {
    background: var(--blue) !important;
}

.revi_widget_wide_99 .revi-container .revi_slide_wide_container .revi_carousel .revi_comment .revi_image {
    display: none !important;
    background-image: none !important;
}
.revi-card-1 {
    box-shadow: none !important;
}
.page-home .advantages-type-1 {
    padding:20px;
}
/* ======== END REVI STYLES ======== */