
.raffle-card
{
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 15px;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.25);
	height: calc(100% - 30px);
}
.raffle-featured-image 
{
	height: 100%;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.raffle-featured-image img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.row > div.raffle-text-details
{
	padding-left: 15px;
}
.raffle-title
{
	min-height: 50px;
	margin:0;
}
.raffle-excerpt
{
	font-size: 14px;
	min-height: 63px;
	color:gray;
}
.raffle-dates
{
	color:gray;
	font-weight: 900;
	font-size:14px;
}
a.raffle-btn,a.raffle-btn:focus,a.raffle-btn:active, a.raffle-btn:visited
{
	margin-top:15px;
	width: 100%;
	padding: 0.3rem 0px;
	border-radius: 5px;
	text-align: center;
	justify-content: center;
	display: flex;
	text-decoration: none;
	color:white;
	border-width: 1px;
	border-style: solid;
	border-color:gray;
	transition: 0.5s all;
}
.raffle-data-row
{
	height: 100%;
	padding-bottom: 60px;
}
.raffle-button-row
{
	position: absolute;
	bottom:45px;
	right: 30px;
	left:30px;
}
/* Enter */
a.raffle-btn.enter-raffle
{
	border-color:green;
	background-color: #52993B;
}
a.raffle-btn.enter-raffle:hover
{
	background-color: rgba(82,153,59,0.75);
	text-decoration: none;
	outline:0;
	color:white;
}
/* Register / login */
a.raffle-btn.login-to-enter-raffle
{
	border-color:blue;
	background-color: rgb(53,107,193);
}
a.raffle-btn.login-to-enter-raffle:hover
{
	background-color: rgba(53,107,193,0.75);
	text-decoration: none;
	outline:0;
	color:white;
}
/* IS OVER */
a.raffle-btn.raffle-is-over
{
	border-color: silver;
	color:gray;
	background-color: rgb(239,239,239);
}
a.raffle-btn.raffle-is-over:hover
{
	background-color: rgb(255,255,255);
}
@media screen and (max-width: 767px)
{
	.raffle-text-details
	{
		padding-top: 15px;
	}
	.raffle-featured-image
	{
		min-height: 200px;
	}
}