
.WsNotification-box-container {
    left:0px;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    top: 4.5em;
    opacity: 1;
}

.WsNotification-box {}

.WsNotification-success-wrapper {
    background-color: #5DAD78;
    padding: 0.7em 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 3px;
}

.WsNotification-error-wrapper {
    background-color: #E04D46;
    padding: 0.7em 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 3px;
}

.WsNotification-neutral-wrapper {
    background-color: #FFFFFF;
    border: 1px solid black;
    padding: 0.7em 1em;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 3px;
}

.WsNotification-image {
    fill: white;
    width: 15px;
    height: 15px;
    padding-right: 1em;
    filter: brightness(0) invert(1);
}

.WsNotification-text{
    font-size: 13px;
    color: white;
    font-weight: 500;
    letter-spacing: 1.2px;
}

.WsNotification-neutral-wrapper > .WsNotification-text {
    padding-left: 1em;

    color: black !important;
}

.WsNotification-neutral-wrapper > .WsNotification-image {
    fill: none;
    padding: 0;
    filter: none;

    animation: infinite 1s linear spin;
}

@keyframes spin {
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}

@keyframes fadeOut {
    from {
        opacity:1;
    }
    to {
        opacity:0;
    }
}