#cookies-notification {
    z-index: 99999;
    background-color: #ffffff;
    box-shadow: 0px 0px 3px 0px rgb(0 0 0 / 30%);
    width: 400px;
    position: fixed;
    right: 37%;
    bottom: 1.4rem;
    padding: 1.5rem;
    border: 1px solid black;
    border-radius: 10px;
}

#cookies-notification .cookies-notification-text {
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Roboto',Arial,sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.close-notification {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 20px;
    cursor: pointer;
}

@media only screen and (max-width: 960px) {
    #cookies-notification {
        left: 0;
        bottom: 0;
        width: 88%;
        border-radius: 0;
    }

    #cookies-notification .cookies-notification-text {
        font-size: 12px;
        line-height: 16px;
    }

    .close-notification {
        top: 10px;
        right: 10px;
    }
}
