.info_popup_wrapper {
	display: none;
	position: fixed;
	top: auto;
	bottom: 0;
	left: auto;
	right: 0;
	background: rgba(0, 0, 0, .75);
	box-shadow: inset 0 0 150px #000;
	z-index: 100;
	font: 16px/22px 'Open Sans', sans-serif;

}

.info_popup_wrapper * {
	box-sizing: border-box;
}

.info_popup {
	position: fixed;
	top: auto;
	left: auto;
	right: 20px;
	bottom: 20px;
	margin: 0 auto;
	background: #fff;
	width: fit-content;
	color: #222;
	border-radius: 20px;
	  overflow: hidden;
}

.info_popup_close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 6;
}

.info_popup_close:before,
.info_popup_close:after {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background: #000;
	transition: 0.3s ease all;
	-moz-transition: 0.3s ease all;
	-webkit-transition: 0.3s ease all;
}

.info_popup_close:before {
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.info_popup_close:after {
	transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.info_popup_close:hover:before {
	transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.info_popup_close:hover:after {
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.info_popup_text {}

.info_popup_text div+div {
	margin-top: 20px;
}

.info_popup_button {
	width: 100px;
	height: 40px;
	line-height: 36px;
	margin-top: 20px;
	border: 2px solid #222;
	background: #222;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	transition: 0.3s ease all;
	-moz-transition: 0.3s ease all;
	-webkit-transition: 0.3s ease all;
	cursor: pointer;
}

.info_popup_button:hover {
	background: #fff;
	color: #222;
}

.info_popup_text img {
	display: flex;
}
.info_popup_wrapper video{
	max-width: 600px;
}

.popup_video_link{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5;
}

@media screen and (max-width: 700px) {
	.info_popup {
		left: 20px;
		right: 20px;
		width: auto;
	}

	.info_popup_close {
		top: 5px;
		right: 5px;
	}
}