.cookie-consent-link{
    font-size: 20px;
}
.cookie-consent-controls-toggle{
    display: none;
}

.cookie-consent-accept-all{
    min-width: 200px !important;
    background-color: #EE5022!important;
    border-color: #EE5022 !important;
    border: 0 !important;
    padding: 10px !important;
    font-size: 17px!important;
    color: white!important;
}

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

.cookie-consent-controls.open{
    display: none;
}

.cookie-consent-text{
    font-size: 20px;
}

.cookie-consent-top-wrapper{
    padding: 40px;
}
.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;
    background: white;
}

.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: 0 0 30px 0;
    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;}
}