#custom-toast-container {
    position: fixed;
    top:25%;
    right: 20px;
    z-index: 9999;
}
.custom-toast {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width:330px;
	animation: slideIn 0.3s ease;
	vertical-align:center;border:1px solid #329958; border-left:4px solid  #329958 !important;
}
.addmsg{color:#329958; font-weight:600; display:block; margin-bottom:6px;}
.chkicon{width:20px; height:20px; display:inline-block; background-color:#329958; color:#fff !important;text-align: center; border-radius: 50px; margin-right: 6px;}
.titlbld{font-weight:600 !important;}
.custom-toast a{display:block;}
.custom-toast a{color:#329958;}
.custom-toast img {
    width:60px;
    height:auto;
}

.custom-toast .content {
    font-size: 14px;
}

.custom-toast .close {
    cursor: pointer;
    margin-left: auto;
}

.fade-out {
    opacity: 0;
    transition: 0.3s;
}

@keyframes slideIn {
    from {transform: translateX(100%);}
    to {transform: translateX(0);}
}

@media all and (max-width:768px) and (min-width:300px) {
.custom-toast {width:100%;}
}