.notification-wrapper {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.notification-cookie {
    display: none;
    
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;

    border-top: 1px solid #4d3b3b;
    color: #4d3b3b;
    background-color: #f9f4e5;

    font-family: 'Helvetica', Tahoma, Arial, sans-serif;
    font-size: 16px;
}

.btn-notification {
    margin: 8px;
    font-size: 14px;
}

.notification-cookie .flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

@media (max-width: 960px) {
    .notification-cookie .flex-container {
      flex-direction: column;
      justify-content: center;
    }
}