.white_color {
    text-shadow: -1px -1px 1px black;
    color: cornsilk;
}

.quote-text {
    border-left: 4px solid #e7e7e7;
    padding-left: 20px;
    color: #888;
}

.post-meta {
    text-align: center;
}

.widget-container {
    border: 2px solid #e4e4e4;
    padding: 20px;
    background: url(/images/box_bg.jpg) #eff1f0;
    overflow: hidden
}

#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 900px;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 25px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

#cookie_notification p {
    margin: 0;
    text-align: left;
    color: $color_text;
}

@media (min-width: 576px) {
    #cookie_notification.show {
        display: flex;
    }

    .cookie_accept {
        margin: 0 0 0 25px;
    }
}

@media (max-width: 575px) {
    #cookie_notification.show {
        display: block;
        text-align: left;
    }

    .cookie_accept {
        margin: 10px 0 0 0;
    }
}