
:root {
	--cetegory-color: brown;
}

html, body {
	height: 100%;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: Arial;
	color: #3e4348;
}

* {
	box-sizing: border-box;
}

header {

}

.header__wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px 20px;
	box-sizing: content-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {display: flex; align-items: flex-end;}
.logo a {color: inherit;text-decoration: none;}
.logo__img {margin-right: 12px;}
.logo__title {
	font-size: 16px;
	color: #383d42;
	padding-bottom: 3px;
}
.logo__subtitle {
	font-size: 12px;
	color: #5c5f63;
}

main {
	flex-grow: 1;
	padding: 12px 12px 0;
}

footer {
	background: #d5e3f4;
	padding: 0;
}

footer a {
	color: #2d9fe7;
}

.footer__wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	box-sizing: content-box;
	align-items: center;
	justify-content: space-between;
}

.messageblock {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 1.2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.messageblock h2 {margin: 0 0 0.3em;}
.messageblock p {margin: 0;}

.offers {
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: content-box;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 10px 21px 1px rgba(0,0,0,.09);
}

.offers__header {
	background-color: #3e9dfe;
	font-size: 20px;
	color: #fff;
	text-align: center;
	font-weight: 300;
	padding: 1em;
	margin-bottom: 1em;
}

.offers__categories {
	text-align: center;
	margin: 1.5em 0 1em 0;
	font-size: 0.9em;
}

.category {
	display: inline-block;
	background: var(--cetegory-color);
	cursor: pointer;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 5px;
	padding: 6px 12px;
	margin: 2px 5px;
}

.category_selected {
	box-shadow: 1px 1px 8px var(--cetegory-color);
	text-decoration: underline;
}

.category:active{top: 1px;}

/*----- OFFER START -----*/
.offer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 120px;
	padding: 8px 20px;
	font-size: 15px;
	border-bottom: 1px solid #e6e6e6;
	transition: all 0.3s ease-in;
}
.offer:hover {
	z-index: 2;
	box-shadow: 0 2px 20px rgba(3,3,4,.2);
}
.offer__img {
	width: 185px;
	min-width: 185px;
	margin-right: 2em;
}
.offer__img a {
	display: block;
}
.offer__img img {
	max-width: 100%;
}
.offer__props {
	width: 190px;
	min-width: 190px;
	padding-right: 1em;
}
.offer__props_title {
	color: #292929;
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 0.6em;
}
.offer__summary {
	flex-grow: 1;
	padding-right: 1em;
}
.offer__summary ul {
	margin: 0;
	padding-left: 1.5em;
}
.offer__summary li {
	list-style: none;
	position: relative;
	padding-left: 35px;
	background: url(../img/li.png) left center no-repeat;
	margin: 6px 0;
	font-size: 0.9em;
}
.offer__button {
	display: block;
	color: #FFF;
	font-family: 'Roboto Condensed',sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1.1em;
	font-weight: bold;
	background: #ffdd2d;
	border-radius: 50px;
	width: 220px;
	min-width: 220px;
	letter-spacing: 0.5px;
	text-align: center;
	transition: 0.2s;
	padding: 1em 0;
}
.offer__button:hover {
	background: #ffcd33;
}
/*----- OFFER END -----*/

.adsense {display: block; width: 100%; margin: 15px 0;}
.adsense_double {display: flex; flex-direction: row; justify-content: space-between;}
.adsense_double > div {display: block; width: 50%;}

.comments {
	padding: 2em 0;
}

.lk_link {
	color: #00174a;
	text-decoration: underline;
}

.lk_buttom {
	height: 30px;
	margin: 0 auto;
	margin-top: 1em;
	display: block;
	color: #FFF;
	font-family: 'Roboto Condensed',sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	border-radius: 50px;
	width: 220px;
	max-width: 220px;
	letter-spacing: 0.5px;
	transition: 0.2s;
	background-color: #f90;
	font-size: 0.6em;
	padding: 0.7em;
}

.adsfin-mob {
	display: none;
}
.adsfin-mob ins {
	margin: 0 auto!important;
}
.adsfin-desktop {
	display: block;
}

@media only screen and (max-width: 960px) { /*width < 960*/
	.offer {
		flex-wrap: wrap;
	}
	.wrapper {
		width: 100%;
	}
	.offer__button {
		width: 100% !important;
		padding: 0.7em 0 !important;
		margin-top: 0.5em;
	}
	.offers_sticker .offers__list {
		margin-top: 50px;
	}
   .offers_sticker #sticker {
		padding: 10px;
		-webkit-border-top-right-radius: 10px;
		-webkit-border-bottom-right-radius: 10px;
		-moz-border-radius-topright: 10px;
		-moz-border-radius-bottomright: 10px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		color: #FFF;
		position: absolute;
		top: -21px;
		left: 0px;
	}
	.offers_sticker .offer {
		width: 100%;
		flex-wrap: wrap;
		padding: 1em;
		border: 1px solid #E6E6E6;
		border-radius: 10px;
		margin-bottom: 35px;
		position: relative;
	}
	.offers_sticker .offer__img {
		padding-top: 10px;
	}
	.offers_sticker .offer:hover {
		overflow: visible;
	}
}

@media only screen and (max-width: 767px) { /*width < 768*/
	.messageblock {
		display: inline-block;
		padding: 1em;
	}
	.messageblock h2 {font-size: 1.4em;}
	.messageblock p {margin: 0.5em 0 0; font-size: 0.9em;}
	.offers__header {
		font-size: 1em;
		border-radius: 5px;
	}
	.offers {
		box-shadow: none;
		overflow: visible !important;
	}
	.s1:before {
		height: auto;
	}
	ins.adsbygoogle {
		margin-left: -12px !important;
	}
	.s1 .wrapper {
		padding-top: 0 !important;
	}
	.s1 .form {
		overflow: visible !important;
	}
	.s1 ins.adsbygoogle {
		margin-left: -30px !important;
	}
	.adsense {
		margin: 15px 0 15px -15px;
	}
}

@media only screen and (max-width: 640px) { /*width < 640*/
	main {
		padding: 0 12px;
	}
	header {
		display: none;
	}
	.offer {
		padding: 8px 0;
		font-size: 14px;
	}
	.offer__img {
		width: 100px;
		min-width: 100px;
		margin: 0 6px;
	}
	.offer__props_title {
		margin-bottom: 0.4em;
	}
	.offer__props {
		width: auto;
		min-width: auto;
		padding-right: 0;
		margin: 0 6px;
		text-align: right;
	}
	.offer__summary {
		width: 100%;
		display: flex;
	}
	.footer__nav {
		display: flex;
		flex-direction: column;
	}
	.footer__nav a {
		margin: 0 0 1px 0;
	}
	.offers_sticker .offer__img {
		padding-top: 10px;
	}
	.offers_sticker .offer:hover {
		overflow: visible;
	}

	.adsfin-mob {
		display: block;
	}

	.adsfin-desktop {
		display: none;
	}
	
	.lk_buttom {
		font-size: 0.8em;
	}
}

.btn {
	width: max-content;
	padding: 15px 40px 13px 40px;
	margin: 15px auto 0 auto;
	border: 0;
	height: auto;
}

.ad__50 {
	
}

.ad__50_1, .ad__50_2 {
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 640px) {

}

/* ---- sticker ----*/

@media only screen and (min-width: 960px) { /*width > 960*/
	.offers_sticker #sticker {
		padding: 10px;
		-webkit-border-top-right-radius: 10px;
		-webkit-border-bottom-right-radius: 10px;
		-moz-border-radius-topright: 10px;
		-moz-border-radius-bottomright: 10px;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		color: #FFF;
		position: absolute;
		top: -21px;
		left: 0px;
	}
	.offers_sticker .offer {
		width: 48%;
		flex-wrap: wrap;
		padding: 1em;
		border: 1px solid #E6E6E6;
		border-radius: 10px;
		margin-bottom: 25px!important;
		position: relative;
		margin: 0 auto;
	}

	.offers_sticker .offer__img {
		width: 120px;
		min-width: 120px;
		margin: 0;
		height: 80px;
		display: flex;
		align-items: center;
		padding-top: 10px;
	}

	.offers_sticker .offer__img img {
		max-width: 80%;
	}

	.offers_sticker .offer__props {
		font-size: 0.9em;
		text-align: right;
		padding: 0;
		width: calc(100% - 120px);
		min-width: calc(100% - 120px);
	}

	.offers_sticker  .offer__props_title {
		margin-bottom: 0.3em;
	}

	.offers_sticker .offer__summary {
		padding: 0;
		margin: 0.5em 0;
		width: 100%;
	}

	.offers_sticker .offers__list {
		display: flex;
		flex-wrap: wrap;
		margin-top: 50px;
	}

	.offers_sticker .offer__button {
		width: 100%;
	}

	.offers_sticker .offer:hover {
		overflow: visible;
	}
}

.offers_sticker .icon {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-size: cover;
	margin-right: 5px;
}
.icon__money {
	background-image: url('../img/money.svg');
}
.icon__perc {
	background-image: url('../img/percentage.svg');
}

/* ---- quadre ----*/

@media only screen and (min-width: 960px) { /*width > 960*/
	.offers_quadre .offer {
		width: 33.3%;
		flex-wrap: wrap;
		padding: 1em;
	}

	.offers_quadre .offer__img {
		width: 120px;
		min-width: 120px;
		margin: 0;
		height: 80px;
		display: flex;
		align-items: center;
	}

	.offers_quadre .offer__props {
		font-size: 0.9em;
		text-align: right;
		padding: 0;
		width: calc(100% - 120px);
		min-width: calc(100% - 120px);
	}

	.offers_quadre .offer__summary {
		padding: 0;
		margin: 0.5em 0;
		width: 100%;
	}

	.offers_quadre .offers__list {
		display: flex;
		flex-wrap: wrap;
	}

	.offers_quadre .offer__button {
		width: 100%;
	}
}


.offers__header ol {
	display: block;
	text-align: left;
	list-style: none;
	counter-reset: new-counter;
	padding: 0px;
	margin: 30px;
}

.offers__header ol  li::before {
  content: counter(new-counter);
  font-weight: bold;
  font-size: 15px;
  background: #ffffff;
  color: #5dc540;
  padding: 5px 9px 5px 9px;
  border-radius: 100%;
  margin-right: 0.7rem;
  margin-top: -2px;
  line-height: 1;
  display: block;
  float: left;
}

.offers__header ol li{
   counter-increment: new-counter;
   font-size: 15px;
   display: block;
   margin-bottom: 22px;
   position: relative;

}

.offers__header ol li a {
	color: #fff;
	border-bottom: 1px dotted #ffffff;

}



.offers__header ol li a:hover {
	color: #efeaea
}
