@font-face {
    font-family: 'beindog gite';
    src: url('../font/beindog gite.ttf') format('truetype');
}
html {
  font-size: 14px;
}

body {
    background-image: url(../img/fondo.jpg);
    /*background-repeat: no-repeat;*/
    background-size: contain;
}

.nav-link.active, .nav-link:hover, .nav-link:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    font-weight: bold;
    color: black;
}

.nav-link{
    color: black;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}

.st0 {
    fill: #E0DEDF;
}

.st1 {
    fill: #DEDCDD;
}

.wrapperCarga {
    background-image: url('../img/fondopistazi.webp');
    background-color: white;
    background-size: cover;
    transition: all 1.2s ease;
    min-height: 100vh;
    height: 100vh;
}

.wrapperCarga.modoMenu{
    min-height: 100px;
    height: 100px;
}

.wrapperCarga.modoMenu svg{
    max-height: 100px;
}

.wrapperCarga.active > .wrapperCarga-inner{
    animation: blur 3s linear forwards;
}
.wrapperCarga.active > .wrapperCarga-inner.downtown{
    background-color: rgba(255,255,255,0.3);
}

@keyframes blur {
    to {
        backdrop-filter: blur(2px);
    }
}

.texto-categoria {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    font-size: 4rem;
    z-index: 2;
    margin-bottom: 0;
    font-family: Beindog gite !important;
}

.z-index-2 {
    z-index: 2;
}

.opcion-menu {
    position: relative;
    color: white;
    padding: 3rem;
    height: 25vh;
    min-height: 160px;
    transition: all .25s ease-out;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0));
}

.opcion-menu::after{
    content: "";
    background-image: url('../icons/chevron-down-solid.svg');
    position: absolute;
    opacity: .5;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    width: 2rem;
    height: 2rem;
}

.opcion-menu:not(.collapsed)::after{
    background-image: url('../icons/chevron-up-solid.svg');
}

.opcion-menu:not(.collapsed){
    height: 35vh;
}

.imagen-opcion-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.producto-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.producto-imagen {
    height: 80px !important;
    width: 80px !important;
    aspect-ratio: 1;
    border-radius: 50% !important;
    object-fit: cover;
}

@media (max-width: 991px){

    .opcion-menu {
        min-height: 100px;
    }

    .texto-categoria {
        bottom: 2rem;
        left: 2rem;
    }
}