.body {
    padding-top: 0;
    height: calc(100vh - 50px);
}
.header {
    display: none;
}
#info-page {
    display: table;
    height: 100%;
    padding: 0;
    width: 100%;
}
iframe {
    border: none;
    height: calc(100vh - 60px);
    width: 100%;
}
/*BEGIN:: Custom Scrollbar*/
/* width */
iframe::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    cursor: pointer;
}
/* Track */
iframe::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Handle */
iframe::-webkit-scrollbar-thumb {
    background: rgba(22,178,188,0.5);
    border-radius: 5px;
    cursor: pointer;
}
/* Handle on hover */
iframe::-webkit-scrollbar-thumb:hover {
    background: rgba(22,178,188,1);
}
@media (max-width: 768px) {
    iframe::-webkit-scrollbar {
        display: none;
    }
}
/*END:: Custom Scrollbar*/