body {
    background-color: #f9f6f6;
}

.clear {
    clear: both
}

.hide {
    display: none !important;
}

.error {
    color: red !important;
}

.valid {
    color: green;
}

.banner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 415px;
    background-color: #2e3133;
    z-index: -10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-title {
    width: 100%;
    height: 82px;
    margin-top: 50px;
    font-size: 3.55em;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.37;
    letter-spacing: normal;
    text-align: center;
    color: white;
}

.banner-desc {
    width: 1013px;
    height: 72px;
    font-size: 1.2375em;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.57;
    letter-spacing: normal;
    text-align: center;
    color: white;
}

.footer-container {
    position: fixed;
    bottom: 100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.line {
    width: 25%;
    margin: 0 20px 0 20px;
    height: 1px;
    border-top: solid 1px #deced1;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background-color: #991f3d;
    z-index: 0;
}

.loader .loading {
    width: 300px;
    height: 300px;
    position: relative;
}

.loading-message {
    color: white !important;
}

.change-button {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.switch-lang {
    position: absolute;
    color: #822939;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    -moz-appearance: none;
    -webkit-appearance: none;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.opening-animation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 100;
}

/*********************************** Short Mobile and Portrait **********************/

@media only screen and (max-height: 782px) {
    /******************************** Login ******************************************/
    .footer-container {
        bottom: initial;
        top: 30px;
    }

    .banner-title {
        display: none;
    }

    .banner-desc {
        display: none;
    }
}

/*********************************** Small Mobile and Portrait **********************/

@media only screen and (max-height: 325px) {
    .footer-container {
        display: none;
    }
}

/*********************************** Medium Mobile and Portrait **********************/

@media only screen and (max-width: 767px) and (orientation: portrait) {
    .banner-title {
        display: none;
    }

    .banner-desc {
        display: none;
    }

    .footer-container {
        bottom: initial;
        top: 30px;
    }
}

/*********************************** Large Mobile and Portrait ***********************/

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .banner-title {
        font-size: 42px;
    }

    .banner-desc {
        width: 80%;
        font-size: 18px;
    }
}

/*********************************** Short Mobile and landscape ****************************/

@media only screen and (max-height: 400px) and (orientation: landscape) {
    .footer-container {
        bottom: initial;
        top: 2px;
    }
}

/*********************************** Large Mobile and landscape ****************************/

@media only screen and (max-height: 500px) and (orientation: landscape) {

    .banner-title {
        font-size: 42px;
    }

    .banner-desc {
        width: 80%;
        font-size: 22px;
    }

    .switch-lang {
        z-index: 10;
    }

    .loading .sk-child:before {
        width: 20px;
        height: 20px;
    }
}
