/*
 Theme Name:   Swaygroup Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     swaygroup
 Version:      6.0.0-beta1
 Requires at least: 5.0
 Tested up to: 6.5.2
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

/* Typography CSS */
a {
  text-decoration: none;
  color: inherit;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-weight: 700;
    color: #151515;
    /* letter-spacing: -0.06rem; */
    word-break: keep-all;
}
h1, .h2 {
    font-size: 5rem; /* 80px; */
    line-height: 0.85;
}
h2, .h2 {
    font-size: 3.8125rem; /* 61px; */
    line-height: 0.85;
}
h3, .h3{
    font-size: 2.9375rem; /* 47px; */
    line-height: 0.85;
}
h4, .h4{
    font-size: 2.25rem; /* 36px; */
    line-height: 1.25;
}
h6, .h6 {
    font-size: 1.3125rem; /* 21px; */
    line-height: 1.25;
}
.font-md{
    font-size: 0.875rem; /* 14px; */
}
.font-sm{
    font-size: 0.75rem; /* 12px; */
}
.font-xs{
    font-size: 0.625rem; /* 10px; */
}


h3 em{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    font-size: 2.9375rem;
    font-style: italic;
    font-weight: 400;
    line-height: 0;
    width: fit-content;
}
.text-link{
    letter-spacing: 0.0875rem;
    position: relative;
    padding-block: 0.390rem;
}
.text-link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
}
.text-link-dark:before {
    background-color: #151515;
}
.text-secondary{
    color: #151515 !important;
}

.btn{ font-size: 0.714rem;border-radius: 0;letter-spacing: 2px;font-weight: 700;
    font-family: Helvetica, sans-serif;padding:0.778rem 1.264rem ;}
.button-text {
    position: relative;
    min-width: auto;
    min-height: auto;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2.4px;
    font-size: 0.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.button-text:after {
    content: "";
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 50%;
    display: block;
    width: 100%;
    transform: translate(-50%);
    height: 1px;
    background-color: rgb(21,21,21);
    transition: background-color 400ms, width 400ms;
}
.button-text:hover:after {
    background-color: rgb(21,21,21);
    width: 30%;
}    
.btn-dark:hover{
    background-color: transparent;
    color: #151515;
}
.btn-outline-dark {
    --bs-btn-color: #151515;
    --bs-btn-border-color: #151515;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #151515;
    --bs-btn-hover-border-color: #151515;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #151515;
    --bs-btn-active-border-color: #151515;
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #151515;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #151515;
    --bs-gradient: none;
}
.btn:focus-visible{
    box-shadow: none;
}
:not(.btn-check)+.btn:active{
    border: none;
}
.bg-light{
    background-color: #f8f8f8;
}

hr{
    border-color: rgba(235,235,235, 1);
    opacity: 1;
}
.container, .max-w-page {
    max-width: 1680px;
}

.svg-icon svg{
    width: 1.25rem;
    height: 1.25rem;
}

/* Form Control CSS */
.form-control{
    font-size: 0.75rem;
    border: solid 1px #ebebeb;
    border-radius: 0;
    padding: 1rem;
}
.form-control:focus, .form-control:hover{
    border-color: #151515;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
}
textarea.form-control-lg{
    height: 124px;
}
.form-control::placeholder {
    color: rgb(21, 21, 21, .5);
}
.form-control:-ms-input-placeholder {
    color: rgb(21, 21, 21, .5);
}

.form-control::-ms-input-placeholder { 
    color: rgb(21, 21, 21, .5);
 }

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Slick CSS */
.slick-prev:before, .slick-next:before{
    color: #151515;
}
.slick-prev{
    left: 0;
}
.slick-next{
    right: 0;
}
.slick-prev, .slick-next{
    z-index: 1;
}
.slick-prev:before, .slick-next:before{
   font-family: "Font Awesome 6 Free";
   display: inline-block;
   vertical-align: middle;
   font-weight: 900;
   font-size: 14px;
}
.slick-prev:before {
   content: "\f104";
}

.slick-next:before {
   content: "\f105";
}


/* Header CSS */

.header-inner{
    display: grid;
    /* grid-template-columns: 1fr auto 1fr; */
    align-items: center;width:100%;
}
.carousel-item img{
    height: 100vh;
    object-fit: cover;
    object-position: center center;
}
.carousel-caption{
    left: 0;
    right: 0;
}
.search-bar{
    position: relative;
    width: 18px;
    margin-left: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-brand{
    transition: opacity 300ms;
}
.navbar-brand:hover {
    opacity: .7;
}

/* Default: absolute over hero */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  border-bottom: solid 1px rgba(21, 21, 21, 0.1);
}

.home .site-header, .page-template-page-about .site-header{
    position: inherit;
}

.site-header .navbar {
  background-color: rgba(255,255,255,0);  /* transparent at top */
  transition: background-color .3s ease, box-shadow .3s ease;
}

/* When scrolled */
.site-header.is-stuck {
  position: fixed !important;    /* take it out of flow and stick it */
  top: 0;
  left: 0;
}

.site-header.is-stuck .navbar {
  background-color: #fff;
    border-bottom: solid 1px rgba(21, 21, 21, 0.1);
}

/* Start state: white logo visible, links white */
.logo-white { display: none; }
.site-header .navbar .nav-link { color: #151515; }


/* Sticky state: dark logo visible, links dark */
.site-header.is-stuck .logo-white { display: none; }
.site-header.is-stuck .logo-dark  { display: inline-block; }
.site-header.is-stuck .navbar .nav-link { color: #151515; } /* dark grey/black */
.site-header.is-stuck .svg-icon svg, .site-header.is-stuck .fa-bars{ color: #151515 !important;}


.home .site-header, .page-template-page-about .site-header{
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
.home .site-header .navbar .nav-link, .page-template-page-about .site-header .navbar .nav-link{
    color: #fff;
}
.home .navbar-brand .logo-dark, .page-template-page-about .navbar-brand .logo-dark{
    display: none;
}
.home .navbar-brand .logo-white, .page-template-page-about .navbar-brand .logo-white{
    display: block;
}
.home .site-header .svg-icon svg, .page-template-page-about .site-header .svg-icon svg, .home .site-header .fa-bars, .page-template-page-about .site-header .fa-bars{
    color: #fff;
}
.home .site-header.is-stuck .logo-white, .page-template-page-about .site-header.is-stuck .logo-white{
    display: none;
}
.home .site-header.is-stuck .logo-dark, .page-template-page-about .site-header.is-stuck .logo-dark{
    display: block;
}
.home .site-header.is-stuck .navbar .nav-link, .page-template-page-about .site-header.is-stuck .navbar .nav-link{
    color: #151515;
}

/* Navbar CSS */
.navbar-nav .nav-link:before, .search-bar:before { content: "";position: absolute;inset-block-end: 0;inset-inline-start: 0;width: 100%;height: 1px;
    background-color: currentColor;opacity: .3;transform: scaleX(0);transform-origin: right;transition: transform 400ms, opacity 400ms;
}
.navbar-nav .nav-link:hover:before, .search-bar:hover:before{ opacity: 1;transform: scaleX(1);transform-origin: left;}
.nav-link{ font-weight: 700;text-transform: uppercase;font-size: 0.625rem;color: #fff;letter-spacing: 1.4px; position: relative;}
.nav-link:hover, .nav-link:focus { color: #fff;}



/* Middle Section CSS Start */
.section{
    padding: 80px 36px;
}

.section-heading{
    font-size: 2.9375rem;
}

/* 1 Best Sellers Section CSS */
.best-sellers .slick-slide, .featured-bundle .slick-slide, .collections .slick-slide, .similar-post .slick-slide{
    padding-right: 12px;
}
.best-sellers .slick-list, .featured-bundle .slick-list{
    padding-right: 24px !important;
    padding-left: 0 !important;
}
.best-sellers .slick-prev, .best-sellers .slick-next{
    position: inherit;
    color: #000;
}
.best-sellers .slick-prev:before, .best-sellers .slick-next:before{
    color: #000;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.142rem;
}
.product-card-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    justify-content: space-between;
    text-align: initial;
}
.product-card .product-card-title, .product-card .product-price{
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: .48px;
    text-transform: uppercase;
}
.product-card .product-price{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.product-card .product-card-variants-info {
    font-size: 0.75rem;
    color: rgba(21,21,21, .5);
    font-family: Helvetica, sans-serif;
}
.product-hover{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}
.product-card .view-more-btn{
    opacity: 0;
    position: absolute;
    bottom: 0.625rem;
    left: 0.625rem;
    width: calc(100% - 1.25rem);
    display: block;
    z-index: 1;
}
.product-card .view-more-btn:hover{
    background-color: #343434;
    color: #fff;
}
.product-card .hover-image{
    opacity: 0;
    transition: .7s ease;
    display: block;
}
.product-card:hover .view-more-btn, .product-card:hover .hover-image{
    opacity: 1;
}



.btn-light{
    border: 1px solid rgb(255,255,255);
    color: #111111;
}
.btn-light:hover{
    background-color: transparent;
    border-color: #fff;
}

.text-label {
     letter-spacing: .24rem;
}


/* Collections Section CSS */
.card-collection a .media img, .dual-tile-media-block img{
    transition: transform 600ms ease;
}
.card-collection a:hover .media img, .dual-tile-media-block:hover img {
    transform: scale(1.05);
}



/* 12 Faq CSS */

/* reset BS defaults */
.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #eee;       
  background: transparent;
  border-radius: 0 !important;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: 0;                     
}

.faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none !important;
  padding: 1rem 0;                  
  font-weight: 500;                       
  font-size: 1rem;                 
  color: #151515;            
  transition:300ms;            
 
}

/* body copy */
.faq-accordion .accordion-body {
  padding: 0 0 1rem 0;                
  line-height: 1.7;
  max-width: 920px;      
  font-size: 0.875rem;   
  font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;             
  color: rgba(21, 21, 21, .75);
}
.faq-accordion .accordion-body p:last-child{ margin-bottom: 0;}

.accordion-button::after{
    width: 1rem;
    height: 1rem;
    background-size: cover;
    background-image: none;
    font-family: "Font Awesome 6 Free"; /* or "Font Awesome 6 Pro" */
    font-weight: 900; /* For Solid icons */
    content: "\f067"; /* Unicode for fa-plus */

}
.accordion-button:not(.collapsed)::after{
    background-image: none;
    content: "\f068"; /* Unicode for fa-minus */
}

/* Footer CSS */
.trust-indicators-section {
    row-gap: 1rem;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    background-color: #111111;
     padding:2.25rem;
}
.trust-indicators-section .trust-indicators-slide{
    padding: 2rem;
    background-color: #fff;
    display: flex;
    flex: 1;
    margin-right: 1rem;
}
.trust-indicators-section .trust-indicators-slide:last-child{
    margin-right: 0;
}
.trust-indicators-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgb(21, 21, 21, .2);
    border-radius: 50%;
    min-width: 3rem;
}
.trust-indicators-icon svg{
    width: 1.5rem;
    height: 1.5rem;
}
.trust-indicators-title{
    font-size: 1rem;
}
.widget-title{
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.01rem;
    padding-block: 0.390rem;
    margin-block-end: 1rem;
    color: rgba(255, 255, 255, .75);
}
.menu li a{
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 1.0);
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;  
}
.bg-dark{
    background-color: #111111 !important;
}
.bootscore-footer-columns{
    padding-top: 2rem;
    padding-bottom: 1rem;;
}
.footer-columns{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.footer{
    padding: 2rem 0;
    
}
.section-footer{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 2.25rem 0 2.25rem;
}
.newsletter p{
    font-size: 0.875rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
    margin: 0;
    width: 100%;
}
.subscribe-form .wpcf7-submit{
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
}
:focus-visible{
    outline: none;
}
.subscribe-form .form-control-lg, .subscribe-form .wpcf7-submit, .subscribe-form .wpcf7-form-control.wpcf7-email{
    border-radius: 0;
    font-size: 0.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
    border-color: #ebebeb;
    font-weight: 700;
    font-family: Helvetica, sans-serif;
    padding: 0.778rem 1.264rem;
    border: 0;
    background-color: #f8f9fa;
}
.subscribe-form .wpcf7-form-control.wpcf7-email{
    width: 100%;
}
.subscribe-form .wpcf7-list-item{
    margin: 0;
}
.subscribe-form button:hover, .subscribe-form .wpcf7-submit:hover{
    background-color: #ebebeb;
    color: #151515;
}
.subscribe-form .form-check-label{
    font-size: 0.75rem;
}
.subscribe-form .form-check-input[type="checkbox"]{
    border-radius: 0;
    background-color: transparent;
    border: solid 1px #ebebeb;
}
.subscribe-form .wpcf7 form .wpcf7-response-output {
    margin: 1em 0 0;
    padding: 0.2em 1em;
    font-size: 0.625rem;
}

.bootscore-footer-info{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bootscore-copyright{
    letter-spacing: .048rem;
    font-size: 0.75rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
}
.bootscore-footer-info .container-fluid{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.footer__social {
    display: flex;
    flex-flow: row wrap;
    gap: 1rem;
    align-items: center;
}
.list-unstyled {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer__social svg {
    width: 1.5rem;
    height: 1.5rem;
}
.footer__social svg path{
    color: #fff;
}
.footer__payment .list-payment {
    font-size: 0;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    gap: 0.5rem;
}
.footer__payment .list-payment__item>svg {
    width: 1.75rem;
}
.footer__payment .list-payment__item>svg.icon {
    fill: currentColor;
     -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.hero-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    height: calc(100vh - 150px);
    background: url(assets/img/MELATONIN_BANNER.webp) no-repeat;
    background-size: cover;
    border-radius: 2.9375rem;
}

.hero-banner-caption{
    position: absolute;
    z-index: 2;
    top: 0;
}
.hero-banner-caption::before{
    content: "";
    position: absolute;
    background-color: rgb(21, 21, 21, .5);
    width: 100%;height: 100%;

}

.hero-banner h1{
	line-height:1.4;
}

.media img, .media>iframe, .media video {
    object-fit: cover;
    object-position: center center;
    transition: opacity var(--duration-extra-long), visibility var(--duration-extra-long);
}


.section-dual-tiles-media img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.row-sm{
    margin-right: -8px;
    margin-left: -8px;
}
.max-w-narrower{
    max-width: 788px;
}

h2.accordion-header {
    margin-bottom: 0 !important;
}

/* Post CSS */

.go-back-link{
    letter-spacing: .4px;
    text-transform: uppercase;
    font-size: 0.625rem;
}
.product-title{
    font-size: 2.25rem;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.price-regular{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif; 
}
.product-price-info {
    color: rgba(21, 21, 21, 0.7);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: auto;
}
.product-sku span {
    display: inline-block;
    padding: 0.5rem;
    background-color: rgba(21, 21, 21, 0.05);
    color: #151515;
    line-height: 1.25;
    letter-spacing: 2px;
}
.product-text{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    line-height: 1.50;
    letter-spacing: .04rem;
}
.product-text svg{
    width: 0.75rem;
    height: 0.75rem;
}
.entry-content p{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6{
    margin-bottom: 1rem;
}

.section-dual-tiles-block{
    position: relative;
}
.section-dual-tiles-media{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.section-dual-tiles-media video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.richtext{
    line-height: 1.6;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}

/* Categories Page CSS */

.category-page-header{
    background: url('assets/img/COLLECTIONS.webp') no-repeat center center;
    background-size: cover;
    height: 33svh;
}
.category-page-header > div{
    padding-top: 5.5rem;
}
.archive-description{
    margin-top: 1.125rem;
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
}
.seo-content{
    padding: 4rem 2.25rem;
}

.max-w-lg, .max-w-narrow {
    max-width: 1328px;
}
.article-hero{
    max-width: 1120px;
}
.article-head{
    max-width: 788px;
}
.media>*, .media img{
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    z-index: 1;
    position: relative;
}
.article-card__date{
    font-family: Helvetica, 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    letter-spacing: 2px;
}
.media {
    display: block;
    position: relative;
    overflow: hidden;
}
.card-article__media {
    transition: opacity 300ms;
    aspect-ratio: 1 / 1; /* or 3 / 4 */
}
.article__media {
    aspect-ratio: 16 / 9;
}
.article__media_blog {
    aspect-ratio: 3 / 4;
}
.article__content h3{
    font-size: 2.25rem; /* 36px; */
    line-height: 1.25;
    text-transform: uppercase;
}
.article__content strong{
    font-weight: 700;
}

.social-sharing {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65706e;
}
.social-sharing a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.search-hero__title-small{
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
}

.page-item{
     margin-left:1rem;
}
.page-item:first-child{
    margin: 0;
}
.page-link{
    border: 0;
    border-bottom: solid 1px rgb(21, 21, 21, .2);
    color: #151515;
    border-radius: 0;
    width: 1.5rem;
    height: 1.75rem;
    padding: 0.1875rem;
   
    text-align: center;
    font-size: 0.875rem;
}
.page-link:hover, .page-link:focus{
    background-color: transparent;
    color: #151515;
    border-color: #151515;
    box-shadow: none;
}
.page-item:last-child .page-link{
    border-radius: 0;
}
.page-item:first-child .page-link{
    border-radius: 0;
}
.active>.page-link{
    background-color: transparent;
    border: 0;
    border-bottom: solid 1px #151515;
    color: #151515;
}
.entry-content-page{
    color: rgba(21, 21, 21, 0.7);
}
.page-sidebar-none{
    padding: 0 2.25rem;
}

/* Top Search Bar CSS */

.clear-page-search { background-color: #ebebeb;font-weight: 500;width:fit-content;height:1.5rem;
    letter-spacing: 1.4px;font-size: 0.625rem;border: 0;padding:0 0.75rem;}
.search-form-button{ position:absolute;right:0;top:2px}


/* Layout */
.post-gallery{
  display:grid;
  grid-template-columns:135px 1fr;
  gap:16px;
  align-items:start;
  overflow-y: auto;
  position: -webkit-sticky;
  position: sticky;
}
.post-thumbnail{
position: -webkit-sticky;
  position: sticky;
}

/* Thumbs */
.pg-thumbs{ max-height: calc(100% - 80px); overflow:auto; }
.pg-thumb{
  display:block; padding:0; border:0; background:transparent;
  opacity:.6; cursor:pointer; overflow:hidden; border: solid 2px transparent;
    margin-bottom: 16px;
    scrollbar-width: none; /* Hides the scrollbar in Firefox */
}

.pg-thumbs {
  overflow-y: auto;   /* still scrollable */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.pg-thumbs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.pg-thumb::-webkit-scrollbar {
  display: none;
}        
.pg-thumb img{ width:100%; height:115px; object-fit:cover; display:block; }
.pg-thumb.is-active{ opacity:1;border-color: #151515; }

/* Main image + arrows */
.post-gallery__main{ position:relative; width:100%;overflow:hidden; background:#fafafa; }
.pg-main{
  width:100%; height:auto; object-fit:contain; display:block;
  transition: transform .4s ease, opacity .4s ease;
  
}
/* slide states */
.pg-main.slide-out-left  { transform:translateX(-30%); opacity:0; }
.pg-main.slide-out-right { transform:translateX(30%);  opacity:0; }
.pg-main.slide-in-left   { transform:translateX(-30%); opacity:0; }
.pg-main.slide-in-right  { transform:translateX(30%);  opacity:0; }
.pg-main.active          { transform:translateX(0);     opacity:1; }

.pg-nav{
  position:absolute;top:50%; transform:translateY(-50%);
  background:#fff;width:40px; height:40px; border:0; color:#333;border: solid 1px #ebebeb;
  display:flex; align-items:center; justify-content:center;cursor:pointer;
}
.pg-prev{ left:24px; } .pg-next{ right:24px; }

.form-control-product-search{
    font-size: 1.3125rem;
}

.acf-gallery-wrapper {
    flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.thumb-column {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 30px;
}

.thumb-column img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumb-column img.active,
.thumb-column img:hover {
  border-color: #151515;
}

.main-image-area {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image-area img {
  max-width: 100%;
  /* height: 200px !important; */
  transition: opacity 0.3s ease;
}

.navigate {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  background:#fff;
  width:40px; 
  height:40px; 
  color:#333;
  border: solid 1px #ebebeb;
  z-index:99;
}

.navigate.prev { left: 24px;}
.navigate.next { right: 24px;}

.embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
        margin: 0 20px 20px 20px;
    } 

    .embed-container iframe,
    .embed-container object,
    .embed-container embed { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }



/* main play button (shows only for video) */
.play-btn {
  position: absolute; right: 12px; bottom: 12px;
  width: 48px; height: 48px; border: 0;
  border-radius: 50%; background: rgba(0,0,0,.6);
  display: grid; place-items: center; cursor: pointer;
}
.play-btn .play-triangle {
  width: 0; height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.play-btn[hidden] { display: none !important; }

.play-btn{
  position:absolute; right:12px; bottom:12px;
  width:48px; height:48px; border:0; border-radius:50%;
  background:rgba(0,0,0,.6); display:grid; place-items:center; cursor:pointer;
}
.play-btn .play-triangle{
  width:0;height:0;border-left:16px solid #fff;
  border-top:10px solid transparent;border-bottom:10px solid transparent;
}
.play-btn[hidden]{display:none!important;}
.gtranslate_wrapper select{
    font-size: 0.875rem;
    max-width: 120px;
}
.gtranslate_wrapper select:focus{
    outline: none;
    box-shadow: none;
}

.scan-icon, .arrow-icon {
    transition: opacity 0.3s ease;
}

.arrow-icon {
    opacity: 0;
}

.arrow-icon.show {
    opacity: 1;
}
#eanSearchBtn{
    width: 64px;
    min-width: 64px;
}
@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

input#eanSearchInput.invalid {
    border: 2px solid #dc3545;
    animation: shake 0.3s ease;
}

.details-column h6{
	font-weight:600;
}

/* Responsive */
@media (max-width:991.98px){
  .post-gallery{ grid-template-columns:1fr; }
  .pg-thumbs{ height:auto; display:flex; gap:8px; flex-wrap:wrap; max-height: inherit;}
  .pg-thumb img{ height:80px; }
}

/* Defines the animation keyframes */
@keyframes marquee-animation {
  0% {
    /* Starts the text completely off-screen to the right */
    transform: translateX(0); 
  }
  100% {
    /* Moves the text completely off-screen to the left */
    transform: translateX(-100%); 
  }
}

/* Responsive CSS Start */
@media (min-width: 768px) {
  .slider-wrap .slider-counter {
    font-size: 0.75;
    padding: 7px 12px;
  }
  #sidebar.fixed {
        position: sticky;
        top: 0;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
        margin-right:0.857rem;
        margin-left: 0.857rem;
    }
      .social-sharing {
        position: absolute;
        right: -60px;
        top: 24px;
        z-index: 2;
        width: fit-content;
        flex-direction: column;
        width: 2rem;
    }
    .social-sharing.sticky {
        position: fixed;
        top: 100px; 
    }

}

@media screen and (min-width: 768px) {
    .article__content p, .article__content ul, .article__content ol, .article__content blockquote {
        margin-bottom: 3rem;
    }
    .shop-the-look__item--slider {
        width: 60%;
        margin: 0 auto;
    }
    .product-grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
    .announcement_bar__marquee .marquee__content {
        --marquee-duration: 150s;
    }
    .section-dual-tiles-block-media {
        aspect-ratio:1/1;
    }
    .hero-banner-full .hero-media video{
            width: 100%;
            height: 100%;
        
    }
    .hero-content{
        position: relative;
        z-index: 2;
    }
}


@media (max-width: 1199.98px) {
    .thumb-column {
        overflow-y: auto;
        margin-bottom: 30px;
    }
    .thumb-column img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 991.98px) {
    .bundles-nav.nav-pills .nav-link {
        font-size: 2.9375rem;
    }
    .social-media-highlights__content-card{
        padding: 0.5rem;
    }
    .hero-content {
        padding: 4rem 0rem;
    }
    .hero-heading{
        font-size: 2.9375rem;
        line-height: 1;
    }
    .category-page-header{
        background-position: 80% 100%;
    }
    .hero-banner h1{
        font-size: 3rem;
		padding: 0 15px;
        font-weight: 500 !important;
        line-height: 1.2;
    }
}
@media (max-width: 767.98px) {
    .header{
        padding: 0 1rem;
    }
    .offcanvas-header{
        border-bottom:solid 2px rgba(21, 21, 21, 0.1);
    }
    .offcanvas.offcanvas-end{
        border: 0;
    }
    .btn-close:focus{
        box-shadow: none;
    }
    .site-header .navbar .nav-link{
        font-size: 1.3125rem;
        text-transform: capitalize;
        font-weight: 400;
        border-top: solid 1px rgba(21, 21, 21, 0.1);
        letter-spacing: -0.0525rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        color: #151515 !important;
    }
    .site-header .navbar li:first-child .nav-link{
        border: 0;
    }
    .section {
        padding: 48px 16px;
    }
    .section-heading, .dual-tiles-content .h3 {
        font-size: 1.6875rem;
    }
    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
        letter-spacing: -0.015rem;
    }
    h2, .h2 {
        font-size: 2.25rem;
    }
    h3, .h3 {
        font-size: 1.6875rem;
        line-height: 1;
    }
    h4, .h4 {
        font-size: 1.3125rem;
        line-height: 1;
    }
    /* h6, .h6 {
    font-size: 0.75rem;
    line-height: 1.20;
    } */
    .hero-banner{
        border-radius: 1rem;
    }
    .form-control-product-search {
        font-size: 1rem;
    }
    .product-search-form{
        padding: 0 1rem;
    }
    .section-height-half--mobile {
        height: 50svh;
    }
    .bundles-nav.nav-pills .nav-link {
        font-size: 1.6875rem;
        letter-spacing: -0.02em;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .featured-bundle .slider{
        padding-left: 16px;
    }
    .compare-product .container {
        padding: 0;
    }
    .shop-the-look .section-heading{
        font-size: 0.625rem;
    letter-spacing: 0.125rem;
    margin-top: -75px;
    background-color: #fff;
    display: block;
    text-align: center;
    padding: 1rem 1.5rem;
    margin-left: 45px;
    margin-right: 45px;
    line-height: 1;
    }
  .dual-tiles-content{
    padding: 2.25rem;
    row-gap: 1.5rem;
  }
  .testimonial__body{
    padding: 2rem 1.5rem;
    min-height: 13.425rem;
  }
  .bootscore-footer-info .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .trust-indicators-section{
    display: block;
  }
  .trust-indicators-section .trust-indicators-slide{
    margin-right: 0;
    margin-bottom: 1rem;
  }

  /* About Us Page CSS */
  .section-dual-tiles-media{
    position: inherit;
  }
  .section-dual-tiles .section-dual-tiles-block{
    padding: 2.25rem !important;
  }

  /* Category Page CSS */
  .archive-description{
    display: none;
  }
  .article__content h3, h3 em{
    font-size: 1.3125rem;
  }

  /* Single Post Page CSS */
  
    .dual-tiles-block-content{
        padding: 2.25rem !important;
    }
    .modal-search .modal-dialog{
        margin: 0;
    }
    .modal-search .modal-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }
    .modal-search .modal-body {
        padding: 0 1rem;
    }
    .modal-search .container-fluid{
        padding: 0;
    }
    .live-search__input {
        font-size: 1.3125rem;
        padding-left: 0rem;
    }
    .search-hero__title{
        font-size: 2.9375rem;
    }
    .page-sidebar-none{
        padding: 0 1rem;
    }
    
}
