.toast-warning {
	min-width: 400px;
	max-width: 500px;
	background-color: var(--white-color);
	color: var(--black-color);
	z-index: 500;
	padding: 10px;
	font-size: 14px;
	position: fixed;
	top: 20%;
	right: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 4px solid var(--main-color);
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,rgba(17, 17, 26, 0.05) 0px 8px 32px;
	transition: all linear 0.3s;
}
.toast-warning .progress {
	height: 4px;
	margin-bottom: 0;
	width: 100%;
}
.toast-warning .progress-bar {background-color: var(--main-color);}
.toast-flight_depart .progress-bar, .toast-flight_return .progress-bar {background-color: var(--blue-color);}
.toast-flight_depart, .toast-flight_return {border-left-color: var(--blue-color);}
.toast-passenger, .toast-location, .toast-flight_depart, .toast-flight_return, .toast-changedate-desdate, .toast-changedate-depdate, .toast-flight_empty {transform: translateX(115%);}
.toast-changedate-desdate span, .toast-changedate-depdate span, .toast-location span, .toast-flight_depart span, .toast-flight_return span, .toast-flight_empty span {
	flex: 1;
	text-align: left;
}
.toast-changedate-desdate.active, .toast-changedate-depdate.active, .toast-passenger.active, .toast-location.active, .toast-flight_depart.active, .toast-flight_return.active, .toast-flight_empty.active {
	transform: translateX(0);
	z-index: 10001;
}
.toast-warning svg {
	color: var(--main-color);
	font-size: 24px;
	margin: 0 10px;
	cursor: pointer;
}
.toast-content {
	padding: 10px 0;
	width: 100%;
}