.cookie-modal {
    box-sizing: border-box;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 40px;
    z-index: 999;
    display: none;
}

.cookie-modal-content {
    padding: 30px;
    background: #ffffff;
    width: 360px;
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    font-size: 0.875em;
}

.cookie-modal-content p {
    margin-bottom: 20px;
    color: #0b0b0b;
}

.cookie-modal-content a {
    color: #0168dd;
}

.cookie-modal-content-close {
    display: inline-block;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    background: #0168dd;
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content-close:hover {
    background: #107cef;
}

@media (max-width: 30em) {
    .cookie-modal {
        padding: 15px;
    }

    .cookie-modal-content {
        width: 100%;
    }
}