@media screen and (max-width: 767px) {
    .screen-height {
        min-height: calc(100vh - 66px - 120px);
    }
    .panel-height {
        min-height: calc(100vh - 66px - 120px - 32px);
    }
}
@media screen and (min-width: 768px) {
    .screen-height {
        min-height: calc(100vh - 66px - 88px);
    }
    .panel-height {
        min-height: calc(100vh - 66px - 88px - 32px);
    }
}
.screen-style {
    background-color: #f5f5f5;
    padding: 16px 0px;
}
.box-style {
    padding: 0px 16px;
    display: flow-root;
}
.box-center {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}