.cookie-consent-popup {
    padding: 1em;
    background: #222d32;
    color: #ffffff;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999999;
}
.cookie-consent-popup button {
    color: black;
}
.cookie-consent-popup.open {
    display: block;
    opacity: 1;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
}

.cookie-consent-controls {
    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-controls.open {
    margin-top: 1.5em;
    max-height: 600px;
}

.cookie-consent-controls.open  label{
    margin-right: 1.5em;
}

.cookie-consent-details {
    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 {
    max-height: 600px;
}

@keyframes show {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes hide {
    from {opacity: 1;}
    to {opacity: 0;}
}

.cookie-consent-details td {
    padding: 1em;
}