#cookie-consent {
    background-color: #232323;
    bottom: 0;
    box-sizing: border-box;
    color: #cccccc;
    display: none;
    font-size: 0.8rem;
    left: 0;
    padding: 1.5rem;
    position: fixed;
    text-align: left;
    width: 100vw;
    z-index: 5;
}

.cookie-consent-desc {
    margin-bottom: 1rem;
    text-align: justify;
}

.cookie-consent-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
}

@media only screen and (min-width: 1200px) {
    #cookie-consent {
        bottom: 60px;
        left: calc((100vw - 1200px) / 2);
        width: 450px;
    }
}

.cookie-consent-actions button,
.cookie-consent-actions a {
    box-sizing: border-box;
    border: 1px solid #0000FF;
    background-color: #0000FF !important;
    color: #cccccc;
    cursor: pointer;
    display: block;
    font-weight: 400;
    font-size: 1em;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    font-weight: 500;
}

.cookie-consent-actions .cookie-consent-accept {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
}

.cookie-consent-actions .cookie-consent-accept button {
    color: #ffffff;
    background: #0000FF;
    border-color: #0000FF;
}