html {
	scroll-behavior: smooth;
}

.refresh {
	/* css variable */
	--red: #b32b2e;
	--black: #000000;
	--gray: #c6c5c5;
	--white: #ffffff;

	background-color: var(--gray);

	.split {
		display: flex;
		flex-direction: column;
		.side {
			flex: 1;
		}
	}

	.container {
		max-width: 1550px;
	}

	.large.container {
		max-width: 100%;
	}

	/*
  * 
  *HEADER 
  *
  */
	.header-top {
		background-color: var(--black);
		padding: 5px 0;
		.container {
			padding: 0;
			img {
				display: block;
				margin-left: auto;
			}
		}
	}
	header {
		font-family: 'Space Grotesk', sans-serif;
		padding-bottom: 0;
		.container {
			padding: 20px 15px;
			border-bottom: solid 1px var(--black);
			max-width: 1630px;
		}
		.header-logo {
			img {
				width: 100%;
				max-width: 334px;
				height: auto;
			}
		}
		.call-link {
			color: var(--black);
			background-color: var(--gray);
			text-transform: uppercase;
			font-size: 14px;
			font-weight: 700;
			display: flex;
			gap: 6px;
			align-items: center;
			i {
				color: var(--red);
			}
			&:hover {
				color: var(--red);
			}
		}
		#newsletter-trigger {
			font-size: 14px;
			font-weight: 700;
			text-transform: uppercase;
			padding: 10px 20px;
			border-radius: 6px;
			background-color: transparent;
			border: solid 1px var(--black);
			cursor: pointer;
			transition: ease-in-out 0.4s;
			&:hover {
				color: var(--red);
			}
		}
		#menu-trigger {
			padding: 0;
			border: none;
			width: 32px;
			height: 26px;
			border-radius: 0;
			color: transparent;
			border-top: solid 2px var(--black);
			border-bottom: solid 2px var(--black);
			background-color: transparent;
			cursor: pointer;
			position: relative;
			transition: ease-in-out 0.4s;
			&::after,
			&::before {
				content: '';
				display: block;
				width: 100%;
				height: 2px;
				background-color: var(--black);
				border-radius: 2px;
				transition: ease-in-out 0.4s;
				position: absolute;
				top: calc(50% - 1px);
			}
			&.active {
				opacity: 0;
				border-color: transparent;
				&::after {
					transform: rotate(45deg);
				}
				&::before {
					transform: rotate(-45deg);
				}
			}
		}
		.split {
			flex-direction: row;
			justify-content: space-between;
			gap: 20px;
			align-items: center;
			.side {
				flex: unset;
			}
		}

		.popup {
			position: fixed;
			top: 0;
			left: 0;
			z-index: 9;
			width: 100%;
			height: 100%;
			display: none;
			justify-content: center;
			align-items: center;
			transition: ease-in-out 0.4s;
			transform: translateY(40px);
			opacity: 0;
			pointer-events: none;
			&.active {
				opacity: 1;
				pointer-events: all;
				transform: translateY(0);
				display: flex;
			}
			.container {
				border-bottom: none;
			}
			.wrapper {
				background-color: var(--gray);
				padding: 20px;
				border-radius: 6px;
				box-shadow: var(--black) 0px 0px 40px;
				max-height: calc(100vh - 200px);
				overflow-y: scroll;
				.top {
					padding-bottom: 20px;
					.split {
						gap: 20px;
					}
					.close-popup {
						background-color: transparent;
						padding: 0;
						border: none;
						font-size: 26px;
						cursor: pointer;
						font-size: 30px;
						transition: ease-in-out 0.4s;
						&:hover {
							color: var(--red);
						}
					}
				}
				.mid {
					.split {
						flex-direction: column;
						.side {
							width: 100%;
							.menu {
								list-style: none;
								padding: 0;
								margin: 0;
								width: 100%;
								padding-bottom: 20px;
								li {
									&::after {
										display: none;
									}
									a {
										font-family: 'rama-slab-m', sans-serif;
										font-size: 32px;
										text-transform: uppercase;
										color: var(--black);
										border-bottom: solid 1px var(--black);
										display: block;
										font-weight: 600;
										line-height: 1.2;
										letter-spacing: 2px;
										&:hover {
											color: var(--red);
										}
									}
								}
							}
							.social {
								display: flex;
								gap: 10px;
								padding-bottom: 20px;
								a {
									color: var(--white);
									background-color: var(--black);
									width: 30px;
									height: 30px;
									border-radius: 30px;
									display: flex;
									justify-content: center;
									align-items: center;
									svg {
										fill: var(--white);
									}
								}
							}
							.newsletter {
								background-color: var(--black);
								padding: 20px;
								border-radius: 8px;
								h2 {
									font-size: 32px;
									background-color: var(--black);
									font-weight: 600;
									letter-spacing: 2px;
									text-transform: uppercase;
									color: var(--white);
									font-family: 'rama-slab-m', sans-serif;
									span {
										color: var(--red);
										background-color: var(--black);
									}
									border-bottom: solid 1px var(--white);
									padding-bottom: 20px;
									margin-bottom: 30px;
								}
								form {
									input {
										font-family: 'Space Grotesk', sans-serif;
										font-size: 13px;
										text-transform: uppercase;
									}
									input[type='text'],
									input[type='email'] {
										width: 100%;
										box-sizing: border-box;
										border: solid 1px var(--white);
										background-color: transparent;
										color: var(--white);
										padding: 10px;
										margin-bottom: 10px;
										&:focus {
											outline: none;
											border-color: var(--red);
										}
									}
									input[type='submit'] {
										width: 100%;
										box-sizing: border-box;
										border: none;
										background-color: var(--gray);
										color: var(--black);
										padding: 13px;
										cursor: pointer;
										transition: ease-in-out 0.4s;
										&:hover {
											color: var(--white);
											background-color: var(--red);
										}
									}
								}
							}
						}
					}
				}
			}
			&#header-newsletter {
				.wrapper {
					.top {
						.split {
							justify-content: flex-end;
						}
					}
					.split {
						.side {
							.newsletter {
								background-color: transparent;
								padding: 0;
								h2 {
									font-weight: 700;
									color: var(--black);
									border-bottom-color: var(--black);
								}
								form {
									input {
										border-color: var(--black);
									}
									input[type='submit'] {
										background-color: var(--black);
										color: var(--white);
										&:hover {
											background-color: var(--red);
										}
									}
								}
							}
						}
					}
				}
			}
		}
	}
}

@media screen and (max-width: 767px) {
	.refresh {
		.desktop {
			display: none !important;
		}
	}
}

@media screen and (min-width: 768px) {
	.refresh {
		.mobile {
			display: none !important;
		}
		.split {
			flex-direction: row;
		}
		header {
			.container {
				.split {
					.side {
						.split {
							gap: 30px;
						}
					}
				}
			}
			.popup {
				.container {
					max-width: 1400px;
					.wrapper {
						padding: 40px;
						max-height: calc(100vh - 140px);
						scrollbar-width: none;
						&::-webkit-scrollbar {
							display: none;
						}
						.mid {
							.split {
								flex-direction: row;
								gap: 60px;
								.side {
									flex: 1;
									.menu {
										li {
											a {
												font-size: 64px;
											}
										}
									}
									&:last-child {
										max-width: 556px;
									}
									.newsletter {
										padding: 30px;
										h2 {
											font-size: 52px;
										}
									}
								}
							}
						}
					}
				}
				&#header-newsletter {
					.container {
						max-width: 920px;
						.wrapper {
							.mid {
								.split {
									.side {
										max-width: 100%;
										.newsletter {
											display: flex;
											flex-direction: row-reverse;
											h2 {
												padding-left: 30px;
												margin-left: 30px;
												border-left: solid 1px var(--black);
												border-bottom: none;
												padding-bottom: 0;
												margin-bottom: 0;
											}
										}
									}
								}
							}
						}
					}
				}
			}
		}
	}
}

/*
* 
*HOMEPAGE
*
*/

.section-heading {
	color: var(--red);
	font-size: 14px;
	letter-spacing: 8px;
	text-transform: uppercase;
	font-family: 'Space Grotesk', sans-serif;
	margin-bottom: 30px;
}

.slider-text {
	overflow: hidden;
	font-size: 40px;
	.swiper-wrapper {
		pointer-events: none;
		transition-timing-function: linear;
	}
	.slider-text_slide {
		/* white-space: nowrap; */
		width: 100% !important;
		max-width: max-content !important;
		font-family: 'rama-slab-m', sans-serif;
		letter-spacing: 7px;
		font-weight: 600;
		line-height: 1;
	}
}

.slider-home-hero {
	overflow: hidden;
	.slider-home-hero_slide {
		position: relative;
		aspect-ratio: 9/6;
		width: 100%;
		max-width: 780px;
		max-height: 505px;
		img {
			bottom: 0;
			left: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: ease-in-out 0.4s;
		}
		.hero-slide_content {
			position: absolute;
			transition: ease-in-out 0.4s;
			bottom: 0;
			left: 0;
			width: 100%;
			background-color: var(--gray);
			border-bottom: solid 1px var(--black);
			.split {
				padding: 10px;
				align-items: center;
				justify-content: space-between;
				flex-direction: row;
				.side {
					max-width: max-content;
				}
			}
			.hero-slide_content__title,
			.hero-slide_content__link {
				font-family: 'Space Grotesk', sans-serif;
				text-transform: uppercase;
				font-size: 14px;
				font-weight: 700;
				margin: 0;
			}
			.hero-slide_content__link {
				color: var(--black);
				display: flex;
				align-items: center;
				gap: 5px;
				&:hover {
					color: var(--red);
				}
				i {
					color: var(--red);
					font-size: 12px;
				}
			}
		}
	}

	.swiper-slide-active {
		max-width: 860px;
	}
	.swiper-slide-prev,
	.swiper-slide-next {
		img {
			transform: translateY(30px);
			height: calc(100% - 30px);
		}
	}
}

.home-menu {
	padding: 30px 0 25px;
	.container {
		.wrapper {
			.menu {
				list-style: none;
				padding: 0;
				margin: 0;
				display: flex;
				flex-direction: row;
				justify-content: space-around;
				gap: 20px;
				flex-wrap: wrap;
				li {
					&:after {
						display: none;
					}
					a {
						color: var(--black);
						text-transform: uppercase;
						font-family: 'Space Grotesk', sans-serif;
						font-size: 16px;
						font-weight: 700;
						position: relative;
						padding-bottom: 5px;
						transition: all 0.4s;
						top: 0;
						&:hover {
							color: var(--red);
							top: -5px;
						}
					}
				}
			}
		}
	}
}

.home-music {
	padding-top: 60px;
	overflow: hidden;
	.container {
		border-bottom: solid 1px var(--black);
		padding-bottom: 60px;
		margin-bottom: 60px;
		.slider-music,
		.slider-videos {
			position: relative;
			/* .swiper-slide{
        opacity: 0;
        transition: ease-in-out .2s;
        pointer-events: none;
      }
      .swiper-slide-active,
      .swiper-slide-prev,
      .swiper-slide-next{
        opacity: 1;
        pointer-events: all;
      } */
			.swiper-button-prev,
			.swiper-button-next {
				top: calc(50% - 15px);
				z-index: 99;
				color: var(--black);
				&::after {
					font-size: 30px;
				}
			}
			.swiper-button-prev {
				left: -40px;
			}
			.swiper-button-next {
				right: -40px;
			}
			.swiper-pagination {
				position: relative;
				padding-top: 20px;
				.swiper-pagination-bullet-active {
					background-color: var(--red);
				}
			}
			.slider-music_slide {
				.inner-wrapper {
					padding: 20px;
				}
				img {
					width: 100%;
					max-height: 500px;
					object-fit: cover;
				}
				background-color: var(--white);
				border-radius: 6px;
				.split {
					justify-content: space-between;
					align-items: center;
					padding-top: 20px;
					.side {
						max-width: max-content;
						a {
							border: solid 1px var(--black);
							padding: 5px 10px;
							font-size: 14px;
							border-radius: 3px;
							font-weight: 600;
							text-transform: uppercase;
							font-family: 'Space Grotesk', sans-serif;
							display: flex;
							align-items: center;
							max-width: max-content;
							gap: 10px;
							color: var(--black);
							i {
								color: var(--red);
							}
							&:hover {
								color: var(--red);
							}
						}
					}
				}
				p {
					margin-bottom: 0;
					font-weight: 600;
					font-family: 'Space Grotesk', sans-serif;
					&.artist {
						text-transform: uppercase;
					}
				}
			}
		}
		.slider-videos {
			.slider-music_slide {
				img {
					max-height: unset;
					aspect-ratio: 16/9;
				}
				.split {
					.side {
						a {
							border: none;
						}
					}
				}
			}
		}
	}
}

/*
* 
* FOOTER
*
*/
footer#main-footer {
	background-color: var(--gray);
	.container {
		padding: 60px 15px;
		border: none;
		border-top: solid 1px var(--black);
		display: flex;
		flex-direction: column;
		gap: 30px;
		.row {
			text-align: center;
			.footer-logo {
				display: block;
				max-width: max-content;
				margin: 0 auto;
			}
			.social {
				width: 100%;
				display: flex;
				gap: 20px;
				justify-content: center;
				a {
					display: flex;
					justify-content: center;
					align-items: center;
					font-size: 20px;
				}
			}
			.copyright {
				font-family: 'Space Grotesk', sans-serif;
				text-transform: uppercase;
				text-align: center;
				width: 100%;
				font-size: 12px;
				font-weight: 600;
			}
		}
	}
}

/*
* 
* Posts page
*
*/

.posts-page {
	padding: 60px 0;
	.container {
		.split {
			gap: 60px;
			.side {
				.section-heading {
					margin-bottom: 10px;
				}
				&.sidebar {
					max-width: 400px;
					.mini-post {
						.top {
							.date {
								display: block;
							}
						}
						.bottom {
							.split {
								flex-direction: column;
								align-items: flex-start;
								justify-content: flex-start;
								.side {
									&:last-child {
										max-width: 100%;
									}
									.excerpt {
										display: block;
									}
								}
							}
						}
					}
				}
				.mini-post {
					border-bottom: solid 1px var(--black);
					font-family: 'Space Grotesk', sans-serif;
					.top {
						padding-top: 10px;
						.date {
							color: var(--red);
							font-size: 14px;
							letter-spacing: 4px;
							text-transform: uppercase;
							margin-bottom: 10px;
							display: none;
						}
						a {
							display: block;
							img {
								width: 100%;
								aspect-ratio: 16/9;
								object-fit: cover;
								&.post-default-thumb {
									object-fit: scale-down;
									background-color: var(--white);
								}
							}
						}
					}
					.bottom {
						padding: 10px 0;
						.split {
							gap: 20px;
							justify-content: space-between;
							align-items: flex-start;
							.side {
								max-width: max-content;
								.title {
									font-size: 18px;
									text-transform: uppercase;
									font-weight: 600;
								}
								.excerpt {
									font-size: 14px;
									color: var(--black);
									height: 65px;
									overflow: hidden;
									display: none;
								}
								a {
									color: var(--black);
									font-family: 'Space Grotesk', sans-serif;
									text-transform: uppercase;
									font-weight: 600;
									font-size: 16px;
									display: flex;
									gap: 10px;
									align-items: center;
									i {
										color: var(--red);
									}
									&:hover {
										color: var(--red);
									}
								}
							}
						}
					}
				}
			}
		}
		.pagination {
			display: flex;
			gap: 10px;
			padding-top: 60px;
			.page-numbers {
				display: block;
				padding: 7px 13px;
				background-color: var(--black);
				font-family: 'Space Grotesk', sans-serif;
				text-transform: uppercase;
				font-weight: 600;
				color: var(--white);
				font-size: 12px;
				transition: all 0.4s;
				&:hover,
				&.current {
					background-color: var(--red);
				}
			}
		}
	}
}

/*
*
** Single post
*
*/
.single {
	.post-default-thumb {
		object-fit: scale-down;
		background-color: var(--white);
		width: 100%;
		aspect-ratio: 9/7;
	}
	.back-to {
		padding: 30px 0;
		a {
			color: var(--black);
			font-size: 12px;
			font-family: 'Space Grotesk', sans-serif;
			text-transform: uppercase;
			font-weight: 600;
			&:hover {
				color: var(--red);
			}
		}
	}
	.split {
		gap: 30px;
		.side {
			font-family: 'Space Grotesk', sans-serif;
			hr {
				background-color: var(--black);
				margin: 20px 0;
			}
			.date {
				font-size: 12px;
				text-transform: uppercase;
				font-weight: 600;
				color: var(--red);
				letter-spacing: 4px;
				margin-bottom: 10px;
			}
			.thumbnail {
				img {
					object-fit: cover;
				}
			}
			.entry-title {
				font-family: 'Space Grotesk', sans-serif;
				text-transform: uppercase;
				font-size: 20px;
				margin-bottom: 30px;
				margin-top: 22px;
			}
			.content {
				font-size: 14px;
				td {
					border: none;
					padding: 0;
				}
				a {
					color: var(--red);
					border-bottom: solid 1px transparent;
					transition: all 0.4s;
					&:hover {
						border-bottom-color: var(--red);
					}
				}
			}
		}
	}
}

/*
*
** Artists page
*
*/
.artists-page {
	.artists-filter {
		padding: 40px 0;
	}
	.artists-grid {
		display: grid;
		gap: 10px;
		padding-bottom: 40px;
		.artist-mini {
			position: relative;
			background-color: var(--black);
			width: 100%;
			.artist-thumb {
				position: relative;
				width: 100%;
				aspect-ratio: 1/1;
				transition: all 0.4s;
				object-fit: cover;
				opacity: 1;
			}

			.artist-details {
				position: absolute;
				width: 100%;
				color: var(--red);
				background: linear-gradient(
					0deg,
					rgba(0, 0, 0, 0.9) 10%,
					rgba(0, 0, 0, 0.5) 60%,
					rgba(0, 0, 0, 0) 100%
				);
				padding: 100px 10px 10px;
				bottom: 0;

				.artist-details_heading {
					font-family: 'Space Grotesk', sans-serif;
					text-transform: uppercase;
					font-size: 14px;
					font-weight: 600;
					margin-bottom: 10px;
				}
				.wrapper {
					justify-content: flex-start;
					display: flex;
					flex-direction: row;
					gap: 10px;
					a {
						font-size: 20px;
						display: flex;
						justify-content: center;
						align-items: center;
						color: var(--red);
						.fa-tiktok {
							background: none;
						}
						.fa-pandora {
							background-image: url('../img/pandora-red.svg');
						}
					}
				}
			}
			.artist-name {
				position: absolute;
				bottom: 30px;
				width: 100%;
				padding-top: 30px;
				transition: all 0.4s;
				h3 {
					margin: 0;
					font-size: 18px;
					text-transform: uppercase;
					text-transform: uppercase;
					font-family: 'Space Grotesk', sans-serif;
					padding: 10px;
					color: var(--white);
				}
			}
		}
	}
}

.floating-social {
	position: fixed;
	right: 0;
	top: calc(50% - 125px);
	z-index: 99;
	background-color: hsla(40, 14%, 92%, 0.2);
	border-radius: 3px 0 0 3px;
	.social {
		display: flex;
		flex-direction: column;
		a {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 60px;
			height: 50px;
			color: var(--black);
			font-size: 18px;
			transition: all 0.4s;
			svg {
				fill: var(--black);
			}
			&:hover {
				background-color: var(--gray);
			}
		}
	}
}

.posts-search,
.artists-filter,
.events-search {
	padding: 0 0 40px;
	.buttons {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
		button {
			border: solid 2px var(--black);
			border-radius: 3px;
			font-family: 'Space Grotesk', sans-serif;
			text-transform: uppercase;
			transition: all 0.4s;
			background-color: transparent;
			font-weight: 600;
			color: var(--black);
			padding: 10px 20px;
			font-size: 14px;
			width: 100%;
			&:hover,
			&.active {
				border-color: var(--red);
				color: var(--red);
			}
		}
	}
	form {
		label {
			width: 100%;
			position: relative;
			input {
				border-radius: 0;
				background-color: var(--gray);
				color: var(--black);
				border: none;
				display: block;
				width: 100%;
				border-bottom: solid 1px var(--black);
				&::placeholder {
					color: transparent;
				}
			}
			#search-placeholder {
				position: absolute;
				text-transform: uppercase;
				font-weight: 600;
				font-size: 14px;
				top: calc(50% - 11px);
				left: 20px;
				opacity: 1;
				transition: all 0.4s;
				pointer-events: none;
				color: transparent;
				.character {
					&.active {
						color: var(--black);
					}
				}
			}
			&.focused {
				#search-placeholder {
					opacity: 0;
				}
			}
		}
	}
}

.search-title {
	font-family: 'Space Grotesk', sans-serif;
	text-transform: uppercase;
}

/*
* 
* Discover
*
*/
.discover-page {
	> .split {
		flex-direction: column-reverse;
		> .side {
			&.sideb {
				padding-top: 40px;
				h3 {
					font-size: 12px;
					letter-spacing: 4px;
					text-transform: uppercase;
					font-family: 'Space Grotesk', sans-serif;
					color: var(--red);
				}
				a {
					display: block;
					font-family: 'Space Grotesk', sans-serif;
					text-transform: uppercase;
					color: var(--black);
					font-weight: 600;
					font-size: 16px;
					padding: 10px;
					border-bottom: solid 1px var(--black);
					transition: all 0.4s;
					i {
						color: var(--red);
						display: none;
					}
					&.active,
					&:hover {
						background-color: #b9b3b3;
						i {
							display: inline-block;
						}
					}
				}
			}
		}
	}
}

#post-5079 {
	display: flex;
	flex-direction: column;
	> div {
		width: 100%;
		&:nth-child(1) {
			order: 1;
		}
		&:nth-child(2) {
			order: 2;
		}
		&:nth-child(3) {
			order: 4;
		}
		&:nth-child(4) {
			order: 3;
		}
	}
}

.events-date-picker {
	max-width: 800px;
	margin: 0 auto;
	.container {
		padding: 40px 15px 40px;
		.wrapper {
			display: flex;
			flex-direction: column;
			gap: 10px;
			form {
				label {
					font-size: 12px;
					text-transform: uppercase;
					font-family: 'Space Grotesk', sans-serif;
					color: var(--red);
					margin-bottom: 0;
					display: block;
				}
				select {
					background-color: transparent;
					font-family: 'Space Grotesk', sans-serif;
					text-transform: uppercase;
					font-weight: 600;
					font-size: 20px;
					border: none;
				}
			}
		}
	}
}

.artists-photos {
	display: block;
	pointer-events: none;
	width: 300px;
	height: 300px;
	position: absolute;
	transition: all 0.4s;
	display: none;
	img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0;
		transition: all 0.4s;
	}
}
#shows {
	#events {
		display: grid;
		grid-template-columns: 1fr;
		/* gap: 20px; */
		max-width: 800px;
		margin: 0 auto;
		.events-group {
			display: flex;
			flex-direction: column;
			/* gap: 20px; */
			.events-date {
				display: none;
			}
			.event {
				margin: 0;
				display: flex;
				flex-direction: column;
				font-family: 'Space Grotesk', sans-serif;
				font-size: 18px;
				gap: 10px;
				border-bottom: solid 2px var(--white);
				padding-bottom: 0;
				margin-bottom: 0;
				color: var(--black);
				position: relative;
				.upcoming-shows-artist-image {
					display: none;
				}
				.upcoming-shows-artist {
					font-family: 'Space Grotesk', sans-serif;
					text-transform: uppercase;
					font-weight: 600;
					padding: 15px 0;
				}
				.upcoming-shows-tickets {
					a {
						display: block;
						padding: 15px 0;
						font-size: 18px;
						color: var(--black);
					}
				}
			}
		}
	}
}

.popup {
	background-color: #0000008e;
}

#header-newsletter {
	.container {
		.wrapper {
			position: relative;
			.mid {
				.split {
					.newsletter {
						.wrap {
							height: auto;
							display: flex;
							align-items: center;
							h2 {
								height: auto;
							}
						}
					}
				}
			}
		}
	}
	.close-popup {
		font-size: 18px;
		position: absolute;
		top: 15px;
		right: 15px;
	}
}

.search-form {
	label {
		&::before {
			font-weight: 900;
			font-size: 13px;
			top: calc(50% - 10px);
			font-family: 'Font Awesome 6 Free';
			content: '\f002';
			position: absolute;
			left: 0;
		}
		input {
			padding-left: 20px;
		}
	}
}

.events-search {
	.container {
		max-width: 800px;
		margin: 0 auto;
		padding: 0 15px 0;
	}
}

@media screen and (min-width: 1040px) {
	.artists-photos {
		display: block;
	}
	.logged-in {
		#masthead {
			&.sticky {
				top: 32px;
			}
		}
	}
	#masthead {
		&.sticky {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			background-color: var(--gray);
			z-index: 9999;
		}
	}
	.slider-home-hero {
		.slider-home-hero_slide {
			.hero-slide_content {
				pointer-events: none;
				bottom: -20px;
				opacity: 0;
				display: none;
			}
			&:hover {
				.hero-slide_content {
					display: block;
					bottom: 0;
					opacity: 1;
					pointer-events: all;
				}
			}
		}
	}
	.slider-text {
		font-size: 175px;
	}
	.posts-page {
		.container {
			.split {
				.side {
					.mini-post {
						.bottom {
							.split {
								align-items: center;
							}
						}
					}
				}
			}
		}
	}

	.footer-menu {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: var(--gray);
		bottom: 0;
		z-index: 99;
		&.unstick {
			position: relative;
		}
	}

	.home {
		.footer-menu {
			position: unset;
		}
	}

	.single {
		.split {
			.side {
				.content {
					height: calc(100vh - 450px);
					overflow-y: scroll;
					scrollbar-width: none;
					&::-webkit-scrollbar {
						display: none;
					}
				}
			}
		}
	}

	.artists-page {
		.artists-filter {
			form {
				display: flex;
				gap: 10px;
			}
			label {
				flex: 2;
				margin: 0;
				input {
					padding: 10px;
				}
			}
			.buttons {
				flex: 3;
				button {
					flex: 1;
				}
			}
		}
		.row {
			/* adaptive grid */
			grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
			gap: 0;
			.artist-mini {
				overflow: hidden;
				.artist-thumb {
					opacity: 0.8;
				}
				.artist-details {
					top: 0;
					bottom: unset;
					transition: all 0.4s;
				}
				.artist-name {
					bottom: 0;
					top: unset;
					transition: all 0.4s;
					background: linear-gradient(
						0deg,
						rgba(0, 0, 0, 0) 100%,
						rgba(0, 0, 0, 0) 100%
					);
				}
				.artist-details {
					background: linear-gradient(
						180deg,
						rgba(0, 0, 0, 0.9) 10%,
						rgba(0, 0, 0, 0.5) 60%,
						rgba(0, 0, 0, 0) 100%
					);
					padding: 10px 10px 200px;
					top: -40px;
					bottom: unset;
					opacity: 0;
					.wrapper {
						justify-content: center;
						a {
							color: var(--red);
							svg {
								fill: var(--red);
							}
						}
					}
				}
				&:hover {
					.artist-name {
						width: 100%;
						padding-top: 30px;
						background: linear-gradient(
							0deg,
							rgba(0, 0, 0, 0.8) 10%,
							rgba(0, 0, 0, 0) 100%
						);
					}
					.artist-details {
						top: 0;
						opacity: 1;
					}
				}
			}
		}
	}

	.discover-page {
		> .split {
			flex-direction: row;
			position: relative;
			max-width: 1550px;
			margin: 0 auto;
			> .side {
				&.content {
					max-width: calc(100% - 264px);
				}
				&.sideb {
					max-width: 234px;
					padding-top: 110px;
					position: fixed;
					right: calc(50% - 1550px / 2);
					h3 {
						margin-bottom: 20px;
					}
					a {
						width: 234px;
						border-left: solid 1px var(--black);
						position: relative;
						&:last-child {
							border-bottom: none;
						}
						i {
							display: block;
							position: absolute;
							top: calc(50% - 9px);
							opacity: 0;
							transition: all 0.4s;
						}
						span {
							position: relative;
							transition: all 0.4s;
							left: 0;
						}
						&.active,
						&:hover {
							i {
								opacity: 1;
							}
							span {
								left: 15px;
							}
						}
					}
				}
			}
		}
	}

	#shows {
		#events {
			height: calc(100vh - 630px);
			overflow-y: scroll;
			scrollbar-width: none;
			&::-webkit-scrollbar {
				display: none;
			}
			.events-group {
				.event {
					flex-direction: row;
					align-items: center;
					> div {
						flex: 1;
						&.upcoming-shows-venue {
							flex: 2;
							max-width: 400px;
						}
						&.upcoming-shows-artist {
							max-width: 300px;
						}
						&.upcoming-shows-tickets {
							max-width: max-content;
							a {
								&:hover {
									color: var(--white);
								}
							}
						}
					}
				}
			}
		}
	}

	#post-5079 {
		> div {
			&:nth-child(2) {
				.container {
					padding-left: 0;
					padding-right: 0;
				}
			}
			&:nth-child(3) {
				order: 3;
			}
			&:nth-child(4) {
				order: 4;
				.container {
					padding: 40px 0 0;
				}
			}
		}
	}
}

#wpadminbar {
	display: none;
}
