.cookie-consent-popup {
    animation-name: show;
    animation-duration: 0s;
    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: 0s;
    animation-timing-function: ease;
}

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

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

.cookie-consent-details {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0s ease-out;
    -moz-transition: max-height 0s ease-out;
    transition: max-height 0s 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;
    }
}

/* custom */

.cookie-consent-popup {
    background: #fff;
    box-shadow: 0 0 10px 5px #ddd;
    padding: 30px;
    max-height: 100vh;
    overflow: auto;
}

.cookie-consent-controls.open {
    margin: 30px 0 0 0;
}

.cookie-consent-control {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.cookie-consent-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #FF0000;;
    cursor: pointer;
    display: inline-block;
    height: 20px !important;
    outline: none !important;
    position: relative;
    top: -3px;
    width: 20px !important;
}

.cookie-consent-checkbox:checked:after {
    display: block;
    content: '\2713';
    color: #FF0000;;
    font-size: 15px;
    position: relative;
    top: -8px !important;
    left: -5px !important;
}

.cookie-consent-control span {
    margin: 0 0 0 15px;
}

.cookie-consent-details.open {
    margin: 30px 0 0 0;
}

.cookie-consent-details table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.cookie-consent-details tr {
    width: 100%;
}

.cookie-consent-details td {
    width: 50%;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.cookie-consent-popup button {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    background-color: #FF0000;;
    border-color: #FF0000;
    border-radius: 0;
    margin: 15px 0 0 0;
}

.cookie-consent-popup .cookie-consent-controls-toggle {
    display: none !important;
}

.cookie-consent-details-toggle {
// . btn-default !important;
}


