#cookie-banner {
    z-index: 900000;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 415px;
    width: 400px;
    max-height: 85%;
    overflow-y: auto;
    overflow-x: hidden;

    @media only screen and (max-width: 480px) {
        width: 100%;
        right: 0;
    }
}

#cookie-banner .button-container {
    display: flex;
    width: 100%;
    gap: 10px;
}

#cookie-banner .button-container button {
    flex: 1;
}

#cookie-banner p {
    text-align: justify;
}

#cookie-settings {
    display: none;
}

#cookie-banner h3 {
    margin-bottom: 10px;
}

#cookie-banner button {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}

button#reject-all, button#accept-all, button#save-cookies, button#back-button {
    width: 182px;
}

button#customize {
    background-color: #00468c;
    color: white;
}

button#back-button {
    background-color: #00468c;
    color: white;
}

#banner-header {
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
    background-color: #00468c;
    margin-bottom: 10px;
    color: white;
}

#banner-footer {
    padding: 5px 15px 5px 15px;
    color: white;
}

#banner-footer a {
    color: #00468c;
    font-weight: bold;
    float: right;
}

#cookie-info, #cookie-settings {
    padding: 0 15px 5px 15px;
}

#cookie-info p {
    color: #000 !important;
}

#cookie-settings p {
    color: #7a7a7a;
}

.hidden {
    display: none;
}