/*!
 * Toastify js 1.9.3
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */

.toastify {
	padding: 12px 20px;
	/*color: #ffffff;*/
	display: flex;
	box-shadow: 0 0px 0px 1px rgba(0,0,0,0.05), 0 2px 6px 1px rgba(0,0,0,0.25);
	background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
	background: linear-gradient(135deg, #73a5ff, #5477f5);
	position: fixed;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	border-radius: .25rem;
	cursor: pointer;
	transform: translate(50%,0);
	text-decoration: none;
	max-width: calc(25% - 20px);
	max-width: 550px;
	z-index: 2147483647;
	font-size: 12px;
}
.toastify .col-auto {
	max-width: 50%;
}
.toastify figure {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 0;
	box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}
.toastify figure:after {
	content: '';
	display: block;
	padding-bottom: 100%;
}
.toastify figure img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.toastify.on {
	opacity: 1;
	transform: none;
}
.toastify.error {
}
.toastify.error:before {
	content: '\f057';
	font-family: 'Font Awesome 5 Free';
	font-weight: 500;
	font-size: 2rem;
	position: relative;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff4c4c;
}
.toastify.success:before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 500;
	font-size: 2rem;
	position: relative;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8ad43a;
}
.toastify.warning:before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 500;
	font-size: 2rem;
	position: relative;
	left: 0;
	top: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ff6800;
}
.toast-close {
	opacity: 0.4;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
}

.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;
}
.toastify-content {
	flex: auto;
}
.toastify p {
	font-size: .875rem;
}
.toastify .title {
	margin-bottom: .5em;
	font-size: 1rem;
}
@media only screen and (max-width: 360px) {
	.toastify-right, .toastify-left {
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
		max-width: fit-content;
	}
}