/* custom toastr start */

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 12px 1px rgba(43, 55, 72, 0.15);
    border-radius: 4px;
}

.toast.showing {
    opacity: 0;
}

.toast:not(.show) {
    display: none;
}

#toast-container> :not(:last-child) {
    margin-bottom: 0.75rem;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.toast-header .btn-close {
    margin-right: -0.375rem;
    margin-left: 0.75rem;
}

.toast-body {
    padding: 0.75rem;
    word-wrap: break-word;
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    padding: 1.25rem;
    width: 100%;
}

#toast-container[class*=-center] .toast {
    margin-left: auto;
    margin-right: auto;
}

#toast-container[class*=-left] .toast {
    margin-right: auto;
}

#toast-container[class*=-right] .toast {
    margin-left: auto;
}

#toast-container[class*=-full] .toast {
    width: 100%;
}

#toast-container[class*=toast-top] {
    top: 0;
}

#toast-container[class*=toast-bottom] {
    bottom: 0;
}

.toast {
    position: relative;
    pointer-events: auto;
    background: #fff;
    box-shadow: 0 3px 12px 1px rgba(43, 55, 72, 0.15);
    border-radius: 4px;
    opacity: 1;
    border-left: 4px solid transparent;
    border-right: 0px;
    border-top: 0px;
    border-bottom: 0px;
    padding: 1.25rem 4.5rem 1.25rem 1.25rem;
    width: 430px;
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.3rem;
}

.is-dark .toast {
    background: #101924;
    color: #fff;
}

.toast:not(:last-child) {
    margin-bottom: 0.75rem;
}

.toast.toast-success {
    border-color: #1ee0ac;
}

.toast.toast-success .icon {
    color: #1ee0ac;
}

.toast.toast-error {
    border-color: #e85347;
}

.toast.toast-error .icon {
    color: #e85347;
}

.toast.toast-info {
    border-color: #09c2de;
}

.toast.toast-info .icon {
    color: #09c2de;
}

.toast.toast-warning {
    border-color: #f4bd0e;
}

.toast.toast-warning .icon {
    color: #f4bd0e;
}

.toast-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
}

.toast-icon+.toast-text {
    padding-left: 2.35rem;
}

.toast h4,
.toast .h4,
.toast h5,
.toast .h5,
.toast h6,
.toast .h6 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.is-dark .toast h4,
.is-dark .toast .h4,
.is-dark .toast h5,
.is-dark .toast .h5,
.is-dark .toast h6,
.is-dark .toast .h6 {
    color: #fff;
}

.toast-close-button {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 32px;
    width: 32px;
    text-indent: -9999px;
    cursor: pointer;
}

.toast-close-button:after {
    position: absolute;
    top: 0;
    left: 0;
    text-indent: 0;
    color: #8094ae;
    content: "\f00d";
    font-size: 12px;
    line-height: 32px;
    width: 100%;
    text-align: center;
}

.is-dark .toast-close-button:after {
    color: #dbdfea;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
    opacity: 0.4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40);
}

.toast-title {
    font-weight: bold;
}

.toast-message {
    word-wrap: break-word;
}

.toast-message a,
.toast-message label {
    color: #526484;
}

.toast-message a:hover {
    color: #CCCCCC;
    text-decoration: none;
}

.toast .toast-close-button {
    display: flex;
    border: none;
    background: transparent;
    font-size: 0.75rem;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    margin-right: -0.5rem;
    margin-left: 0.5rem;
}

.toast:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* custom toastr end */