* {
	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: #8c5403;
	--secondary-color: #cd0404;
	--accent-color: #999999;
	--bg-color: #646464;
	--color-red: #a81717;
}

@-moz-keyframes swing{
	0%{-moz-transform:rotate(-10deg)}
	50%{-moz-transform:rotate(10deg)}
	100%{-moz-transform:rotate(-10deg)}
}
@-webkit-keyframes swing{
	0%{-webkit-transform:rotate(-10deg)}
	50%{-webkit-transform:rotate(10deg)}
	100%{-webkit-transform:rotate(-10deg)}
}
@-ms-keyframes swing{
	0%{-ms-transform:rotate(-10deg)}
	50%{-ms-transform:rotate(10deg)}
	100%{-ms-transform:rotate(-10deg)}
}

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 {
}

h2 {
	clear: both;
}

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;
}

.simple-link {
	color: #1239b3;
	text-decoration: underline;
}

header {
	background-color: var(--secondary-color);
	z-index: 100;
	color: #ffffff;
	
	.wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		
		padding: 10px 20px;
		
		#logo {
			height: 30px;
		}
	}
	
	#bonuses-icon {
		position: relative;
		
		i {
			color: #ffffff;
			display: inline-block;
			animation: 1.0s swing infinite alternate;
			animation-iteration-count: 5;
			cursor: pointer;
			font-size: 20pt;
		}
		span {
			position: absolute;
			top: -4px;
			right: -10px;
			background-color: #000000;
			color: #ffffff;
			padding: 2px;
			font-size: 11pt;
			width: 20px;
			text-align: center;
			border-radius: 50%;
			font-weight: bold;
		}
	}
}

#bonuses {
	display: none;
	position: absolute;
	z-index: 10;
	top: 52px;
	right: 0px;
	background-color: #222222;
	padding: 15px;
	width: 380px;
	
	.bonus {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 15px;
		
		&:last-child {
			margin-bottom: 0px;
		}
		
		.image {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100px;
			height: 100px;
			padding: 5px;
			border-radius: 10px;
			flex-shrink: 0;
			
			img {
				object-fit: cover;
			}
		}
		.bonus-content {
			flex: 1;
		}
		
		.button {
			padding: 10px;
		}
	}
}

#menu {
	z-index: 100;
	display: flex;
	
	ul {
		list-style: none;
		margin: 0;
		padding: 0;
		
		li {
			position: relative;
		}
		
		li a, li span {
			cursor: pointer;
			padding: 6px 20px;
			font-size: 13pt;
			color: #ffffff;
			font-weight: bold;
			text-transform: uppercase;
			display: block;
			
			&:hover {
			}
		}
	}
	
	ul ul {
		li a, li span {
			padding: 10px 20px;
		}
	}
	
	> ul {
		display: flex;
		
		> li {
			position: relative;
		}
	}
	
	.menu-icon-down, .menu-icon-up {
		font-style: normal;
		float: right;
		font-size: 20pt;
	}
	
	.menu-icon-down::before {
		content: "🔽";
		
	}
	.menu-icon-up::before {
		content: "🔼";
	}
}

#menu-icon {
    display: none;
    font-size: 22pt;
    cursor: pointer;
	font-weight: bold;
	line-height: 100%;
}

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

footer {
	.wrap {
		padding: 10px 20px;
	}
	
	background-color: #4b4b4b;
	padding: 15px 0px;
	color: #ffffff;
	
	a {
		color: #ffffff;
	}
	
	.socials {
		i {
			font-size: 28pt;
		}
	}
	
	.page-content {
		color: #ffffff;
	}
	
	p {
		line-height: 150%;
	}
	
	h3 {
		margin-bottom: 20px;
	}
	
	ul {
		list-style-type: none;
		
		li {
			padding: 3px 0px;
		}
	}
	
	.plus-18 {
		background-color: #c60029;
		padding: 12px 10px;
		border-radius: 50%;
	}
}

footer #footer-menu {
	display: grid;
	grid-gap: 15px;  
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin-bottom: 20px;
}

#cookies-policy {
	background-color: #f8f8f8;
	padding: 10px;
	z-index: 1000;
	position: fixed;
	bottom: 0px;
	width: 100%;
	
	p {
		text-align: center;
		line-height: 125%;
		font-size: 10pt;
		padding-bottom: 0px;
	}
	
	#button-close-cookies {
		position: absolute;
		top: -10px;
		right: 5px;
		cursor: pointer;
		width: 20px;
		height: 20px;
		background: url(icons/button-close.png) no-repeat;
	}
	
	#button-accept-cookies {
		padding: 2px 10px;
	}
}

#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-color: #f8f8f8;
		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: 10px;
	background-color: #f8f8f8;
	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: 15pt;
			padding: 5px 5px 5px 15px;
			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: #222222;
	line-height: 150%;
	
	a {
		color: #222222;
	}
	
	p {
		margin-bottom: 0px;	
	}
	
	.separator {
		margin: 0px 5px;
	}
	
	.selected {
		color: #ac235b;
	}
}

.breadcrumb *, .breadcrumb {
	font-size: 10pt;
	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;
	border: 1px solid #7d7d7d;
	
	th, td {
		padding: 10px 15px;
	}
	
	thead {
		color: #f9f9f9;
		background: #777777;
	}
	
	tbody {
		tr:nth-child(even) {
			background-color: #ebebeb;
			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;
	}
	
	> ul {
		margin-bottom: 10px;
	}
	
	> h2 {
		color: #444444;
		font-size: 15pt;
		padding: 5px 5px 5px 15px;
		text-transform: uppercase;
		font-weight: bold;
		font-style: italic;
		border-left: 6px solid #cd0404;
		background-color: #f2f5f7;
		line-height: 200%;
		margin-bottom: 15px;
	}
	
	> h3 {
		margin-bottom: 15px;
	}
	
	a:not(.button) {
		color: #1239b3;
		text-decoration: underline;
	}
	
	.mce-toc {
		margin-bottom: 20px;
		
		h2 {
			margin-bottom: 15px;
			cursor: pointer;
			text-decoration: underline;
			color: #1239b3;
		}
		
		> ul {
			list-style-type: none;
			grid-gap: 10px;  
			grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
			display: none;
			
			a {
				text-decoration: none;
				color: #333333;
				font-size: 11pt;
			}
			
			li {
				background-color: #ffffff;
				border: 1px solid #cccccc;
				padding: 2px;
				border-radius: 4px;
				height: 35px;
				overflow: hidden;
				
				ul {
					display: none;
				}
			}
			
			
		}
	}
}

#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: 10;
		text-align: center;
		
		h2 {
			font-size: 0pt;
			font-size: 0pt;
			color: #ffffff;
			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;
	height: 400px;
	
	.wrap {
		display: flex;
		flex-direction: row;
		text-align: center;
		height: 100%;
		align-items: center;
		
		.image {
			width: 50%;
			padding: 1.5rem;
		}
		
		> div {
			flex: 1;
			padding: 1.5rem;
			
			.button {
				width: 100%;
				max-width: 350px;
				padding: 15px;
			}
		}
	}
	
	&.small {
		height: 300px;
	}
}

.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;
	background-color: #ffffff;
	box-shadow: 5px 5px 5px #888888;
	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, .user-image {
	width: 100%;
	margin-bottom: 5px;
	border: 1px solid #f9f9f9;
	padding: 5px;
	background-color: #d7d7d7;
}

.post-data, .page-data {
	width: 100%;
}

.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%;
		}
	}
}

.user-details-grid {
	display: grid;
	grid-gap: 10px;  
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: minmax(auto, max-content);
	
	> div {
		line-height: 175%;
	}
}

.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: #f8f8f8;
		padding: 5px;
		margin-bottom: 0px;
	}
}

.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 #595959;
	background-color: #e19e3b;
	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 {
	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;
	}
}

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

.employee {
	text-align: center;
	
	img {
		margin-bottom: 20px;
		border-radius: 50%;
		border: 5px solid var(--secondary-color);
		padding: 10px;
		background-color: #ffffff;
	}
	
	.name {
		font-size: 16pt;
		font-weight: bold;
		color: #000000;
	}
	
	.position {
		line-height: 175%;
		color: #222222;
		font-style: italic;
	}
}


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

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

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

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

.footer-images {
	margin-bottom: 20px;
	text-align: center;
	
	img {
		height: 40px;
		margin: 10px;
	}
}

.image-right {
	float: right;
	max-width: 50%;
	margin: 0px 0px 15px 15px;
}

.image-left {
	float: left;
	max-width: 50%;
	margin: 0px 15px 15px 0px;
}

@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) {
	.images-grid {
		grid-gap: 10px;  
		grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
		
		img {
			height: 200px;
			padding: 8px;
		}
	}
	
	header {
		position: fixed;
		width: 100%;
	}
	
	main {
		border: 0px;
		padding-top: 50px;
	}
	
	#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 {
					margin: 2px;
				}
				
				a, span {
					display: inline-block;
					padding: 12px;
				}
			}
			
			ul {
				display: none;
				margin-left: 20px;
				top: 100%;
			}
		}
    }
	
    #menu-icon {
		display: block;
    }
	
	#logo {
		position: absolute;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

@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;
		}
	}
	
	.flex {
		display: block;
	}
	
	aside {
		width: 100%;
		margin: 0px 0px 20px 0px;
		
		&.half {
			width: 100%;
		}
	}
	
	.cover {
		height: auto;
		
		.wrap {
			flex-direction: column;
			
			.image {
				width: 100%;
				padding: 0.5rem;
			}
			
			> div {
				padding: 0.5rem;
			}
		}
	}
}

@media screen and (max-width: 600px) {	
	.image-left, .image-right {
		float: none;
		margin: 0px;
		max-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;
	}
	
	.product-action {
		float: none;
		width: 100%;
		margin-left: 0px;
		margin-bottom: 20px;
	}
	
	#bonuses {
		width: 100%;
	}
}

@media screen and (max-width: 360px) {
	.youtube-video {
		width: 100%;
	}
}

@media screen and (max-width: 260px) {
	main, footer, header {
		display: none;
	}
}