@import url('https://fonts.googleapis.com/css?family=PT+Sans');
@import url('https://fonts.googleapis.com/css?family=Patua+One');

#list_receipt_surveys{
	margin:0;
	padding:0;
}

/* Each block */
.receipt_survey_bx{
	border-bottom:1px solid #ccc;
	padding:18px 0;
	display:flex;
	flex-direction:column;
	gap:10px;
}

/* Header row */
.receipt_survey_bx .head{
	display:flex;
	align-items:center;
	gap:15px;
	flex-wrap:wrap;
}

/* Initials */
.receipt_survey_bx .name{
	font-family:'PT Sans',sans-serif;
	font-size:18px;
	font-weight:bold;
	color:#182c85;
}

/* Date */
.receipt_survey_bx .date{
	font-family:'PT Sans',sans-serif;
	font-size:13px;
	color:#777;
}

/* Stars */
.receipt_survey_bx .stars{
	font-size:16px;
	color:#f5b301;
	margin-left:auto; /* pushes stars to the right */
}

/* Text */
.receipt_survey_bx .desc{
	font-family:'PT Sans',sans-serif;
	font-size:18px;
	line-height:135%;
	color:#333;
}

.receipt_survey_bx .desc p{
	margin:0 0 1em;
}

.receipt_survey_bx .desc p:last-child{
	margin:0;
}

/* "More" button */
.home_surveys_more,
div.receipt_surveys_more{
padding:0;
text-align:center;
padding:30px 0 20px 0;
margin:0;
}

.home_surveys_more{
padding-bottom:0;
}

.home_surveys_more a.more_lnk,
.home_surveys_more a.more_lnk:link,
.home_surveys_more a.more_lnk:visited,
div.receipt_surveys_more a.more_lnk,
div.receipt_surveys_more a.more_lnk:link,
div.receipt_surveys_more a.more_lnk:visited{
	display:inline-block;
	font-family:'Patua One',serif;
	font-size:18px;
	font-weight:normal;
	margin:0;
	padding:8px 50px;
	text-decoration:none;
	color:#fff;
	background-color:#1c75bb;
	transition:background-color 0.3s ease;
}

.home_surveys_more a.more_lnk:hover,
div.receipt_surveys_more a.more_lnk:hover{
	background-color:#2b3990;
}



