/* cta hover fix */
.multif-columns-full-width.module-container a.cta_button:hover {
  background: transparent;
}

.multif-columns-full-width.module-container {
  position: relative;
}

.module-container.multif-columns-full-width .image, .module-container.multif-columns-full-width .image {
  width: 100%;
}

.multif-columns-full-width.module-container a.button {
  width: auto;
  height: auto;
  padding: 15px 30px;
  color: white;
  font-size: 18px;
  border-radius: 0;
  margin-top: 40px;
  border: none;
}

.multif-columns-full-width.module-container ul.slick-dots button {
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  margin: 0 5px;
  width: 12px;
  padding: 0;
  color: transparent; /* make the text invisible */
  user-select: none;
}

.multif-columns-full-width.module-container ul.slick-dots {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

@media(max-width: 1400px)
{
  .multif-columns-full-width .content.top-buffer {
    padding-top: 50px;
  }
  .multif-columns-full-width .content.bottom-buffer {
    padding-bottom: 50px;
  }
}
@media(max-width: 992px) {
  .multif-columns-full-width.module-container a.button {
    margin-top: 10px;
  }
}

@media (max-width: 768px){
  .multif-columns-full-width .content-side.container {
    padding: 0;
  }
  .multif-columns-full-width .content.top-buffer, .multif-columns-full-width .root-container {
    padding-top: 20px;
  }   
  .multif-columns-full-width .content.bottom-buffer {
    padding-bottom: 20px;
  }
  .multif-columns-full-width .root-container .image-side .image, .multif-columns-full-width .slick-slide {
    aspect-ratio: 16 / 9;
  }
}

{# needs to be from lowest min-width to highest #}
@media (min-width: 768px){
  .multif-columns-full-width .content-side.container {
    /*must be half of bootstrap container max-width at this breakpoint in theme overrides*/
    max-width: 360px;
  }
  .multif-columns-full-width .content-side.container.force-col-7 {
    max-width: 452px;
  }
}

@media (min-width: 992px) {
  .multif-columns-full-width .content-side.container {
    /*must be half of bootstrap container max-width at this breakpoint in theme overrides*/
    max-width: calc(var(--container-max-width-lg) / 2);
  }
  .multif-columns-full-width .content-side.container.force-col-7 {
    max-width: 680px;
  }
}

@media (min-width: 1200px) {
  .multif-columns-full-width .content-side.container {
    /*must be half of bootstrap container max-width at this breakpoint in theme overrides*/
    max-width: calc(var(--container-max-width-xl) / 2);
  }  
  .multif-columns-full-width .content-side.container.force-col-7 {
    max-width: 790px;
  }
}

@media (min-width: 1400px) {
  .multif-columns-full-width .content-side.container {
    /*must be half of bootstrap container max-width at this breakpoint in theme overrides*/
    max-width: calc(var(--container-max-width) / 2);
  }
  .multif-columns-full-width .content-side.container.force-col-7 {
    max-width: 890px;
  }
}

.article-price strong > span {
  font-size: 30px;
}

.add-to-basket-form, .add-to-basket-small-form {
  display: flex;
  margin-top: 25px;
}

.add-to-basket-form{
  margin-bottom: 15px;
}

.basket-form-group {
  max-width: 230px;
  margin-right: 10px;
}

.basket-form-group input {
  background-color: #fff;
  border: none;
  font-size: 1.25rem;
  padding: 7px 15px;
  width: 100%;
}

.basket-form-group .bar {
  position: relative;
  border-bottom: 4px solid rgba(196,51,48,.57);
  display: block;
}

.basket-form-group .bar::before {
  content: "";
  height: 4px;
  width: 0;
  left: 50%;
  bottom: -4px;
  position: absolute;
  background: #d61d04;
  transition: left .28s ease,width .28s ease;
  z-index: 2;
}

.button-basket {
  background-color: #d61d04;
  color: #fff;
  padding: 0 .9375rem;
  font-size: 1.625rem;
  height: 50px;
  margin-bottom: 0;
  border: none;
}

.ico-basket svg{
  margin-top: 5px;
}