#cookie-notifier {
    position: fixed;
    bottom: 8px;
    background: whitesmoke;
    margin: 0 10%;
    width: 80%;
    padding: 10px;
    border: 1px solid #2c3e50;
    text-align: center;

    /* Скрываем по умолчанию */
    display: none;
}

/* Показываем только если нет куки */
body:not(.cookie-set) #cookie-notifier {
    display: block;
}

#cookie-notifier p {
    margin-bottom: 0px;
}

#cookie-button {
    background: #2c3e50;
    color: whitesmoke;
    border-radius: 7px;
    padding: 4px 7px;
    margin-left: 10px;
    float: right;
    line-height: 10px;
    cursor: pointer;
}

.mb-5 {
    margin-bottom: 5px;
}

.mv-5 {
    margin: 5px 0;
}