/* https://www.drogerieshop.cz/lavonioclub/ */

.lavonio-club {
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  width: 100%;
  min-height: 460px;
  background: linear-gradient(155deg, rgba(99, 195, 201, 1) 21%, rgba(142, 81, 154, 1) 80%);
  border-radius: 10px;
  padding: 40px;
  margin: 30px 0px;
}

.club-txt-part {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.club-img-part {
	flex: 0 0 50%;
  background: url('https://www.drogerieshop.cz/user/documents/upload/obrazky/lavonio-club-darky.png') center/contain no-repeat;
}

.club-title-a {
  font-size: 32px;
  line-height: 1.3;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}

.club-title-b {
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
}

@media only screen and (max-width: 800px) {
  .lavonio-club {
	flex-wrap: wrap;
  padding: 20px;
	}
  .club-txt-part {
  flex: 100%;
  order: 2;
	}
	.club-img-part {
	flex: 100%;
  order: 1;
  min-height: 300px;
	}
  .club-title-a {
	font-size: 26px;
	}
  .club-title-b {
	font-size: 16px;
	}
}


/* https://www.drogerieshop.cz/jar-cashback/ */

.jar-topbox {
	display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background: #00763c;
}

.topbox-left {
	width: 48%;
  padding: 20px 20px 20px 40px;
}

.topbox-left h1,.topbox-left h3 {
  color: #fff;
}

.topbox-btn {
	color: #00763c;
	background: #fff;
  padding: 12px 20px;
  border-radius: 6px;
}

.topbox-btn:hover {
	color: #fff;
	background: #000;
}

.topbox-right {
	width: 44%;
}

.jar-midbox {
	display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  margin: 80px 0px;
  font-size: 20px;
}

.midbox {
	width: 300px;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .jar-topbox {
  flex-wrap: wrap;
	}
	.topbox-left {
	width: 100%;
  padding: 20px 20px 40px 20px;
	}
  .topbox-right {
	width: 100%;
	}
  .jar-midbox {
  font-size: 14px;
  margin: 60px 0px;
	}
  .midbox {
	width: 31%;
	}
  .midbox img {
	max-width: 60px;
	}
}

.jar-bottom {
	text-align: center;
  color: #00763c;
  margin-bottom: 60px;
}