#consent-popup {
    position: fixed;
    /* bottom: 0;
        left: 0;
        right: 0; */
    padding: 2rem 8rem;
    background-color: #fff;
    transition: opacity 1s ease;

    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#consent-popup a {
    text-decoration: none;
}
#consent-popup p {
    font-size: 1.25rem;
    /* margin-bottom: 0; */
}
#consent-popup p:first-of-type {
    color:#3c5caa;
}
#consent-popup p a {
    color: #4b9adb;
}
#consent-popup p a:hover {
    color: #25324a;
}
#consent-popup button a {
    color: white;
}
#consent-popup button {
    background: #2148b1 !important;
    border: solid 1px #2148b1 !important;
    border-radius: 1rem;
}
#consent-popup button:hover {
    background-color: #204582 !important;
    color: white;
}
#consent-popup button:focus {
    outline: none;
}

#consent-popup.hidden {
    opacity: 0;
    visibility: hidden;
}
.blur-filter {
    /* -webkit-filter: blur(2px);
        -moz-filter: blur(2px);
        -o-filter: blur(2px);
        -ms-filter: blur(2px);
        filter: blur(2px); */
    backdrop-filter: blur(5px);
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.overlay--hidden, .modal--hidden {
    display: none;
}

.overlay {
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
}
.modal {
    /*  position: fixed;
        top: 0; */
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}
