.rootContainer {
    height: 100%;
    overflow: hidden;
    background-color: #e7e9eb;
    position: relative;
}

.mainContent {
    width: calc(100% - 56px);
    height: calc(100% - 56px);
    position: absolute;
    display: inline-block;
    top: 56px;
    left: 56px;
    transition: all 150ms linear;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

.mainContent--open {
    width: calc(100% - 56px);
    left: 56px;
}

.message_of_day_button {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    margin: 1rem;
    padding: 1rem;
    border-radius: 7px;
}

.message-button-wrapper {
    margin: 2rem;
}

.message-of-the-day-image_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.message-of-the-day-image_wrapper img {
    width: 240px;
    height: auto;
    contain: content;
}
.useragreement_text {
    max-height: 285px;
    display: inline-block;
    /* top: 56px;
    left: 56px; */
    transition: all 150ms linear;
    overflow: scroll;

}
.useragreement_button {
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    margin: 1rem;
    padding: 1rem;
    border-radius: 7px;
}

.agreement-button-wrapper {
    margin: 2rem;
}


@media screen and (max-width: 991px) {
    .mainContent {
        width: 100%;
        height: calc(100% - 59px);
        top: 59px;
        left: 0;
    }
}