.u-navbar-top {
    height: 70px;
    padding: 0 5%;
    background-color: #327240;
}

.u-navbar-phone-text {
    font-size: 12px;
    color: white;
    padding: 0 20px;
    border-right: 1px solid white;
}

.u-navbar-phone-text span {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.u-navbar-shop {
    font-size: 11px;
    color: white;
    padding: 0 25px;
    text-align: center;
}

.u-navbar-shop img {
    margin-bottom: 5px;
}

.u-navbar-down {
    height: 50px;
    background-color: white;
}

.u-navbar-item {
    padding: 5px 20px;
    border-right: 1px solid #707070;
}

.u-navbar-item:last-child {
    border-right: none;
}

.u-navbar-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
    transition: all 0.5s;
}

.u-navbar-items a {
    text-decoration: none;
    font-size: 14px;
    color: #707070;
}

.u-hamber {
    cursor: pointer;
    margin-left: 5vw;
}

@media only screen and (max-width: 1024px) {
    .u-navbar-top {
        height: auto;
        padding: 0;
        background-color: white;
    }
    .u-hamber-bar {
       
        padding: 10px 5%;
    }
    .u-responsive {
        flex-direction: column;
    }
    .u-navbar-down {
        height: auto;
        position: relative;
    }
    .u-navbar-phone-text:last-child {
        color: white;
        padding: 0 5px;
        text-align: center;
        border:none;
    }
    .u-navbar-items {
        position: absolute;
        top: 0;
        width: 100%;
        height: 0;
        padding-bottom: 0px;
        background-color: #fff;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        overflow: hidden;
    }
    .u-navbar-items-active {
        height: 275px;
        padding-top: 10px;
        padding-bottom: 50px;
        border-top: solid 1px #327240;
    }
    .u-navbar-shop {
        font-size: 11px;
        color: white;
        padding: 10px;
        text-align: center;
    }
    .u-navbar-item {
        border-right: none;
        width: 80%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #327240;
    }
}

@media only screen and (max-width: 1024px) {
    .u-responsive-after {
        display: flex;
    }
    .u-responsive-before {
        max-width: 170px;
        display: none!important;
    }
}



/* Estilo del banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 65px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    z-index: 1000;
    display: none; /* Ocultar el banner por defecto */
  }
  
  .cookie-banner.show {
    display: block; /* Mostrar el banner solo si la clase 'show' se agrega con JS */
  }
  
  .cookie-banner a {
    color: #4CAF50;
    text-decoration: none;
  }
  
  .cookie-banner button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .cookie-banner button:hover {
    background-color: #45a049;
  }
  