#importantMessage {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 999;
    overflow: hidden;
    padding: 20px calc((100% - 1170px) / 2);
}

@media only screen and (max-width: 1170px) {
    #importantMessage {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 70%;
        z-index: 999;
        overflow: scroll;
        padding: 20px;
    }
}

#closeImportantMessage {
    position: absolute;
    top: 20px;
    right:20px;
    font-family: Arial, Sans-Serif;
    font-size: 40px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#importantMessage h2 {
    font-size: 36px !important;
    font-weight: bold;
    margin-bottom: 40px;
}

#importantMessage p {
    font-size: 18px;
}



body.color-scheme-yellow #importantMessage {
    background-color: rgba(248, 189, 46, 0.95);
    color: #ffffff;
    box-shadow: 2px 2px 2px 2px #ad8e4a;
}

body.color-scheme-yellow #importantMessage:after {
    color: #232323;
}

body.color-scheme-yellow #importantMessage h2 {
    color: #ffffff !important;
}

body.color-scheme-yellow #importantMessage p {
    color: #ffffff;
}



body.color-scheme-green #importantMessage {
    background-color: #5f804b;
    color: #ffffff;
    box-shadow: 2px 2px 2px 2px #435c36;
}

body.color-scheme-green #importantMessage:after {
    color: #ffffff;
}

body.color-scheme-green #importantMessage h2 {
    color: #ffffff !important;
}

body.color-scheme-green #importantMessage p {
    color: #ffffff;
}