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

::-webkit-scrollbar {
	width: 10px;
	background-color: #888888;
}

::-webkit-scrollbar-track {
}

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

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

:root {
	--width: 1330px;
	--text-color: #222222;
	--main-color: #000000;
	--secondary-color: #dedede;
	--accent-color: #777777;
	--bg-color: #646464;
	--color-red: #a81717;
}

body {
	font-size: 13pt;
	background-color: #e0e0e0;
}

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

h1 {
	margin-bottom: 15px;
}

h2 {
	margin-bottom: 12px;
	
	&.separator {
		display: block; 
		margin: 10px; 
		font-size: 42pt; 
		color: #888888;
		text-align: center;
	}
}

h3 {
	margin: 8px 0px 12px 0px;
}

h1, h2, h3 {
	a {
		color: #222222;
	}
}

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

p {
	line-height: 150%;
	padding-bottom: 10px;
}

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;
	background-color: #f5f2ee;
	font-size: 12pt;
	color: #444444;
	background-color: #fafafa;
	max-width: 100%;
}

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

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

.button.small {
	padding: 2px 4px;
}

select {
	border: 1px solid #cccccc;
	padding: 5px 6px !important;
}

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: #ff0000;
	font-size: 11pt;
	border: 1px solid #ff0000;
	padding: 0px 10px;
	background-color: #fee0e1;
	margin-bottom: 5px;
	display: inline-block;
}

.pointer {
	cursor: pointer;
}

.center {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.clear {
	clear: both;
}

header {
	position: fixed;
	width: 100%;
	background-color: #f8f8f8;
	border-bottom: 1px solid #cccccc;
	z-index: 100;
	padding: 5px 10px;
	
	#logo {
		height: 60px;
		cursor: pointer;
	}
	
	#customer {
		float: right;
		display: flex;
		align-items: center;
		
		img#avatar {
			width: 60px;
			height: 60px;
			object-fit: cover;
			border-radius: 50%;
			border: 1px solid #cccccc;
			padding: 3px;
			color: #000000;
		}
		
		i#avatar {
			cursor: pointer;
			font-size: 38pt;
			color: #000000;
		}
	}
}

.header-menu {
	position: fixed;
	z-index: 1000;
	
	ul {
		list-style: none;
		
		li a {
			display: block;
			font-size: 11pt;
			color: #444444;
			text-align: center;
			
			i {
				font-size: 22pt;
			}
		}
	}
}

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

aside {
	height: 100%;
	width: 240px;
	left: 0px;
	padding: 0px 20px 20px 0px;
	position: fixed;
	overflow-y: auto;
	z-index: 500;
	background-color: #222222;
	transform: translateX(-100%);
	transition: 0.5s;
	
	&.active {
		transform: translateX(0);
	}
	
	a, span {
		color: #ffffff;
	}
	
	ul {
		list-style-type: none;
		padding: 10px 0px 0px 20px;
		
		li {
			padding: 8px;
			text-transform: uppercase;
			font-size: 12pt;
		}
	}
}

footer {
	background-color: #393939;
	padding: 30px 0px 80px 0px;
	color: #ffffff;
	
	a {
		color: #ffffff;
	}
}

.warning {
	position: fixed;
	bottom: 20px;
	left: 20px;
	
	img {
		height: 60px;
		cursor: pointer;
	}
}

#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: #000000;
		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: 10pt;
	color: #000000;
	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: #ffffff;
		max-height: 80vh;
		max-width: 80vw;
		overflow-y: auto;
		
		.wrap {
			width: auto;
		}
	}
	
	#popup-close {
		position: absolute;
		font-size: 25pt;
		cursor: pointer;
		padding: 3px 6px;
		background-color: #000000;
		border-radius: 50%;
		border: 4px solid #ffffff;
		color: #ffffff;
		top: -25px;
		right: -25px;
	}
}

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

.flex {
    display: flex;
}

section {
	.title-content {
		overflow: hidden;
		margin-bottom: 15px;
		
		h1, .title {
			color: #333333;
			font-size: 22pt;
			font-weight: bold;
			margin-bottom: 0px;
		}
	}
	
	&.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: 10px;
	
	p {
		margin-bottom: 0px;
	}
	
	.separator {
		margin: 0px 5px;
	}
	
	.selected {
		color: #ac235b;
	}
}

.breadcrumb *, .breadcrumb {
	font-weight: bold;
	text-transform: uppercase;
	color: #222222;
}

.pages {
	text-align: center;
	padding: 20px;
	
	a {
		margin: 0px 2px;
		padding: 5px 10px;
		font-weight: bold;
		font-size: 13pt;
		color: #000000;
	}
	
	a.selected {
		border: 1px solid #000000;
		background-color: #ffffff;
	}
}

.grid {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	
	th, td {
		padding: 12px 15px;
		border: 1px solid #dcdcdc;
		text-align: center;
	}
	
	thead {
		background: #757575;
		background: -webkit-linear-gradient(#757575, #535353);
		background: -o-linear-gradient(#757575, #535353);
		background: -moz-linear-gradient(#757575, #535353);
		background: linear-gradient(#757575, #535353);
		color: white;
	}
	
	tbody {
		tr:nth-child(even) {
			background-color: #ebebeb;
		}
		
		tr:nth-child(odd) {
			background-color: #ffffff;
		}
		
		tr:hover {
			background-color: #dcdcdc;
		}
		th {
			border: 0px;
			border-bottom: 2px solid #6c757d;
		}
	}
}

.page-content {
	color: var(--text-color);
	
	p {
		line-height: 150%;
		font-size: 14pt;
	}
	
	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);
	}
}

#slider {
	padding: 0px;
	position: relative;
	
	.wrap {
		padding: 25px 45px;
	}
}

.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: #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;
	}
}

#place {
	.description {
		display: inline-block;
		width: calc(37.5% - 22px);
		border: 1px solid #cccccc;
		padding: 10px;
		background-color: #ffffff;
		height: 500px;
		
		img {
			width: 100%;
			height: 320px;
			object-fit: cover;
			margin-bottom: 10px;
		}
	}
	
	
	iframe {
		vertical-align: top;
		display: inline-block;
		width: calc(60% - 22px);
		margin-left: 2%;
		height: 500px;
		border: 1px solid #cccccc;
		padding: 10px;
		background-color: #ffffff;
	}
}

.trips-grid, .lists-grid, .places-grid {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: repeat(auto-fill, minmax(min(325px, 100%), 1fr));
	margin-bottom: 20px;
	
	h2 {
		grid-column: 1 / -1;
		text-align: center;
		color: #888888;
		margin: 10px 0px;
		text-transform: uppercase;
	}
	
	&.small {
		grid-template-columns: repeat(auto-fill, minmax(min(225px, 100%), 1fr));
		
		.place, .trip, .list {
			height: 200px;
		}
	}
}

.places-grid {

}

.places-default, .trips-default {
	.place, .trip {
		width: 325px;
		height: 280px;
		margin: 5px;
		display: inline-block;
		vertical-align: top;
	}
}

.place, .trip, .list {
	position: relative;
	
	&:hover {
		.image img {
			scale: 1.2;
		}
		
		.actions {
			/*
			display: block;
			*/
		}
		
		.user, .icon {
			top: -32px;
			left: -32px;
			
			img {
				width: 120px;
				height: 120px;
			}
		}
	}
	
	.labels {
		position: absolute;
		top: 15px;
		right: 15px;
		z-index: 5;
		
		span {
			background-color: #000000;
			border-radius: 5px;
			padding: 5px 10px;
			color: #ffffff;
			font-size: 11pt;
		}
	}
	
	.actions {
		display: none;
		position: absolute;
		top: 90px;
		width: 100%;
		text-align: center;
		z-index: 10;
		
		img {
			max-width: 72px;
		}
	}
	
	.user, .icon {
		position: absolute;
		top: -15px;
		left: -15px;
		z-index: 10;
		transition: 0.5s;
		
		img {
			border-radius: 50%;
			border: 4px solid #e1e1e1;
			background-color: #ffffff;
			width: 100px;
			height: 100px;
			object-fit: cover;
			transition: 0.5s;
		}
		
		&.inactive img {
			background-color: #cb2e2e;
		}
	}
	
	.stamp {
		top: 30px;
		position: absolute;
		width: calc(100% - 20px);
		z-index: 10;
	}
	
	.image {
		overflow: hidden;
		width: 100%;
		height: 280px;
		max-height: 100%;
		border-radius: 15px;
		background-color: #ffffff;
	}
	
	.image img {
		margin-bottom: 0px;
		vertical-align: middle;
		width: 100%;
		height: 280px;
		object-fit: cover;
		transition: 1s;
	}
	
	.image:after {
		content: '';
		position: absolute;
		bottom: 0px;
		left: 0;
		right: 0;
		height: 150px;
		border-radius: 15px;
		background: linear-gradient(180deg, rgba(0,0,0,0), #000000);
	}
	
	.image.grayscale {
		filter: grayscale(100%);
		opacity: 0.75;
	}
	
	.title {
		position: absolute;
		bottom: 0px;
		color: #ffffff;
		padding: 15px;
		font-weight: bold;
		line-height: 150%;
		text-shadow: 1px 1px 1px #000000;
		text-align: left;
	}
	
	.type {
		position: absolute;
		top: 15px;
		left: 15px;
		text-align: left;
		z-index: 10;
	}
	
	.type span {
		display: inline-block;
		background-color: #000000;
		padding: 3px 8px;
		border-radius: 5px;
		font-size: 10pt;
		color: #ffffff;
		font-weight: bold;
		margin-bottom: 3px;
	}
}

.trip-place {
	margin: 10px 0px;
	
	h3 {
		padding: 0px 0px 5px 0px;
		margin: 0px;
	}
	
	.rating {
		font-size: 18pt;
		color: #cccccc;
		
		.active {
			color: #f5ba00;
		}
	}
}

.trip-items-grid {
	display: grid;
	grid-gap: 12px;
	grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
	
	h2, h3, p, .trips-place {
		grid-column: 1 / -1;
	}
	
	p {
		padding-bottom: 0px;
	}
	
	.separator {
		margin: 0px;
	}
	
	h3 {
		font-size: 20pt;
		color: #444444;
	}
	
	.trip-item {
		&.image {
			position: relative;
			transition: 0.5s;
		}
		
		&.image img {
			width: 100%;
			height: 220px;
			object-fit: cover;
			box-shadow: 5px 5px 5px #cccccc;
		}
		
		&.image:hover {
			scale: 1.05;
		}
		
		span {
			position: absolute;
			bottom: 0px;
			left: 0px;
			width: 100%;
			background-color: #222222;
			color: #ffffff;
			padding: 5px;
			text-align: center;
			font-size: 10pt;
		}
	}
}

.tag {
	display: inline-block;
	background-color: #dedede;
	border-radius: 5px;
	padding: 6px 12px;
	font-size: 12pt;
	margin: 0px 5px 8px 0px;
	color: #000000;
	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: #ffffff;
		border-radius: 50%;
		margin: 4px;
	}
}

.user {
	position: relative;
	display: inline-block;
	margin: 5px;
	text-align: center;
	
	&:hover .image img {
		background-color: #cccccc;
	}
	
	&:hover .level {
		width: 92px;
		top: -10px;
		left: -10px;
	}
	
	.image {
		margin-bottom: 10px;
	}
	
	.image img {
		border: 1px solid #cccccc;
		padding: 10px;
		border-radius: 150px;
		background-color: #ffffff;
		width: 250px;
		height: 250px;
		object-fit: cover;
	}
	
	.level {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 72px;
		transition: 0.5s;
	}
	
	.name {
		font-size: 16pt;
		font-weight: bold;
		color: #000000;
	}
}

.circle {
	display: inline-block;
	margin: 5px;
	position: relative;
	
	img {
		width: 100px;
		height: 100px;
		object-fit: cover;
		border-radius: 50%;
		border: 1px solid #cccccc;
		padding: 3px;
		background-color: #ffffff;
	}
	
	span {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #ffffff;
		background-color: #000000;
		padding: 10px 0px;
		width: 40px;
		text-align: center;
		font-weight: bold;
		border-radius: 50%;
	}
}


.year {
	display: inline-block;
	border: 1px solid #cccccc;
	border-radius: 10px;
	background-color: #f8f8f8;
	margin: 3px;
	padding: 8px 12px;
	color: #444444;
	cursor: pointer;
	font-weight: bold;
	font-size: 14pt;
	
	&:hover, &.active {
		background-color: #cccccc;
		border: 1px solid #000000;
	}
}

.month {
	display: inline-block;
	
	h2 {
		text-align: center;
		text-transform: uppercase;
	}
	
	table {
		width: 100%;
		table-layout: fixed;
		border-spacing: 0px;
		border-collapse: separate;
		border-top: 1px solid #cccccc;
		border-left: 1px solid #cccccc;
		background-color: #ffffff;
		
		td {
			text-align: center;
			padding: 5px;
			color: #444444;
			border-right: 1px solid #cccccc;
			border-bottom: 1px solid #cccccc;
			background-color: #fbfbfb;
			height: 42px;
			vertical-align: middle;
			position: relative;
			
			a, span {
				width: 30px;
				height: 30px;
				line-height: 30px;
				display: inline-block;
				border-radius: 50%;
				background-color: #777777;
				color: #ffffff;
			}
			
			a {
				background-color: #000000;
			}
		}
		
		thead {
			td {
				font-weight: bold;
				background-color: #e8e8e8;
			}
		}
	}
}

#tags-groups {
	text-align: center;
	margin-bottom: 20px;
	
	.tags-group {
		display: inline-block;
		width: 150px;
		vertical-align: top;
		margin: 5px;
		border: 1px solid #cccccc;
		padding: 10px;
		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;
	
	.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: 64px;
				height: 64px;
				object-fit: cover;
				border: 1px solid #cccccc;
				padding: 2px;
				background-color: #ffffff;
				border-radius: 50%;
				margin: 4px;
			}
		}
		
		.user-icon, .map-icon {
			img {
				width: 92px;
				height: 92px;
				object-fit: cover;
			}
		}
	}
	
	.details {
		position: absolute;
		min-height: 250px;
		bottom: 0px;
		padding: 50px;
		z-index: 10;
		color: #ffffff;
		
		h1 {
			font-size: 24pt;
			text-shadow: 2px 2px 2px #000000;
			margin-bottom: 20px;
		}
		
		a {
			color: #ffffff;
			font-weight: bold;
		}
		
		.country {
			margin: 0px 5px 8px 0px;
			
			img {
				height: 31px;
			}
		}
		
		.separator {
			padding: 0px 3px;
		}
		
		.image {
			width: 200px;
			height: 200px;
			object-fit: cover;
			border: 1px solid #cccccc;
			background-color: #ffffff;
			padding: 4px;
			border-radius: 50%;
		}
	}
}

.months-grid {
	display: grid;
	grid-gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
	margin: 30px 0px 0px 0px;
}

.user-cover {
	background: rgb(0,0,0);
	background: linear-gradient(90deg, rgba(24,24,24,1) 0%, rgba(108,109,113,1) 50%, rgba(25,25,25,1) 100%);
	padding: 20px;
	
	.details {
		padding: 20px 40px;
	}
}

.user-image {
	display: inline-block;
}

.user-image > img {
	border: 1px solid #cccccc;
	padding: 10px;
	border-radius: 10px;
	background-color: #ffffff;
}

.user-data {
	margin-left: 30px;
	vertical-align: bottom;
	display: inline-block;
	color: #ffffff;
	
	a {
		color: #ffffff;
	}
	
	h1 {
		font-size: 24pt;
		text-shadow: 2px 2px 2px #000000;
		margin-bottom: 20px;
	}
}

.faq {
	font-size: 13pt;
	
	.question {
		border-bottom: 1px solid #cccccc;
		padding: 10px 0px;
		cursor: pointer;
	}
	
	.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;
		color: #ffffff;
	}
}

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

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

.post {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--secondary-color);
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--secondary-color);
	max-width: 350px;
	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: 220px;
		
		.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: var(--secondary-color);
			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 var(--secondary-color);
				width: 100%;
				padding-top: 4px;
				text-transform: uppercase;
			}
		}
		
		.post-title {
			margin: 0;
			flex: 1;
			
			h2 {
				font-size: 16pt;
				margin: 0;
				height: 55px;
				overflow: hidden;
				
				a {
					color: var(--main-color);
				}
			}
			
			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: 6rem; 
		}
	}
	
	&:nth-child(even) > a {
		order: 2; 
	}
	
	&:nth-child(even) .details {
		order: 1;
	}
}

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

.post-data {
	width: 100%;
	margin-bottom: 10px;
	
	a {
		color: var(--main-color);
	}
}

.trips-place {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background: #494949;
	color: #ffffff;
	border-radius: 8px;
	overflow: hidden;

	.place-image {
		flex: 0 0 250px;
		aspect-ratio: 3 / 2;
		overflow: hidden;
		
		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			display: block;
		}
	}

	.place-content {
		flex: 1;
		padding: 16px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
		box-sizing: border-box;
		
		.title {
			font-size: 1.5rem;
			margin: 0 0 8px;
		}

		.rating {
			font-size: 1.2rem;
			color: gold;
			margin-bottom: 10px;
		}

		.review {
			color: #0000ff;
			cursor: pointer;
		}
	}
}

.user-person {
	display: inline-block;
	position: relative;
	border-radius: 50%;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
	margin-right: 5px;
	
	.caption {
		position: absolute;
		top: 50%;
		padding: 5px 0px;
		width: 100%;
		text-align: center;
		background-color: #000000;
		color: #ffffff;
		font-size: 10pt;
		transform: translateY(-50%);
		opacity: 0.8;
	}
	
	img {
		width: 175px;
		height: 175px;
		object-fit: cover;
	}
	
	&:hover {
		outline: 3px solid #000000;
	}
}

@media screen and (min-width: 1241px) {
	.places-overlap {
		text-align: center; 
		margin-left: -100px;
		
		.place {
			position: relative;
			width: 325px;
			height: 220px;
			margin: 5px;
			margin-right: -100px;
			display: inline-block;
			vertical-align: top;
			transition: 0.2s;
			z-index: 10;
			
			.title {
				color: #bababa;
			}
			
			&:hover {
				transform: translateX(-100px);
				scale: 1.2;
				z-index: 20;
				
				.title {
					color: #ffffff;
				}
			}
		}
	}
}

@media screen and (min-width: 801px) and (max-width: 1240px) {
	.scrolling-wrapper {
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
	}
	
	.places-overlap {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
		margin-bottom: 20px;
		
		.place {
			height: 220px;
			margin: 5px;
			display: inline-block;
			vertical-align: top;
			transition: 0.2s;
			z-index: 10;
			
			.title {
				color: #ffffff;
			}
		}
	}
}

@media screen and (min-width: 320px) and (max-width: 800px) {
	.banners-grid {
		div.landscape {
			grid-column: span 30;
		}
		div.square {
			grid-column: span 15;
		}
		
		div.portrait {
			grid-column: span 10;
		}
	}
}



@media screen and (max-width: 750px) {
	.user-cover {
		.details {
			padding: 10px;
			text-align: center;
			
			.user-image {
				margin-bottom: 20px;
			}
			
			.user-data {
				display: block;
				margin-left: 0px;
			}
		}
	}
}

/* DESKTOP */
@media screen and (min-width: 601px) {
	section {
		.wrap {
			padding: 20px;
		}
	}
	
	.header-menu {
		top: 10px;
		width: calc(100% - 130px);
		margin: 0px 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 200;
		
		ul {
			list-style: none;
		}
		
		ul li {
			float: left;
		}
		
		ul li a {
			display: flex;
			padding: 10px 18px;
			font-size: 12pt;
			color: #444444;
			font-weight: bold;
			text-align: center;
			text-transform: uppercase;
			transition: 0.5s;
			align-items: center;
			
			i {
				margin-right: 12px;
			}
		}
		
		ul li a:hover {
			color: #000000;
			background-color: #cccccc;
		}
	}
}

/* MOBILE */
@media screen and (max-width: 600px) {
	header {
		position: static;
	}
	
	main {
		padding-top: 0px;
	}
	
	section {
		.wrap {
			padding: 10px;
		}
	}
	
	.header-menu {
		bottom: 0px;
		width: 100%;
		border-top: 1px solid #cccccc;
		background-color: #ffffff;
		padding: 5px;
		
		ul {
			list-style: none;
			display: grid;
			grid-gap: 2px;
			grid-template-columns: repeat(auto-fit, minmax(75px, 0.5fr));
		}
		
		ul li a {
			display: block;
			font-size: 11pt;
			color: #444444;
			text-align: center;
			
			i {
				display: block;
			}
		}
	}
	
	.cover {
		.details {
			padding: 15px;
		}
	}
	
	.trips-place {
		flex-direction: column;
		
		.place-image {
			display: block;
			width: 100%;
			aspect-ratio: 3 / 2;
			max-height: 200px;
		}
		
		.place-content {
			padding: 12px;
		}
	}
}

@media screen and (max-width: 500px) {
	.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 4;
		}
		
		div.portrait {
			grid-column: span 2;
		}
	}
}

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