:root {
	--black: #000000;
	--darkgrey: #333;
	--grey: #231F20;
	--pink: #EC407A;
	--pink2: #AD316A;
		--lightpink: #f3dee5;
	--darkpink: #C2185B;
	--textcolor: var(--darkgrey);
}

.lcg-logo {
	width: 100px;
	height: 100px;
}

.lcg-title {
	font-size: 180%;
	text-transform: uppercase;
	color: var(--darkpink);
}

.lcg-subtitle {
	font-size: 90%;
	color: var(--grey);
}

.lcg-banner {
	display: flex;
	justify-content: center;
	flex-direction: row;
}

.lcg-banner-text {
	display: flex;
	flex-direction: column;
	align-self: center;
	padding: 0 15px;
}


/* ------------------------------- */
/* -- Plugins -------------------- */
/* ------------------------------- */

/* Header */

.lcg-header {
	/*background-color: var(--pink2);*/
	color: #FFF;
	/*border-radius: 20px;*/

	/*padding: 20px;*/
	/*border-left: 10px solid var(--pink);*/
	/*border-right: 10px solid var(--pink);*/
	margin-top: 40px;
	margin-bottom: 30px;
}

.lcg-header-name {
	font-family: "Merriweather", sans-serif;
	font-size: 180%;
	text-align: center;
	/*margin-bottom: 20px;*/
	padding: 15px;
	background-color: var(--pink2);
	/*border-radius: 30px 30px 0 0;*/
}

.lcg-header-infos {
	color: #000;
	background-color: var(--lightpink);
	display: flex;
	/*flex-wrap: wrap;*/
	flex-direction: column;
	gap: 10px;
	text-align: center;
	padding: 15px;
	/*border-radius: 0 0 30px 30px;*/
}

.lcg-header-info {
	word-wrap: break-word;
}

.lcg-header-infos a {
	color: var(--pink);
	/*color: #333;*/
}

/* Review */

.lcg-review {
	padding: 15px 25px;
	background-color: var(--lightpink);
	color: #111;
	/*border: 2px solid #BBB;*/
	border: 2px solid var(--pink);
	border-radius: 20px;
}

.lcg-review-title {
	font-family: "Merriweather", sans-serif;
	text-align: center;
	font-size: 200%;
	color: var(--pink);
	text-transform: uppercase;
	margin-bottom: 25px;
	letter-spacing: 2px;
}

.lcg-review-title:before {
	font-family: "Merriweather", sans-serif;
	content: '~';
	color: var(--pink);
	margin-right: 10px;
}

.lcg-review-title:after {
	font-family: "Merriweather", sans-serif;
	content: '~';
	color: var(--pink);
	margin-left: 10px;
}

.lcg-review-score {
	display: flex;
	justify-content: center;
}

.lcg-review-image {
	background-size: cover;
	height: 80px;
	width: 80px;
}

.lcg-heart-filled {
	background-image: url("../images/lcg/paw-heart.png");
}

.lcg-heart-empty {
	background-image: url("../images/lcg/paw-heart-empty.png");
}

@media only screen and (max-width: 1080px) {
	.lcg-review-title {
		font-size: 180%;
	}

	.lcg-review-image {
		height: 70px;
		width: 70px;
	}
}
@media only screen and (max-width: 959px) {
	.lcg-review-title {
		font-size: 150%;
	}

	.lcg-review-image {
		height: 40px;
		width: 40px;
	}
}

/*@media only screen and (max-width: 419px) {*/
/*	.lcg-review-title {*/
/*		font-size: 160%;*/
/*	}*/

/*	.lcg-review-image {*/
/*		height: 40px;*/
/*		width: 40px;*/
/*	}*/
/*}*/

.lcg-review-content {
	margin-top: 25px;
	font-size: 110%;
}

/* Price list */

.lcg-pricelist {
	background-color: #EEE;
	border: 2px dotted #DDD;
	padding: 15px;
}

.lcg-price {
	display: grid;
	grid-template-columns: auto max-content;
	grid-template-areas: "chapter page";
	align-items: end;
	gap: 0 .25rem; /* customize the gap to your needs */
}

.lcg-price-title {
	font-family: "Merriweather", sans-serif;
	text-align: center;
	font-size: 120%;
	color: #999;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.lcg-price-title:before {
	font-family: "Merriweather", sans-serif;
	content: '~';
	color: #BBB;
	margin-right: 10px;
}

.lcg-price-title:after {
	font-family: "Merriweather", sans-serif;
	content: '~';
	color: #BBB;
	margin-left: 10px;
}

.lcg-price-label {
	grid-area: chapter;
	position: relative;
	overflow: hidden;
}

.lcg-price-label:after {
	position: absolute;
	padding-left: .50ch; /* customise the padding to your needs */
	/* adjust the amount of dots to your needs */
	content: " . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . ";
	text-align: right; /* optional, can be removed */
	color: #999;
}

.lcg-price-amount {
	grid-area: page;
}

/* ------------------------------- */
/* -- Theme overrides ------------ */
/* ------------------------------- */


.gdlr-blog-info a:hover {
	color: var(--darkpink);
}

.related-post-widget-title {
	padding-right: 15px;
}

.more-link .gdlr-button:hover {
	border-color: var(--pink);
	outline-color: var(--pink);
	color: var(--darkpink);
}

.gdlr-blog-title a:hover {
	color: var(--pink);
}

.gdlr-blog-content {
	text-align: justify;
}

.gdlr-logo {
	padding-top: 10px;
	padding-bottom: 2px;
	max-width: unset;
}

h2 {
	font-size: 160%;
}

h3 {
	font-size: 130%;
}

body {
	min-width: 1240px;
	color: var(--textcolor)
}

.container {
	max-width: 1240px;
}

.widget ul {
	list-style-type: square;
	padding-left: 20px;
}

.widget ul > li {
	margin-bottom: 10px;
}

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

}
@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 419px) {
	body .container {
		max-width: 400px;
	}

	.blog-item-wrapper.gdlr-blog-full-type {
		margin: 0;
	}
}
