* {
	font-family: "Roboto Condensed", sans-serif;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
}

::-webkit-scrollbar-thumb {
	background: #dbdbdb; 
}

::-webkit-scrollbar-thumb:hover {
	background: #c4c4c4; 
}

:root {
	--width: 100%;
	--text-color: #444444;
	--main-color: #ff9801;
	--secondary-color: #cd0404;
	--accent-color: #999999;
	--bg-color: #646464;
	--color-red: #a81717;
}

body {
	font-size: 14pt;
	color: var(--text-color);
	background-color: var(--bg-color);
}

a, a:active, a:visited {
	text-decoration: none;
}

p {
	padding-bottom: 10px;
}

h1 {
	margin-bottom: 15px;
}

h2 {
	margin-bottom: 15px;
}

img {
	border: 0px;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

ul, ol {
	list-style-position: inside;
}

input[type="checkbox"] {
	width: 16px;
	height: 16px;
    vertical-align: middle;
    position: relative;
    bottom: 2px;
	z-index: 10;
}

input[type="text"], input[type="password"], textarea, select {
	padding: 12px;
	border: 1px solid #e0e0e0;
	color: #444444;
	background-color: #fafafa;
	max-width: 100%;
	font-size: 14pt;
}

input[type="submit"], .button {
	text-decoration: none;
	padding: 12px 12px;
	background-color: var(--main-color);
	color: #ffffff;
	font-weight: bold;
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	text-transform: uppercase;
	line-height: 125%;
	font-size: 14pt;
	
	i {
		margin-right: 5px;
	}
	
	&.small {
		padding: 8px;
		text-transform: none;
		font-size: 12pt;
		text-align: left;
	}
	
	&.block {
		display: block;
	}
	
	&.gray {
		background-color: #cccccc;
		color: var(--secondary-color);
	}
	
	&.red {
		background-color: var(--color-red);
	}
}

input[type="submit"]:hover, .button:hover {
	background: #000000;
	color: #ffffff;
}

select {
	border: 1px solid #cccccc;
}

input.required, textarea.required {
	background: #fafafa url(images/asterisk.png) no-repeat right 10px center;
}

select.required {
	background: #fafafa url(images/asterisk.png) no-repeat right 15px center;
}

select.error, input.error, textarea.error {
	border: 1px solid #ff0000;
}

span.error {
	color: var(--color-red);
	border: 1px solid var(--color-red);
	padding: 5px; 
	background-color: #fee0e1;
	font-size: 12pt;
	display: inline-block;
	margin-bottom: 5px;
}

.pointer {
	cursor: pointer;
}

.center {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.clear {
	clear: both;
}

header {
	background-color: var(--secondary-color);
	z-index: 100;
	color: #ffffff;
	
	.wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		
		padding: 5px 10px;
		
		#logo {
			height: 30px;
		}
	}
}

#menu {
	z-index: 100;
	display: flex;
	
	ul {
		list-style: none;
		margin: 0;
		padding: 0;
		
		li a, li span {
			cursor: pointer;
			padding: 15px 20px;
			font-size: 13pt;
			color: #ffffff;
			font-weight: bold;
			text-transform: uppercase;
			display: block;
			
			&:hover {
			}
		}
	}
	
	> ul {
		display: flex;
		
		> li {
			position: relative;
		}
	}
}

#menu-icon {
    display: none;
    font-size: 22pt;
    cursor: pointer;
}

main {
	width: var(--width);
	max-width: 100%;
	margin: auto;
	background-color: #ffffff;
}

footer {
	.wrap {
		padding: 10px 20px;
	}
	
	background-color: #cccccc;
	padding: 15px 0px;
	color: #000000;
	
	a {
		color: #000000;
	}
	
	.socials {
		i {
			font-size: 28pt;
		}
	}
}

footer #footer-menu {
	margin-top: 20px;
	margin-bottom: 40px;
	
	ul {
		list-style-type: none;
	}
	
	> ul {
		display: grid;
		grid-gap: 25px;  
		grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
		justify-items: center;
		
		li {
			i {
				display: none;
			}
		}
		
		> li {
			width: 100%;
			
			li {
				padding-top: 10px;
			}
			
			li li {
				margin-left: 20px;
			}
			
			> a, span, footer .title {
				cursor: pointer;
				font-size: 20pt;
				display: block;
				text-transform: uppercase;
				margin-bottom: 10px;
				font-weight: bold;
				padding: 10px 0px;
				border-bottom: 1px solid #cccccc;
			}
		}
	}
}

#cookies-policy {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 340px;
	background-color: #f8f8f8;
	padding: 10px 20px;
	z-index: 1000;
	border: 1px solid #666666;
	
	p {
		color: var(--secondary-color);
		text-align: center;
		font-size: 9pt;
		margin-bottom: 10px;
	}
	
	#button-close-cookies {
		position: absolute;
		top: 5px;
		right: 5px;
		cursor: pointer;
		width: 20px;
		height: 20px;
		background: url(icons/button-close.png) no-repeat;
	}
}

#message {
	position: fixed;
	width: 400px;
	left: 50%;
	top: 400px;
	margin-left: -230px;
	padding: 20px 10px 20px 70px;
	z-index: 1000;
	border-radius: 10px;
	font-size: 12pt;
	color: var(--secondary-color);
	margin-bottom: 5px;
	font-weight: bold;
	
	&.error {
		border: 1px solid #df8f90;
		background: #ffd2d3 url(images/message-error-bg.png) no-repeat 15px 10px;
	}
	
	&.success {
		border: 1px solid #9adf8f;
		background: #d4ffcd url(images/message-success-bg.png) no-repeat 15px 10px;
	}
}

#container-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.8);
	z-index: 200;
	
	#popup-box {
		position: absolute;
		top: 35px;
		right: 25px;
		bottom: 15px;
		left: 25px;
		margin: auto;
		width: fit-content;
		height: fit-content;
		max-width: 1024px;
		max-height: calc(100% - 50px);
		box-shadow: 5px 5px 5px #000000;
	}
	
	#popup-content {
		background: var(--bg-color);
		max-height: 80vh;
		overflow-y: auto;
	}
	
	#popup-close {
		position: absolute;
		font-size: 25pt;
		cursor: pointer;
		padding: 10px 13px;
		background-color: #ffffff;
		border-radius: 50%;
		color: #000000;
		top: -20px;
		right: -20px;
	}
}

.wrap {
	width: var(--width);
	max-width: min(var(--width), 1240px);
	margin: auto;
}

.flex {
    display: flex;
}

aside {
	width: 275px;
	margin-right: 20px;
	padding: 20px;
	background-color: #cccccc;
	border: 1px solid #9b9b9b;
	overflow: hidden;
	
	&.half {
		width: 40%;
	}
}

.sidebar {
	width: 350px;
}

.content {
	flex: 1;
}

.price-old {
	font-size: 12pt;
	margin-right: 10px;
	text-decoration: line-through;
}

section {
	&.light-gray {
		background-color: #fafafa;
	}
	
	&.yellow {
		background-color: #887106;
	}
	
	&.dark {
		background-color: #222222;
	}
	
	&.black {
		background-color: var(--secondary-color);
	}
	
	.wrap {
		padding: 15px 20px;
	}
	
	.title-content {
		overflow: hidden;
		margin-bottom: 20px;
		
		h1, .title {
			color: #444444;
			font-size: 13pt;
			padding: 5px 40px 5px 20px;
			text-transform: uppercase;
			font-weight: bold;
			font-style: italic;
			border-left: 6px solid #cd0404;
			background-color: #f2f5f7;
			line-height: 200%;
		}
	}
	
	&.gray {
		background-color: #ececec;
	}
	
	&.dark-gray {
		background-color: #cccccc;
	}
}

section:last-child {
	margin-bottom: 0px;
}

p.announce {
	font-size: 12pt;
    font-weight: bold;
	text-align: center;
	border: 1px solid #ac235b;
	background-color: #efd1dd;
	padding: 5px;
	margin: 10px;
}

.breadcrumb {
	margin-bottom: 20px;
	color: var(--accent-color);
	line-height: 150%;
	
	a {
		color: var(--accent-color);
	}
	
	p {
		margin-bottom: 0px;	
	}
	
	.separator {
		margin: 0px 5px;
	}
	
	.selected {
		color: #ac235b;
	}
}

.breadcrumb *, .breadcrumb {
	font-size: 11pt;
	text-transform: uppercase;
}

.pages {	
	a {
		margin: 0px 2px;
		padding: 5px 10px;
		font-weight: bold;
		font-size: 13pt;
		color: var(--text-color);
	}
	
	a.selected {
		border: 1px solid #000000;
		color: var(--secondary-color);
		background-color: var(--text-color);
	}
}

.grid {
	border-collapse: collapse;
	
	th, td {
		padding: 10px 15px;
	}
	
	thead {
		color: #222222;
	}
	
	tbody {
		tr:nth-child(even) {
			background-color: #ebebeb;
			color: #333333;
			
			a {
				color: #333333;
			}
		}
	}
}

.page-content {
	color: var(--text-color);
	
	p {
		line-height: 175%;
		font-size: 14pt;
		text-align: justify;
	}
	
	p:last-child {
		padding-bottom: 0px;
	}
	
	li {
		text-align: justify;
		line-height: 150%;
		font-size: 14pt;
		padding-bottom: 10px;
	}
	
	a:not(.button) {
		color: var(--text-color);
	}
	
	> h2 {
		color: #444444;
		font-size: 13pt;
		padding: 5px 40px 5px 20px;
		text-transform: uppercase;
		font-weight: bold;
		font-style: italic;
		border-left: 6px solid #cd0404;
		background-color: #f2f5f7;
		line-height: 200%;
	}
}

#slider {
	background-color: var(--secondary-color);
	padding: 0px;
	border-bottom: 2px solid var(--main-color);
	position: relative;
}

.banners-grid {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: repeat(30, 1fr);
	
	> div {
		position: relative;
		transition: 0.5s;
		border: 1px solid #444444;
	}
	
	> div .text {
		position: absolute;
		top: 50%;
		width: 100%;
		transform: translateY(-50%);
		z-index: 100;
		text-align: center;
		
		h2 {
			font-size: 0pt;
			font-size: 0pt;
			color: var(--text-color);
			transition: 0.5s;
			text-shadow: 2px 2px 2px #000000;
		}
	}
	
	> div .button {
		visibility: hidden;
		white-space: nowrap;
	}
	
	> div:hover {
		border: 1px solid #cccccc;
	}
	
	> div:hover .button {
		visibility: visible;
	}
	
	> div:hover .text h2 {
		font-size: 32pt !important;
	}
	
	> div img {
		width: 100%;
		position: relative;
		z-index: 10;
		vertical-align: middle;
	}
	
	div.wide {
		grid-column: span 30;
	}
	
	div.landscape {
		grid-column: span 15;
	}
	div.square {
		grid-column: span 10;
	}
	
	div.portrait {
		grid-column: span 6;
	}
}

.tag {
	display: inline-block;
	background-color: #dedede;
	border-radius: 5px;
	padding: 2px 8px;
	font-size: 11pt;
	margin: 4px;
	color: var(--secondary-color);
	cursor: pointer;
}

.buttons {
	text-align: center;
	margin-bottom: 20px;
	
	a, label {
		display: inline-block;
	}
	
	img {
		width: 64px;
		height: 64px;
		object-fit: cover;
		border: 1px solid #cccccc;
		padding: 2px;
		background-color: var(--text-color);
		border-radius: 50%;
		margin: 4px;
	}
}

#tags-groups {
	text-align: center;
	margin-bottom: 20px;
	
	.tags-group {
		display: inline-block;
		width: 150px;
		vertical-align: top;
		margin: 10px;
		border: 1px solid #cccccc;
		padding: 20px;
		background-color: #e1e1e1;
		text-align: left;
		
		p:last-child {
			padding-bottom: 0px;
		}
		
		h2 {
			text-align: center;
			text-transform: uppercase;
		}
	}
}

.cover {
    width: 100%;
    position: relative;
    background-color: #202124;
	height: 600px;
	
	&.small {
		height: 300px;
	}
	
	.image-container {
		position: relative;
		width: 100%;
		height: 100%;
		overflow: hidden;
		
		&.small {
			height: 550px;
		}
		
		.left-gradient, .right-gradient, .bottom-gradient {
			position: absolute;
			pointer-events: none;
			z-index: 1;
		}

		.left-gradient, .right-gradient {
			top: 0;
			bottom: 0;
			width: 30%;
		}

		.left-gradient {
			left: 0;
			background: linear-gradient(to right, #202124, transparent);
		}

		.right-gradient {
			right: 0;
			background: linear-gradient(to left, #202124, transparent);
		}

		.bottom-gradient {
			left: 0;
			right: 0;
			height: 50%; /* Adjust the height as needed */
			bottom: 0;
			background: linear-gradient(to top, #202124, transparent);
		}
	}

	.image {
		position: relative;
		
		img, iframe {
			width: 100%;
			height: 600px;
			object-fit: cover;
		}
	}
	
	.icons {
		position: absolute;
		width: 100%;
		text-align: center;
		top: 15px;
		z-index: 10;
		
		a {
			img {
				width: 84px;
				height: 84px;
				object-fit: cover;
				border: 3px solid var(--text-color);
				border-radius: 50%;
				margin: 4px;
			}
		}
		
		span {
			display: inline-flex;
			width: 84px;
			height: 84px;
			background-color: var(--secondary-color);
			color: var(--text-color);
			border-radius: 50%;
			align-items: center;
			justify-content: center;
			font-size: 24pt;
			font-weight: bold;
			vertical-align: middle;
			border: 3px solid var(--text-color);
			cursor: pointer;
		}
	}
	
	.details {
		&:not(.wrap) {
			width: 100%;
		}
		
		&.wrap {
			padding: 50px;
			left: 50%;
			transform: translateX(-50%);
		}
		
		position: absolute;
		min-height: 250px;
		bottom: 0px;
		padding: 50px;
		z-index: 10;
		color: var(--text-color);
		
		h1 {
			font-size: 24pt;
			text-shadow: 2px 2px 2px #000000;
			margin-bottom: 20px;
		}
		
		a {
			font-weight: bold;
		}
		
		.description {
			background: #000000;
			opacity: 0.8;
			padding: 15px;
		}
		
		.image {
			width: 200px;
			height: 200px;
			object-fit: cover;
			border: 1px solid #cccccc;
			background-color: var(--text-color);
			padding: 4px;
			border-radius: 50%;
		}
	}
}

.rating {
	color: #cccccc;
	font-family: fontello;
	font-size: 14pt;
	position: relative;
	display: inline-block;
}

.rating:before {
	content: '\e806\e806\e806\e806\e806';
}

.rating div {
	color: #f9bf3b;
	position: absolute;
	top: 0px;
	font-family: fontello;
	overflow: hidden;
}

.rating div:before {
	content:'\e806\e806\e806\e806\e806';
}

.products-grid {
	display: grid;
	grid-gap: 15px;  
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	justify-items: center;
}

.product {
	position: relative;
	overflow: hidden;
	max-width: 250px;
	text-align: center;
	
	.image {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 250px;
		height: 250px;
		margin-bottom: 5px;
		background-color: #ffffff;
		border-radius: 50%;
		overflow: hidden;
		transition: 0.5s;
		border: 2px solid #cccccc;
		padding: 10px;
		
		img {
			max-width: 230px;
			max-height: 230px;
			transition: 0.5s;
			
			&:hover {
			}
		}
	}
	
	.discount {
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		font-size: 12pt;
		font-weight: bold;
		width: 50px;
		height: 50px;
		color: var(--text-color);
		background-color: var(--secondary-color);
		position: absolute;
		z-index: 5;
	}
	
	.details {
		height: 80px;
		overflow: hidden;
	}
	
	p.category {
		display: none;
		color: #c3c3c3;
		margin-bottom: 0px;
	}
	
	p.title {
		height: 38px;
		font-size: 14pt;
		overflow: hidden;
		text-transform: uppercase;
		line-height: 200%;
		border-bottom: 1px solid #e3e3e3;
		
		a {
			color: var(--text-color);
		}
	}
	
	.rating-box {
		height: 38px;
		padding: 8px 0px;
	}
	
	p.price-box {
		padding-top: 10px;
		color: var(--text-color);
		
		.price {
			font-weight: bold;
			font-size: 15pt;
		}
	}
	
	&:hover {
		.image {
			border-radius: 20px;
		}
		
		.price-box {
			display: none;
		}
	}
}

.product-reviews-grid {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    margin: 0 auto;
}

.product-review {
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    padding-left: 40px;
	
	.quote {
		font-size: 50px;
		font-weight: bold;
		color: #eee;
		position: absolute;
		top: 10px;
		left: 10px;
	}
	
	.review-content {
		z-index: 1;
	}
	
	.review-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 10px;
	}
	
	.author-name {
		font-weight: bold;
		font-size: 1.1em;
	}
	
	.rating {
		font-size: 1em;
	}

	.content {
		font-size: 0.95em;
		height: 80px;
		overflow: hidden;
		line-height: 1.5;
	}

	.date {
		font-size: 0.8em;
		color: #888888;
		font-weight: bold;
	}
}

.images-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
	justify-items: center;
	
	a {
		display: inline-block;
		background-color: var(--text-color);
		width: 100%;
		max-width: 400px;
		text-align: center;
		padding: 10px;
		overflow: hidden;
	}
	
	img {
		height: 300px;
		object-fit: cover;
		transition: 0.4s;
		
		&:hover {
			scale: 1.1;
		}
	}
}

.stores-grid {
	margin: auto;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	justify-items: center;
}

.store {
	padding: 20px;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
	line-height: 175%;
	color: var(--text-color);
	
	img {
		height: 175px;
		object-fit: cover;
	}
	
	p:nth-child(2) {
		font-size: 18pt;
		font-weight: bold;
		text-transform: uppercase;
		transition: 0.5s;
		text-align: center;
		
		a {
			color: var(--main-color);
		}
	}
	
	p {
		i {
			margin-right: 10px;
		}
	}
	
	&:hover {
		outline: 1px solid var(--text-color);
	}
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
	grid-gap: 15px;
}

.post {
	display: flex;
	flex-direction: column;
	border: 1px solid #cccccc;
	border-radius: 8px;
	overflow: hidden;
	margin: auto;
	
	a {
		position: relative;
		overflow: hidden;
		
		> img {
			width: 100%;
			height: 220px;
			object-fit: cover;
			transition: 0.5s;
			
			&:hover {
				scale: 1.2;
			}
		}
		
		> i {
			z-index: 1;
			position: absolute;
			font-size: 40pt;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background-color: #ffffff;
			color: #ff0000;
			border-radius: 50%;
			padding: 5px;
			width: 80px;
			text-align: center;
			border: 3px solid #000000;
		}
	}
	
	.details {
		padding: 15px;
		display: flex;
		flex-direction: column;
		min-height: 200px;
		
		.dateTime {
			font-size: 0.875rem;
			color: var(--text-color);
		}
		
		.post-header {
			display: flex;
			margin-bottom: 5px;
		}
		
		.post-date {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			width: 50px;
			height: 75px;
			background-color: var(--text-color);
			color: #ffffff;
			font-weight: bold;
			border-radius: 12px;
			text-align: center;
			margin-right: 15px;
			
			.date-day {
				font-size: 20px;
			}
			.date-month {
				font-size: 14px;
				border-top: 1px solid #ffffff;
				width: 100%;
				padding-top: 4px;
				text-transform: uppercase;
			}
		}
		
		.post-title {
			margin: 0;
			flex: 1;
			
			h2 {
				font-size: 20px;
				margin: 0;
				height: 75px;
				overflow: hidden;
				
				a {
					color: #222222;
				}
			}
			
			p {
				font-size: 12pt;
				color: var(--accent-color);
			}
		}
		
		.description {
			font-size: 12pt;
			color: var(--text-color);
			margin: 0;
			overflow: hidden;
			display: -webkit-box;
			-webkit-box-orient: vertical;
			-webkit-line-clamp: 4; 
			line-clamp: 4;
			line-height: 1.5rem;
			max-height: 6.3rem;
			padding-bottom: 0px;
		}
	}
}

.post-image {
	width: 100%;
	margin-bottom: 10px;
	border: 1px solid #f9f9f9;
	padding: 5px;
	background-color: #ffffff;
}

.post-data {
	width: 100%;
	margin-bottom: 10px;
	
	a {
		color: #222222;
	}
}

.entities-grid {
	display: grid;
	grid-gap: 25px;  
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	justify-items: center;
}

.entity-category {
	.page-content {
		margin-bottom: 20px;
	}
	
	.wrap {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

.entity {
	text-align: center;
	position: relative;
	cursor: pointer;
}

.entities-grid.text {
	.entity {		
		.image {
			img {
				width: 200px;
				height: 200px;
				object-fit: cover;
				border: 1px solid #000000;
				border-radius: 50%;
			}
			margin-bottom: 20px;
		}
		
		h2 {
			font-size: 24pt;
			text-transform: uppercase;
			padding-bottom: 10px;
			border-bottom: 1px solid #444444;
		}
		
		p {
			line-height: 175%;
		}
		
		padding: 20px 0px;
	}
}

.entities-grid.image {
	.entity {
		.image {
			margin-bottom: 5px;
			border-radius: 50%;
			overflow: hidden;
			transition: 0.5s;
			border: 5px solid #000000;
			
			img {
				width: 100%;
				height: auto;
				object-fit: cover;
			}
		}
		
		h2 {
			background-color: #000000;
			padding: 15px 0px;
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			width: 100%;
			font-size: 18pt;
			font-weight: bold;
			opacity: 0.8;
		}
		
		p {
			display: none;
		}
		
		&:hover .image {
			border-radius: 20px;
		}
	}
}

.category {
	display: inline-block;
	width: 200px;
	max-width: 100%;
	margin: 10px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}

.category img {
	margin-bottom: 10px;
	transition: 0.5s;
	border-radius: 150px;
	border: 1px solid #cccccc;
	padding: 5px;
}

.category:hover img {
	background-color: #cccccc;
}

.category:hover p {
	transition: 0.5s;
}

.listing-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0px;
	
	.pages {
		margin-left: auto;
	}
}

.products-order {
	text-align: right;
	margin-bottom: 20px;
	
	select {
		margin-left: 10px;
		padding: 8px 12px;
		border-radius: 5px;
	}
}

.fields-grid {
	display: grid;
	grid-gap: 15px;  
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: minmax(auto, max-content);
	align-items: end;
	
	.field {
		h3 {
			font-size: 14pt;
			text-transform: uppercase;
			margin-bottom: 10px;
		}
		
		p {
			line-height: 125%;
		}
	}
}

.popup-message {
	padding: 30px;
	font-weight: bold;
	fon-size: 16pt;
	text-align: center;
}

.product-action {
	float: right;
	width: 275px;
	margin-left: 20px;
	padding: 20px;
	background-color: #222222;
	border: 1px solid #666666;
}

.faq {
	.question {
		border-bottom: 1px solid #cccccc;
		padding: 10px 0px;
		cursor: pointer;
		font-size: 16pt;
		font-weight: bold;
	}
	
	.answer {
		display: none;
		padding: 10px 0px;
		
		p:last-child {
			padding-bottom: 0px;
		}
	}
	
	&:last-child {
		.question {
			border-bottom: 0px;
		}
	}
}

#ad {
	img {
		width: 100%;
	}
	
	h2 {
		background-color: #222222;
		padding: 5px;
		margin-bottom: 0px;
	}
}

.mce-toc {
	ul li:last-child {
		padding-bottom: 0px;
	}
	
	> ul:last-child {
		padding-bottom: 10px;
	}
	
	ul ul {
		padding-left: 30px;
		padding-top: 10px;
	}
}

.post-main {
	display: flex;
	flex-direction: row;
	gap: 1rem;
	margin-bottom: 20px;
	color: #222222;
	
	img {
		width: 50%;
		object-fit: cover;
		border-radius: 6px;
		clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
	}
	
	> div {
		flex: 1;
		padding: 1.5rem;
		
		p {
			text-align: justify;
			line-height: 175%;
		}
		
		h3 {
			font-size: 28pt;
			margin-bottom: 20px;
		}
	}
}

.prediction-categories-grid {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 10px;
    margin: 0 auto;
}

.prediction-category {
	display: inline-block;
	background: url(icons/ball.png) no-repeat 10px 10px;
	background-size: 40px 40px;
	padding: 20px 10px 20px 60px;
	font-size: 14pt;
	font-weight: bold;
	text-transform: uppercase;
	border: 1px solid #cccccc;
	background-color: #ff9800;
	border-radius: 6px;
	color: #222222;
}

.prediction-category:hover {
	background-color: #cccccc;
}

.bookmakers-grid {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 10px;
    margin: 0 auto;
}

.bookmaker {
	max-width: 350px;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #f8f8f8;
	
	img {
		margin-bottom: 20px;
	}
	
	.button {
		margin: 0px 5px;
	}
	
	.description {
		line-height: 175%;
		height: 100px;
		overflow: hidden;
	}
}

.sub-page {
	border: 1px solid #cccccc;
	display: inline-block;
	margin: 0px 10px 10px 0px;
	padding: 10px;
	border-radius: 10px;
	color: #222222;
}

.sub-page:hover {
	background-color: #f8f8f8;
}

#table-predictions {
	width: 1200px;
	
	img {
		height: 50px;
	}
}

.table-wrapper {
	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	margin-bottom: 20px;
}

.footer-images {
	float: right;
	
	img {
		height: 60px;
		margin: 5px;
	}
}

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

}

@media screen and (min-width: 1120px) {
	#menu ul ul {
		display: none;
		position: absolute;
		top: 0;
		left: 100%;
		background-color: var(--secondary-color);
		min-width: 150px;
		white-space: nowrap;
	}

	#menu > ul > li > ul {
		top: 100%;
		left: 0;
	}

	#menu ul li i {
		display: none;
	}

	#menu ul li:hover > ul {
		display: block;
		opacity: 1;
	}

	#menu ul ul {
		transition: opacity 0.3s ease;
		opacity: 0;
	}
}

@media screen and (max-width: 1120px) {
	main {
		border: 0px;
	}
	
	.images-grid {
		grid-gap: 10px;  
		grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
		
		img {
			height: 200px;
			padding: 8px;
		}
	}
	
	#menu {
		position: absolute;
		top: 45px;
		left: 0px;
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--secondary-color);
		
		ul {
			flex-direction: column;
			
			li {
				i {
					display: inline-block;
					cursor: pointer;
					margin: 10px 20px;
					vertical-align: top;
				}
				
				a, span {
					display: inline-block;
					padding: 15px;
				}
			}
			
			ul {
				position: static;
				display: none;
				margin-left: 20px;
			}
		}
    }
	
    #menu-icon {
        display: block;
    }
}

@media screen and (max-width: 800px) {
	.post-main {
		flex-direction: column;
		
		img {
			width: 100%;
			clip-path: none;
		}
		
		> div {
			padding: 0px;
		}
	}
	
	.banners-grid {
		div.landscape {
			grid-column: span 30;
		}
		div.square {
			grid-column: span 15;
		}
		
		div.portrait {
			grid-column: span 10;
		}
	}
	
	.cover {
		.details {
			text-align: center;
			
			.description {
				padding: 15px;
				max-height: 165px;
				overflow: hidden;
				position: relative;
				line-height: 1.5em;
				display: -webkit-box;
				-webkit-box-orient: vertical;
				-webkit-line-clamp: 5; 
			}
		}
	}
	
	.flex {
		display: block;
	}
	
	aside {
		width: 100%;
		margin: 0px 0px 20px 0px;
		
		&.half {
			width: 100%;
		}
	}
}

@media screen and (max-width: 500px) {
	.footer-images {
		float: none;
		text-align: center;
	}
	
	.banners-grid {
		grid-gap: 10px;
		grid-template-columns: repeat(4, 1fr);
		
		div.wide {
			grid-column: span 4;
		}
		
		div.landscape {
			grid-column: span 4;
		}
		
		div.square {
			grid-column: span 2;
		}
		
		div.portrait {
			grid-column: span 2;
		}
	}
	
	.products-order {
		text-align: center;
	}
	
    .listing-footer {
		display: block;
		text-align: center;
    }
    
    .listing-footer div {
		margin-bottom: 20px;
    }
    
    .listing-footer p:last-child {
		margin-bottom: 0;
    }
	
	.post-image {
		float: none;
		margin: 0px 0px 20px 0px;
	}
	
	.product-action {
		float: none;
		width: 100%;
		margin-left: 0px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 360px) {
	.cover {
		.details {
			&.wrap {
				padding: 10px;
			}
		}
	}
	
	.youtube-video {
		width: 100%;
	}
}