/** Shopify CDN: Minification failed

Line 125:2 Unexpected "@media"
Line 153:3 Expected "}" to go with "{"

**/

.swiper-container {
    width: 100%;
    height: auto;   
    margin-bottom: 20px;
    overflow: hidden;
}
.swiper-wrapper{
  height: auto;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}
.Offer-content-list .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;    
}
.swiper-button-next, .swiper-button-prev {
    width: 45px;
    height: 45px;
    display: flex !important;
    border: 1px solid #ddd;
    border-radius: 50px;
    color: #ddd;
    font-size: 10px;
    justify-content: center;
    justify-items: center;
}
.swiper-button-next, .swiper-button-prev {
    background: #fff;
    border: 1px solid #f4f4f4;
    border-radius: 50%;
    width: 45px !important;
    height: 45px !important;
    color: #5d5d5d !important;
    box-shadow: 0 2px 10px #36363626;
}
.swiper-button-next, .swiper-button-prev {
    top: 50%;
    display: none !important;
}
.swiper-button-next {
    right:-12px;
}
.swiper-button-prev {
   left:-12px;
}
.swiper-button-next svg,  .swiper-button-prev svg{
    fill: #404040 ;
    height: 1.2em;
    width: 1.2em;
}
.swiper-button-prev svg {
    transform: scaleX(-1);
}



.Offer-content-list {
    width: 100%;
    background: #fff;
    display: flex;
    gap: 15px;
    justify-content: center;
   position:relative;
  }
  .Offer-item-list {
    width: calc(25% - 20px);
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .Offer-item-list h3 {
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    margin-top: 15px;
    font-size: 14px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid currentColor;
    display: inline-block;
  }
  .Offer-item-list a {
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    align-items: center;
    flex-direction: column;
  }
  .Offer-item-list a h3:hover {
    font-weight: bold;
  }
  .Offer-item-list img {
    object-fit: cover;
    width: 100%;
    height: auto;
  }
  .Offer-title {
    flex: 1;
    text-align: center;
    position: absolute;
    left: 8px;
    bottom: 0px;
  }
  @media screen and (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
    display: flex !important;
}
    ｝
  @media screen and (max-width: 480px) {
    .swiper-button-next, .swiper-button-prev {
    display: flex !important;
}
    .Offer-content-list {
      gap: 10px;
      flex-direction: column;
    }
    .Offer-item-list {
      padding: 20px 10px;
      flex-wrap: wrap;
      width: 100%;
    }
    .Offer-item-list img {
      margin-right: 0px;
      max-width: fit-content;
    }
    .Offer-title {
      width: 100%;
      left: 0px;
    }
    .Offer-item-list h3{
      font-size: 12px !important;      
    }
    .Offer-item-list a {
      font-size: 1rem;
      padding: 3px 0px;
    }
  }