.redirection-popup {
	display: block;
	background-color: #FFF;
	box-shadow: 0 15px 30px 10px rgba(40, 40, 40, 0.2);
	width: 460px;
	padding: 20px;
	position: fixed;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);
	z-index: 999;
	transition: opacity 300ms ease-in-out;
}
.redirection-popup .redirection-popup__info {
	text-align: center;
	margin-bottom: 20px;
}
.redirection-popup .redirection-popup__buttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.redirection-popup.inactive {
	opacity: 0;
}
.redirection-popup.active {
	opacity: 1;
}
@media (max-width: 768px) {
	.redirection-popup {
		width: 80%;
	}
	.redirection-popup .redirection-popup__buttons {
		flex-direction: column;
	}
	.redirection-popup .redirection-popup__buttons a {
		margin-bottom: 20px;
	}
}
