/********* CARRITO */

.panel-carrito {
    width: 100%;
    max-width: 375px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -500px;
    z-index: 120;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
}

.panel-carrito.show {
    right: 0;
}

.sombra-carrito {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 97;
    background-color: rgba(0,0,0,0.5);
    display: none;
}

.sombra-carrito.active {
    display: block;
}

.header-panel-carrito {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

.titulo-header-panel-carrito {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #0A0A0A;
}

.cerrar-header-panel-carrito {
    width: 40px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 17px;
    color: #0A0A0A;
    cursor: pointer;
}

.filas-panel-carrito {
    width: 100%;
    height: calc(100% - 235px);
    overflow: auto;
    margin: 10px auto;
}

.fila-panel-carrito {
    width: 90%;
    height: auto;
    margin: 5px auto;
    margin-top: 20px;
    border-bottom: 1px solid #9A9A9A;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.img-fila-panel-carrito {
    width: 90px;
    height: 110px;
    margin: 0 auto;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

.contenido-fila-panel-carrito {
    width: calc(100% - 110px);
    height: auto;
    margin: 0 auto;
    margin-left: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.titulo-contenido-fila-panel-carrito {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0A0A0A;
}

.descripcion-contenido-fila-panel-carrito {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 10px;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: #5b5b5b;
}

.precio-contenido-fila-panel-carrito {
    width: 100%;
    height: 25px;
    line-height: 25px;
    margin: 5px auto;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0A0A0A;
}

.eliminar-contenido-fila-panel-carrito {
    width: 100px;
    height: 18px;
    line-height: 18px;
    margin: 5px auto;
    margin-left: calc(100% - 100px);
    text-align: right;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #cc6f6f;
    letter-spacing: 1px;
    cursor: pointer;
}

.subtotal-panel-carrito {
    width: 80%;
    height: auto;
    margin: 10px auto;
    display: flex;
}

.texto-subtotal-panel-carrito {
    width: 50%;
    height: 30px;
    line-height: 30px;
    text-align: left;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #0A0A0A;
}

.precio-subtotal-panel-carrito {
    width: 50%;
    height: 30px;
    line-height: 30px;
    text-align: right;
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #0A0A0A;
}

.texto-panel-carrito {
    width: 90%;
    height: 20px;
    margin: 10px auto;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #0A0A0A;
    letter-spacing: 1px;
}

.btn-panel-carrito {
    width: 310px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 20px auto;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #fff;
    background-color: #DCBD6E;
    border-radius: 5px;
    cursor: pointer;
}