/** Initial GDPR request of permission */
#gdpr-warning-body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b8b2b2;
}
#gdpr-warning-section {
    padding: 16px;
    box-shadow: 0px 0px 30px 2px rgb(63, 63, 63);
    text-align: justify;
    position: sticky;
    bottom: 0px;
    background: #f6f7f8;
    z-index: 9999;
}
#gdpr-warning-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#gdpr-warning-container h1 {
    width: 100%;
    font-size: 2.3em;
}
#gdpr-warning-container input {
    padding: 5px 15px;
    border-radius: 15px;
    border: solid 2px transparent;
    background-color: #f6f7f8;
    color: #8baa3c;
    cursor: pointer;
}
#gdpr-warning-container input:hover {
    background-color: transparent;
    border: solid 2px #ccc;
}
#gdpr-warning-container input[name="gdpr-accepted"] {
    width: 30%;
    min-width: 200px;
    font-weight: bold;
    background-color: #8baa3c;
    color: #fff;
}
#gdpr-warning-container input[name="gdpr-accepted"]:hover {
    background-color: transparent;
    border: solid 2px #8baa3c;
    color: #8baa3c;
}

#gdpr-warning-form {
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 400px) {
    #gdpr-warning-container h1 {
        font-size: 1.8em;
    }
}


div#general-error-tooltip {
    color: red;
    font-weight:bold;
    padding:10px 0;
}

/** Loading spinner */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999999;
    background-color: rgba(0,0,0,0.5);
}
.loader {
    z-index: 9999999999;
    border: 10px solid #b8b2b2;
    border-top: 10px solid;
    border-top-color: #8baa3c !important;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 0.5s linear infinite;
    position: fixed;
    top: calc(50% - 70px);
    left: calc(50% - 45px);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}