.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: 999999;
}
/*
.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 {
    max-height: 600px;
}

.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-popup.open {
    display: block;
    opacity: 1;
    background-color: #ccc;
    padding: 30px;
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
}
.cookie-consent-accept-all {
    background-color: #286090;
    border-color: #204d74;
    color: #fff;
    padding: 10px;
    border-radius: 6pc;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    margin:10px
}

.cookie-consent-details-toggle {
    display: none;
}
.cookie-consent-controls-toggle {
    display: none;
}
.cookie-consent-save {
    display: none;
}
.cookie-consent-details {
    display: none;
}
