/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 07 2024 | 17:03:29 */
.toastify{
    padding: 10px;
    color:#000;
    display: flex;
	align-items: center;
    justify-content: space-between;
    position:fixed;
    opacity:0;
    transition:all .4s cubic-bezier(.215, .61, .355, 1);
    border-radius:5px;
    cursor:pointer;
    text-decoration:none;
    max-width: 50%;
	font-weight: 500;
    font-size: 20px;
	line-height: 1.4;
    z-index:2147483647;
}
@media (max-width: 478px) {
	.toastify{
		max-width: 95%;
	}
}
.toastify.on{
    opacity:1;
}
.toast-close{
    cursor:pointer;
    font-size: 20px;
}
.toastify-right{
    right:15px
}
.toastify-left{
    left:15px
}
.toastify-top{
    top:-150px
}
.toastify-bottom{
    bottom:-150px
}
.toastify-rounded{
    border-radius:25px
}
.toastify-avatar{
    width:1.5em;
    height:1.5em;
    margin:-7px 5px;
    border-radius:2px
}
.toastify-center{
    margin-left:auto;
    margin-right:auto;
    left:0;
    right:0;
    /*max-width:fit-content;
    max-width:-moz-fit-content*/
}
@media only screen and (max-width:360px){
    .toastify-left,.toastify-right{
        margin-left:auto;
        margin-right:auto;
        left:0;
        right:0;
        max-width:fit-content
    }
}

.toastify.on.success {
	background: #80ffb3;
}

.toastify.on.error {
	background: #ff6161;
}

.toastify.on.info {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.3);
}