
.contenedorMenuProductos {
    width: 100%;
    left: 0%;
    top: 100px;
    position: relative;
    border-radius: 15px;
    height: 790px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.divMenuTablaCarrito {
    overflow-y: scroll;
    height: 70%;
    padding: 1.5%;
    margin: 0%;
}

.tableMenuCarrito th {
    font-family: "Principal";
    font-size: 1.4rem;
    text-align: center !important;
    padding-top: 0.2% !important;
    padding-left: 0.2% !important;
    padding-right: 0.2% !important;
}

.tableMenuCarrito tr {
    font-family: "Principal";
    font-size: 1.3rem;
    text-align: center !important;
}

.precioMenuCarrito {
    color: red;
}

.borrar-menuProducto {
    background-color: #014ba0;
    border-radius: 50%;
    padding: 5px 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.borrar-menuProducto:hover {
    background-color: #2174d4;
}

.totalTitMenuCarrito {
    font-family: "Principal";
    font-size: 1.7rem;
    text-align: start !important;
    margin-top: 7%;
}

.totalPrecioMenuCarrito {
    font-family: "Principal";
    font-size: 1.7rem;
    color: red;
    margin-top: 7%;
    text-align: end !important;
}

.divBtnMenuCarrito {
    width: 100%;
    margin: 0%;
    padding: 0%;
}

.btnMenuCarrito {
    font-size: 1.3rem;
    text-align: center;
    color: #fff;
    font-family: "principal";
    background-color: #014ba0;
    border-radius: 5px;
}

.btnMenuCarrito:hover {
    background-color: #2174d4;
}

.cantidadMenuCarrito{
    text-align: center;
}

/*DIV APARTADO*/
.divPedido {
    width: 30%;
    height: 36%;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    position: fixed;
    top: 25%;
    left: 37%;
    transform: scale(0);
    transition: 0.5s;
}

.divPedido.active-divPedidoo {
    transform: scale(1);
}

.textPedido{
    font-family: "principal";
    text-align: center;
    background-color: #014ba0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    color: #fff;
}

.numeroPedido{
    margin-top: 10%;
    font-family: "principal";
    text-align: center;
    color: red;
}

.textAgente{
    margin-top: 10%;
    font-family: "principal";
    text-align: center;
}

.icon-closePedido {
    width: 7%;
    right: 0%;
    top: 0px;
    cursor: pointer;
    position: fixed;
}





