html,
body {
    overflow: hidden;
    height: 100%;
}
.fullpage {
    padding-bottom: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.fullpage .main-header {
    min-width: 0;
}
.fullpage .mobile-action-button {
    display: block;
    width: 48%;
    float: left;
    text-align: center;
    margin: 0 4% 10px 0;
}
.fullpage .mobile-action-button:nth-child(even) {
    margin-right: 0;
}
.fullpage .jump-view {
    width: 48%;
    margin: 0 4% 10px 0;
    float: left;
}
.fullpage .jump-view:nth-child(even) {
    margin-right: 0;
}
.fullpage .jump-view:nth-child(3) {
    display: none;
}
.fullpage .jump-label {
    display: block;
}
.oldie-header {
    display: none;
    padding: 5px;
    background: black;
    color: white;
}
html.oldie .oldie-header {
    display: block;
}
html.oldie .main-header {
    display: none;
}
#result-iframe-wrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100%;
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
html.oldie #result-iframe-wrap {
    height: 100%;
    height: calc(100% - 32px);
}
#result {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    background: white;
    width: 100%;
    height: 100%;
    display: block;
}
#full-view-ad {
    position: absolute;
    left: 50%;
    bottom: 9px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}
