div:empty{
  display:block !important;
}

.sports-guide-container{
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  margin:0 auto 0 !important;
}

/* Featured */

.sports-guide-featured-container{
  background-color: #025b74;
  color:white;
  margin: 0 -50px;
}       

.sports-guide-featured-content{
  max-width: 800px;
  margin: auto;
  padding: 5rem 0;
}   

/*Cards*/

.sports-guide-cards-container{
  display:flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 5rem;
}

.sports-guide-card{
  display: flex;
  width: 50%;
  flex-direction: column;
  gap: 8px;
}

.sports-guide-card h3{
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 14px;
  font-weight:300;
  color:black;
}

.sports-guide-card h5{
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 2.4rem;
}

.sports-guide-card p{
  font-size: 1.8rem;
  line-height: 140%;
  font-family: 'RidgewaySans';
  font-weight: 300;
  color: black;
  margin-top: 0px;
  margin-bottom: 14px;
}

.sports-guide-card a{
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Text Block */

.sports-guide-text-block{
  display:flex;
  margin:5rem 0;
  gap: 2rem;
}   

.sports-guide-text-list{
  display:flex; 
  flex-direction:column; 
  width:50%;
}

.sports-guide-text-block h2, 
.sports-guide-text-block h3, 
.sports-guide-text-block p{
  width: 50%;
}   

.sports-guide-text-block h2{
  font-size: 3.5rem;
}  

.sports-guide-text-block h3{
  font-size: 2.5rem;
}  

.sports-guide-text-block p{
  font-size: 1.8rem;
  line-height: 140%;
  font-family: 'RidgewaySans';
  font-weight: 300;
  color: black;
  margin:0;
}     
    
.sports-guide-text-block p a{
  text-decoration: underline !important;
}   

.sports-guide-text-block li{
  font-size: 1.6rem;
  line-height: 140%;
  color: black;
  margin-bottom: 2.4rem;
  font-family: var(--default-font-regular);
  font-weight: 300;
  list-style-position: inside;
  margin-top: 14px;
  margin-left:24px;
} 

/* Banners Fullscreen */

.sports-guide-fullscreen-banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  margin-right:-50px;
  margin-left:-50px;
}

.sports-guide-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.sports-guide-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.sports-guide-banner-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 6vw;
  color: #fff;
}

.sports-guide-banner-content h2 {
  margin: 0 0 32px;
  font-size: 5rem;
  line-height: normal;
  color:white;
  text-align: center;
}

.sports-guide-banner-content p {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.4;
  color:white;
}

.sports-guide-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sports-guide-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  background: #fff;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  border-radius:99px;
  border:none;
}

/* Caption Banners */

.sports-guide-banner-caption{
  font-size: 1.5rem !important;
  font-weight: 300 !important;
  color: #666  !important;
  line-height: 1.5 !important;
  letter-spacing: 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 4rem !important;
  max-width: 500px;
}

/* Colecciones y Productos */

.sports-guide-featured-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.sports-guide-collection-header{
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
}

.sports-guide-collection-title{
  width: fit-content;
  white-space: nowrap;
  font-size:2rem;
  margin-right: 24px;
}

.sports-guide-collection-link{
  width: fit-content;
  white-space: nowrap;
}

.sports-guide-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sports-guide-product-image {
  aspect-ratio: 9 / 10;
  overflow: hidden;
  padding: 28px;
  background: #f5f5f5;
  border-radius: 8px;
}

.sports-guide-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sports-guide-product-info p, .sports-guide-product-info h3{
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
}

/* Youtube Pop-ups */

.sports-guide-youtube-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.sports-guide-youtube-popup.is-active {
  display: block;
}

.sports-guide-youtube-popup-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.sports-guide-youtube-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  background: #000;
}

.sports-guide-youtube-popup-content iframe {
  width: 100%;
  height: 100%;
}

.sports-guide-youtube-popup-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}



@media (max-width:990px){

  .sports-guide-container{
    margin:5rem 16px 0;
  }

  .sports-guide-featured-container{
  margin: 0 -16px;
}   

  .sports-guide-featured-content{
    padding: 5rem 16px;
  }

  .sports-guide-text-block{
    flex-direction: column;
    gap: 8px;
  }   

  .sports-guide-text-list{
    width:100%;
  }

  .sports-guide-text-block h2, .sports-guide-text-block h3, .sports-guide-text-block p{
    width: 100%;
  }  

  .sports-guide-fullscreen-banner {
  margin-right:-16px;
  margin-left:-16px;
  min-height: 70vh;
}

  .sports-guide-banner-content {
    padding: 64px 24px;
    min-height: 70vh;
  }

  .sports-guide-banner-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .sports-guide-featured-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-guide-collection-title{
    font-size:1.5rem;
    margin-bottom: 0;
  }

  .sports-guide-cards-container{
      flex-direction:column;
  }
      .sports-guide-card{
      width: 100%;
  }

} 




$black: black;
$white: white;
$orange: #fa4616;
$grislight: #f5f5f5;
$grisdark: #999999;

.white{color: $white!important;}
.black{color: $black!important;}
.orange{color: $orange!important;}
.grisligth{color: $grislight!important;}
.bg-dark {
    background-color: $black!important;
}

.justify-content-center {
    justify-content: center !important;
}

.row {
    flex-wrap: wrap;
    margin-right: 0 !important;
    margin-left: 0px !important;
    padding: 16px !important;
}

@media screen and (min-width: 990px) {
    .page-width--narrow {
        max-width: none !important;
    }

    .postwwh {
        margin-left: -5rem !important;
        margin-right: -5rem !important;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
}

.w-100{
  width:100% !important;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
}

.copernicus-book{
  font-family:copernicus;
}

@media(max-width:  768px){
  .modal .modal-body{
    height: auto!important;
    padding: 3rem 0!important;
  }
}

.postwwh{
  //padding-top: 14rem;
  padding-bottom: 2rem;

  svg{
    width: 40px;
    height: 40px;
  }

  .contentwwh{
    ul li, ol li{
      font-size: 16px;
      line-height: 1.8;

      @media(min-width: 768px){
        font-size: 24px;
        line-height: 1.8;
      }
    }

    figure{
      img{
        width: 100%;
      }
    }
  }

  p{
      font-size: 14px;
      line-height: 24px;
      font-family: var(--default-font-regular);
      font-weight: 300;

    @media(min-width: 768px){
      font-size: 18px;
      line-height: 1.55;
      letter-spacing: -.4px;
      margin-bottom: 2.4rem;
    }
  }

  strong{
      font-weight: 500;
  }

  .contentwwh{
    margin: 5.6rem auto 0;

    @media(min-width: 768px){
      width: 55%;
      margin-top: 5.6rem;
    }

    @media(min-width: 1600px){
      width: 45%;
    }

    figure{
      margin: 6% 0;

      img{
        border-radius: 10px;
      }

      figcaption{
        width: 100%!important;
      }
    }

    blockquote{
      display:block;
      font-size: 18px;
      line-height: 24px;
      font-style: normal;
      padding: 0;
      border-left: none;
      margin: 8% auto;

      @media (min-width: 768px){
        font-size: 24px;
        line-height: 24px;
      }
    }

    &.black{
      background: black;
      border-radius: 10px;
      padding: 5%;
      margin-top: 6%;

      p{
        color: white;

        strong{
          font-size: 3rem;
          line-height: 34px;
        }

        a{
          background: white;
          padding: 10px 40px;
          font-size: 18px;
          border-radius: 20px;
          color: black;
          font-weight: 700;
        }
      }
    }

    aside{
      &.destacado{
        @media(min-width: 768px){
          position: absolute;
          width: 35%;
          right: -36%;
          top: 0;
          background: #f5f5f5;
          padding: 1.6rem;
          border-radius: 10px;

          p,a{
            font-size: .9rem;
          }
        }

        &.video{
          @media(min-width: 768px){
            background: transparent;
            padding: 0;
            width: 25%;
            right: -27%;

            .btn-play{

              top: 33%;
              width: 50px;
              height: 50px;
              padding: 10px;
              position: absolute;
              transform: translate(-50%, -50%);
              left: 50%;
              line-height: 20px;

              svg{
                width: 20px;
                height: 20px;
                margin-left: 3px;
              }

            }

          }
        }
      }
    }

    &.end{
      border-top: 1px solid black;

      a{
        text-decoration: underline;
      }
    }
  }

  .hpost-images{
    margin-top: 8%;
    margin-bottom: 8%; 
    width: 90%;
    margin-left: auto;
    margin-right: auto;

    @media (min-width: 768px){
      padding: 0 5rem;
      width: 100%;
    }

    figure{
      margin: 0;

      .video-wrapper{
        margin-bottom: 1%;
      }
    }

    img{
      border-radius: 10px;
      width: 100%;
    }
  }

  figcaption{
    width: 100%;

    @media(min-width: 768px){
      width: 58%;
    }

    p{
      font-size: 14px;
      font-family: var(--default-font-light);
      color: #666;
      line-height: 1.5;
      letter-spacing: 0;
      margin-top: 1rem;
      margin-bottom: 0;
    }
  }

  #shareww{
    width: 100%;
    text-align: center;
    margin-top: 8%;

    .at-share-btn{
      border: 2px solid black;
      border-radius: 50%!important;
      margin: 0 1%;
    }
  }

  
}

.autor-historias{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 4%;
    margin-top: 4%;

    @media(min-width: 768px){
      width: 50%;
    }

    img{
      max-width: 150px !important;
      border-radius: 50%  !important;
    }

    p{
      font-size: 16px;
      line-height: 24px;
      font-weight: 300;
    }

    .contenido-historias{
      width: 100%;
      margin: auto;
      display: block;
      @media(min-width: 768px){
        width: 54%;
      }
    }
  }

/* Slide blog Cleanest line */

.slidetcl{
  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    background-color: white;
    opacity: 0!important;

    &.swiper-slide-active{
      opacity: 1!important;
    }

    figure{
        width: 100%;
        height: 100vh;
        background: black;
        border-radius: 10px;
        figcaption{
          margin-top: 1rem;
        }
      }
    p{
        font-size: 1.4rem;
        line-height: 1.55;
        font-family: var(--default-font-light),serif;
        color: #666;
        width: 60%;
        margin-top: 20px;
      }
  }

  .swiper-slide img {
    display: block;
      width: auto;
      height: 100%;
      margin: auto;
      border-radius: 0;
  }

  .swiper-pagination{
    bottom: auto;
    top: 1rem;
    right: 1rem;
    left: auto;
    width: auto;
    z-index: 999;
    background: rgba(255,255,255,.7);
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: auto;
    left: -4rem;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.38, 0.41, 0.27, 1), transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95), -webkit-transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95); 

    figure {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 3.5rem;
      width: 3.5rem;
      background-color: #fff;
      border-radius: 50%;
      box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.2);

      svg {
        width: 18px;
        height: 22px; 
      }
    }

    &:after {
      content: ''; 
    }
  }


  .swiper-button-prev {
      left: 1rem; 
  }
  
  .swiper-button-prev svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); 
  }
  .swiper-button-next {
    right: 1rem;
    left: auto; 
  }
  
  .swiper-button-disabled {
    opacity: 0; 
  }
}
.postwwh{
  aside{
    position: relative;
    width: 100%;    
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 10px;
  }

  aside p{
    font-size: .9rem!important;
  }

  @media(min-width:  768px){
    aside{
      position: absolute;
      right: -32%;
      width: 30%;
      top: 0;
    }
  }
}

#content-films{
    max-width: 800px;
    margin: auto;
    padding: 4rem 0;
}

@media (min-width:990px){
  #content-films{
    padding: 8rem 0;
} 
}

/* Destacado en artículo */

#templatepage .page-film-body__main {
    max-width: 1180px;
    margin: 0 auto;
  }

  #templatepage .page-film-body__main .texto-destacado aside{
    border: 4px solid white;
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
  }

  #templatepage .page-film-body__main .texto-destacado aside h3{
    font-size: 1.2rem;
  }

  #templatepage .page-film-body__main .texto-destacado aside p,
  #templatepage .page-film-body__main .texto-destacado aside a{
    font-size: .9rem;
    line-height: 1.2;
  }

  #templatepage .page-film-body__main .texto-destacado aside a{
    padding: .4rem 1.4rem;
  }

  @media(min-width:  768px){
    #templatepage .page-film-body__main .texto-destacado{
      margin-left: 5%;
      flex: 0 0 20%;
      max-width: 20%;
    }
  }





.template-index .shopify-section.medium-carousel-container, .template-product .shopify-section.medium-carousel-container {
  opacity: 1;
}

.product-single__photo.productSlider .slick-slide {
  opacity: 1 !important;
}

img#WornWear {
  max-width: 46px;
  @media(max-width:  768px){
    max-width: 35px;
  }
}

.promo-card {
  height: auto;
}

.template-password .footer-password{
      position: relative!important;
}

.template-password .main-wrapper{
  padding-top: 200px!important;
}

.footer-icons{
  .footmessage{
    p.h3{
      font-family: var(--default-font-regular);
      font-size: 2rem;
      line-height: 1;

      @media(min-width: 992px){
        font-size: 4.6rem;
      }
    }

    a{
        color: white!important;
    }
  }
}

a.btn.btn-light.transparent{
  background: transparent;
  color: white;
  padding: 7px 27px 7px 27px;
}

.carousel-banner .btn{
  border-width: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1164px) {
    .header-top .col01 a{
        font-size: .6rem;
    }
}

@media only screen and (min-width: 1165px) and (max-width: 1362px) {
    .header-top .col01 a{
        font-size: .6rem;
    }
}
