.ToastMessageContainer{
    position: absolute;
    top: 105px;
    right: 30px;
}

.ToastMessage {
    margin-bottom: 12px;
    background: var(--BackColor3);
    -moz-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border-radius: 12px;
    padding: 20px 35px 20px 25px;
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.ToastMessage.active{
    transform: translateX(0%)
}


.ToastMessage1 {
    border-left: 6px solid #407040;
}

.ToastMessage2 {
    border-left: 6px solid #850505;
}


.ToastMessage .ToastMessageContent {
    display: flex;
    align-items: center;
}

.ToastMessageContent .ToastMessageMessage {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.TOASTSVG {
    height: 35px;
    width: 35px;
}

#SVGCheck {
    fill: #407040
}

#SVGError {
    fill: #850505
}

.ToastMessageMessage .ToastMessageMessageSpan1 {
    font-weight: bold;
}

#SVGExit {
    position: absolute;
    top: 10px;
    right: 15px;
    fill: var(--Schrift);
    width: 25px;
    height: 25px;
    cursor: pointer;
    opacity: 0.7;
}

#SVGExit:hover {
    opacity: 1;
}
/* .toast .progress{
    position: absolute;
    bottom: 0;
    left:0;
    height: 3px;
    width: 100%;
}


.progress.active:before{
    animation: progress 5s linear forwards ;
}

@keyframes progress {
    100%{
        right: 100%;
    }
}

#ProgCheck:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #407040;
}

#ProgError:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #850505;
} */