#todo{
    float: left;
    width: 83.19%; /* 792 / 952 */
    height: 24rem;
    position: relative;
    margin: 1.5rem auto;
    }

#slider{
    width: 100%; 
    height: 24rem;
    position: absolute;
    overflow: hidden;
    }

#next{   
    text-align: center;
    line-height: 50px;
    color: white;
    position: absolute; 
    top: 10rem;
    right: 0; 
    z-index: 99;
    cursor: pointer;
    width: 50px; height: 50px;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;

}

#prev{   
    text-align: center;
    line-height: 50px;
    color: white;
    position: absolute; 
    top: 10rem;
    left: 0; 
    z-index: 99;
    cursor: pointer;
    width: 50px; height: 50px;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;

}


#todo:hover #next {
    opacity: 1;
    transition: all 0.3 ease-out;
    -webkit-transition: all 0.3 ease-out;
}

#todo:hover #prev {
    opacity: 1;
    transition: all 0.3 ease-out;
    -webkit-transition: all 0.3 ease-out;
}

.items{
    width: 100%;
    height: auto;
}

.kawaii{
    width: 100%;
    height: auto;
}

.m_imagenslider{
    width: 100%;
    height: auto;
}

.m_linkslider{
    text-decoration: #fff;
}

.m_textoslider{
    font-size: 0.8rem;
}

.textokawaii {
    width: 100%; 
    height: 500px;
    background-color: rgba(0,0,0,0.8);
    position: absolute;
    top: 500px;
    z-index: 99;
    opacity: 0;
    }


#todo:hover .textokawaii {
    opacity: 1;
    top: 18rem;
    -webkit-transition: all 0.5s ease-out;

}

.textokawaii h2 {
    font-weight: bold;
    color: white;
    padding: 0 20px;
    margin-top: 15px;
}

.textokawaii p {
    font-weight: lighter;
    color: white;
    padding: 0 20px;
    margin-top: -15px;
}