﻿.notification {
    position: relative;
    /*background-color:var(--bs-danger);*/
    width: 300px;
    border-radius: 4px;
    min-height: 50px;
    height: 75px;
    z-index: 100;
    margin-bottom: 10px;
    display: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: white;
}
.innerNotification {
    display: flex;
    justify-content: center;
    align-items: center;
    height:100%;
    width:100%;
}
.notificationWrapper {
    position: absolute;
    pointer-events: none;
    top: calc(3rem + 10px);
    left: 10px;
    width: 300px;
    height: calc(100% - 10px - 3rem);
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    /*z-index:100;*/
}

/* Hide scrollbar for Chrome, Safari and Opera */
    .notificationWrapper::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.notificationWrapper {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}