/** Shopify CDN: Minification failed

Line 134:3 Expected "}" to go with "{"

**/
html,
body {
  scroll-behavior: smooth;
}

.bar_button {
  background-image: linear-gradient(
    to right,
    #dca8a2 0%,
    #ffd6d1 51%,
    #dca8a2 100%
  );
}

.bar_button {
  margin: 0;
  padding: 2px 32px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  font-size: 18px;
  transition: 0.5s;
  background-size: 200% auto;
  color: #000;
  box-shadow: 0 0 4px #c5857e;
  border: 1px solid #ffcfca;
  border-radius: 20px;
  animation: backgroundShift 1.5s ease-in-out infinite;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
}

.bar_button:hover {
  background-position: right center;
  color: #000;
  text-decoration: none;
}

.bar_button img {
  width: 40px;
  height: auto;
  mix-blend-mode: multiply;
}

@keyframes backgroundShift {
  0%,
  100% {
    background-position: to right;
  }
  50% {
    background-position: right center;
  }
}

footer.footer {
  background: linear-gradient(
    40deg,
    rgba(54, 1, 66, 1) 33.04%,
    rgba(65, 10, 77, 1) 40.72%,
    rgba(94, 35, 107, 1) 54.31%,
    rgba(140, 74, 156, 1) 72.23%,
    rgba(204, 128, 222, 1) 93.57%,
    rgba(225, 146, 244, 1) 100%
  );
}

footer.footer .footer__content-top,
.footer__content-bottom {
  padding: 0;
}

footer.footer .footer-block__image-wrapper,
footer.footer .footer-block--newsletter {
  margin: 0;
}


.slide-mobile {
    position: relative;
}

.slide-mobile > .slide-arrow {
  background: #00000080;
  color: #fff;
  display: none;
  border: none;
  font-size: 1.8rem;
  line-height: 0;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  z-index: 10;
  padding: 16px 8px 18px;
}

.slide-mobile > .left-arrow {
  left: 0px;
}

.slide-mobile > .right-arrow {
  right: 0px;
}

@media (width <= 767px) {
  footer.footer {
    padding-bottom: 120px;
  }
  
  .slide-mobile > .slide-container{
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;  
    scroll-behavior: smooth;
    scroll-padding-left: 50%;
    scroll-padding-right: 50%;
  }

  .slide-mobile > .slide-container > .slide-item {
    scroll-snap-align: center;
    flex: 0 0 auto;
  }
  
  .slide-mobile > .slide-arrow {
    display: block;
  }