/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.corner-popup {
	width: 90%;
	background-color: #b87842;
	border-top: 3px solid #000000;
	position: fixed;
	bottom: -30px;
	padding: 20px 9px 16px;
	z-index: 6700;
	border-radius: 4px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-transition: .2s;
	transition: .2s;
	opacity: 0;
	-webkit-box-shadow: 0 0 25px 5px rgba(0,0,0,.25);
	        box-shadow: 0 0 25px 5px rgba(0,0,0,.25);
}
.corner-popup-close {
	position: absolute;
	top: 20px;
	right: 21px;
	color: #ffffff;
	cursor: pointer;
	font-weight: bold;
	line-height: 1em;
	padding: 3px;
}
.corner-popup-title {
	font-size: 16px;
	color: #ffffff;
	font-weight: normal;
	max-width: 75%;
}
.corner-popup-text {
	font-size: 13.4px;
	color: #ffffff;
}
.corner-popup-button {
	border-radius: 3px;
	background-color: #000000;
	color: #ffffff;
	display: block;
	padding: 9px;
	text-align: center;
	font-size: 13.4px;
}
.corner-popup-button:hover {
	color: #ffffff;
	background-color: #5aa78a;
}
.corner-popup-link {
	font-size: 13.4px;
	color: #000000;
	padding: 9px;
	display: block;
	text-align: center;
}

.corner-popup-actions {
	margin-top: 15px;
}
.corner-popup-actions > * {
	line-height: 1em;
}

@media (min-width: 768px) {
	.corner-popup {
		max-width: 355px;
		right: 6px;
		padding: 21px 15px;
		-webkit-transform: initial;
		        transform: initial;
		left: auto;
	}
	.corner-popup-title {
		font-size: 18.6px;
	}
	.corner-popup-actions {
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;
	}
	.corner-popup-actions > * {
		-ms-flex-positive: 1;
		    -webkit-box-flex: 1;
		        flex-grow: 1;
	}
	.corner-popup-link {
		text-align: left;
	}
}


/* Toggled popup */
.corner-popup.toggled {
	bottom: 6px;
	opacity: 1;
}