#toast-container {
    position: fixed;
    z-index: 999999;
    margin-top: 22px;
    margin-bottom: 16px;
}
.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}
.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}
.toast-top-left {
    top: 0;
    left: 16px;
}
.toast-top-right {
    top: 0;
    right: 16px;
}
.toast-bottom-right {
    right: 16px;
    bottom: 0;
}
.toast-bottom-left {
    bottom: 0;
    left: 16px;
}
.toast-bottom-center > div,
.toast-top-center > div {
    width: 650px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.toast-bottom-full-width > div,
.toast-top-full-width > div {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.toast {
    background: #fff;
    color: #fff;
    overflow: hidden;
    margin: 0 0 8px;
    padding: 15px 51px 15px 15px;
    width: 300px;
    border-radius: 5px;
    border: none;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 18px 2px rgba(73, 84, 99, 0.25);
    background: #090d1c;
    position: relative;
    z-index: 99999;

}
.toast-close-button {
    cursor: pointer;
    position: absolute;
    text-align: left;
    right: 15px;
    text-indent: -9999em;
    overflow: hidden;
    background: 0 0;
    border-radius: 50%;
    border: none;
    height: 36px;
    width: 36px;
    transition: all 0.3s;
}
.toast-close-button:after {
    position: absolute;
    content: "\e646";
    font-family: themify;
    top: 0;
    right: -1px;
    text-indent: 0;
    display: block;
    font-size: 13px;
    line-height: 38px;
    height: 36px;
    width: 36px;
    text-align: center;
    color: #fff;
    transition: all 0.3s;
}
.toast-close-button:focus,
.toast-close-button:hover {
    background: rgba(224, 232, 243, 0.15);
    box-shadow: none;
    outline: 0;
}
.toast-message {
    position: relative;
    flex-grow: 1;
    font-size: 13px;
    line-height: 17px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    min-height: 30px;
}
.toast-message-icon {
    display: inline-block;
    font-size: 14px;
    margin-right: 15px;
    margin-left: -10px;
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
}
.toast-message-icon.ti-alert:before {
    position: relative;
    top: -2px;
}
.toast-info .toast-message-icon {
    background: #1babfe;
}
.toast-warning .toast-message-icon {
    background: #ffc100;
}
.toast-success .toast-message-icon {
    background: #00d285;
}
.toast-error .toast-message-icon {
    background: #ff6868;
}
@media (min-width: 576px) {
    .toast-message {
        font-size: 14px;
        line-height: 18px;
    }
}
.toast-top-right {
    top: 70px;
    width: 100%;
}
.toast {
    width: 100%;
    max-width: 1109px;
    margin: auto;
    left: 18px;
    cursor: pointer;
}
.toast-success{
    background:#3ace41
}
.toast-danger, .toast-error{
    background:#e83c3c
}
.hidden{
    display: none!important;
}