#toast-block {
    position: fixed;
    z-index: 999999;
    top: 12px;
    right: 12px;
}

#toast-block .toast-custom.error {
    background: #f94c87;
    color: #fff;
}

#toast-block .toast-custom {
    flex-basis: 220px;
    min-width: 220px;
    max-width: 250px;
    box-shadow: unset;
    border: none;
    background: #fff;
    color: #333;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}

.toast.show {
    display: block;
    opacity: 1;
}

.toast {
    flex-basis: 350px;
    max-width: 350px;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    opacity: 0;
    border-radius: 0.25rem;
}

.fade {
    transition: opacity 0.15s linear;
}

#toast-block .toast-custom .toast-body {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.9rem;
    padding-bottom: 0.95rem;
}

#toast-block .toast-custom .close {
    color: #fff;
    opacity: 0.9;
    font-weight: 300;
    position: absolute;
    top: 5px;
    right: 10px;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.close {
    float: right;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.ml-2, .mx-2 {
    margin-left: 0.5rem !important;
}

.mb-1, .my-1 {
    margin-bottom: 0.25rem !important;
}

#toast-block .toast-custom .toast-body .ic {
    font-size: 20px;
    margin-right: 10px;
    width: 20px;
}

#toast-block .toast-custom .toast-body .text-content {
    font-size: 13px;
    line-height: 16px;
    padding-right: 10px;
}

#toast-block .toast-custom .toast-body .text-content strong {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
}

#toast-block .toast-custom .toast-body .text-content p {
    line-height: 16px;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

#toast-block .toast-custom .progress {
    border-radius: 0px;
    background: transparent;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 5px;
}

.progress {
    height: 6px;
    overflow: hidden;
    border-radius: 1.25rem;
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: 0.65625rem;
    background-color: #e9ecef;
    border-radius: 0.75rem;
}

#toast-block .toast-custom.error .progress-bar {
    background-color: #a50038;
    opacity: 0.7;
}

#toast-block .toast-custom .progress .progress-bar {
    border-radius: 0px;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #02AEC4;
    transition: width 0.6s ease;
}

#toast-block .toast-custom.success .progress-bar {
    background-color: #005f44;
    opacity: 0.7;
}


#toast-block .toast-custom.success {
    background: #00ad7d;
    color: #fff;
}

#toast-block .toast-custom.warning {
    background: #FFBC11;
    color: #fff;
}

#toast-block .toast-custom.warning .progress-bar {
    background-color: #9c7103;
    opacity: 0.7;
}
