.play_button {
	position: absolute;
	background-image: url(../img/play_button.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 97%;
	z-index: 20;
}

@media (min-width: 1440px) {
	.play_button {
		top: calc(100% - 50px);
		right: 10px;
		height: 40px;
		width: 40px;
	}
}

@media (max-width: 1440px) and (min-width: 751px) {
	.play_button {
		top: calc(100% - (100vw * 50 / 1440));
		right:  calc(100vw * 10 / 1440);
		height:  calc(100vw * 40 / 1440);
		width:  calc(100vw * 40 / 1440);
	}
}

@media (max-width: 750px) {
	.play_button {
		top: calc(100% - (100vw * 50 / 750));
		right:  calc(100vw * 10 / 750);
		height:  calc(100vw * 40 / 750);
		width:  calc(100vw * 40 / 750);
	}
}