.toast {
	display: flex;
	position: absolute;
	top: -100px;
	right: 20px;
	padding: 15px 10px;
	z-index: 100;
	width: 300px;
	border-radius: 10px;
	font-size: 15px;
	box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease;
}

.errorComponent {
	background-color: #fff0f0;
	border: 1px solid #ffe0e1;
	color: #e71212;
}

.errorComponent.active {
	top: 20px;
}

.errorComponent path {
	fill: #fff0f0;
}

.successComponent {
	background-color: #ecfdf3;
	border: 1px solid #d3fde5;
	color: #008a2e;
}

.successComponent.active {
	top: 20px;
}

.successComponent path {
	fill: #ecfdf3;
}

.toast svg {
	margin-right: 10px;
}

.informationPopup{
	display: none;
}

.informationPopup.active {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 15vh;
	left: 30%;
	padding: 10px 15px;
	z-index: 100;
	width: 40%;
	border-radius: 10px;
	font-size: 15px;
	box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.1);
	transition: 0.3s ease;
	background-color: rgba(255, 255, 255, 0.95);
}

.informationPopup .close {
	display: flex;
	justify-content: end;
}

.informationPopup p {
	margin: 5px 0px;
}

.informationPopup .closeButton {
	cursor: pointer;
}

.informationPopup{
	text-align: justify;
}

.informationPopup .title{
	text-align: center;
	margin-bottom: 15px;
	font-weight: 500;
}

.informationButton{
	position: absolute;
	top: -65px;
	right: 5px;
	z-index: 100;
	cursor: pointer;
}

.informationButton svg{
	width: 28px;
	height: 28px;
	color: #d1d0d0;
}

.informationButton svg:hover {
	color: #1582fd;
}

.informationButton path{
	fill: none;
}






