.cookie-consent-popup {
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: ease;
    display: none;
    position: fixed;
    z-index: 999999;

    width: 30vw;

    background: #0C3F68;
    color: #CCC;
    padding: 40px;
    left: 20px;
    bottom: 20px;
    border-radius: 6px;

    max-height: 90vh;
    overflow: auto;
}

.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-controls label.cookie-consent-control {
    display: inline-block;
    padding: 9px;
}

.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;
    padding-top: 10px;
}

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

.cookie-consent-details label {
    display: inline-block;
    padding: 10px 0 0;
}

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

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


/*.cookie-consent-controls.open {*/
/*    margin: 0 0 30px 0;*/
/*    max-height: 600px;*/
/*}*/


.cookie-consent-link {
    color: inherit;
    font-weight: bold;
}


.cookie-consent-popup button.cookie-consent-accept-all,
.cookie-consent-popup button.cookie-consent-deny-all,
.cookie-consent-popup button.cookie-consent-save,
.cookie-consent-popup button.cookie-consent-controls-toggle {
    display: inline-block;
    padding: 8px;
    margin: 3px 1px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    position: relative;
    letter-spacing: 0;
    will-change: box-shadow, transform;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #999999;
    color: #FFFFFF;
}

.cookie-consent-details-toggle {
    border: 0;
    background: inherit;
    text-align: center;
    width: 100%;
    padding-top: 10px;
    font-weight: bold;
}

.cookie-consent-details-toggle:hover {
    color: #4285f4;
}

.cookie-consent-popup table td {
    font-size: 14px;
    color: #999;
}

.cookie-page table.cookie-table {
    margin: 10px 0 40px 0;
}

.cookie-page table.cookie-table thead {
    background: #F7F7F7;
}

.cookie-page table.cookie-table tbody tr:hover {
    background: #FAFAFA;
}

.cookie-page h3 {
    margin: 40px 0 10px;
}

@media (max-width: 991px) {
    .cookie-consent-popup {
        width: 50vw;
    }
}
@media (max-width: 768px) {
    .cookie-consent-popup {
        width: 60vw;
        padding: 30px;
    }
}
@media (max-width: 480px) {
    .cookie-consent-popup {
        width: 80vw;
        padding: 20px;
    }
}