/*Html*/
    html{
        font-size: 62.5%;
    }

/*Body*/
    body {
        min-height: 100%;
        width: 100%;
        overflow-y: hidden;
        position: relative;
        max-width: 100%;
        padding-right: 0px!important;
    }

    body.scrollbar-visible {
        overflow-y: scroll;
    }

/*Modal*/
    .modal {
        padding-right: 0px!important
    }

    @media (min-height: 642px)  {
        .modal-dialog {
            height: 95vh;
        }
      }

    @media (min-width: 1200px) {
        .modal-dialog {
            max-width: 580px;
        }
    }

    .modal.show .modal-dialog{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modal.left .modal-dialog,
    .modal.right .modal-dialog {
        position: fixed;
        margin: auto;
        height: 100%;
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
    }

    @media(min-width: 768px){
        .modal.left .modal-dialog,
        .modal.right .modal-dialog {
            width: 490px;
        }
    }

    .modal-content {
        border-radius: 0;
        border: none;
    }

    .modal.left .modal-content,
    .modal.right .modal-content {
        height: 100%;
        overflow-y: auto;
    }

    .modal.left .modal-body,
    .modal.right .modal-body {
        padding: 15px 15px 0px;
    }

    .modal.right.fade .modal-dialog {
        right: 0;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
        -o-transition: opacity 0.3s linear, right 0.3s ease-out;
        transition: opacity 0.3s linear, right 0.3s ease-out;
    }

    .modal.right.fade.in .modal-dialog {
        right: 0;
        width: 531px;
    }

    .modal-header {
        border-bottom-color: #EEEEEE;
        background-color: #FAFAFA;
    }


/* Prevent Bootstrap 4.x iOS issue where user*/
/*scrolls the body behind the modal when body height > 100vh*/
    body.modal-open {
        position: fixed;
        top:    0;
        right:  0;
        bottom: 0;
        left:   0;
    }

/*Container*/
    .container {max-width: 1380px;}

    .template-container {
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
        width: 100%;
        margin-top: 50px;
    }

    @media (min-width: 992px) {
        .template-container {
            max-width: calc(90vw - 200px);
            margin-top: 70px;
            min-height: calc(100vh - 470px);
        }   
    }

    @media (min-width: 768px) and (max-width:992px) {
        .template-container {
            max-width: 720px;
        }
    }

    @media (min-width: 576px) and (max-width: 767px) {
        .template-container {
            max-width: 540px;
        }
    }

/*Nav Pills*/
    .nav-pills .nav-link.active,
    .show>.nav-pills .nav-link {
        background-color: black;
    }


/*Text weight*/
    .font-thin {
        font-weight: 100;
    }

    .font-extra-light {
        font-weight: 200;
    }

    .font-light {
        font-weight: 300;
    }

    .font-regular {
        font-weight: 400;
    }

    .font-medium {
        font-weight: 500;
    }

    .font-semi-bold {
        font-weight: 600;
    }

    .font-bold {
        font-weight: 700;
    }

    .font-extra-bold {
        font-weight: 800;
    }

    .font-black {
        font-weight: 900;
    }
/*Text colors*/
    .color-white {
        color: white;
    }
    .color-black {
        color: black;
    }
    .color-4{
        color: #666 ;
    }
    .color-5{
        color: #999 ;
    }
    .color-6{
        color: #222 ;
    }
    .color-7{
        color: #888 ;
    }
    .color-8{
        color: #555 ;
    }
    .color-9{
        color: #1d1d1d ;
    }
    .color-10{
        color: #f2f2f2 ;
    }
    .color-11{
        color: #e6e6e6 ;
    }
    .shopifyDescription{
        color: #222 ;
    }
    .colorAltView{
        color: #0a0a0a!important;
    }
    .colorInvertTransparent{
        filter: contrast(0);
    }
    .top-nav-collapse .colorInvertTransparent{
        filter: none;
    }
    .profileTransparent{
        color: #0a0a0a!important;
      }

/*Border colors*/
    .border-white {
        border: 1px solid;
        border-color: white;
    }
    .border-black {
        border: 1px solid;
        border-color: black;
    }
    .border-color-4{
        border: 1px solid;
        border-color: #666 ;
    }
    .border-color-5{
        border: 1px solid;
        border-color: #999 ;
    }
    .border-color-6{
        border: 1px solid;
        border-color: #222 ;
    }
    .border-color-7{
        border: 1px solid;
        border-color: #888 ;
    }
    .border-color-8{
        border: 1px solid;
        border-color: #555 ;
    }
    .border-color-9{
        border: 1px solid;
        border-color: #1d1d1d ;
    }
    .border-color-10{
        border: 1px solid;
        border-color: #f2f2f2 ;
    }
    .border-color-11{
        border: 1px solid;
        border-color: #e6e6e6 ;
    }

/*Position*/
    .right-0{
        right: 0;
    }

    .left-0{
        left: 0;
    }

/*Background colors*/
    .background-white {
        background-color: white;
    }

    @media(min-width:768px){
        .bg-md-white{
            background-color: white;
        }
    }

    .background-black {
        background-color: black;
    }
    .background-color-4{
        background-color: #666 ;
    }
    .background-color-5{
        background-color: #999 ;
    }
    .background-color-6{
        background-color: #222 ;
    }
    .background-color-7{
        background-color: #888 ;
    }
    .background-color-8{
        background-color: #555 ;
    }
    .background-color-9{
        background-color: #1d1d1d ;
    }
    .background-color-10{
        background-color: #f2f2f2 ;
    }
    .background-color-11{
        background-color: #e6e6e6 ;
    }
    .homeManuMobileBackground {
        background-color: rgba(0, 0, 0, 0.258824);
    }
    .transparentBackground{
        position:fixed!important;
        box-shadow: 0px 2px 5px rgba(73, 73, 73,0)!important;
    }
    .backgroundAltView{
        background-color: #0a0a0a!important;
        color: white;
    }
      

/*WA Icon position*/
    .wa-icon { 
        position: fixed; 
        bottom: 20px; 
        right: 20px; 
        width: 50px; 
        height: 50px; 
        box-shadow: 2px 2px 6px; 
        border-radius: 50%; 
        cursor: pointer; 
    }

/*Menu*/
    .mobileMenuHeight {
        font-size: 18px;
    }

    @media (max-width:991.98px) {
        .mobileMenuHeight {
            min-height: calc(100vh - 76px);
            max-height: calc(100vh - 76px);
            font-size: 14px;
            width: 100%;
            overflow: auto;
        }
    }

    .top-nav-collapse {
        position: fixed!important;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075);
    }

    .top-nav-collapse.transparentBackground{
        background-color:white;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, .075)!important;
    }

    .top-nav-collapse .colorMenuTransparent{
    color: #0a0a0a!important;
    }

    .top-nav-collapse .backgroundMenuTransparent{
        background-color: #0a0a0a!important;
        color: white;
    }

    .top-nav-collapse .bannerTransparent{
        display: none!important;
    }

/*Header dropdown menu*/
    .dropdown-menu-right {
        right: 0;
        left: auto;
    }

    .w-one-item{
	    width: 22rem;
    }

    .w-two-item{
	    width: 44rem;
    }

    .w-three-item{
	    width: 66rem;
    }

    .show{
        display: block!important;
    }
    

/*Buttons*/
    .hov-btn{
        opacity: 1;
        transition: opacity .9s ease-out;
        -moz-transition: opacity .9s ease-out;
        -webkit-transition: opacity .9s ease-out;
        -o-transition: opacity .9s ease-out;
    }

    .hov-btn:hover {
        opacity: .8;
    }

    .hov-btn1:hover {
        border-color: #222;
        background-color: #222;
        color: rgb(196, 196, 196);
    }

    .hov-btn1:hover i {
        color: #fff;
    }

    .hov-btn2{
        transition: 1s;
    }

    .hov-btn2:hover {
        border-color: none;
        background-color: transparent;
        opacity: .7;
        transition: .2s;
    }

    .hov1:hover {
        color: #333;
        border-color: #797979;
    }

    .solidButton:hover {
        opacity: .8;
    }

/*Anchors*/
    a:hover {
        text-decoration: none;
    }

    .page-item.active .page-link {
        background-color: transparent;
        border-color: transparent;
        color: #222;
        font-weight: 800;
    }
    
    
    .page-link{
        color: #222;
        font-weight: 600;
    }
    
    .page-link:hover{
        color: #222;
        background-color: #f2f2f2;
    }

/*Container*/ 
    .p-container{
        padding: 3rem 0rem!important;
    }

    @media(min-width:768px)and(max-width:1199.98px){
        .p-container{
            padding: 3rem!important; 
        }
    }

    @media(min-width:1200px){
        .p-container{
            padding: 3rem 6rem!important; 
        }
    }

/*Images*/
    .responsiveSquare:after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

/*Shopify import*/
    .shopifyDescription img{
        width: 100%;
        height: auto;
    }

    .shopifyDescription p , .shopifyDescription table{
        width: 100%!important;
    }

/*Background image*/
    .backgroundImage {
        background-repeat: no-repeat;
        background-size: cover;
    }

    .backgroundCenter {
        background-position: center;
    }

/*Double check**/
    .viewContentHeight {
        min-height: calc(100vh - 423px);
    }

    .centerAbsolute {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .facebookButton {
        a {
            color: white;
            margin-left: 10px;
        }
    }

    .allProductListImage {
        height: 165px;
        line-height: 165px;
        @media (min-width:576px)and(max-width:991.98px){
            height: 225px;
            line-height: 225px;
        }
        @media (min-width:992px)and(max-width:1200.98px) {
                height: 155px;
                line-height: 155px;
        }
    
        @media (min-width:1201px) {
            height: 245px;
            line-height: 245px;
        }
    }

    .flex-direction-row{
        flex-direction: row!important;
    }

    .div_contenedor {
        position: relative;
        padding-bottom: 56.25%; /*panorámico*/
        padding-top: 25px;
        height: 0;
    }

    .div_contenedor iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .input1 {
        background-color: transparent;
        width: 100%;
    }

    @keyframes fade-out{
        0% {
            opacity: 1;
            visibility: visible;
          }
          50%{
            opacity: 1;
          }
          99%{
            visibility: visible;
        }
          100% {
            opacity: 0;
            visibility: hidden;
        }
      }
    
    
      .cour-first-time{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1600;
        visibility: hidden;
        background-color: white;
        width: 100%;
        opacity: 0;
        animation: fade-out 6s;
    }
    
    @keyframes fade-out-first{
        0% {
            opacity: 1;
            visibility: visible;
          }
          75%{
            opacity: 1;
          }
          99%{
            visibility: visible;
        }
          100% {
            opacity: 0;
            visibility: hidden;
        }
      }

/*Video Responsive*/ 
    @media (min-width: 768px) and (max-width: 1024px) {
        .iframe-responsive {
        overflow:hidden;
        padding-bottom:400px;
        position:relative;
        height:0;
        margin-top: 10px;
    }
    }

    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
        .iframe-responsive {
            overflow:hidden;
            padding-bottom:400px;
            position:relative;
            height:0;
    }
    }

    @media (min-width: 481px) and (max-width: 767px) {
        .iframe-responsive {
            overflow:hidden;
            padding-bottom:250px;
            position:relative;
            height:0;
    }  
    }

    @media (min-width: 320px) and (max-width: 480px) {
        .iframe-responsive {
            overflow:hidden;
            padding-bottom:250px;
            position:relative;
            height:0;
            margin-top: 10px;
    }
    }

    .containerVideo {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }
    
    .video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%!important;
        height: 100%!important;
    }

/*start cookie popper*/
    .cookie-consent-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 2147483645;
        box-sizing: border-box;
        width: 100%;
        background-color: #F1F6F4;
    }


    .cookie-consent-banner__inner {
        max-width: 960px;
        margin: 0 auto;
        padding: 32px 0;
            text-align: center;
    }

    .cookie-consent-banner__copy {
        margin-bottom: 16px;
    }

    .cookie-consent-banner__header {
        margin-bottom: 8px;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
            color: #000;
    }

    .cookie-consent-banner__description {
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
            color: #000;
    }

    .cookie-consent-banner__cta {
        box-sizing: border-box;
        display: inline-block;
        min-width: 164px;
        padding: 11px 13px;
        border-radius: 2px;
        background-color: #1b1b1b;
        color: #FFF!important;
        text-decoration: none;
        text-align: center;
        font-weight: normal;
        line-height: 20px;
        cursor: pointer;
    }

    .cookie-consent-banner__cta--secondary {
        padding: 9px 13px;
        border: 2px solid #1b1b1b;
        background-color: transparent;
        color: #1b1b1b!important;
        cursor: pointer;
    }

    .cookie-consent-banner__cta:hover {
        background-color: #838F93;
    }

    .cookie-consent-banner__cta--secondary:hover {
        border-color: #838F93;
        background-color: transparent;
        color: #838F93!important;
    }
/*Error messages*/
    .errorMessage {
        color: red;
        font-size: 12px;
    }

    .errorSuscribe{
        color:red;
    }    

/*Cursor*/
    .pointer {
        cursor: pointer;
    }

/*Paymethods*/
    .oxxopay-reminder {
        position: relative;
        top: -1px;
        padding: 9px 0 10px;
        font-size: 10px;
        text-transform: uppercase;
        text-align: center;
        color: #ffffff;
        background: #000000;
    }

    .oxxopay-info {
        margin-top: 26px;
        position: relative;
    }

    .oxxopay-info:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

    .oxxopay-brand {
        width: 45%;
        float: left;
    }

    .oxxopay-brand img {
        max-width: 150px;
        margin-top: 2px;
    }

    .oxxopay-ammount {
        width: 55%;
        float: right;
    }

    .oxxopay-ammount h2 {
        font-size: 34px;
        color: #000000;
        line-height: 24px;
        margin-bottom: 15px;
    }
    
    .oxxopay-ammount h2 sup {
        font-size: 15px;
        position: relative;
        top: -2px
    }
    
    .oxxopay-ammount p {
        font-size: 9px;
        line-height: 14px;
    }
    
    .oxxopay-reference {
        margin-top: 14px;
    }
    
    .oxxopay-reference2 {
        font-size: 25px;
        color: #000000;
        text-align: center;
        margin-top: -1px;
        padding: 6px 0 7px;
        border: 1px solid #b0afb5;
        border-radius: 4px;
        background: #f8f9fa;
    }
    
    .oxxopay-instructions {
        margin: 32px -45px 0;
        padding: 32px 45px 45px;
        border-top: 1px solid #b0afb5;
        background: #f8f9fa;
    }
    
    .oxxopay-list {
        margin: 17px 0 0 16px;
    }
    
    .oxxopay-list-item {
        margin-top: 10px;
        color: #000000;
        font-size: 15px;
    }
    
    .oxxopay-link {
        color: #1155cc;
    }
    
    .oxxopay-footnote {
        margin-top: 22px;
        padding: 22px 20 24px;
        color: #108f30;
        text-align: center;
        border: 1px solid #108f30;
        border-radius: 4px;
        background: #ffffff;
        font-size: 15px;
    }

    @media print {
        .printContent {
            visibility:hidden;
        }
    
        #oxxopay {
            position: absolute;
            left: 0;
            top: 0; 
            margin: 0;
            padding: 0;
            min-height: 550px;
            visibility: visible;
            /**Remove scrollbar for printing.**/
            overflow: visible !important;
        }
    }

/* Banner*/
    .banner-sm-h{
        min-height: 28rem !important;
    }

    .banner-md-h{
        min-height: 37.5rem !important;
    }


    .banner-lg-h{
        min-height: 48rem !important;
    }

    .banner-sz-h{
        min-height: 66.64791666666666%;
    }

    .banner-sized-h{
        height: auto;
    }

    .banner-sm-h .container{
        min-height: 28rem !important;
    }

    .banner-md-h .container{
        min-height: 37.5rem !important;
    }

    .banner-lg-h .container{
        min-height: 48rem !important;
    }

    .banner-sz-h .container{
        min-height: 66.64791666666666%;
    }

    .banner-img{
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        top: 0;
        left: 0;
    }

    .banner-img-container{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    @media(max-width: 767.98px){
        .banner-sm-h .container{
            min-height: 19rem !important;
        }
    
        .banner-md-h .container{
            min-height: 23rem !important;
        }
    
        .banner-lg-h .container{
            min-height: 26rem !important;
        }
    }

    @media(max-width: 767.98px){
        .banner-sm-h {
            min-height: 19rem !important;
        }
    
        .banner-md-h {
            min-height: 23rem !important;
        }
    
        .banner-lg-h {
            min-height: 26rem !important;
        }
    }

    @media(max-width: 767.98px){
        .banner-sm-i {
            top: 16rem;
        }
    
        .banner-md-i {
            top: 20rem;
        }
    
        .banner-lg-i {
            top: 23rem;
        }
    }

    .banner-img-container .banner-img::after{
        position: absolute;
        content: '';
        display: block;
    }

    .bannerTransparent{
        visibility: hidden;
      }

    .d-visibility{
        visibility: visible;
    }

    @media(min-width:768px){
        .d-visibility{
            visibility: hidden;
        }
    }
    
    .d-md-visibility{
        visibility: hidden;
    }

    @media(min-width:768px){
        .d-md-visibility{
            visibility: visible;
        }
    }

    

/*Carousel*/
    .carousel-indicators li{
        background-color:#222;
    }

/*Section*/
    .section {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.5s ease-out;
    }
    
    .section.active{
        opacity: 1;
        transform: none;
    }

/*Scrollbar*/

    .overflow-auto::-webkit-scrollbar {
        width: 7.5px;
        border-radius: 5rem;
    }
    
    .overflow-auto::-webkit-scrollbar-track {
        background: rgba(255,255,255,.4); 
        border-radius: 5rem;
    }
    
    .overflow-auto::-webkit-scrollbar-thumb {
        background: rgba(109, 109, 109, 0.4) ;
        border-radius: 5rem;
    }
    
    .overflow-auto::-webkit-scrollbar-thumb:hover {
        background: #555; 
        border-radius: 5rem;
    }

    .overflow-auto {
        scrollbar-width: thin;
        scrollbar-color: rgba(139, 139, 139, 0.8) transparent;
    }

    .overflow-auto:-webkit-scrollbar {
        width: 7.5px;
        border-radius: 5rem;
    }

    .overflow-auto:-webkit-scrollbar-track {
        background: rgba(255,255,255,.4); 
        border-radius: 5rem;
    }

    .overflow-auto:-webkit-scrollbar-thumb {
        background: rgba(109, 109, 109, 0.4) ;
        border-radius: 5rem;
    }

/*Extras*/
    .paddingViewTop{
        padding-top: 3rem;
        padding-bottom: 2.7rem;
    }

   .button-container{
	width: fit-content;
	margin: auto;
   }


   .ais-RefinementList{
    height: 220px;
    overflow: auto;
   }

   /* width */
   .ais-RefinementList::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .ais-RefinementList::-webkit-scrollbar-track {
      background:#f1f1f1;
    border-radius: 10px;
  }
   
  /* Handle */
  .ais-RefinementList::-webkit-scrollbar-thumb {
    background: #d6d6d6
    ; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .ais-RefinementList::-webkit-scrollbar-thumb:hover {
    background: #f5f5f5; 
  }

  
  .font-general{
	font-family: "InterTight-Regular";
   }

.featuredCarousel .hoverProduct{
    overflow-y: hidden;

}