    .contenedorPrincipal {
        min-height: 110vh;
    }
    
    .tablaCarrito {
        font-family: Oswald-Light;
        font-size: 14px;
        margin: auto;
        width: 80%;
        text-align: left;
        border-collapse: collapse;
        border: 10px solid #191919;
        box-shadow: 0px 10px 13px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    }
    
    .EncabezadoTablaProducto tr th {
        font-size: 12px;
        font-weight: normal;
        padding: 8px;
        background: #191919;
        border-top: 4px solid silver;
        border-bottom: 1px solid #fff;
        color: silver;
    }
    
    td {
        padding: 6px;
        background: silver;
        border-bottom: 1px solid #fff;
        color: #191919;
        border-top: 1px solid silver;
    }
    
    tr:hover td,
    tr:hover a {
        background: #191919;
        color: silver;
    }
    
    .imagenProducto {
        border: 1px solid silver;
        border-radius: 5px;
        max-width: 100%;
        max-height: 40px;
    }
    
    .entradaCantidad {
        font-family: Oswald-Light;
        font-size: 15px;
        text-align: center;
        border: 2px solid silver;
        border-radius: 5px;
        width: 100px;
    }
    
    .contenedorResumenCompra {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto;
        color: silver;
        font-family: Oswald-Light;
        letter-spacing: 0.5px;
        max-width: 500px;
        max-height: 50px;
        margin-top: 10px;
        padding: 50px;
        background-color: #191919;
        border: 2px solid silver;
        border-radius: 10px;
        box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    }
    
    .contenedorbotonVolver {
        display: flex;
        justify-content: center;
        margin: auto;
        margin-top: 10px;
    }
    
    .botonProductos,
    .botonCategorias {
        font-family: Oswald-Light;
        font-size: 12px;
        color: silver;
        letter-spacing: 0.5px;
        border: 1px solid silver;
        border-radius: 10px;
        padding: 10px;
        background-color: #191919;
        margin: 5px;
        transition: background-color 1s;
        transition: color 1s;
        box-shadow: 0px 10px 17px -7px #191919, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    }
    
    .botonProductos:hover,
    .botonCategorias:hover {
        background-color: silver;
        color: #191919;
    }
    
    .contenedorBusqueda {
        display: none;
    }
    
    .imagenEliminar {
        width: 25px;
        transition: filter 1s;
    }
    
    .imagenEliminar:hover {
        filter: invert(100%);
    }
    /* Resposive */
    
    @media (max-width: 1280px) {
        .entradaCantidad {
            font-size: 15px;
            width: 75px;
        }
        .ContenedorTablaProducto {
            width: auto;
        }
    }
    
    @media (max-width: 460px) {
        .tablaCarrito {
            font-size: 10px;
            width: 95%;
        }
        .entradaCantidad {
            font-size: 12px;
            width: 40px;
        }
        .EncabezadoTablaProducto tr th {
            padding: 2px;
            letter-spacing: 0.5px;
            font-size: 8px;
        }
        .imagenEliminar {
            width: 15px;
        }
        .imagenProducto {
            /* max-width: 100%; */
            max-height: 30px;
        }
    }