/** Shopify CDN: Minification failed

Line 21:7 Expected ":"

**/
/*
  © 2024 KondaSoft
  https://www.kondasoft.com
*/

/*
  Header
*/
#header-group {
  transition: transform .4s ease-out;
}

#header-group.hide {
  /* transform: translateY(-50%); */
  /* transform: scaleY(50%); */
  style.navbar="--overlay-color-rgb: #FFFFFF ; --overlay-opacity: 100%;"
}

/* 
  Announcement bar
*/
.announcement-bar {
  border-top-style: solid;
  border-bottom-style: solid;
  overflow: hidden;
}

.announcement-bar .description {
  text-align: center;
  margin: 0;
}

.announcement-bar .description a {
  color: currentColor;
  transition: all .2s ease-out;
}

.announcement-bar .description a:hover,
.announcement-bar .description a:focus {
  opacity: .75;
}

.announcement-bar .carousel {
  margin-left: auto;
  margin-right: auto;
  padding-left: .5rem;
  padding-right: .5rem;
}

.announcement-bar .carousel-control {
  background-color: transparent;
  border-color: transparent;
}

.announcement-bar .carousel-control-prev {
  left: -1.25rem;
}

.announcement-bar .carousel-control-next {
  right: -1.25rem;
}


/*
  Navbar
*/
#navbar-wrapper {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
  transition: background-color .2s ease-out;
}

#navbar-wrapper.shadow {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

#navbar-wrapper .navbar-logo {
  display: flex;
  font-size: 1.5rem;
  text-decoration: none;
  color: currentColor;
  transition: all .2s ease;
}

#navbar-wrapper .navbar-logo:hover,
#navbar-wrapper .navbar-logo:focus {
  opacity: .75;
}

.nav-desktop-menu .nav-item {
  padding: 0 .075rem;
}

.svg-icon-menu line {
  opacity: 1;
  transform: rotate(0) translateY(0) translateX(0);
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.svg-icon-menu-close line:nth-child(1) {
  transform: rotate(45deg) translate(6px, -12px);
}
 
.svg-icon-menu-close line:nth-child(2) {
  opacity: 0;
}

.svg-icon-menu-close line:nth-child(3) {
  transform: rotate(-45deg) translate(-12px, 0px);
}

body #main::after,
body #footer-group::after  {
  content: "";
  transition: all .4s ease-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(var(--bs-dialog-backdrop-color-rgb), var(--bs-dialog-backdrop-opacity));
  backdrop-filter: blur(var(--bs-dialog-backdrop-blur));
} 

body.navbar-dropdown-open #main,
body.navbar-dropdown-open #footer-group {
  position: relative;
  overflow: hidden;
}

body.navbar-dropdown-open #main::after,
body.navbar-dropdown-open #footer-group::after {
  animation: navbar_dropdown_open .4s ease-out both;
}

@keyframes navbar_dropdown_open {
  to { opacity: 1; visibility: visible; }
}


/*
  Footer
*/
#footer {
  border-top-style: solid;
  border-bottom-style: solid;
}

#footer .footer-block .title span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  /* background: linear-gradient(to right, rgba(var(--text-color-rgb), .1), transparent); */
  border-radius: var(--bs-border-radius);
}

#footer .nav-link {
  transition: all .2s ease-out;
  background-color: transparent;
}

#footer .nav:hover .nav-link {
  opacity: 1;
}

#footer .nav:hover .nav-link:hover,
#footer .nav:hover .nav-link:focus { 
  opacity: 0.6;
}

#footer .social-icons {
  border-radius: 50rem;
  background-color: rgba(var(--text-color-rgb), .05);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}


/*
  Hero carousel
*/
.hero-carousel {
  border-top-style: solid;
  border-bottom-style: solid;
}

.hero-carousel .carousel-item img,
.hero-carousel .media-wrapper img {
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.hero-carousel .media-wrapper img,
.hero-carousel .media-wrapper video {
  display: flex;
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}

.hero-carousel .media-wrapper {
  --opacity: 0;
  position: relative;
}

.hero-carousel .media-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--overlay-color-rgb, 0, 0, 0), var(--overlay-opacity, 0.7));
}

.hero-carousel .carousel-control-prev {
  left: 2%;
}

.hero-carousel .carousel-control-next {
  right: 2%;
}

.hero-carousel .carousel-caption .subtitle {
  animation: fade_in_up 0.5s ease-out both;
  animation-delay: 0.4s;
}

.hero-carousel .carousel-caption .title {
  animation: fade_in_up 0.5s ease-out both;
  animation-delay: 0.6s;
}

.hero-carousel .carousel-caption .description {
  animation: fade_in_up 0.5s ease-out both;
  animation-delay: 0.8s;
}

.hero-carousel .carousel-caption .btn-wrapper {
  animation: fade_in_up 0.5s ease-out both;
  animation-delay: 1s;
}


/*
  Image overlay
*/
.image-overlay {
  position: relative;
}

.image-overlay img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.image-overlay .img-wrapper {
  --opacity: 0;
}

.image-overlay .img-wrapper::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--overlay-color-rgb, 0, 0, 0), var(--overlay-opacity, 0.7));
  backdrop-filter: blur(var(--overlay-blur, 0));
}

.image-overlay .title {
  animation: fade_in_up .5s ease-out both;
  animation-delay: .2s;
}

.image-overlay .description {
  animation: fade_in_up .5s ease-out both;
  animation-delay: .4s;
}


/* 
  Featured Products
*/
.featured-products {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
}


/* 
  Featured collections
*/
.featured-collections {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Media with text
*/
.media-with-text {
  border-top-style: solid;
  border-bottom-style: solid;
}

.media-with-text img {
  width: 100%;
}

.media-with-text video {
  position: absolute;
  object-fit: cover;
}


/*
  Marquee
*/


/*
  FAQ
*/
.faq {
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Richtext
*/
.richtext {
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Contact form
*/
.contact-form-section {
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Page content
*/
.page-content {
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Cart list
*/
.card-list {
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Card slider
*/
.card-slider {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  HTML/Liquid
*/
.html-section {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
}


/* 
  Lookbook 
*/


/*
  Newsletter
*/
.newsletter {
  border-top-style: solid;
  border-bottom-style: solid;
}

.newsletter-form .form-floating .form-floating-icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  opacity: 0.5;
  z-index: 3;
  color: var(--bs-body-color);
}

.newsletter-form .form-floating input {
  padding-left: 3rem;
}

.newsletter-form .form-floating label {
  padding-left: 3rem;
  color: var(--bs-body-color);
}

.newsletter-form .form-floating input:focus + label {
  transform: scale(.85) translateY(-0.5rem) translateX(0.5rem);
}

.newsletter-form .form-floating button {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  z-index: 3;
  height: calc(100% - 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-trust-badges-item {
  border-radius: var(--bs-border-radius);
}


/*
  Newsletter Popup
*/


/* 
  Testimonials 
*/
.testimonials {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
}

.testimonials .card {
  border-radius: 1.5rem;
  border-bottom-left-radius: 0;
}

.testimonials .card .svg-icon-star {
  fill: currentColor;
}


/* 
  Blog slider 
*/
.blog-slider {
  display: block;
  border-top-style: solid;
  border-bottom-style: solid;
}


/*
  Sticky ATC (Add to cart)
*/


/*
  Countdown
*/


/*
  Combo cross-sells
*/