<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gdpr-popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999999999;
    line-height: 100%;
    line-height: 100vh;
    text-align: center;
    color: black;
}

.gdpr-inner {
    display: inline-block;
    vertical-align: middle;
    background-color: white;
    line-height: normal;
    margin: 20px 40px;
    width: 100%;
    max-width: 440px;
    border-radius: 4px;
    padding: 30px 20px;
    font-family: sans-serif, ARIAL;
}

.gdpr-inner p {
    position: relative;
    display: block;
    line-height: 22px;
    font-size: 15px;
    margin-bottom: 20px;
}


.gdpr-inner strong {
    position: relative;
    display: block;
    line-height: 25px;
    font-size: 20px;
    font-weight: 700;

}

.gdpr-buttonsWrap {
    position: relative;
    display: block;
    text-align: center;
}

.gdpr-buttonsWrap a {
    position: relative;
    display: inline-block;
    line-height: 45px;
    padding: 0 20px;
    padding-top: 2px;
    border-radius: 4px;
    background-color: #2FCA14;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15;
    overflow: hidden;
}
.gdpr-buttonsWrap a:after {
    background-color: rgba(255,255,255,0.08);
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 120%;
    padding-bottom: 100%;
    border-radius: 100px;
    -webkit-transition: all 300ms ease-out; /* Saf3.2+, Chrome */
    -moz-transition: all 300ms ease-out; /* FF4+ */
    -ms-transition: all 300ms ease-out; /* IE10 */
    -o-transition: all 300ms ease-out; /* Opera 10.5+ */
    transition: all 300ms ease-out;
    transform: translate(-50%,-50%) scale(0);
}
.gdpr-buttonsWrap a:hover:after {
    transform: translate(-50%,-50%) scale(1);
}

.gdpr-buttonsWrap a.gdpr-disagree {
    background-color: #A9ADA9;
}</pre></body></html>