html, body {
    margin: 0;
    height: 100%;
}

#header-container {
    box-shadow: 0px 4px 10px rgba(82, 103, 124, 0.15);
    height: 75px;
    background-color: #ffffff;
}

#header-container nav {
    padding-top:  15px;
    padding-left: 30px;
    padding-right: 30px;
}

#header-emergency {
    float: right;
    margin-top: 8px;
}

#header-emergency img {
    height: 25px;
    position: absolute;
    left: -30px;
}

#header-emergency span {
    display: inline-block;
    padding-top: 5px;
}

#header-emergency a {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: right;
    color: #AA3535;
    margin-right: 30px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

#app-container {
    height: 100%;
    background: linear-gradient(0deg, #d1d4d4 0%, #E5E5E5 70%, #FFFFFF 100%);
}

#maintenance-page-container {
    height: 600px;
    width: 1200px;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    margin: auto;
    margin-top: 50px;
    background: #FFFFFF;
    margin-bottom: 60px;
    position: relative;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
}

#maintenance-title {
    background: linear-gradient(0deg, #143853 0%, #1373A5 100%);
    height: 190px;
    text-align: center;
}

#maintenance-title img {
    margin-top: 32px;
}

#maintenance-title h2 {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 29px;
    color: #FFFFFF;
}

#maintenance-text {
    width: 75%;
    margin: auto;
    margin-top: 38px;
}

#maintenance-text h4 {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #262626;
}

#maintenance-text p {
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #424242;
    text-align: left;
}

#maintenance-color-bars {
    height: 5px;
    width: 100%;
    display: inline-flex;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

#maintenance-color-bars div {
    height: 100%;
    width: 20%;
}

#maintenance-color-bars div:nth-child(1) {
    background: #9AD7F3;
}

#maintenance-color-bars div:nth-child(2) {
    background: #2FACE2;
}

#maintenance-color-bars div:nth-child(3) {
    background: #1C97D3;
}

#maintenance-color-bars div:nth-child(4) {
    background: #1373A5;
}

#maintenance-color-bars div:nth-child(5) {
    background: #0B4D6F;
}

#footer-container {
    width: 950px;
    margin: auto;
    background: #E8E8E8;
    height: 45px;
}

#app-footer {
    padding-top: 3px;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 15px;
    color: #040404;
    padding-left: 20px;
}

#app-footer a {
    padding-left: 10px;
}

@media only screen and (max-width: 1200px) {
    #maintenance-page-container {
        height: 600px;
        width: 90%;
    }

    #footer-container {
        width: 75%;
    }
} 

@media only screen and (max-width: 700px) {
    #maintenance-page-container {
        height: 600px;
        width: 96%;
    }

    #footer-container {
        width: 96%;
    }
}

@media only screen and (max-width: 515px) {
    #footer-container {
        height: 55px;
    }
}