/* ESTILOS GENERALES */
.bg-grey{
    background-color: #262626;
    color: #ffffff;
}
.bg-light-blue{
    background-color: #5afff3;
    color: #ffffff;
}
.bg-violet{
    background-color: #803eff;
    color: #ffffff;
}
.bg-light-grey{
    background-color: #eaeaea;
    color: #262626;
}
.img-fluid{
    width: 100%;
    height: 100%;
}
.fw-bold{
    font-weight: 700;
}
.link-bg-violet{
    background-color: #803eff;
    color: #ffffff;
    transition: all 0.8s;
    border: 1px solid #803eff;
    text-decoration: none;
    font-family: "Anton", sans-serif;
    letter-spacing: 2px;
    border-radius: 10px;
}
.link-bg-violet:hover{
    transition:all 0.8s ease;
    color: #803eff;
    background-color: #ffffff;
}
.link-bg-grey{
    background-color: #262626;
    color: #ffffff;
    transition: all 0.8s;
    border: 1px solid #262626;
    text-decoration: none;
    border-radius: 10px;
    letter-spacing: 2px;
    font-family: "Anton", sans-serif;
}
.link-bg-grey:hover{
    transition: all 0.8s;
    background-color: #eaeaea;
    color: #262626;
}
.link-grey{
    text-decoration: none;
    border-bottom: 1px solid transparent;
    color: #262626;
    transition: all 0.8s;
    font-family: "Roboto", sans-serif;
}
.link-grey:hover{
    transition: all 0.8s;
    border-bottom: 1px solid #262626;
}
.link-bg-light-grey{
    background-color: #eaeaea;
    text-decoration: none;
    transition: all 0.8s;
    border: 1px solid #262626;
    border-radius: 10px;
    letter-spacing: 2px;
    color: #262626;
    font-family: "Anton", sans-serif;
}
.link-bg-light-grey:hover{
    background-color: #262626;
    transition: all 0.8s;
    color: #ffffff;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Anton", sans-serif;
    letter-spacing: 2px;
}
p, span, li{
    font-family: "Roboto", sans-serif;
}
.text-center{
    text-align: center;
}
.sponsors img{
    width: 80px;
    max-width: 100%;
    height: 100%;
}
.icon-white svg{
    fill: #ffffff;
}
.icon-big svg{
    width: 84px;
    height: 84px;
}
.icon-small svg{
    width: 24px;
    height: 24px;
}
.border-white{
    border: 4px solid #ffffff;
}
.rounded-5{
    border-radius: 50%;
}

/* NAVBAR */
nav .logo{
    width: 150px;
    background-color: #ffffff;
    /* este background simplemente porque el logo es negro */
}
nav .link-grey{
    color: #eaeaea;
    fill: #eaeaea;
}
.navbar{
    display: flex;
    justify-content: space-between;
}
.menu-nav{
    display: flex;
    margin: 0;
}
.menu-nav .icon-small svg{
    height: 36px;
    width: 36px;
}
.navbar .icon:hover svg{
    transition: all 0.5s;
    fill: #803eff;
}
.navbar .icon:active svg, .navbar .link-grey:active{
    fill: #5afff3;
    color: #5afff3;
    transition: all 0.5s;
}
.menu-nav .border-white{
    border: 1px solid white;
}
.menu-nav li{
    align-self: center;
    margin: 0 10px;
    list-style: none;
}
.menu-horizontal{
	list-style: none;
	display: flex;
	justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}
.menu-horizontal > li > a{
	display: block;
	padding: 0px 20px;
	text-decoration: none;
}
.menu-vertical li a{
	display: block;
	color: #ffffff;
	text-decoration: none;
    margin: 10px 0;
    padding: 15px 10px;
}
.menu-vertical{
    position: absolute;
	list-style: none;
    top: 90px;
	width: 100%;
    height: 100%;
    max-width: 100%;
	background-color: #262626;
    padding: 20px 0;
    transition: all 0.6s;
    z-index: 99;
}
.menu-left{
    left: 0;
}
.menu-right{
    right: 0;
}
.menu-vertical li:hover{
	background-color: #00000098;
    transition: all 0.6s;
}
.menu-vertical li:hover a{
    color: rgb(255, 255, 255);
    transition: all 0.6s;
}
.hidden{
    display: none;
}
.block{
    display: block;
}
.dots-carrousel{
    position: relative !important;
}

/* LISTA DE PRODUCTOS */
.filter{
    border: 1px solid #262626;
    border-radius: 20px;
    padding: 10px;
}
.filter ul li{
    list-style: none;
    margin: 10px 0;
}
.filter ul{
    margin: 0;
    padding: 10px 0;
}
.products .container-icon-relative{
    max-width: 100%;
    position: relative;
}
.products .input-icon{
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: 2rem;
    top: 23px;
    user-select: none;
    cursor: pointer;
}
.products  input.input{
    border: 1px solid #eaeaea;
    border-radius: 40px;
    padding-right: 2.5rem;
    padding: 10px;
    width: 100%;
}
.products .nav-filter ul{
    margin: 0;
    padding: 0;
}
.products .nav-filter li{
    list-style: none;
    margin: 0 6px;
}
.products .nav-filter li span{
    padding: 5px 10px;
    border-radius: 10px;
}
.card-product{
    background-color: #eaeaea;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-product .img-product{
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 20px;
}
.card-head .bg-light-blue{
    padding: 10px;
    font-weight: 700;
    position: relative;
}
.card-body{
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}
.card-body h4{
    font-weight: 700;
}
.card-footer{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.card-footer .link-bg-violet{
    padding: 5px;
}
.price-off{
    text-decoration: line-through 2px solid #803eff;
}

/* ACCORDION */
.accordion {
    background-color: #ffffff;
    color: #444;
    cursor: pointer;
    padding: 1em 0;
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(212, 212, 212);
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-head{
    display: flex;
    align-items: center;
}
.accordion-head i svg{
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.accordion-head h4{
    margin: 0;
}
.active, .accordion:hover {
    background-color: #ffffff;
    border-bottom: 2px solid rgb(171, 171, 171);
}
.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2212";
}
.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.panel ul{
    padding: 1em 0;
}
.panel ul li{
    list-style: none;
}
.panel ul li > *{
    display: inline-block;
}
.panel ul li h5, p{
    font-size: 1rem;
}
.tabla-nutricional .border-bottom-5{
    border-bottom: 10px solid #262626;
}
.content-tabla-nutricional.border-y-3{
    border-top: 4px solid #262626;
    border-bottom: 4px solid #262626;
}
.content-tabla-nutricional .border-bottom-1{
    border-bottom: 1px solid #262626;
}
.content-tabla-nutricional p{
    margin: 8px 0;
    font-weight: 700;
}
.tabla-nutricional p{
    font-size: 0.8rem;
}
.caracteristicas-select .form-select{
    width: 100%;
    padding: 0.5em;
    border-radius: 10px;
}
.btn-cantidad{
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #eaeaea;
}
.contador{
    padding: 10px;
    background-color: #803eff;
    color: #ffffff;
    border-radius: 20px;
}
#valor-contador {
    font-size: 24px;
}
.items-producto ul{
    margin: 0;
    padding: 0;
}
.items-producto ul li{
    list-style: none;
    margin: 3px 0;
}
.items-producto h2{
    font-size: 2rem;
}
.items-producto h1{
    font-size: 3rem;
}

/* FOOTER */
footer{
    border-top: 1px solid #262626;
    padding: 3em 0;
}
footer .logo{
    width: 150px;
}
footer ul li{
    list-style: none;
    margin: 10px 0;
}
footer ul{
    padding: 0;
}
footer li .link-grey, h4{
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
}

@media (min-width: 1024px) {
    .border-x-1{
        border-left: 2px solid black;
        border-right: 2px solid black;
    }
    .text-end{
        text-align: end;
    }
    .card-head .bg-light-blue{
        top: -150px;
        left: 100px;
    }
    .products .nav-filter ul{
        justify-content: end;
    }
    .products .nav-filter ul{
        display: flex;
    }
}
@media (max-width: 1024px) {
    .card-head .bg-light-blue{
        display: none;
    }
    .card-body{
        align-self: self-start;
        flex-direction: column;
    }
    .products .nav-filter ul{
        display: none;
    }
    .products .nav-filter .form-select{
        border-radius: 10px;
        padding: 10px;
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .card-head .bg-light-blue{
        top: -180px;
        left: 130px;
    }
}
@media (min-width: 1360px) {
    .card-head .bg-light-blue{
        top: -200px;
        left: 180px;
    }
}