body{
    margin:0;
    padding:0;
    box-sizing: unset;
}

:root {
    --main-bg-color: #EA620D;
    --secondary-bg-color: #E27632;
    --main-text-color: #707070;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--main-bg-color) !important;
    --bs-tooltip-color: var(--bs-white);
  }

.main-color{
    color: var(--main-bg-color);
}

.main-text-color{
    color: var(--main-text-color);
}

.green-down-text-color{
    color: #63654C;
}

.line {
    text-decoration: line-through;
}

@font-face {
    font-family: "Gotham1";
    font-weight: 600;
    src:
      local("Gotham1"),
      url("../fonts/GothamBold.otf") format("opentype")
}

@font-face {
    font-family: "Gotham1";
    font-weight: 400;
    src:
      local("Gotham1"),
      url("../fonts/GothamBook.otf") format("opentype")
}

@font-face {
    font-family: "Tungsten";
    font-weight: 600;
    src:
      local("Gotham1"),
      url("../fonts/TungstenBold.ttf") format("opentype")
}

@font-face {
    font-family: "Tungsten";
    font-weight: 400;
    src:
      local("Gotham1"),
      url("../fonts/TungstenBook.ttf") format("opentype")
}

*{
    font-family: 'Gotham1';
}

p{
    padding: 0px !important;
    margin: 0px !important;
}

.first-section-on-page{
    margin-top: 140px;
}

.whatsapp-button{
    max-width: 85px;
    width:100%;
    position: fixed;
    bottom: 30px; 
    right: 30px;
    border-radius: 100%;
    border:4px solid transparent;
    transition: .8s;
    z-index:100;
}

.whatsapp-button:hover{
    border:4px solid rgb(89, 201, 89);

}

.promotions-ribbon{
    width: 100%;
    min-height: 40px;
    background-color: #E27632;
    color: #fff;
    padding: 0px 10%;
    align-items: center;
    display: flex;
    font-size: 14px;
}

.promotions-ribbon .content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promotions-ribbon .p{
    display: block;
}

.social-media-button{
    background-color: #fff;
    margin-left: 10px;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    color: #E27632;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-button i{
    padding-top: 2px;
    padding-left: 2px;
}

.menu{
    width: 100%;
    padding: 40px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
}

.menu .logo-root{
    max-width: 120px;
    width: 100%;
}

.menu .options{
    display: inline-flex;
}

.menu .options a{
    margin-left: 14px;
    color: #1E1E1E;
    text-decoration: none;
    padding-bottom: 4px;
    font-weight: 400;
    transition: .2s ease-in-out;
    border-bottom: 2px solid transparent;
}

.menu .options a.active{
    border-bottom: 2px solid #E27632;
}

.menu .options a:hover{
    border-bottom: 2px solid #E27632;
}

.background-config-one{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.background-config-two{
    background-size: contain !important;
    background-color: #dddddd;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.hero{
    width: 100%;
    padding: 0px 10% 80px 10%;
    min-height: 720px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero .mini-previews{
    display: flex;
    justify-content: space-around;
    max-width: 400px;
    width: 100%;
    bottom: 120px;
    position: absolute;
    z-index: 2;
}

.hero .mini-previews  div{
    max-width: 100%;
    height: 80px;
    width: 100%;
    margin: 2px;
    border-radius: 4px;
    border: 2px solid transparent;
}

.hero .mini-previews  div.focus{
    max-width: 100%;
    height: 80px;
    width: 100%;
    margin: 2px;
    border-radius: 4px;
    border: 2px solid var(--main-bg-color);
}

.hero .hero-container{
    position: relative;
    min-height: 720px;
    background-color: #1E1E1E;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.hero .image-background{
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    opacity: 0.65;
    transition: .2s ease-in-out;
}

.hero .image-background:hover{
    opacity: 0.60;
}

.hero .info-content{
    width: 100%;
    max-width: 80%;
    position: absolute;
    padding: 50px 5%;
}

pretitle{
    font-family: 'Tungsten', sans-serif;
    font-weight: 400;
    font-size: 28px;
}

.hero .info-content pretitle{
    color: white;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.hero .info-content h1{
    font-size: 56px;
    color: white;
    font-weight: 600;
}

.hero .info-content p{
    margin-top: 20px;
    color: white;
    font-size: 30px;
}

.hero .info-content button{
    margin-top: 20px;
    color: white;
}

.btn-principal-01{
    height: 68px;
    background-color: #EA620D;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    padding: 20px 30px;
    width: auto;
}

.btn-principal-01.extend{
    padding: 20px 50px;
}

.btn-principal-01:hover{
    background-color: #ddaf16;
    color: #fff;
}

.btn-principal-02{
    height: 68px;
    background-color: #63654C;
    border-radius: 4px;
    text-align: center;
    padding: 20px 30px;
    width: auto;
}

.btn-principal-02:hover{
    background-color: #55573f;
}

.btn-medium{
    height: 50px;
    padding: 14px 30px;  
}

span.textmark{
    background-color: #E27632;
    padding-left: 4px; 
    padding-right: 4px;
}

h2{
    font-size: 48px;
    font-weight: 600;
    padding-bottom: 80px;
}

.stepperForm{
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    padding: 40px;
    background-image: url('../images/cover.jpg');
}

.centerator{
    display: flex;
    justify-content: center;
}

.stepperForm .stepper{
    display: inline-flex;
    margin-bottom: 40px;
}

.stepperForm .stepper .step{
    padding: 20px 20px 0px 20px;
}

.stepperForm .stepper .circle{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #A5A5A5;
    color: #fff;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
}

.stepperForm .stepper .step h5{
    padding-top: 8px;
    font-size: 18px;
}

.stepperForm .stepper .step.active .circle{
    background-color: #E27632;
}

.root-container{
    padding: 0px 10% 80px 10%;
}

.stepperForm h4{
    text-align: center;
    font-weight: 600;
    padding-bottom: 40px;
    margin-bottom: 0px;
}

.stepperForm .element{
    /* display: inline-block; */
    margin: 0px 20px;
}

.stepperForm .select-category .option{
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid #EA620D;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    display: flex;
}

.stepperForm .select-category .option .checkbox{
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #EA620D;
    border-radius: 100%;
    position: absolute;
    bottom: -20px;
}

.stepperForm .select-category .option:hover{
    cursor:pointer;
}

.stepperForm .select-category .option:hover .checkbox{
    background-color: #EA620D;
}

.stepperForm .select-category .option .checkbox i{
    font-size: 30px;
    margin-top: -3px;
    position: absolute;
    display: block;
    margin-left: 3px;
    color: #63654C;
}

.stepperForm .select-category .option:hover .checkbox i{
    color: #fff;
}

.stepperForm .select-category .element h5{
    padding-top: 24px;
}

.stepperForm .select-category .element h5 button{
    margin: 0px;
    padding: 0px;
}

.category-photo{
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 100%;
    border: 4px solid #EA620D;
}

.category p{
    padding-top: 24px !important;
}

.cc40{
    margin: 40px auto 0;
}

#select-category-form-banner{
    border-radius: 8px 8px 0px 0px;
}


.offers{
    width: 100%;
    min-height: 600px;
    border-radius: 8px;
    padding: 40px;
    background-image: url('../images/cover2.jpg');
}

.card-product{
    border-radius: 8px;
    max-width: 100%;
    background-color: #fff;
    box-shadow: 1px 1px 13px -4px rgba(0,0,0,0.59);
-webkit-box-shadow: 1px 1px 13px -4px rgba(0,0,0,0.59);
-moz-box-shadow: 1px 1px 13px -4px rgba(0,0,0,0.59);
}

.card-product .image-product{
    min-height: 240px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.card-product .image-product .badge{
    font-size: 15px;
    margin: 6px 4px 0px;
    border-radius: 4px;
    background-color: #7E7E7E;
    color: #fff;
    padding: 4px 8px;
    font-weight: 400;
    font-family: 'Tungsten';
    transition: .4s;
}

.card-product .image-product .badge:hover{
    background-color: #EA620D;
}




.card-product .image-product .discount{
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    background-color: #E2B932;
    color: #fff;
    font-family: 'Tungsten' !important;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.card-product .content-description{
    padding: 20px;
}

.card-product .content-description h5{
    color: #EA620D;
    font-weight: 600;
}

.card-product .content-description p{
    color: #707070;
    margin-bottom: 20px !important;
}

.card-product .price-info {
    /* display: flex; */
    width: 100%;
    justify-content: space-between;
}

.card-product .price-info .before p{
    margin-bottom: 0px !important;
    font-size: 14px;
    color: #EA620D;
}

.card-product .price-info .before h5{
    margin-bottom: 0px !important;
    font-size: 34px;
    font-weight: 500;
    text-decoration: line-through;
    font-family: 'Tungsten' !important;
    color: #9E9E9E;
}

.card-product .price-info .after {
    margin-bottom: 0px !important;
    font-size: 50px;
    font-weight: 500;
    font-family: 'Tungsten' !important;
    color: #63654C;
}

.card-product .btn, .contact .btn{
    width: 100%;
    color: #fff;
    padding: 10px 30px !important;
    height: auto;
    min-height: 50px;
}

.cc402{
    margin: 40px 0 auto 0px;
    display: table;
}

.which-choose p{
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    margin-top: 24px !important;
}

.which-choose a{
    margin-top: 24px;
}

/* .image-cards-1{
    max-width: 400px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #EA620D;
    margin: 0 auto;
    display: block;
}

.image-cards-0{
    max-width: 260px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #EA620D;
    position: absolute;
    left: 20px;
    top: 20px;
}

.image-cards-2{
    max-width: 200px;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #EA620D;
    position: absolute;
    right: 20px;
    bottom: -40px;
} */

.image-cards-0{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.image-cards-1{
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid #EA620D;
}

.image-cards-2{
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.advice-info{
    display: flex;
    justify-content: center;
    align-items: center;
}

.advice-info h2{
    padding-bottom: 0px;
}


.contact-photo{
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid #EA620D;
}

.ppt40{
    padding-top: 40px !important;
}

.ppb40{
    padding-bottom: 40px !important;
}

.mmt40{
    margin-top: 40px !important;
}

.mmb40{
    margin-bottom: 40px !important;
}

.ppt20{
    padding-top: 20px !important;
}

.ppb20{
    padding-bottom: 20px !important;
}

.mmt20{
    margin-top: 20px !important;
}

.mmb20{
    margin-bottom: 20px !important;
}

footer{
    background-color: #EEEEEE;
    min-height: 200px;
}

.logo-footer{
    max-width: 140px;
    width: 100%;
}

footer .options a{
    margin-left: 14px;
    color: #1E1E1E;
    text-decoration: none;
    padding-bottom: 4px;
    font-weight: 400;
    transition: .2s ease-in-out;
    border-bottom: 2px solid transparent;
}
footer .options a:hover{
    color: #E27632;
}

.promotions-ribbon-bottom{
    width: 100%;
    min-height: 40px;
    background-color: #E27632;
    color: #fff;
    padding: 0px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.hero.compact{
    min-height: 420px;
}

.hero.compact .hero-container{
    background-color: #000000;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero.compact .info-content{
    max-width: 100%;
}


.hero.compact .image-background{
    opacity: 0.40;
}

.contact-photo-02{
    max-width: 100%;
    height: 100%;
    min-height: 600px;
    border: 2px solid #EA620D;
    border-radius: 8px;
}

.centered-box{
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-photo-03{
    max-width: 100%;
    height: 100%;
    min-height: 400px;
    border: 2px solid #EA620D;
    border-radius: 8px;
}

.root-container-division{
    padding-left: 10%;
    padding-right: 10%;
}

.division-100{
    margin-bottom: 80px;
    display: block;
    border: 1px solid #EA620D;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
}

.products-container .filters{
    overflow-y: scroll;
    height: 930px;
    background-color: #e1ebdb;
    border-radius: 8px;
    width: 100%;
    padding: 20px 20px;
    position: sticky;
    top: 10px;
}

.filters .colors, .details .colors{
    display: flex;
}

.filters .colors .color, .details .colors .color{
    border-radius: 100%;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    background-color: #f3f3f3;
    border: 1px solid #63654C;
}

.details .colors .color.detail-color{
    border-radius: 100%;
    margin-left: 0px;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    background-color: #f3f3f3;
    border: none;
}

.dimenssions{
    margin-top: 4px;
}

/* .detail-dimension{
    margin-right: 2px !important;
} */

.products-container .filter-sub-list{
    padding-left: 20px;
}

.products-container .card-product {
    margin-bottom: 40px;
}

.products-container .card-product .image-product {
    min-height: 170px;
}

.card-product .content-description a {
    text-decoration: none;
}

.products-container .card-product h5 {
    font-size: 18px;
}

.products-container .card-product .content-description p {
    margin-bottom: 4px !important;
}

.products-container .card-product .content-description .price-info  p {
    font-size: 12px;
    margin-bottom: 0px !important;
}

.products-container .card-product .price-info .before h5 {
    font-size: 28px;
}

.products-container .card-product .price-info .after {
    font-size: 42px;
}

.products-container .card-product .price-info .after span:nth-child(1){
    font-size: 32px;
    padding-right: 3px;
    font-family: 'Tungsten';
}

.products-container .card-product .price-info .after span:nth-child(2){
    font-size: 28px;
    font-family: 'Tungsten';
}

.form-check {
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 1.40em;
    height: 1.40em;
}

.form-check-label{
    font-size: 16px;
    padding-left: 10px;
    padding-top: 4px;
    color: var(--main-text-color);
    justify-content: space-between;
}

.banner-guide .row .col-6:nth-child(1){
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.banner-guide .row .col-6:nth-child(2){
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.banner-guide .info{
    background-color: #EBEBEB;
    padding: 80px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: underline;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item.active {
    font-size: 14px;
    color: var(--main-bg-color) !important;
}

.detail-product .badges{
    display: flex;
}

.detail-product .badge{
    font-size: 18px;
    margin: 10px 4px 10px 0px;
    border-radius: 4px;
    background-color: #e1ebdb;
    color: #141414;
    padding: 4px 12px;
    font-weight: 400;
    font-family: 'Tungsten';
}

.detail-product .detail-product-info{
    font-size: 16px;
    /* margin-top: 14px !important; */
    color: var(--main-text-color);
}

.detail-product .colors{
    display: flex;
}

.detail-product .colors .color{
    border-radius: 100%;
    margin-right:8px;
    width: 30px;
    height: 30px;
    background-color: #f3f3f3;
}

.detail-product .price{
    font-size: 72px;
    font-weight: 500;
    font-family: 'Tungsten' !important;
    color: #63654C;
}

.detail-product .price span:nth-child(1){
    font-size: 36px;
    margin-right: 4px !important;
    font-family: 'Tungsten' !important;
    color: #63654C;
}

.detail-product .price span:nth-child(2){
    font-size: 30px;
    font-family: 'Tungsten' !important;
    color: #63654C;
}

.detail-product .image-product{
    width: 100%;
    height: 500px;
}

.product-principal-photo {
    position: relative;
}

.product-preview {
    display: none;
    max-width: 100%;
    cursor: pointer;
}

.product-preview.show {
    display: block;
}


.product-gallery-carousel {
    max-width: 100%;
    overflow: scroll;
    overflow-y: hidden;
    height: auto;
    cursor: pointer;
    background-color: #f3f3f3;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.product-gallery-carousel::-webkit-scrollbar,
.product-gallery-carousel::-webkit-scrollbar {
    width: 0px;
    height: 5px;
    /* remove scrollbar space */
    background: transparent;
}

.product-gallery-carousel::-webkit-scrollbar-thumb,
.product-gallery-carousel::-webkit-scrollbar-thumb {
    background-color: var(--secondary-bg-color);
}

.product-gallery-carousel ul {
    list-style: none;
    padding-left: 0;
    display: inline-flex;
    margin-bottom: 0;
}

.product-gallery-carousel ul div {
    width: 150px;
    height: 100px;
}

.owl-theme .owl-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 45%;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    border-radius: 100%;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: 1px solid #fff;
    background-color: rgba(234, 98, 13, 0.2);
    border: 1px solid rgba(234, 98, 13, 0.2);
    transition: .3s;
}

.owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
    border-radius: 100%;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 20px;
    background-color: var(--main-bg-color);
    border: 1px solid var(--main-bg-color);
}

.error_price_info{
    display: none;
    color: #e30000;
    margin-bottom: 12px !important;
}

.result-counter{
    text-align: end;
    width: 100%;
    color: #63654C;
}

.leftSideMenu {
    background-color: #efefef;
    z-index: 10001;
    display: flex;
    position: fixed;
    height: 100vh;
    width: 100%;
    color: white !important;
    justify-content: center;
    align-items: center;
    padding: 40px;
    top:0px;
    left: -100%;
    transition: ease-in-out .5s;
}

.leftSideMenu a{
    color: var(--main-bg-color) !important;
}

.leftSideMenu.show {
    left: 0%;
}

.leftSideMenu div{
    width: 100%;
}

.leftSideMenu button{
    position: absolute;
    top: 40px;
    right: 40px;
}

.leftSideMenu .toggleMenu i{
    color: var(--main-bg-color) !important;
}

.menu .options a.toggleMenu{
    display: none;
    font-size: 38px;
}


.alert{
    position: fixed !important;
    z-index: 1000 !important;
    bottom: 10px !important;
    left: 10px !important;
    transition: 1s;
}

.select-category{
    min-height: 500px;
    background-color: #EEEEEE;
}

.select-category .tools{
    padding: 40px;
    background-image: url('../images/cover__.jpg');
    border-radius: 0px 0px 8px 8px;
}

.select-category .image-button{
    width: 120px; 
    height: 120px; 
    border-radius: 100%;
}

.select-category .container-options{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60%;
}

.pointer{
    cursor: pointer;
}

#recommendedResults .card-product .image-product {
    min-height: 150px;
}


#recommendedResults .card-product .price-info .after {
    font-size: 38px;
}

#recommendedResults .card-product .price-info .after span{
    font-size: 28px;
    font-family: 'Tungsten';
}

#recommendedResults .card-product .content-description p {
    margin-bottom: 8px !important;
    font-size: 14px;
}

.ibeliveicanfly{
    position: fixed;
    z-index: 1044;
    background-color: #dbdbdb;
    top: 0;
    padding: 16px 10%;
    border-bottom: 1px solid #8080807a;
    box-shadow: 1px 1px 13px -4px rgba(0,0,0,0.59);
    -webkit-box-shadow: 1px 1px 13px -4px rgba(0,0,0,0.59);
    -moz-box-shadow: 1px 1px 13px -4px rgba(0,0,0,0.59);
}

.menu.ibeliveicanfly  .logo-root {
    max-width: 100px;
}

#mobileFilters{
    display: none;
}

#select-category-form .nav-link{
    background-color: #8080807a;
    padding: 14px;
    border-radius: 4px;
    margin: 8px 4px;
    color: #6b6b6b;
}

#select-category-form .nav-link.active{
    background-color: #E27632;    
    color: #fff;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--main-bg-color);
}

.nav-pills .nav-link:focus, .nav-pills .nav-link:hover {
    transition: .2s;
    background-color: #E27632;
    color: var(--bs-nav-pills-link-active-color);
}

.nav-pills .nav-link {
    color: var(--main-bg-color);
    margin: 4px;
}

.promotions-ribbon a:nth-child(1){
    color: #fff;
    font-weight: bold;
}

