#cookie-consent-banner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    display: flex;
    z-index: 999999;
    bottom: 100px;
    right: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    box-sizing: border-box;
    width: calc(100% - 40px);
    max-width: 560px;
    padding: 20px;
    background-color: #000000;
    color: #fff;
    opacity: 0.95;
}

#cookie-consent-banner .cookie-title {
    display: block;
    background-color: #000;
    color: #fff;
    position: absolute;
    padding: 0 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    top: 0;
    white-space: nowrap;
    font-size: 16px;
    line-height: 22px;
}

#cookie-consent-banner .cookie-body {
    position: relative;
    border: 1px solid #000000;
    padding: 2px
}

.cookie-body .cookie-section:first-child {
    margin-top: 0;
}

.cookie-body .cookie-section {
    text-align: center;
    padding: 20px 18px;
    border: 1px solid #fff;
    margin-top: 2px;
    font-weight: 700
}

.cookie-section p {
    text-align: center;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: normal;
    font: 12px/16px Menlo, Consolas, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}

.cookie-section label {
    font-weight: normal;
    font: 12px/16px Menlo, Consolas, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}

.cookie-section label input {
    margin-right: 4px;
}

#cookie-consent-banner .cookie-consent-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

#cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    width: fit-content;
    margin-inline: auto;
    margin-top: 16px;
    gap: 16px
}

.cookie-consent-buttons .btn {
    position: relative;
    background: #fff;
    border: none;
    padding: 3px 16px;
    margin: 0;
    color: #aaaaad;
    font: 12px/16px Menlo, Consolas, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
    box-shadow: 6px 6px 0 0 #000
}

.cookie-consent-buttons .btn:focus {
    color: #700000
}

.cookie-consent-buttons .btn:hover {
    background-color: #fefc4f;
    cursor: pointer
}

.cookie-consent-buttons .btn:before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px
}

.cookie-consent-buttons .btn:first-letter {
    color: #000
}

.cookie-consent-buttons .btn-accent {
    background-color: #fefc4f;
    color: #700000
}

@media screen and (max-device-width: 600px){
    #cookie-consent-banner {
        bottom: unset;
        right: unset;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .cookie-consent-buttons {
        flex-direction: column;
    }
}
