.panel-custom{
    box-shadow: 0 0 8px 8px #880606;
}

.text-panel-header-title{
    font-size:48px;
    font-weight:bold;
    color: #ffffff;
}

.custom-logo{
    width:100%;
    max-height:200px;
}

@media only screen and (max-width: 768px) {
    .text-panel-header-title{
        font-size:30px;
        font-weight:bold;
        color: #ffffff;
    }


}


@media only screen and (max-width: 300px) {
    .custom-logo{
        width:100%;max-height:100px;
    }
}

.text-panel-title{
    font-weight:bold;
    color: #e60000;
}

.text-warning{
    color:#EB9700;
}

.text-normal{
    color: #171717;
}

html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

body{
    background-color:#880606FF;
    background-size: cover;
    background-position: top center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 36px;
    text-align: center;
    padding: 5px;

}

.footer {
    margin-top:25px;
    height: 50px;
    bottom: 0;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

html{
    min-height:100%;
}

.hint_warning {
    color:white;
    padding:5px;
    font-size:11px;
}

/*Cookie Consent Begin*/
#cookieConsent {
    background-color: rgba(20,20,20,0.8);
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: "Trebuchet MS",Helvetica,sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 9999;
}

#cookieConsent a {
    color: #9c2aa0;
    text-decoration: none;
}

#closeCookieConsent {
    float: right;
    display: inline-block;
    cursor: pointer;
    height: 20px;
    width: 20px;
    margin: -15px 0 0 0;
    font-weight: bold;
}

#closeCookieConsent:hover {
    color: #FFF;
}
#cookieConsent a.cookieConsentOK {
    background-color: #9c2aa0;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    float: right;
    margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
    color:#fff;
    background-color:
        #751f78;
    border-color: #59185b;
}
/*Cookie Consent End*/

/* Animation */

.rotating { animation: turner 3s infinite linear }

@keyframes turner{
    from{  transform: rotate(0deg)   }
    to  {  transform: rotate(360deg) }
}
