
a:hover {
    cursor: pointer;
}
.toast {
    background-color: #FFF !important;
    position: fixed;
    bottom: calc(50% + 150px);
    z-index: 500;
    left: 10%;
    width: 80%;
    overflow: visible;
    color: #fff;
}
@media (min-width: 440px) {
    .toast {
        margin-left: -175px;
        left: 50%;
    }
}

.toast::before {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 1);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    height: 44px;
}
.toast-body {
    padding: 30px;
    padding-top: 60px;
    width: 100%;
    min-height: 100px;
    font-size: 16px;
    background: #FFF;
    box-shadow:  0px 1px 8px rgba(0, 0, 0, 0.9);  
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.9); */
    z-index: 19;
    color:#1B1725;
    /* color: #79c8a6; */
    text-align: center;
}
.toast-body i{
    font-size:80px;
    margin-bottom:40px;
}
.toast.error,
.error .toast-body {
    color: #e41c1c !important;
}
.toast > * {
    z-index: 20;
    position: absolute;
}
.toast .close {
    position: absolute;
    top: 11px;
    right: 11px;
}
.fas.fa-angle-left {
    content: '';
    width: 40px;
    height: 40px;
    background: #FFF;
    position: relative;
    border-radius: 50%;
    z-index: -1;
    text-align: center;
    line-height: 40px;
    margin-top: 6px;
  }