<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.privacy_panel {
    position: fixed;
    bottom: 0;
    left: 0;
    background: rgba(154, 158, 150, 0.95);
    padding: 20px;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    z-index: 10000000;
}

.privacy_wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy_text a {
    position: relative;
    white-space: nowrap;
    color: #fff;
}

.privacy_text a:after {
    display:none;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    text-decoration: none;

}

.privacy_text a:hover:after {
    background: #fff;
}

.privacy_panel .privacy_text a:hover {
    color: #fff;
    text-decoration: none;
}

.privacy_btn {
    padding: 7px 12px 8px;
    background-color: #f48b1a;
    min-width: 100px;
    color: #ffffff;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid #f48b1a;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.privacy_panel .privacy_btn:hover {
    background-color: #e0790b;
    border-color: #e0790b;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 1280px) {
    .privacy_wrapper {
        max-width: 900px;
    }
}

@media (max-width: 480px) {
    .privacy_wrapper {
        justify-content: space-around;
        flex-flow: wrap;
    }

    .privacy_btn {
        margin-top: 20px;
    }
}</pre></body></html>