/*? CAJA PRODUCTO DETALLES */
.cajaok {
    position: relative;
    overflow: hidden;
    margin-top: 0px;
    /*margin-left: 10%;
     width: 220px;
    height: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0px 0px 5px #ccc;
    background-color: aqua;
    border-bottom: 2px solid black; */
    /*background-image: url("imgs/Prod_PokkaCoffe.jpg");
    /* background-size: 220px; */
}

.cajaok .caja_desc {
    /*Aqui es IMPORTANTISIMO que le digamos que .caja_desc es hijo de .cajaok*/
    position: absolute;
    visibility: hidden;
    /* margin-top: 80px; */
    margin-left: 0%;
    padding: 0px;
    z-index: 10;
    /* width: 400px; */
    /* height: 240px;  */
    top: 0px;
    background: rgba(255, 255, 255, 0.6);
    color: aliceblue;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    transition: all 0.6s ease;

}

.titulo {
    font-size: 25px;
}

.cajaok:hover .caja_desc {
    /*Declaramos que es hijo de .cajaok*/
    /* overflow: scroll; */
    visibility: visible;
    animation: aparece 300ms ease-out;
    opacity: 95%;
    cursor: pointer;
}


.cajaok .caja_desc_txt {
    position: absolute;
    visibility: hidden;
    margin-top: 25px;
    margin-left: 0%;
    padding: 10px;
    z-index: 50;
    width: 430px;
    height: 240px;
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: 500;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 1.0s ease;
    overflow-y: scroll;
}

.cajaok:hover .caja_desc_txt {
    /*Declaramos que es hijo de .cajaok*/
    overflow: scroll;
    visibility: visible;
    animation: aparece 3600ms ease-out;
    color: rgba(66, 33, 232, 1);
    opacity: 100%;
}

.cajaok:hover .tabla {
    margin-top: 80px;
    margin-left: 0%;
    animation: aparece 3600ms ease-out;
    opacity: 80%;
}

/* 
@keyframes aparece {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
} */


.cajaok:not(:hover) .caja_desc {
    position: relative;
    animation: slideDown 3600ms forwards;
    opacity: 80%;
}

/* @keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(230px);
    }
} */

/*? BARRA LATERAL DE DESPLAZAMIENTO T_Descripcion */

.caja_desc_txt::-webkit-scrollbar {
    width: 10px;
    background-color: #007ffe;
}

.caja_desc_txt::-webkit-scrollbar-thumb {
    background-color: aliceblue;
    width: 10px;
}