/** Shopify CDN: Minification failed

Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:24 Expected ":"
Line 42:0 Unexpected "#"
Line 42:2 Unexpected "{"
Line 42:11 Expected ":"
Line 45:0 Unexpected "#"
Line 45:2 Unexpected "{"
Line 45:11 Expected ":"
Line 51:0 Unexpected "#"
... and 29 more hidden warnings

**/


/* CSS from section stylesheet tags */
.fantastic-slider-container {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: {{ section.settings.bg_gradient }};
  box-sizing: border-box;
}
.fantastic-slider-container.page-width {
  margin-block: 60px;
  background: #F3E0E0;
  max-width: 1000px;
  padding-block: 40px;
  padding-left: 60px;
  padding-right: 0;
  margin-left: 9%;
}

.slider-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  border-radius: 2px;
}
#{{ section.id }} .colection-slider{
  position:relative;
}
#{{ section.id }} .slick-slide img {
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
}
#{{ section.id }} .slick-list.draggable{
  margin-inline:-10px;
}
.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#{{ section.id }} .slider-text {
  position: relative;
  bottom: 0;
  width: 100%;
  background: rgba(4, 4, 4, 0);
  color: #666;
  padding: 10px;
  font-size: 18px;
  line-height: 30px;
  box-sizing: border-box;
}

.slider-subtext {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  display: none;
}

.slider-title-box {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 500;
  color: #333;
  padding-left: 0px;
  z-index: 2;
  white-space: nowrap;
  line-height: 1.2;
}

/* Slick arrows */
#{{ section.id }} .slick-prev{
  background: #ffffff6b;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  z-index: 5;
  color: #000;
  font-size: 24px;
  line-height: 1;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center; 
  position: absolute;
  top: 40%;
  transform: translateY(-50%);  
}
#{{ section.id }} .slick-next {
  background: #ffffff6b;
  border-radius: 50%;
  width: 53px;
  height: 53px;
  z-index: 5;
  color: #000;
  font-size: 24px;
  line-height: 1;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center; 
  position: absolute;
  top: 40%;
  transform: translateY(-50%);  
}
#{{ section.id }} .slick-slider{
  overflow:hidden;
}

.slick-prev:hover,
.slick-next:hover {
  background: #fff;
}

.slick-prev { 
     left: -25px;
    justify-content: flex-end;
    padding-right: 10px;
 }
.slick-next { 
  right: -25px; 
  justify-content: flex-start;
  padding-left: 10px;
}

@media (max-width: 1024px) {
  .slider-card { height: 320px; }
}

@media (max-width: 768px) {
  .slider-card {
    height: 220px;
   }
  #{{ section.id }} .slider-title-box {
    padding: 0 0 20px 20px;
    left:0;
    font-size:18px;
  }
  

}
#{{ section.id }} .slick-slide {
  margin: 0 10px;
}
#{{ section.id }} .marquee-slider .slick-slide div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
#{{ section.id }} .marquee-slider div{
  color:#fff;
  white-space: nowrap;
  font-size: 15px;
  margin-inline:20px;
}
#{{ section.id }} .marquee-slider{
  display:flex !important;;
}