.last-minute-deal-wrapper {
	width: 100%;
	height: auto;
	position: relative;
	padding: 80px 6%;
	display: flex;
	justify-content: center;
}

.last-minute-deal-wrapper .max-width {
	max-width: 1204px;
}

.deal {
	width: 100%;
	background: #fff;
	border-radius: 4px;
	padding: 40px;
	box-shadow: 0 0 13px rgba(200, 194, 194, 0.2);
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.deal h2 {
	color: var(--font-color);
	font-size: 2em;
	margin: 0 0 5px 0;
	font-weight: 400;
	line-height: 1.1em;
}

.deal-subtitle {
	color: var(--main-color);
	  font-size: 1.2em;
	  font-weight: 500;
	  margin: 15px 0 10px 0;
	  line-height: 1.3em;
}

.deal-info p:last-of-type {
	margin-bottom: 0;
}

.deal-date {
	font-weight: 600;
	color: var(--main-color);
	font-size: 1.1em;
	margin: 0;
}

.deal-date span {
	color: var(--dark-grey-color);
}

.best-deal {
	position: absolute;
	top: -25px;
	height: auto;
	padding: 13px 20px;
	border-radius: 5px;
	background: var(--main-color);
	color: #fff;
	font-weight: 600;
	box-shadow: 0 0 13px rgba(200, 194, 194, 0.2);
}

@media only screen and (max-width: 900px){
	.deal {
		text-align: left;
		align-items: flex-start;
	}
}