/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/



#loader {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	cursor: crosshair;
	background: #333;
	top: 0;
}
.loader {
	width: 100%;
	height: 0px;
	position: relative;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	cursor: crosshair;
	top: 0;
}
#loader.active {
	opacity: 0.5;
	visibility: visible;
}
.loader.active {
	opacity: 1;
  height: 100%;
	visibility: visible;
}

.select2-container--default .select2-selection--multiple{border:none !important;}
.select2-container--default .select2-selection--multiple .select2-selection__clear{
  display: none;
}

.single_product .select2-container--default .select2-results__option[aria-disabled=true]::after {
    content: var(--non-disponibile-text);
    position: absolute;
    right: 5px;
    color: red;
    font-size: 10px;
    opacity: 0.5;
}

.single_product.not-available.disabled::before {
    content: var(--non-disponibile-text);
    position: absolute;
    z-index: 100;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    width: 100%;
    font-size: 20px;
    color: red;
}

.header-cart-wrapitem .cart-item-content .cart-not-available {
  left: 0px;
    width: 60%;
    text-align: center;
}

.cart-item-content .cart-not-available {
    position: absolute;
    left: 0px;
    z-index: 1;
    width: 50%;
    color: var(--danger);
    background-color: #fffE;
    border-radius: 20px;
    padding: 10px 10px;
    transform: translate(50%, -50%);
    top: 50%;
    box-shadow: 1px -1px 5px var(--bs-light);
    pointer-events: none;
}

.select2-container--disabled {
    background-color: #EEE;
    opacity: 0.5;
}

:disabled, .disabled {
    opacity: 0.5;
    pointer-events: none;
}

.header-cart-content,.header-wishlist-content {
    width: 100%;

    background:
            /* Shadow covers */
            linear-gradient(white 30%, rgba(255,255,255,0)),
            linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
            
            /* Shadows */
            radial-gradient(50% 0, farthest-side, rgba(0,0,0,.2), rgba(0,0,0,0)),
            radial-gradient(50% 100%,farthest-side, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;
        background:
            /* Shadow covers */
            linear-gradient(white 30%, rgba(255,255,255,0)),
            linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
            
            /* Shadows */
            radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.2), rgba(0,0,0,0)),
            radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;
        background-repeat: no-repeat;
        background-color: white;
        background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
        
        /* Opera doesn't support this in the shorthand */
        background-attachment: local, local, scroll, scroll;
}

.js-removecart {
    cursor: pointer;
}

.js-removecart:hover {
    color: var(--site-color);
}

.form-error:not(.checkbox-style-3-label), label.form-error::before {
  outline: 1px solid #dc3545 !important;
}

.overflow-hidden {
    overflow: hidden;
}

input[type="radio"] {
    cursor: pointer;
}

.select2-results__option {
    position: relative;
}

.loader-icon {
    display: inline-block;
    position: relative;
    width: auto;
    height: auto;
  }
  .loader-icon:before {
    display: block;
    width: auto;
    height: auto;
    margin: 0px;
    box-sizing: content-box;
    border: 0px solid var(--site-color);
    border-color: var(--site-color) transparent var(--site-color) transparent;
    animation: loader-icon 3.7s infinite;
    font-size: 100px;
    color: #fff;
  }
  .loader .loader-icon:before {
    color: inherit !important;
  }
  @keyframes loader-icon {
    0% {
      transform: rotate(0);
      animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
      transform: rotate(900deg);
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
      transform: rotate(1800deg);
    }
  }
  
.js-addwish-list .icon-heart,.js-addwish-detail .icon-heart {
    display: none;
    color: var(--site-color);
}
.js-addwish-list.in_wishlist .icon-heart,.js-addwish-detail.in_wishlist .icon-heart {
    display: block;
}
.js-addwish-list.in_wishlist .icon-line-heart,.js-addwish-detail.in_wishlist .icon-line-heart {
    display: none;
}

.brand_img {
    width: 80px;
}

.paragraph-bg-image {
    position: absolute;
    top:0px;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
}

.brand_container.owl-carousel .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.product_carousel.owl-carousel .owl-stage {
    display: flex;
}

.product_carousel.owl-carousel .owl-item {
    display: flex;
}

.product_carousel.owl-carousel .single_product {
  flex-grow:1;
  display:flex;
  flex-direction: column;
}

.product_carousel.owl-carousel .product_thumb {
    flex-grow:1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-accent {
    background-color: var(--site-color) !important;
    color: var(--text-over-site-color) !important;
}

.text-accent {
    color: var(--site-color) !important;
}

input[type="radio"] {
    width: 25px;
    min-width: 25px;
    height: 25px;
}

.opacity-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.bg-black {
    background-color: #000;
}

li.language img {
    border: 2px solid #fff;
    padding: 0px !important;
    background-color: #fff;
    border-radius: 10px;
}

.trx_addons_dropcap {
    color: var(--site-color);
    font-size: 5em;
    padding: 0;
    margin: 0 0.2em 0 0;
    width: auto;
    height: auto;
    line-height: 0.85em;
    background-color: transparent;
    float: left;
    display: block;
    text-align: center;
    overflow: hidden;
}

.trx_addons_accent_bg {
    background-color: var(--site-color);
    color: #fff;
    padding: 0 0.4em;
    display: inline-block;
}

blockquote {
    text-align: left;
    padding: 1em 7em;
    position: relative
  }
  
  blockquote:after,q:before,q:after {
    content: ""
  }
  
  blockquote,q {
    quotes: "" ""
  }
  
  blockquote p {
    margin: 0;
  }
  
  blockquote p+p {
    margin-top: .4em
  }
  
  blockquote a,blockquote cite {
    display: block;
    font-size: .9em;
    font-weight: 400
  }
  
  blockquote:before {
    content: '\e8b6';
    font-family: 'ecommerce_base';
    font-size: 1.6em;
    display: block;
    position: absolute;
    top: .7em;
    left: 2.2em
  }

blockquote {
    margin: 1.5em 0
}


@media(min-width:960px) and (max-width:1262px) {
    
  blockquote {
    padding: 3em 6em
  }

  blockquote:before {
    left: 2em;
    top: 2.5em
  }
}


@media(min-width:768px) and (max-width:959px) {
    
  blockquote {
    padding: 0 2em 0 5em
  }

  blockquote:before {
    left: 1.2em;
    top: .1em
  }
}

@media(min-width:480px) and (max-width:767px) {
  blockquote {
    padding: 2em 4em
  }

  blockquote:before {
    left: 1em;
    top: 1.35em
  }
}

    
@media(max-width:479px) {
    
  blockquote {
    padding: 2em 3em 2em 4em;
    margin-bottom: 1em
  }

  blockquote:before {
    font-size: 1.4286em;
    left: 1.1em;
    top: 1.7em
  }

  blockquote p+p,blockquote a,blockquote cite {
    margin-top: .5em !important
  }
}

.widget-filter-links form {
  padding-top: 10px;
}
.widget-filter-links input {
  background: none;
  border: none;
  font-size: 12px;
  float: right;
  text-align: right;
  line-height: 31px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-filter-links input {
    width: 65px;
  }
}
/* .widget-filter-links button {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  color: #ffffff;
  background: #333;
  border: 0;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
} */
/* .widget-filter-links button:hover {
  background: var(--site-color);
  color: var(--text-over-site-color);
} */
.ui-slider-horizontal .ui-slider-range {
  background: var(--site-color);
  color: var(--text-over-site-color);
  height: 5px;
}

.ui-slider-horizontal {
  height: 3px;
  background: #dbdbdb;
  border: none;
  width: 92%;
  margin: 0 auto;
  margin-bottom: 22px;
}

.ui-widget-content .ui-slider-handle.ui-state-default {
  background: #fff;
  border: 0;
  border-radius: 0;
  width: 19px;
  height: 19px;
  top: -7px;
  cursor: pointer;
  border-radius: 50%;
  border: 5px solid var(--site-color);
}

@media (min-width: 992px) {
  .position-lg-sticky {
    top: 80px;
  }
}

input[type="checkbox"] {
  appearance: auto;
  width: auto;
  display: initial;
}
.price_box span.old_price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

/* GALLERY */


.gal-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.gal-column {
  padding: 0 4px;
  cursor: pointer;
}

.gal-column img,.gal-column video {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


/* The Modal (background) */
.gal-lightbox {
  display: none;
  position: fixed;
  z-index: 1001;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000000cc;
}

/* Modal Content */
.gal-lightbox-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 90%;
  max-width: 1200px;
}

/* The Close Button */
.gal-close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.gal-close:hover,
.gal-close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.gal-lightboxSlide {
  display: none;
  text-align: center;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}

/* Next & previous buttons */
.gal-prev,
.gal-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  transform: translate(0px,-50%);
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.gal-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.gal-prev:hover,
.gal-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.gal-numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translate(-50%,0px);
}

img.gal-demo {
  opacity: 0.6;
}

.gal-demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cc-window.cc-banner label {
  color: #fff;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary);
}
/* FINE SCROLLBAR */

.widget-filter-content {
  padding-right: 10px;
  max-height: 300px;
  overflow: auto;
}
