*, ::after, ::before {
	box-sizing: border-box;
}

html, body, p {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
}

.offer-list {
	margin: 75px auto;
	max-width: 1510px;
}

.offer-list > .row {
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.offer-list > .row > p {
	font-size: 15px;
	line-height: 24px;
	padding: 25px 20px;
	text-align: justify;
}

.offer {
	border-top: 3px solid #e6007d;
	border-bottom: 1px solid #a1a1a1;
	border-left: 1px solid #a1a1a1;
	border-right: 1px solid #a1a1a1;
	display: flex;
	flex-direction: column;
	height: 388px;
	margin: 20px;
	min-width: 262px;
	width: 262px;
}

.offer:hover {
	cursor: pointer;
	border-bottom: 1px solid #e6007d;
	border-left: 1px solid #e6007d;
	border-right: 1px solid #e6007d;
}

.offer > div {
	padding: 0 10px;
}

.offer > .header {
	display: flex;
	height: 30px;
}

.offer > .header .icon {
	color: #e6007d;
	font-family: 'Material Icons';
	font-size: 14px;
	flex: 1;
	line-height: 30px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.offer > .header .thumb-icon {
	text-align: left;
}

.offer > .header .clipboard-icon {
	text-align: center;
}

.offer > .header .share-icon {
	text-align: right;
}

.offer > .content {
	flex: 1;
	position: relative;
}

.offer:hover > .content .blur-box {
	display: block;
}

.offer > .content .logo img {
	border: none;
	display: block;
	height: auto;
	width: 100%;
}

.offer > .content > .description {
	background-color: #ffffff;
	bottom: 0;
	left: 0;
	margin: 10px 0;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: 4;
}

.offer > .content > .description .wrapper {
	padding: 10px;
	height: 95px;
	transition: height 0.2s ease;
}

.offer:hover > .content > .description.active .wrapper {
	height: 168px;
}

.offer > .content > .description p {
	padding-bottom: 10px;
}

.offer > .content > .description p:not(.header) {
	font-size: 14px;
	line-height: 1.3;
	visibility: hidden;
}

.offer:hover > .content > .description.active p:not(.header) {
	visibility: visible;
}

.offer > .content > .description .header {
	font-family: 'Roboto Slab', serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}

.offer > .content .blur-box {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 73%, #fff 100%);
	bottom: 0;
	display: none;
	left: 0;
	height: 35px;
	position: absolute;
	width: 100%;
	z-index: 5;
}

.offer > .footer {
	align-items: center;
	background-color: #f6f6f6;
	border-top: 1px dashed #a1a1a1;
	display: flex;
	height: 60px;
}

.offer > .footer button {
	background-color: #e6007d;
	border: none;
	border-radius: 15px;
	color: #ffffff;
	height: 40px;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	padding: 6px 12px;
	position: relative;
	width: 100%;
}

.offer > .footer button::before {
	background-color: #f6f6f6;
	content: '';
	display: block;
	height: 40px;
	position: absolute;
	right: 0;
	top: 0;
	transition: .4s ease;
	width: 28px;
	z-index: 1;
}

.offer > .footer button::after {
	border-color: transparent transparent transparent #d10072;
	border-style: solid;
	border-width: 38px 0 0 30px;
	content: '';
	display: block;
	height: 0;
	position: absolute;
	right: -2px;
	top: 0;
	transform: rotate(17deg);
	transform-origin: top left;
	transition: .4s ease;
	width: 0;
	z-index: 2;
}

.offer > .footer button:hover {
	cursor: pointer;
}

.offer > .footer button:hover::before {
	width: 36px;
}

.offer > .footer button:hover::after {
	right: 6px;
}
