#isi-information{
    padding: 30px 50px;
    position: fixed;
    bottom: 0;
    height: 120px;
    overflow-y: hidden;
    background-color: #0c233e;
    color: #fff;
    z-index: 1001;
    transition: .3s all ease-in-out;
}

#isi-information p, #isi-information strong, #isi-information h2{
    color: #fff;
}

#isi-information:after{
    content: "See More +";
    position: absolute;
    top: 25px;
    right: 25px;
}

#isi-information:not(.active):hover{
    height: 140px;
}

#isi-information.active:after{
    content: "Close -";
}

#isi-information h2{
    font-size: 18px;
    line-height: 28px;
}

#isi-information.active{
    height: 70vh;
    overflow-y: scroll;
}

#isi-information.hidden,#isi-information.hidden:hover{
    height: 0;
    bottom: -70px;
}

html.isi-active, html.isi-active body{
    max-height: 100vh;
    overflow-y: hidden;
}

#isi-information:hover{
    cursor: pointer;
}