
/* Cookie (уведомление) */

.cookie-warning {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    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: nowrap;
        border-radius: 0;
        padding: 5px 10px;
    }


    .cookie-text {
        margin-right: 5px;
        font-size: 11px;
        line-height: 12px;
        width: 100%;
        max-width: 100%;
    }

    .cookie-submit {
        margin: 5px auto 5px auto;
        width: 115px;
        font-size: 12px;
        line-height: 12px;
        border-radius: 0;
        padding: 5px;
    }
}

/* Cookie, конец */