.purchase_shower_container {
	position: fixed;
	bottom: 2em;
	right: 2em;
	width: 300px;
	z-index: 100000;
}

.purchase_shower {
	position: absolute;
	bottom: 0px;
	right: 0px;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
	padding: 1.5em;
	display: block;
	transition: 1s all ease;
	opacity: 0.0;
	pointer-events: none;
	width: 100%;
}

.purchase_shower.active {
	display: block;
	opacity: 1.0;
	pointer-events: all;
}

.purchase_shower .button_fe {
	width: 100%;
	display: block;
}

.purchase_shower a.button_close {
	position: absolute;
	display: block;
	top: 0em;
	right: 0em;
	font-size: 100%;
	font-weight: bold;
	cursor: pointer;
}

@media (max-width: 900px){
	.purchase_shower_container {
		display: none;
		width: 100%;
		width: calc(100% - 2em);
		right: 1em;
	}
}