/*
=====================================================================
						FRONT-END STYLE
=====================================================================
*/

.coupon-card {
	width: 350px;
	height: 200px;
	overflow: hidden;
	background-repeat: no-repeat;
  	background-position: center;
  	background-size: cover;
	border-radius: 3px;
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 1000;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
  	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.coupon-card img {
	width: 100%;
}

.coupon-card:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.coupon-info {
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	text-align: center;
	padding-top: 10%;
	font-family: 'Montserrat', sans-serif;
}

.coupon-title {
	margin: 0;
	padding: 0 5% 10% 5%;
	font-size: 20px;
	color: #fff;
	line-height: 26px;
	font-weight: 600;
}

.coupon-link,
.cc-coupon {
	padding: 10px 40px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	border-radius: 3px;
	font-weight: 600;
	color: #5e5a5a;
}

.coupon-link:hover {
	text-decoration: none;
}

.cc-coupon {
	padding: 8px 38px;
	border: 1px dashed #000;
	display: none;
}

.cc-closo:after {
	position: absolute;
    top: 5px;
    right: 10px;
    content: "X";
    font-size: 17px;
    color: #ffffff;
    cursor: pointer;
}