/** Module dropdown list making to scrollable **/
.module-list-scroll {
    height: 16em;
    overflow-y: scroll;
    overflow-x: hidden;
    /* overflow-y: hidden;*/
}

@media (min-width: 768px) {
    .page-message {
        top: 4.25rem;
        width: auto;
        max-width: 47rem;
        border-radius: 4rem rem;
    }
}

.page-message {
    position: fixed;
    top: 3.5rem;
    left: 50%;
    padding: 0.5rem 1rem;
    display: inline-table;
    width: 100%;
    max-width: 100%;
    color: #363642;
    background-color: #f7c46c;
    text-align: center;
    z-index: 1030;
    box-shadow: 0 1rem 3rem rgba(20, 20, 31, .175);
    transform: translate3d(-50%, 0, 0);
    cursor: pointer;
}
