<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookies-popup {
    position: fixed;
    width: 100%;
    background-color: #38a6a6;
    padding: 30px 10px;
    bottom: -500px;
    height: 120px;
    z-index: 10000;
    transition: all .4s ease-in;
    right: 0;
    display: flex;
    justify-content: center;
}

.cookies-popup .container {
    text-align: center;
    display: flex;
    justify-content: center;
}

.cookies-popup .container button {
    background-color: #fff;
    color: #38a6a6;
    border: none;
    /* padding: 10px 15px; */
    margin: 10px 0 0 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all .1s ease-in;
    border-radius: 2px;
    height: 40px;
    width: 150px;
}

.cookie-button-container {
    width: 30%;
    margin: 0 40px 0 0;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.cookies-popup .container button:hover {
    transform: scale(1.1); 
}

.cookie-text-container {
    width: 80%;
    text-align: left;
    margin-left: 50px;
}

.text-wrapper {
    /* width: 80%; */
    padding: 0 0 20px 0;
}

.cookie-text-container p {
    color: #fff;
    font-size: 16px;
}

.cookie-text-container p a {
    color: #fff !important;
    text-decoration: underline;
}

@media (max-width: 950px) {
    .cookies-popup {
        height: 180px;
    }
}

@media (max-width: 700px) {
    .cookie-text-container p {
        font-size: 12px;
    }

    .cookie-text-container {
        width: 95%;
        margin-left: 0;
    }

    .cookies-popup {
        width: 97%;
        height: 250px;
    }

    .cookies-popup .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
    }

    .cookie-button-container {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .cookies-popup .container button {
        margin: 0;
    }
}</pre></body></html>