.toastcontainer {
    position: absolute;
    margin: 5px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    transition: all linear 0.5s;
    bottom: 0px;
    vertical-align: bottom;
}

.toast {
    margin-top: 5px;
    min-width: 70%;
    opacity: 1!important;
    margin-left: auto;
    margin-right: auto;
}

.toast.ng-move,
.toast.ng-enter,
.toast.ng-leave {
    transition: all linear 0.5s;
}

.toast.ng-enter {
    opacity: 0!important;
}

.toast.ng-enter.ng-enter-active {
    opacity: 1!important;
}

.toast.ng-leave {
    opacity: 1!important;
    transform: translateX(0px);
}

.toast.ng-leave.ng-leave-active {
    opacity: 0!important;
    transform: translateX(30%);
}
