.cookie-consent-popup {
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #9dca00;
}

.cookie-consent-top-wrapper {
    width: 50%;
    margin: auto;
}

.cookie-consent-details {
    width: 50%;
    margin: auto;
}

.cookie-consent-details td, .cookie-consent-details label {
    color: white;
}
.cookie-consent-details td {
    display: inline-block;
}

.cookie-consent-details label {
    margin-bottom: 20px;
    display: block;
}

.cookie-consent-popup.open {
    display: block;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    padding: 15px 0;
}

.cookie-consent-controls {
    display: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
    color: white;
}

.cookie-consent-message {
    color: white;
}

.cookie-consent-link:hover {
    color: #0f123b;
}

.cookie-consent-accept-all, .cookie-consent-controls-toggle, .cookie-consent-details-toggle, .cookie-consent-save {
    color: black;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    margin: 15px;
    display: inline-block;
    text-decoration: none;
    border: none;
}

.cookie-consent-controls.open {
    display: block;
    max-height: 600px;
    width: 50%;
    margin: auto;
}

.cookie-consent-details {
    display: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-out;
    -moz-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
}

.cookie-consent-details.open {
    display: block;
    max-height: 600px;
}

@media(max-width: 992px) {
    .cookie-consent-top-wrapper {
        width: 100%;
        padding: 15px;
    }

    .cookie-consent-details {
        width: 100%;
        padding: 15px;
    }
}

