/** Shopify CDN: Minification failed

Line 55:0 Unexpected "}"
Line 131:2 Expected identifier but found "*"

**/
.flexslider .slides > li {
  position: relative;
}

.flexslider .slideshow-text {
     position: absolute;
    left: 100px;
    top: 0;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: auto;
}
.flexslider .discount_text {
	font-size: 35px;
    line-height: 50px;
    font-weight: 400;
}
.flexslider .heading {
	    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0;
    margin-block: 23px 50px;
    /* Background color with transparency */
    background: rgba(255, 255, 255, 0.1); 

    /* Blur effect */
    backdrop-filter: blur(10px);

    /* Border */
    border: 1px solid rgba(255, 255, 255, 0.2); 

    /* Padding and margin for spacing */
    padding: 20px;
    margin: 10px;
    
    /* Optional: rounded corners */
    border-radius: 10px;

    /* Text styling */
    color: white; /* Adjust as needed */
    font-size: 1.5rem; /* Adjust as needed */
}

}

.flex-direction-nav{
  display: none;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  position: absolute;
  top: 45%;
  z-index: 2;
  overflow: hidden;
  opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  font-size: 0;
  line-height: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 45px;
  width: 45px;
  border-radius: 5px;
}
.flex-direction-nav .flex-prev{
  left: 0px;
  opacity: 0;
}
.flex-direction-nav .flex-next {
  right: 0px;
  opacity: 0;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  left: 30px;
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  right: 30px;
  opacity: 1;
}
.flex-direction-nav a::before {
  font-family: FontAwesome;
  font-size: 24px;
  line-height: 27px;
  display: block;
  color: var(--color-base-accent-2);
  font-weight: 300;
  background: var(--color-base-accent-1);
  width: 40px;
  height: 40px;
  padding: 0;
  float: none;
  margin: 2px;
  vertical-align: top;
}
.flex-direction-nav a.flex-prev::before {
  content: "\f0d9";
}
.flex-direction-nav a.flex-next::before {
  content: "\f0da";
  padding-left: 3px;
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  margin: 0;
  bottom: 0;
  text-align: center;
}
.flex-control-nav li {
  margin: 0 5px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 12px;
  height: 12px;
  display: block;
  background: transparent;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background: #000;
}

.flex-control-paging li a.flex-active {
  cursor: default;
}

@media (min-width: 750px) { 

    li.flex-active-slide .discount_text{
        webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 0.6s;
        animation-duration: 0.6s;
    }
    li.flex-active-slide .heading{
       webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 0.8s;
        animation-duration: 0.8s;
    }
    li.flex-active-slide .slideshow__btn-wrapper{
        webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
    }

    .flexslider .slides img {
/*         transform: scale(1.1); */
        -webkit-transform: 3s cubic-bezier(.41,.85,.6,.97);
    }
    .flexslider .slides li.flex-active-slide img {
        -webkit-transition: -webkit-transform 3s cubic-bezier(.41, .85, .6, .97);
        transition: -webkit-transform 3s cubic-bezier(.41, .85, .6, .97);
        transition: transform 3s cubic-bezier(.41, .85, .6, .97);
        transition: transform 3s cubic-bezier(.41, .85, .6, .97);
        -webkit-transform: 3s cubic-bezier(.41,.85,.6,.97);
    }

    @keyframes fadeInUp {
      0%{
        opacity:0;
        transform:translateY(30%);
      }
      to{
        opacity:1;
        transform:translateY(0%);
      }
    }
  
}
@media screen and (max-width: 1400px) {
  .flexslider .slideshow-text {
      left: 80px;
  }
  .flexslider .discount_text {
      font-size: 28px;
      line-height: 43px;
  }
  .flexslider .heading {
      font-size: 52px;
      line-height: 62px;
  }
}
@media screen and (max-width: 1269px) {
  .flexslider .heading {
      font-size: 36px;
      line-height: 46px;
      margin-block: 15px 30px;
  }
  .flexslider .discount_text {
      font-size: 25px;
      line-height: 40px;
  }
}
@media screen and (max-width: 989px){
  .flexslider .slideshow-text {
      left: 50px;
  }
  .flexslider .heading {
      font-size: 28px;
      line-height: 36px;
      margin-block: 10px 25px;
  }
  .flexslider .discount_text {
      font-size: 20px;
      line-height: 30px;
  }
  .btn.slideshow__btn.button {
      padding: 8px 18px;
      font-size: 12px;
  }
}
@media screen and (max-width: 749px){
  .flexslider .slideshow-text {
      left: 40px;
  }
  .flexslider .discount_text {
      font-size: 16px;
  }
  .flexslider .heading {
      font-size: 24px;
      line-height: 32px;
      margin-block: 5px 15px;
  }
}
@media screen and (max-width: 575px) {
  .flexslider .slideshow-text {
      left: 30px;
  }
  .flexslider .heading {
  	  font-size: 19px;
      line-height: 24px;
      margin-block: 3px 10px;
  }
  .flexslider .discount_text {
      font-size: 14px;
      line-height: 26px;
  }
  .btn.slideshow__btn.button {
      padding: 5px 13px;
      line-height: 20px;
      font-size: 11px;
  }
}
@media screen and (max-width: 479px){
  .flexslider .heading {
	font-size: 16px;
	line-height: 18px;
	margin-block: 5px 10px;
  }
  .btn.slideshow__btn.button {
	background-color: #838f8b !important;
	padding: 5px;
	color: #000000;
	text-decoration: none !important;
  }
  .btn.slideshow__btn.button:hover {
	text-decoration: none !important;
  }
  .flexslider .discount_text {
	font-size: 11px;
  }
  .flexslider .slideshow-text {
	left: 20px;
  }
}
@media screen and (max-width: 380px){
  .flexslider .discount_text {
	display: none;
  }
}












