@media (min-width: 567px) {
  .btn-add-to-cart {
    padding: 12px 54px;
  }
}
.product-left-arr {
  left: 11%;
}

.product-right-arr {
  right: 11%;
}

.prod-thumb {
  border: 2px solid #e2e2e2;
  border-radius: 5px;
}

.prod-thumb img {
  border-radius: 5px;
}

.tabs-nav {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  background: #fff;
  z-index: 1;
  padding: 13px 0;
}

.tab-item {
  padding: 14px 24px;
  border-bottom: 1px solid transparent;
}

.tab-item:hover {
  border-color: var(--main);
}

.tab-item.active {
  color: var(--black);
  border-color: var(--black);
}

.tab-title {
  margin: 48px 0 32px;
}

.tab-attr-item {
  padding: 11px 0;
  background: #fff;
}

.tab-attr-item:nth-child(odd) {
  background: var(--gray);
  border-right: 0;
  border-left: 0;
}

.tab-review-cont {
  border: 1px solid #e0e0e0;
  padding: 45px;
}

.prod-info {
  min-width: 105px;
}

.btn-qty-wrapper {
  border: 1px solid var(--border-color);
}

.btn-qty {
  border: none;
  width: 42px;
  height: 44px;
  background: #fff;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  line-height: 1;
  user-select: none;
}

.btn-plus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-min {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-qty:hover {
  background: var(--gray);
}

.inp-qty {
  width: 46px;
  height: 44px;
  border: none;
  padding: 8px 5px;
  line-height: 1;
}

.inp-qty:focus {
  border: none;
}

input#qtyInp:disabled {
  background: #fff;
  cursor: not-allowed;
}

#btnAdd.btn-add {
  padding: 7px 44px;
  height: 100%;
}

.check-stock, .check-stock:hover {
  text-decoration: underline;
}

.transf-left {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}

.prod-thumb-slider {
  overflow-x: hidden;
}

.prod-thumb-slider .splide__track {
  max-width: 500px;
}

.alert-modal {
  position: fixed;
  top: 50%;
  left: 10px;
  right: 10px;
  margin: 0 auto;
  z-index: 999;
  min-width: 300px;
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.shop-item {
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

body.modal::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.close-modal {
  cursor: pointer;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid var(--main);
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.close-modal:hover {
  background: var(--main);
}

.shop-item .svg {
  height: 20px;
  margin-right: 7px;
}

.min_prod-img:hover ~ .min_prod-name a {
  color: var(--main);
}

.min_prod-img img {
  transition: transform 0.2s ease;
}

.min_prod-img:hover img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.prod-section-title {
  padding-bottom: 10px;
  border-bottom: 2px solid #e1e1e1;
}

.prod-variety-wrapper {
  max-width: 325px;
}

.prod-variety-item {
  min-width: 45px;
  height: 40px;
  border: 2px solid #c7c5c5;
  margin-right: 8px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.prod-variety-item:hover {
  border-color: var(--main);
}

.prod-variety-item a {
  color: var(--black);
  width: 100%;
  height: 100%;
  padding: 5px 7px;
  line-height: 1;
}

.prod-variety-item.first {
  pointer-events: none;
  border-color: var(--main);
  padding: 5px 7px;
}

.btn-qty.disabled {
  cursor: not-allowed;
  opacity: 0.5;
  background: #fff;
}

.prod-actions {
  margin-top: 20px;
}

.prod-variety ~ .prod-actions {
  margin-top: 14px;
}

.product-slider-wrapper {
  height: 100px;
}

.product-slider .splide__slide:first-of-type {
  width: 100%;
}

.prod-thumb-slider .prod-thumb {
  margin-right: 12px;
  width: 100px;
  height: 100px;
}

.product-images-slider .splide__slide {
  width: 100%;
}

.product-attachment-btn {
  padding: 16px 32px;
  background: #f5f5f5;
}

.product-attachment-btn:hover {
  text-decoration: underline;
}

@media (max-width: 575px) {
  .prod-thumb-slider .prod-thumb {
    width: 85px;
    height: 85px;
  }
  .product-attachment-btn {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  #btnAdd.btn-add {
    padding: 7px 38px;
  }
}
@media (max-width: 991px) {
  .alert-modal {
    overflow-y: auto;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .product-right-arr {
    right: 0;
  }
  .product-left-arr {
    left: 0;
  }
  .modal-title {
    font-size: 20px;
  }
  .shop-address {
    max-width: 190px;
  }
  .tabs-nav {
    position: unset;
    top: 60px;
    padding: 11px 0;
  }
  .tab-item {
    padding: 12px 14px;
    font-size: 15px;
  }
  .tab-review-cont {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  #btnAdd.btn-add {
    padding: 7px 34px;
    width: 100%;
  }
  .btn-cont {
    width: 100%;
  }
  .product-slider-wrapper {
    height: 85px;
  }
}
@media (max-width: 430px) {
  .tab-attr-value {
    word-break: break-word;
  }
}
@media (max-width: 400px) {
  .shop-address,
  #btnAdd.btn-add {
    font-size: 15px;
  }
  .sticky-price .old-price {
    display: none;
  }
}
@media (max-width: 370px) {
  #btnAdd.btn-add {
    padding: 9px 27px;
  }
  .prod-act-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 330px) {
  .sticky-btn {
    width: 180px;
  }
}
.prod-radio-inp:checked + .prod-radio-label {
  border-color: var(--main);
}

.prod-radio-label {
  padding: 5px 7px;
}

@media (max-width: 575px) {
  .product-slider {
    max-height: calc(100vw - 24px);
  }
}
.product-single-images-mini {
  padding-right: 16px;
}

.product-short-desc p {
  line-height: 22px;
}

@media (min-width: 992px) {
  .product-single-images-big {
    width: calc(100% - 137px);
  }
  .product-img-accessory {
    width: 70px;
  }
  .product-short-desc {
    max-width: 295px;
  }
}
@media (max-width: 991px) {
  .product-gallery-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .product-images-slider .splide__arrows {
    display: none !important;
  }
}
.product-single-images-mini .splide__track--nav > .splide__list > .splide__slide,
.product-single-images-mini .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 2px solid #f7f7f7;
}

.product-single-images-mini .splide__track--nav > .splide__list > .splide__slide.is-active {
  border-color: var(--border-color);
}

.product-images-slider .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  padding: 0 30px;
  pointer-events: none;
  width: 100%;
}

.product-images-slider .splide__arrow--prev {
  left: 16px;
}

.product-images-slider .splide__arrow--next {
  right: 16px;
}

.product-images-slider .splide__arrow {
  pointer-events: all;
}

.prod-flag {
  text-transform: uppercase;
  line-height: 1;
  padding: 6px 8px;
  color: var(--white);
}

.prod-flag.last-qty {
  background: #47B486;
}

.prod-flag.promo {
  background: var(--primary);
}

.label-hidden {
  height: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  margin: 0;
  width: 0;
  display: initial;
}

.btn-call {
  padding: 11px 13px;
  height: 46px;
}

.product-images-slider .splide__arrow--prev {
  display: none;
}

.product-option {
  border-bottom: 1px solid var(--border-color);
  user-select: none;
}

.product-option-btn {
  outline: none;
  border: none;
  background: transparent;
  padding: 20px 0;
}

.product-option-arrow {
  transition: transform 0.15s ease;
}

.product-option-btn:hover .product-option-arrow {
  transform: translateX(4px);
}

.prod-desc p + p,
.prod-desc h1 + p {
  padding-top: 15px;
}

.prod-desc h1 {
  font-size: 30px;
  line-height: 36px;
}

.prod-desc a {
  text-decoration: underline;
}

.btn-attr-qty, .inp-attr-qty {
  width: 38px;
  height: 38px;
}

.chosen-value {
  max-width: 320px;
}

.option-radio:disabled {
  cursor: not-allowed;
}

.prod-desc-wrapper {
  max-width: 600px;
}

.btn.add-to-cart.loading, .btn.add-to-cart.added {
  background: #d41b34;
  border-color: #d41b34;
  color: #d41b34;
}

.add-to-cart-added {
  color: #fff;
}

.loading-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

.btn.add-to-cart.loading .loading-img {
  opacity: 1;
  visibility: visible;
}

.add-to-cart-added {
  position: absolute;
  top: calc(50% - 11px);
  left: 50%;
  transform: translate(-50%, 30px) scale(0.85);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.35s ease;
  opacity: 0;
  visibility: hidden;
}

.btn.add-to-cart.added .add-to-cart-added {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  visibility: visible;
}

.option-checkbox {
  display: block !important;
}

.tab-attr-name {
  text-align: right;
}

.fslightbox-fade-in-strong {
  background: var(--gray);
}

.product-option-choose {
  line-height: 25px;
}

.phdescription h2 {
  margin-left: 0 !important;
}

.btn-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .yt-iframe {
    height: 470px;
  }
}
@media (max-width: 767px) {
  .breadcrumb li:last-of-type {
    display: none;
  }
  .yt-iframe {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .yt-iframe {
    height: 300px;
  }
  .btn.add-to-cart {
    padding: 12px 29px;
    width: 100%;
  }
  .add-to-cart-wrapper {
    width: 100%;
  }
  .product-title {
    font-size: 25px;
    line-height: 31px;
  }
  .tab-title {
    font-size: 22px;
  }
  .inp-qty, .btn-qty {
    width: 38px;
  }
  .btn-attr-qty, .inp-attr-qty {
    width: 35px;
    height: 35px;
  }
  .options-attr-name {
    font-size: 15px;
  }
  .tab-accesories {
    margin-right: -16px;
  }
  .tab-item {
    padding: 12px 10px;
  }
  .tabs-btns-wrapper {
    overflow-x: auto;
  }
  .tabs-nav {
    white-space: nowrap;
  }
  .chosen-value {
    max-width: 70%;
    font-size: 14px;
  }
  .product-option-choose {
    font-size: 15px;
    margin-right: 4px;
    line-height: 24px;
  }
  .product-option-arrow {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 420px) {
  .yt-iframe {
    height: 280px;
  }
  .chosen-value {
    max-width: 174px;
  }
}
@media (max-width: 390px) {
  .tab-item {
    padding: 12px 10px;
  }
  .footer-summary {
    flex-direction: column-reverse;
  }
}
@media (max-width: 374px) {
  .btn.add-to-cart {
    padding: 12px 22px;
  }
}
@media (max-width: 360px) {
  .tab-item {
    font-size: 14px;
    padding: 13px 10px;
  }
}
@media (max-width: 350px) {
  .btn.add-to-cart {
    padding: 12px 18px;
  }
}
@media (max-width: 342px) {
  .btn.add-to-cart {
    padding: 12px 9px;
  }
  .tab-item {
    font-size: 14px;
    padding: 13px 6px;
  }
}
@media (max-width: 325px) {
  .btn.add-to-cart {
    padding: 12px 7px;
  }
}

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