.toast_parent {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 2000;
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

/*box-shadow: rgb(0 0 0 / 15%) 0px 2px 8px 0px;*/
.toast_custom {
    position: relative;
    border-radius: 12px;
    background: #fff !important;
    width: fit-content;
    max-width: 400px;
    padding: 20px 35px 20px 25px;
    box-shadow: rgb(0 0 0 / 56%) 0px 0px 16px 0px;
    margin: 0 10px 10px 0;
    overflow: hidden;
    transform: translateX(calc(100% + 20px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

.toast_custom.activeToast {
    transform: translateX(0%);
}

.toast_custom .toast_custom-content {
    display: flex;
    align-items: flex-start;
    /*align-items: center;*/
}

.toast_custom-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;
    scale: 1.3;
    /* background-color: #4070f4; */
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.default {
    background-color: #4070f4;
}

.successToast {
    background-color: #00ba88;
}

.errorToast {
    background-color: #e93e2c;
}
.infoToast {
    background-color: #ece46e;
}

.toast_custom-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.message .text.text-1 {
    font-weight: 600;
    color: #333;
}

span.text-2 div{
    position: relative;
    margin-bottom: 4px;
    padding: 0 0 0 10px;
    font-size: 14px;
}

span.text-2 div::before{
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #333;
    /* left: -10px; */
    left: 0;
    top: 7px;
    border-radius: 100%;
}

.toast_custom .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

.toast_custom .close:hover {
    opacity: 1;
}

.toast_custom .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
}

.toast_custom .progress:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
}

.no-progress::before{
    width: 0 !important;
}

.progress.activeToast:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        left: 100%;
    }
}
