#mehne-wpsc-container {
	display: none;

	position: fixed;
	z-index: 99999999;

	/* individual stuff */
	/*
	bottom: 0;
	left: 50px;
	right: 50px;
	max-width: calc(100% - 100px);
	*/
	top: 30%;
	right: 0;
	left: auto;
	width: 90%;
	max-width: 276px;
	
    background-color: #fff;
    padding: 0px;
	border-radius: 0;
	box-shadow: 0px 10px 20px 0px rgba(0,0,0,.16);
	
	transform: translateX(110%); /* +10% wegen schatten */

	transition: all .7s ease-in-out;
}

@media(min-width:992px) {
	#mehne-wpsc-container {
		display: block;
		right: 0;
		left: auto;
	}
}

#mehne-wpsc-container.show {
	transform: translateX(0);

	transition: all .7s ease-in-out;
}

#mehne-wpsc-close {
	cursor: pointer;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
#mehne-wpsc-close .fa {
	font-size: 3rem;
}

#mehne-wpsc-inner {
	padding: 24px 60px 32px 60px;
	font-size: 2.5rem;
	line-height: 1.3em;
}

#mehne-wpsc-inner p {
	margin: 0;
}