.toast_store{
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 9999999;
    border-radius: 6px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.25, 1.35);
    display:none;
}
.toast_store.active{
    transform: translateX(0);
}
.toast_store-content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.toast_store-check{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    background-color: #13A032;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}
.message{
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}
.message-text{
    font-size: 18px;
    font-weight: 600;
}
.text-1{
    color: #333;
}
.text-2{
    color: #666;
    font-weight: 400;
    font-size: 14px;
    max-width:200px;
}
.toast_store-close{
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
    max-width: 30px;
}
.toast_store-close:hover{
    opacity: 1;
}
.progress{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: #ddd;
    border-radius:unset;
}
.progress::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #13A032;
}
.progress.active::before{
    animation: progress 2s linear forwards;
}
@keyframes progress {
    100%{
    left: 0%;
    width: 100%;
    }
}
.toast_store-btn{
    padding: 10px 40px;
    font-size: 20px;
    outline: none;
    border: none;
    background-color: #13A032;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}
.toast_store-btn:hover{
    background-color: #13A032;
}
.progress-bar{
    background-color: #13A032 !important;
}
#toastStore .message-text {
	background: unset!important;
	padding:  unset!important;
	border-radius:  unset!important;
	display: unset!important;
}