
#cookie-consent-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background: #000;
    opacity: 0.5;
    transition: opacity 1s;
}

#cookie-consent-modal-overlay.cookie-consent-visible {
    display: block;
}

#cookie-consent-modal {
    display: none;
    position: fixed;
    top: 10vh;
    left: 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2147483647;
    background: rgba(255, 255, 255, 0.95);
    padding: 36px 20px 45px;
    color: #000;
    transform: scaleY(0);
    transition: transform 1s ease-in-out;
    text-align: center;
}

#cookie-consent-modal.cookie-consent-visible {
    display: block;
    transform: scaleY(1);
}

#cookie-consent-modal span {
    color: inherit;
}

#cookie-consent-modal-heading,
#cookie-consent-modal-body {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
}

#cookie-consent-modal-heading {
    margin-top: 19px;
    text-transform: uppercase;
}

#cookie-consent-modal-body {
    margin-top: 25px;
}

#cookie-consent-settings {
    display: inline-block;
    margin-top: 22px;
}

.cookie-consent-setting input[type="checkbox"] {
    appearance: revert;
    margin: 0 3px 0 0;
}

#cookie-consent-settings label {
    font-weight: inherit;
}

#cookie-consent-accept-all-button {
    display: block;
    margin: 38px auto 19px;
    width: 280px;
    border-radius: 39px;
    border: none;
    background-color: #aa0028 ;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #fff;
    text-align: center;
    line-height: 25px;
    font-weight: 500;
}

#cookie-consent-accept-all-button:hover {
    background-color: #5e0016;
}

#cookie-consent-accept-all-button .cookie-consent-button-text-large {
    text-transform: uppercase;
    font-size: 25px;
}

#cookie-consent-accept-all-button .cookie-consent-button-text-small {
    text-transform: none;
    font-size: 13px;
}

#cookie-consent-actions {
    display: flex;
}

#cookie-consent-actions a {
    font-size: 13px;
    line-height: 21px;
}

#cookie-consent-details-collapsible {
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

#cookie-consent-details {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    padding-top: 21px;
    padding-bottom: 14px;
    text-align: left;
    font-size: 14px;
    line-height: 21px;
}

#cookie-consent-details dl,
#cookie-consent-details dt,
#cookie-consent-details dd {
    margin: 0;
    padding: 0;
}

#cookie-consent-details dt {
    font-weight: 700;
}

#cookie-consent-details dd + dt {
    margin-top: 7px;
}

@media screen and (max-width: 479px) {
    #cookie-consent-settings {
        text-align: left;
    }

    .cookie-consent-setting + .cookie-consent-setting {
        margin-top: 21px;
    }

    #cookie-consent-actions {
        flex-direction: column;
        justify-content: center;
    }

    #cookie-consent-actions a + a {
        margin-top: 21px;
    }
}

@media screen and (min-width: 480px) {
    #cookie-consent-settings::after {
        display: block;
        clear: left;
        content: "";
    }

    .cookie-consent-setting {
        float: left;
    }

    .cookie-consent-setting + .cookie-consent-setting {
        margin-left: 44px;
    }

    #cookie-consent-actions {
        flex-direction: row;
        justify-content: right;
    }

    #cookie-consent-actions a {
        margin-right: 21px;
    }
}

@media screen and (max-height: 640px) {
    #cookie-consent-modal-heading {
        font-size: 25px;
    }
}

@media screen and (min-height: 641px) {
    #cookie-consent-modal-heading {
        font-size: 30px;
        line-height: 38px;
    }
}