<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Cookie (СѓРІРµРґРѕРјР»РµРЅРёРµ) */

.cookie-warning {
	display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 1px -1px 4px 0px rgba(0,0,0,0.24);
    -webkit-box-shadow: 1px -1px 4px 0px rgba(0,0,0,0.24);
    -moz-box-shadow: 1px -1px 4px 0px rgba(0,0,0,0.24);
    padding: 10px 40px;
    box-sizing: border-box;
    z-index: 999999;
}

.cookie-text {
    color: rgb(149, 149, 149);
    font-size: 16px;
    line-height: 20px;
    font-family: 'Roboto', Arial,sans-serif;
    max-width: calc(100% - 235px);
}

.cookie-submit {
    display: block;
    width: 215px;
    background: rgb(232, 232, 232);
    color: rgb(108, 108, 108);
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    font-family: 'Roboto', Arial,sans-serif;
    border-radius: 30px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    cursor: pointer;
}

@media only screen and (max-width: 1050px) {

    .cookie-warning {
        max-width: 90%;
    }
}

@media only screen and (max-width: 768px) {

    .cookie-warning {
        max-width: 100%;
        flex-wrap: wrap;
        border-radius: 10px;
        padding: 10px 15px;
    }

    .cookie-text {
        max-width: 100%;
        width: 100%;
    }

    .cookie-submit {
        margin: 15px auto 10px auto;
    }
}

/* Cookie, РєРѕРЅРµС† */</pre></body></html>