/* Custom Styles */
html, body {
    background: #161E2A;
}
.live-page {
    height: 100%;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}
.live-page__body {
    flex: 1;
    max-height: 100vh;
    overflow: auto;
}
.live-page__sidebar {
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.06);
    z-index: 999;
    width: 400px;
    background: #f9f9f9;
}
.live-page__iframe {
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .live-page__sidebar {
        display: none;   
    }
}