.icon-hover:hover {
  border-color: #3b71ca !important;
  background-color: white !important;
}

.icon-hover:hover i {
  color: #3b71ca !important;
}

.cart-notify .cart-notify-shade {
  position: fixed;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cart-notify .cart-notify-modal {
  position: fixed;
  z-index: 10;
  width: 800px;
  background: white;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.cart-notify .cart-notify-modal .cart-notify-image {
  max-height: 200px;
  object-fit: cover;
  aspect-ratio: 1.4;
  border-radius: 10px 0 0 10px;
}
.cart-notify .cart-notify-modal .cart-notify-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-notify .cart-notify-modal .cart-notify-info .title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cart-notify .cart-notify-modal .cart-notify-info .price {
  font-size: 14px;
  font-weight: 600;
}
.cart-notify .cart-notify-modal .cart-notify-info .quantity {
  font-size: 14px;
  font-weight: 600;
}
.cart-notify .cart-notify-modal .cart-notify-info .actions {
  margin-top: 20px;
  display: flex;
  justify-content: end;
  gap: 10px;
  align-items: center;
}

.nav-cart {
  cursor: pointer;
}
.nav-cart .checkout-cart {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  padding: 30px;
  z-index: 10;
  width: 500px;
  display: none;
}
.nav-cart .checkout-cart.active {
  display: block;
}
.nav-cart .cart-loader-overlay {
  display: none;
}
.nav-cart.loading .cart-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffffe8;
  color: var(--primary);
  font-weight: bold;
  font-size: 20px;
}

.checkout-page-index {
  background: #2d375512;
}
.checkout-page-index .card {
  background: white;
  border: none;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}
.checkout-page-index .card .card-header {
  background: transparent;
  border: none;
  padding-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.checkout-page-index .card .card-body .product-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.checkout-page-index .card .card-body .product-row img {
  width: 100px;
}
.checkout-page-index .card .card-body .product-row .product-info {
  flex: 1;
}
.checkout-page-index .card .card-body .product-row .product-info .product-label {
  font-weight: bold;
}
.checkout-page-index .card .card-body .product-row .product-info .product-data {
  font-size: 14px;
  color: #a0a0a0;
}

.payment-method {
  border: solid 1px #00000024;
  border-radius: 10px;
  padding: 15px;
  transition: all 0.05s;
  cursor: pointer;
  gap: 10px;
}
.payment-method input {
  width: 0;
  height: 0;
  overflow: hidden;
  display: inline;
  opacity: 0;
}
.payment-method img {
  width: 50px;
}
.payment-method.active {
  border-color: #3571b7;
  background-color: rgba(53, 113, 183, 0.2);
}
.payment-method:hover {
  border-color: #3571b7;
  background-color: #00000008;
}
.payment-method:hover.active {
  border-color: #3571b7;
  background-color: rgba(53, 113, 183, 0.2);
}

.disabled-mask {
  background: #ffffff5c;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#producs-list {
  position: relative;
  min-height: 100px;
}
#producs-list .ajax-loader {
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  font-size: 40px;
  color: #3b71ca;
  z-index: 1;
}

.product-pricing .price {
  font-size: 20px;
  font-weight: 600;
  color: #3b71ca;
}
.product-pricing .price-old {
  font-size: 16px;
  font-weight: 400;
  color: #a0a0a0;
  text-decoration: line-through;
  display: none;
}

.number-counter input {
  flex: 1;
  height: 30px;
  font-size: 16px;
  border: none;
  text-align: center;
  padding: 0;
  border: solid 1px #c6c6c6;
  border-width: 1px 0;
}
.number-counter button {
  width: 40px;
  height: 30px;
  border-radius: 0 5px 5px 0;
  background: white;
  border: solid 1px #c6c6c6;
}
.number-counter button:first-child {
  border-radius: 5px 0 0 5px;
}

.delete-btn {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 5px;
  background: transparent;
  border: solid 1px red;
  color: red;
  text-align: center;
  line-height: 30px;
}

.product-filters .col-filters .card {
  border: none;
}
.product-filters .col-filters .card-header {
  font-size: 20px;
  background: transparent;
  border: none;
}
#frm-filters .card-header {
  font-size: 17px;
  font-weight: 600;
  background: transparent;
  border: none;
  padding: 24px;
}
#frm-filters .card-header .btn-toggle-filter-options {
  display: block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  background: #0000000d;
  border-radius: 50%;
  border: none;
  padding: 0;
  font-size: 16px;
}
#frm-filters .card-body {
  padding-top: 0;
}
#frm-filters .range_container {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  /* input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #C6C6C6;
    cursor: pointer;  
  } */
  /* input[type="number"] {
    color: #8a8383;
    width: 50px;
    height: 30px;
    font-size: 20px;
    border: none;
  }

  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button {  
     opacity: 1;
  } */
}
#frm-filters .range_container .sliders_control {
  position: relative;
  min-height: 10px;
}
#frm-filters .range_container input[type=range]::-webkit-slider-thumb,
#frm-filters .range_container input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 14px;
  height: 14px;
  background-color: --primary;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
#frm-filters .range_container input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}
#frm-filters .range_container input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}
#frm-filters .range_container .price-labels {
  font-size: 14px;
}
#frm-filters .range_container input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
}
#frm-filters .range_container #fromSlider {
  height: 0;
  z-index: 1;
}

.btn-mobile-filters {
  display: none;
}

@media (max-width: 992px) {
  .btn-mobile-filters {
    display: block;
    padding: 10px;
  }

  #frm-filters {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%;
    z-index: 10;
    background: white;
    padding: 20px;
    transition: all 0.15s;
  }
  #frm-filters.active {
    left: 0;
  }
  #frm-filters .filter-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #C6C6C6;
    font-weight: bold;
    font-size: 20px;
  }

  .form-select-sort {
    width: 100% !important;
  }
}
.product-card .card-img-top {
  aspect-ratio: 1.4;
  object-fit: cover;
}
.product-card .card-body a {
  text-decoration: none;
}
.product-card .card-footer {
  background: transparent;
  border: none;
}
.product-card .card-footer .pricing {
  display: flex;
  flex-direction: column;
  align-items: last baseline;
}
.product-card .card-footer .pricing .from-lbl {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
.product-card .card-footer .add-to-card {
  color: white;
}

section .section-title {
  margin-bottom: 30px;
}
section.product-details .side-media {
  text-align: center;
}
section.product-details .side-media .image-thumbs {
  gap: 10px;
}
section.product-details .side-media .image-thumbs.slick-slider button.slick-prev.slick-arrow {
  left: 0;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}
section.product-details .side-media .image-thumbs.slick-slider button.slick-next.slick-arrow {
  right: 0;
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}
section.product-details .side-media .image-thumbs .image-thumb {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
section.product-details .side-media .image-thumbs .image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.product-details .side-media .image-thumbs .image-thumb.active {
  border: solid 1px #3571b7;
}
section.product-details .side-media .image-thumbs .image-thumb.active img {
  transform: scale(1.1);
}
section.product-details .side-media .image-thumbs .image-thumb.thumb-more {
  line-height: 100px;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #3571b7;
}
section.product-details .side-summary .card {
  border: none;
}
section.product-details .side-summary .card .card-body {
  background: rgba(0, 0, 0, 0.045);
}
section.product-information {
  background: rgba(0, 0, 0, 0.045);
}
section.product-information .card {
  border: none;
}
section.product-information .card .card-header {
  font-size: 18px;
  font-weight: 900;
  background: transparent;
  border: none;
  margin-bottom: 10px;
  padding: 30px 30px 10px 30px;
  margin-bottom: 0;
}
section.product-information .card .card-header h2 {
  margin-bottom: 0;
}
section.product-information .card .card-body {
  background: white;
  padding: 10px 30px 30px 30px;
}
section.product-information .card .card-body p:last-child {
  margin-bottom: 0;
}
section.product-description .card {
  border: none;
}
section.product-description .card .card-body {
  padding: 25px;
  background-color: transparent;
}
section.product-specs {
  background: rgba(0, 0, 0, 0.045);
}
section.product-specs .card {
  border: none;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
section.product-specs .card .card-body {
  background-color: white;
  border-radius: 8px;
}
section.product-specs .specs-lists ul {
  margin: 20px 0 0 0;
  padding: 20px 0 0 0;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}
section.product-specs .specs-lists ul li {
  list-style: none;
  color: #111111;
}
section.product-specs .specs-lists ul li span {
  color: #3571b7;
  margin-right: 10px;
}
section.product-usps {
  background: rgba(0, 0, 0, 0.045);
}
section.product-usps i {
  color: #3571b7;
  font-size: 40px;
  margin-bottom: 20px;
}
section.product-reviews .review {
  background: rgba(0, 0, 0, 0.045);
  border-radius: 10px;
  padding: 20px;
}
section.product-reviews .review .name {
  font-weight: bold;
  margin-bottom: 10px;
}
section.product-reviews .review .name .date {
  font-weight: normal;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  float: right;
}
section.product-faq {
  background: rgba(0, 0, 0, 0.045);
}

.pricing .price {
  font-weight: bold;
  font-size: 20px;
}
.pricing .price-old {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
  margin-left: 10px;
}

#variant-options .variant-spec .variant-spec-label {
  font-weight: bold;
  margin-bottom: 5px;
  color: rgba(0, 0, 0, 0.7);
}
#variant-options .variant-spec .btn-spec-option {
  display: inline-block;
  border: solid 1px rgba(0, 0, 0, 0.3);
  background: transparent;
  border-radius: 7px;
  padding: 7px 26px;
  margin-right: 5px;
  margin-top: 5px;
  cursor: pointer;
}
#variant-options .variant-spec .btn-spec-option input[type=checkbox] {
  display: none;
}
#variant-options .variant-spec .btn-spec-option.active {
  background: #3571b7;
  color: white;
  border-color: #3571b7;
}
#variant-options .variant-spec .btn-spec-option.active:hover {
  background: #326aab;
}
#variant-options .variant-spec .btn-spec-option:hover {
  border-color: #3571b7;
}

/*# sourceMappingURL=widget.css.map */
