:root {
	--color-primary: #171637;
	--color-secondary: #ffda00;

	--color-tertiary: #d82828;

	--color-light: #d4e9f3;
	--color-resto: #41a0cc;
	--color-text: #fff;

	--font-primary: "Gill Sans MT", sans-serif;
	--font-secondary: "CHEESE ROLL", sans-serif;

	/* #ffda00 in RGB */
}

@font-face {
	font-family: "Gill Sans MT";
	src: url("./fonts/GillSansMT.eot");
	src: url("./fonts/GillSansMT.eot?#iefix") format("embedded-opentype"), url("./fonts/GillSansMT.woff2") format("woff2"), url("./fonts/GillSansMT.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "CHEESE ROLL";
	src: url("./fonts/CHEESEROLL.eot");
	src: url("./fonts/CHEESEROLL.eot?#iefix") format("embedded-opentype"), url("./fonts/CHEESEROLL.woff2") format("woff2"), url("./fonts/CHEESEROLL.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Gill Sans MT";
	src: url("./fonts/GillSansMT-Bold.eot");
	src: url("./fonts/GillSansMT-Bold.eot?#iefix") format("embedded-opentype"), url("./fonts/GillSansMT-Bold.woff2") format("woff2"), url("./fonts/GillSansMT-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
	GENERAL
========================================================================== */

body {
	font-family: var(--font-primary);
	color: var(--color-text);
	font-size: 1.125rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-secondary);
}

a,
a:focus,
a:hover {
	outline: none;
}

.font--primary {
	font-family: var(--font-primary);
}

.font--secondary {
	font-family: var(--font-secondary);
}

/* COLORS */
.color--primary {
	color: var(--color-primary) !important;
}

.color--secondary {
	color: var(--color-secondary);
}

.color--tertiary {
	color: var(--color-tertiary);
}

.color--resto {
	color: var(--color-resto);
}

.bg--primary {
	background-color: var(--color-primary);
}

.bg--secondary {
	background-color: var(--color-secondary);
}

.bg--tertiary {
	background-color: var(--color-tertiary);
}

.btn {
	border: none;
	padding: 1rem 2rem;
}

.btn-primary {
	background: url("../img/button.png") no-repeat scroll center center transparent;
	background-size: 100%;
	color: var(--color-primary);
	font-size: 1.2rem;
	transform: scale(1);
	transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
}

.btn-primary:hover {
	background: url("../img/button.png") no-repeat scroll center center transparent;
	background-size: 100%;
	transform: scale(1.1);
	color: var(--color-primary);
}

.title-shape {
	position: relative;
	z-index: 2;
	font-size: 1.18rem;
	transform: rotate(-2deg);
	padding-left: 2rem;
	margin: 0 0 0 3rem;
}

.title-shape--blue::after {
	content: "";
	position: absolute;
	display: block;
	background: #2d7ec6;
	top: 50%;
	left: 0;
	transform: translate(0, -53%) rotate(2deg);
	width: 295px;
	max-width: 100%;
	height: 84px;
	z-index: -1;
	clip-path: url("#title-path-blue");
}

.title-shape--red::after {
	content: "";
	position: absolute;
	display: block;
	background: #d82828;
	top: 50%;
	left: 0;
	transform: translate(0, -53%) rotate(2deg);
	width: 290px;
	max-width: 100%;
	height: 108px;
	z-index: -1;
	clip-path: url("#title-path-red");
}
.title-shape--red2::after {
	content: "";
	position: absolute;
	display: block;
	background: #d82828;
	top: 50%;
	left: 0;
	transform: translate(0, -53%) rotate(2deg);
	width: 345px;
	max-width: 100%;
	height: 97px;
	z-index: -1;
	clip-path: url("#title-path-red2");
}

.title-shape--yellow {
	color: var(--color-primary);
}

.title-shape--yellow::after {
	content: "";
	position: absolute;
	display: block;
	background: var(--color-secondary);
	top: 50%;
	left: 0;
	transform: translate(0, -50%) rotate(2deg);
	width: 354px;
	max-width: 100%;
	height: 96px;
	z-index: -1;
	clip-path: url("#title-path-yellow");
}

.logo-bal-wrapper {
	position: relative;
	z-index: 2;
}

.twenty {
	position: absolute;
	bottom: 0;
	left: 57%;
	transform: translate(-50%, 50%);
}
.twenty img {
	max-width: 250px;
}

/* ==========================================================================
	HEADER
========================================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 0;
	z-index: 10;
}

.header.fixed {
	padding: 0.3rem 0;
	background: rgb(23, 22, 55);
	background: linear-gradient(180deg, rgba(23, 22, 55, 1) 0%, rgba(23, 22, 55, 0.47102591036414565) 100%);
}

.header.fixed .navbar-brand img {
	width: 120px;
}

#restoheader,
#balheader {
	transform: translate(0, -100%);
	transition: transform ease 0.5s;
}

#restoheader.activeheader,
#balheader.activeheader {
	transform: translate(0, 0);
}

.navbar-brand img {
	width: 120px;
	height: auto;
	transition: all ease 0.4s;
	margin-right: 2rem;
}

.navbar-collapse {
	position: relative;
}

/* .lang-menu {
	position: absolute;
	top: 0;
	right: 0;
	list-style: none;
	display: flex;
	transform: translate(0, -150%);
} */

.lang-menu li {
	margin-right: 1rem;
}
.lang-menu li:last-child {
	margin-right: 0;
}

.lang-menu__link {
	color: var(--color-text);
	text-decoration: none;
	font-weight: 700;
	padding: 0 1rem;
	font-size: 1.7rem;
	position: relative;
}

.lang-menu__link::before {
	content: "";
	display: block;
	right: 0;
	width: 60%;
	bottom: 0;
	z-index: -1;
	background: #215b98;
	position: absolute;
	top: 0;
}

.lang-menu__link.activelang,
.lang-menu__link:hover {
	color: var(--color-secondary);
}

.lang-menu li:last-child .lang-menu__link::before {
	left: 0;
	right: auto;
}

.nav-item {
	margin-right: 0.9rem;
}

.nav-item:last-child {
	margin-right: 0;
}

.nav-link,
.nav-link:focus {
	color: var(--color-text);
	font-weight: 700;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.navbar-nav {
	width: 100%;
}

.navbar-nav .highlighted .nav-link {
	background: var(--color-secondary);
	color: var(--color-primary);
}

.navbar-nav .highlighted .nav-link:hover {
	background: #fff;
	color: var(--color-primary);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
	color: var(--color-secondary);
}

.navbar-toggler {
	border: none;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 218, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 3rem;
	height: 3rem;
	border: none;
}

.logo-wrapper {
	position: relative;
}

.star-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 260px;
	height: 260px;
}

#resto .star-wrapper {
	top: -40px;
}

.star-wrapper::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 260px;
	height: 260px;
	background: url("../img/star.svg") no-repeat scroll center center transparent;
	background-size: 100% 100%;
	z-index: -1;
}

.star-wrapper.star-wrapper--w::before {
	background: url("../img/star-w.svg") no-repeat scroll center center transparent;
}

/* ==========================================================================
	BAL
========================================================================== */

#bal .jumbo {
	min-height: 100vh;
	background: url("../img/texture.png");
	position: relative;
	z-index: 2;
}

.line {
	position: absolute;
	left: 0;
	bottom: -4%;
	overflow: hidden;
	width: 100%;
	z-index: -1;
}

.line svg {
	height: auto;
	position: relative;
	left: 43%;
	transform: translate(-50%, 0);
}

#bal {
	background-color: var(--color-primary);
	overflow-x: clip;
}

#resto {
	background-color: var(--color-resto);
	overflow-x: clip;
}

#resto .jumbo {
	min-height: 100vh;
	position: relative;
	z-index: 2;
	background-color: #3ab9e2;
	padding: 10rem 0;
}

#bal .jumbo::before {
	content: "";
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	background: url("../img/bal-jumbo-city3.png") no-repeat center bottom;
	background-size: 100% auto;
	z-index: -1;
	transform: translate(0, 100%);
	transition: all ease 0.5s 0.5s;
}

#bal .jumbo.aos-animate::before {
	transform: translate(0, 0);
}

#resto .jumbo::after {
	content: "";
	display: none;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	background: url("../img/texture-resto.png");
	z-index: -1;
}

#resto .jumbo::before {
	content: "";
	display: block;
	top: 0;
	bottom: -16%;
	left: 0;
	right: 0;
	position: absolute;
	background: url("../img/resto-jumbo-city.png") no-repeat center bottom;
	background-size: auto;
	z-index: -1;
	/* transform: translate(0, 100%);
	transition: all ease 0.5s 0.5s; */
}

#resto .jumbo.aos-animate::before {
	transform: translate(0, 0);
}

.jumbo .social-club {
	margin-top: 1rem;
}

.jumbo-date__img {
	max-width: 387px;
	width: 100%;
	height: auto;
}

.jumbo-logo__img {
	max-width: 356px;
	width: 100%;
	height: auto;
}

.bal-infos {
	position: relative;
}

.p-about a {
	color: var(--color-primary);
}

.bal-infos .star-1 {
	transform: translate(-50%, 0);
	top: 20%;
}

.bal-infos .star-2 {
	transform: translate(50%, 0);
	top: 0;
	right: 0;
	left: auto;
}

#bal .event-infos {
	position: relative;
	z-index: 3;
	overflow-x: clip;
	padding-bottom: 5rem;
}

#bal .event-infos::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	height: 20vh;
	background: var(--color-primary);
	border-radius: 50% 50% 0 0;
	z-index: 1;
	transform: translate(-50%, -43%);
	width: 110%;
}
#bal .event-infos::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 0;
	height: 20vh;
	background: var(--color-primary);
	border-radius: 50%;
	z-index: -1;
	transform: translate(-50%, 50%);
	width: 110%;
}

.event-header {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-bottom: 3rem;
}

.event-header__title span {
	color: #89c3e3;
}

.video-container {
	position: relative;
	z-index: 2;
	padding: 5rem 0 10rem;
	background: url("../img/video-bkgt.png") no-repeat scroll center top transparent;
	background-size: 100% 100%;
	overflow-x: clip;
}

.video-deco {
	position: relative;
	overflow: visible;
}

.video-gratos {
	position: absolute;
	top: 1.6rem;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 240px;
	height: auto;
	z-index: 2;
}

.video-perso {
	position: absolute;
}

.video-perso.guitariste {
	left: 0;
	bottom: 0;
	transform: translate(-50%, 25%);
}
.video-perso.chanteuse {
	right: 0;
	bottom: 0;
	transform: translate(50%, 25%);
}

/* .video-deco::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	height: 110%;
	width: 110%;
	background: url("../img/video-border.png") no-repeat center bottom;
	background-size: 100% auto;
	z-index: 2;
	transform: translate(-50%, -50%);
} */

.info-blocks {
}

.info-block {
	width: 50%;
	margin-bottom: 1rem;
	padding: 3rem;
}

.info-block--pad-s.info-block__content {
	padding: 3rem 1rem;
}

.info-block__content {
	position: relative;
	padding: 5rem;
	color: var(--color-primary);
	/* perspective: 150px; */
	border-radius: 45px;
	background: var(--color-light);
}

.info-block__content.bg--primary {
	background: var(--color-primary);
	color: #fff;
}

.info-block__content::after {
	content: "";
	position: absolute;
	background: var(--color-light);
	border-radius: 45px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	transform-origin: bottom left;
	transform: skew(0deg, -5deg);
	box-shadow: 9px 0px 0px #fff;
}

.info-block__content.bg--primary::after {
	background: var(--color-primary);
	box-shadow: none;
}

.info-block__content::before {
	content: "";
	position: absolute;
	background: #fff;
	width: 100%;
	height: 100%;
	top: -3px;
	border-radius: 45px;
	left: 9px;
	z-index: -1;
}

.info-block__content.bg--primary::before {
	display: none;
}

.info-block__header {
	z-index: 10;
}

.practical-item {
	width: 33.333333%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
	padding: 0.5rem;
}

.add-notes {
	position: relative;
	z-index: 2;
}

.add-notes::before {
	content: "";
	position: absolute;
	display: block;
	background: url("../img/note1.png") no-repeat scroll center center transparent;
	width: 115px;
	height: 136px;
	background-size: cover;
	top: 0;
	left: 0;
	transform: translate(-50%, 0%);
	z-index: -1;
	animation: soundLeft 3s infinite linear 1s;
	opacity: 0;
}
.add-notes::after {
	content: "";
	position: absolute;
	display: block;
	background: url("../img/note2.png") no-repeat scroll center center transparent;
	width: 140px;
	height: 167px;
	background-size: cover;
	top: 0;
	right: 0;
	transform: translate(50%, 0%);
	z-index: -1;
	animation: soundRight 3s infinite linear;
	opacity: 0;
}

@keyframes soundLeft {
	0% {
		transform: translate(0%, 0%) scale(1);
		opacity: 0;
	}

	50% {
		transform: translate(-25%, -50%) scale(1.4);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -100%) scale(1);
		opacity: 0;
	}
}
@keyframes soundRight {
	0% {
		transform: translate(0%, 0%) scale(1);
		opacity: 0;
	}

	50% {
		transform: translate(25%, -50%) scale(1.2);
		opacity: 1;
	}

	100% {
		transform: translate(50%, -100%) scale(0.9);
		opacity: 0;
	}
}

.info-block__sub-title {
	font-size: 1.575rem;
	margin-top: 5rem;
	margin-bottom: 8rem;
	text-align: center;
	font-family: var(--font-primary);
	padding: 0 3rem;
	font-weight: 700;
}

.program-list {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.program-list .time {
	display: block;
	font-weight: 700;
	color: var(--color-tertiary);
}

.bal-program-list .program-list__item {
	position: relative;
	transform: scale(1);
	transition: transform cubic-bezier(0.68, -0.55, 0.27, 1.55) 0.4s;
	transform-origin: 0% 50%;
}

.bal-program-list .program-list__item:hover {
	transform: scale(1.1);
}

.bal-program-list .program-list__item a {
	color: var(--color-primary);
	text-decoration: none;
}

.program-list__item {
	margin-bottom: 1.5rem;
}
.program-list__item:nth-child(even) {
	/*color: var(--color-secondary);*/
}

.time {
	font-size: 1.95rem;
	margin-bottom: 0.7rem;
	display: inline-block;
	font-family: var(--font-secondary);
	text-align: right;
	margin-top: -2rem;
	margin-bottom: 1rem;
}

.program-list__title {
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.contact-npc {
	max-width: 263px;
	display: block;
	margin-top: 2rem;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
.title-contact {
	color: #d4e9f3;
	transform: rotate(-5deg);
	text-align: center;
}

.info-block__contact {
	overflow: clip;
}

.info-block__contact a,
.info-block__contact span {
	display: block;
	transform: translate(50%, 0);
	color: #d4e9f3;
	text-decoration: none;
	font-size: 1.3rem;
}

.bal-pictures {
	margin-top: 3rem;
	position: relative;
}

.slider-bkg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: -1;
}

.bal-picture__header {
	/* min-height: 344px;
	background: url("../img/slider-pictures-bkg.png") no-repeat scroll center bottom transparent;
	background-size: cover; */
	padding: 0 1rem;
}

.bal-picture__header h2 {
	color: #fff;
	text-align: center;
	max-width: 700px;
	padding-bottom: 4rem;
}

.slick-prev,
.slick-next {
	position: absolute;
	top: 55%;
	text-indent: -9999px;
	z-index: 2;
	border: none;
}

.slick-prev {
	background: url("../img/arrow-left.png") no-repeat scroll center center transparent;
	background-size: cover;
	width: 72px;
	height: 64px;
	left: 0;
	transform: translate(-60%, -50%);
}

.slick-next {
	background: url("../img/arrow-right.png") no-repeat scroll center center transparent;
	background-size: cover;
	width: 72px;
	height: 64px;
	right: 0;
	transform: translate(60%, -50%);
}

/* RESTO NATIONAL */

.resto-infos {
	padding-top: 18rem;
	position: relative;
	z-index: 2;
	background: url("../img/resto-footer-bkg.png") no-repeat scroll right 109%;
	padding-bottom: 15rem;
}

.banner-alert {
	background: var(--color-tertiary);
	padding: 2rem;
	border-radius: 30px;
	color: #fff;
}

.translate-top {
	margin-top: -29%;
}

.info-block__price {
	position: absolute;
	top: 0;
	left: 10%;
	transform: translate(0, -50%);
}

.info-block__pricetag {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 3rem;
	color: var(--color-primary);
	font-weight: 700;
	text-align: center;
	line-height: 0.4;
	display: block;
}

.info-block__pricetag small {
	font-size: 1rem;
}

.online-title {
	color: var(--color-secondary);
	transform: rotate(-3deg);
	padding-right: 2rem;
	margin-top: -2rem;
	font-size: 3rem;
}

.info-block.inscription-block {
	width: 100%;
	padding: 3rem 0 0;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.inscription-block .info-block__content {
	background: var(--color-resto);
	z-index: 0;
	font-family: var(--font-secondary);
	color: #fff;
	font-size: 1rem;
	padding: 4.6rem 1rem;
}

.inscription-block .info-block__content::after {
	background: var(--color-resto);
	z-index: -1;
	box-shadow: none;
}

.inscription-block .info-block__content::before {
	display: none;
}

.inscription-space {
	display: block;
}

.fritjes {
	position: absolute;
	left: 0;
	transform: translate(-50%, 0);
	z-index: 1;
}

.truck {
	position: absolute;
	width: 280px;
	height: auto;
	right: 0;
	transform: translate(60%, -100%);
}

.price-sur-place {
	display: block;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
}

.title-surplace small {
	font-size: 1.2rem;
	display: block;
	margin-bottom: 0.6rem;
}

.price-sur-place::after {
	content: "";
	display: block;
	width: 100px;
	height: 1px;
	background: var(--color-light);
	margin: 1rem auto;
}

.alternatif {
	text-align: center;
	padding: 1rem 3rem;
}

.atable-logo {
	margin: -6rem auto 2rem;
	max-width: 100%;
	width: 123px;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

.atable-info {
	padding: 0rem 4rem 2rem;
	width: 50%;
	position: relative;
	overflow: visible;
	margin-bottom: 5rem;
}

.atable-info::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	right: 1rem;
	top: 0;
	bottom: 0;
	background: #3885b0;
	position: absolute;
	z-index: -1;
	border-radius: 30px;
}

.atable-info::after {
	content: "";
	position: absolute;
	background: #3885b0;
	border-radius: 45px;
	width: 100vw;
	height: 100%;
	top: 0;
	right: 1rem;
	z-index: -1;
	transform-origin: bottom left;
	transform: skew(0deg, -2deg);
}

.picture-slider {
	margin: 4rem 0;
	position: relative;
}

.picture-slider::before {
	content: "";
	top: -15px;
	bottom: -15px;
	right: -15px;
	left: -15px;
	background: #eabd23;
	position: absolute;
	z-index: -1;
	clip-path: url("#my-clip-path");
}

.picture-slider img {
	width: 100%;
	height: auto;
	border-radius: 35px;
	clip-path: url("#my-clip-path");
}

.programme-illu {
	position: relative;
}

.programme-illu::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url("../img/ragea-bkg.png") no-repeat center bottom;
	background-size: auto 100%;
	z-index: -1;
}

.programme-illu::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: url("../img/ragea.png") no-repeat right bottom;
	background-size: 271px auto;
}

.programme-illu__item img {
	display: block;
	margin-bottom: 1rem;
}

.resto-photos {
	border-radius: 20px;
	background: var(--color-light);
	padding: 1.2rem;
	position: relative;
}

.resto-photos::after {
	content: "";
	position: absolute;
	background: url("../img/camera.png") no-repeat scroll center center transparent;
	width: 109px;
	height: 72px;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
}

.resto-photos img {
	border-radius: 20px;
}

.partners {
	position: relative;
	background-color: var(--color-primary);
	padding: 2rem 0;
	overflow-x: clip;
	z-index: 2;
}

.resto-partners::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	height: 20vh;
	background: var(--color-primary);
	border-radius: 50% 50% 0 0;
	z-index: -1;
	transform: translate(-50%, -43%);
	width: 110%;
}

.resto-partners::after {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	width: 193px;
	height: 220px;
	background: url("../img/bonhomme-resto.png") no-repeat scroll center center transparent;
	background-size: cover;
	transform: translate(0, -125%);
}

.partner-list {
	margin-left: -1.2rem;
	margin-right: -1.2rem;
	padding-bottom: 2rem;
}

.partner-item {
	padding: 0 1.2rem;
	margin-bottom: 2rem;
}

.switch {
	position: fixed;
	width: 44px;
	height: 150px;
	border-radius: 20px;
	border: 2px solid #000010;
	top: 50%;
	left: 1rem;
	z-index: 99;
	cursor: pointer;
}

.status {
	position: absolute;
	left: 50%;
	font-family: var(--font-secondary);
	font-size: 0.8rem;
}

.status--top {
	top: 0;
	transform: translate(-50%, -150%);
}
.status--bottom {
	bottom: 0;
	transform: translate(-50%, 140%);
}

.switch-tool {
	position: absolute;
	top: 19px;
	left: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000010;
	border-radius: 50%;
	font-family: var(--font-secondary);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.switch-tool.resto {
	background: var(--color-secondary);
	color: var(--color-primary);
}

.switch-bal,
.switch-resto {
	position: absolute;
	width: 40px;
	height: 150px;
	left: 0;
	z-index: 1;
	overflow: hidden;
	transition: heigh linear 0.1s 0s;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	overflow: hidden;
}

.switch-bal img,
.switch-resto img {
	position: absolute;
	left: 0;
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.switch-bal {
	top: 0;
	height: 0px;
}
.switch-resto {
	bottom: 0;
}
.switch-bal img {
	top: 0;
}
.switch-resto img {
	bottom: 0;
}

/* ==========================================================================
	FOOTER
========================================================================== */
.footer {
	background: #080a1a;
	padding: 2rem 0;
}

.copyrights {
	text-align: center;
	font-family: var(--font-secondary);
	font-size: 0.7rem;
	color: #9d9faf;
}

.social-club {
	margin: 0;
	margin-left: -1.8rem;
	margin-right: -1.8rem;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	font-size: 1.8rem;
}

.social-club li {
	margin: 0 0.6rem;
}

.social-club a {
	color: #fff;
}

/* ==========================================================================
	MAP
========================================================================== */

#map-bal {
	height: 600px;
	width: 100%;
	margin: 2rem 0;
}

/* ==========================================================================
	MODAL
========================================================================== */

.modal-content {
	background: var(--color-primary);
	border-radius: 30px;
}

.modal-footer,
.modal-header {
	border: none;
}

.modal-title {
	color: var(--color-secondary);
}

.modal .nav-tabs .nav-item.show .nav-link,
.modal .nav-tabs .nav-link.active {
	background: var(--color-light);
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	border: none;
}

.modal .nav-tabs {
	border-bottom: 1px solid var(--color-light);
	align-items: baseline;
}

.modal .tab-content {
	background: var(--color-light);
	color: var(--color-primary);
	padding: 2rem;
}

/* ==========================================================================
	PLAYER
========================================================================== */
.playertoggle {
	position: fixed;
	bottom: 1rem;
	z-index: 998;
	right: 1rem;
}

.playerbutton {
	color: var(--color-primary);
	margin: 0;
	background: #fff;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	font-size: 2rem;
}

.player {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 999;
	transform: translate(calc(100% + 1rem), 0);
	transition: all ease 0.4s;
}

.player.displayed {
	transform: translate(0, 0);
}

.player .info {
	position: absolute;
	height: 60px;
	top: 0;
	opacity: 0;
	left: 10px;
	right: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 5px 15px 5px 110px;
	border-radius: 15px;
	transition: all 0.5s ease;
}

.player .info .artist,
.player .info .track {
	display: block;
}

.player .info .artist {
	color: var(--color-primary);
	font-size: 16px;
	margin-bottom: 5px;
}
.player .info .track {
	color: var(--color-tertiary);
	font-size: 12px;
	margin-bottom: 8px;
}
.player .info .progress-bar {
	background-color: #ddd;
	height: 2px;
	width: 100%;
	position: relative;
}
.player .info .progress-bar .bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: red;
	width: 10%;
	transition: all 0.2s ease;
}
.player .info.active {
	top: -60px;
	opacity: 1;
	transition: all 0.5s ease;
}

.player .control-panel {
	position: relative;
	background-color: #fff;
	border-radius: 15px;
	width: 300px;
	height: 80px;
	z-index: 5;
	box-shadow: 0px 20px 20px 5px rgba(132, 132, 132, 0.3);
}

.player .control-panel .album-art {
	position: absolute;
	left: 20px;
	top: -15px;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0);
	transform: scale(1);
	transition: all 0.5s ease;
}
.player .control-panel .album-art::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 15px;
	background-color: #fff;
	border-radius: 50%;
	z-index: 5;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.player .control-panel .album-art::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 80px;
	background-image: url("../img/album.jpg");
}
.player .control-panel.active .album-art {
	box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.2);
	transform: scale(1.2);
	transition: all 0.5s ease;
}
.player .control-panel.active .album-art::before {
	animation: rotation 3s infinite linear;
	-webkit-animation: rotation 3s infinite linear;
	animation-fill-mode: forwards;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.player .control-panel .controls {
	display: flex;
	justify-content: flex-end;
	height: 80px;
	padding: 0 15px;
}
.player .control-panel .controls .prev,
.player .control-panel .controls .play,
.player .control-panel .controls .next {
	width: 55px;
	height: auto;
	border-radius: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px;
	margin: 5px 0;
	background-color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease;
	-webkit-transition: background-color 0.3s ease;
}
.player .control-panel .controls .prev:hover,
.player .control-panel .controls .play:hover,
.player .control-panel .controls .next:hover {
	background-color: #eee;
	transition: background-color 0.3s ease;
	-webkit-transition: background-color 0.3s ease;
}
.player .control-panel .controls .prev {
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC40ODggMjUwLjQ4OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjQ4OCAyNTAuNDg4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEyOHB4IiBoZWlnaHQ9IjEyOHB4Ij4KPGcgaWQ9IlByZXZpb3VzX3RyYWNrIj4KCTxwYXRoIHN0eWxlPSJmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDsiIGQ9Ik0yMzcuNDg0LDIyLjU4N2MtMy4yNjYsMC03LjU5MS0wLjQwMS0xMS4wNzIsMi4wMDVsLTkyLjI2NCw3Ny45MVYzNy4yNTIgICBjMC0yLjUwNywwLjA1Ny0xNC42NjYtMTMuMDA0LTE0LjY2NmMtMy4yNjUsMC03LjU5LTAuNDAxLTExLjA3MiwyLjAwNUw4LjEwNywxMTAuNjkzYy05LjY2OSw2LjY3NC03Ljk5NywxNC41NTEtNy45OTcsMTQuNTUxICAgcy0xLjY3MSw3Ljg3OCw3Ljk5NywxNC41NTFsMTAxLjk2NSw4Ni4xMDJjMy40ODIsMi40MDUsNy44MDcsMi4wMDQsMTEuMDcyLDIuMDA0YzEzLjA2MiwwLDEzLjAwNC0xMS43LDEzLjAwNC0xNC42NjZ2LTY1LjI0OSAgIGw5Mi4yNjQsNzcuOTExYzMuNDgyLDIuNDA1LDcuODA3LDIuMDA0LDExLjA3MiwyLjAwNGMxMy4wNjIsMCwxMy4wMDQtMTEuNywxMy4wMDQtMTQuNjY2VjM3LjI1MiAgIEMyNTAuNDg4LDM0Ljc0NiwyNTAuNTQ2LDIyLjU4NywyMzcuNDg0LDIyLjU4N3oiIGZpbGw9IiNjMmM2Y2YiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.player .control-panel .controls .play {
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIzMi4xNTMgMjMyLjE1MyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjMyLjE1MyAyMzIuMTUzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEyOHB4IiBoZWlnaHQ9IjEyOHB4Ij4KPGcgaWQ9IlBsYXkiPgoJPHBhdGggc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkOyIgZD0iTTIwMy43OTEsOTkuNjI4TDQ5LjMwNywyLjI5NGMtNC41NjctMi43MTktMTAuMjM4LTIuMjY2LTE0LjUyMS0yLjI2NiAgIGMtMTcuMTMyLDAtMTcuMDU2LDEzLjIyNy0xNy4wNTYsMTYuNTc4djE5OC45NGMwLDIuODMzLTAuMDc1LDE2LjU3OSwxNy4wNTYsMTYuNTc5YzQuMjgzLDAsOS45NTUsMC40NTEsMTQuNTIxLTIuMjY3ICAgbDE1NC40ODMtOTcuMzMzYzEyLjY4LTcuNTQ1LDEwLjQ4OS0xNi40NDksMTAuNDg5LTE2LjQ0OVMyMTYuNDcxLDEwNy4xNzIsMjAzLjc5MSw5OS42Mjh6IiBmaWxsPSIjYzJjNmNmIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
}
.player .control-panel .controls .next {
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI1MC40ODggMjUwLjQ4OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjUwLjQ4OCAyNTAuNDg4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEyOHB4IiBoZWlnaHQ9IjEyOHB4Ij4KPGcgaWQ9Ik5leHRfdHJhY2tfMiI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMjQyLjM4MSwxMTAuNjkzTDE0MC40MTUsMjQuNTkxYy0zLjQ4LTIuNDA2LTcuODA1LTIuMDA1LTExLjA3MS0yLjAwNSAgIGMtMTMuMDYxLDAtMTMuMDAzLDExLjctMTMuMDAzLDE0LjY2NnY2NS4yNDlsLTkyLjI2NS03Ny45MWMtMy40ODItMi40MDYtNy44MDctMi4wMDUtMTEuMDcyLTIuMDA1ICAgQy0wLjA1NywyMi41ODcsMCwzNC4yODcsMCwzNy4yNTJ2MTc1Ljk4M2MwLDIuNTA3LTAuMDU3LDE0LjY2NiwxMy4wMDQsMTQuNjY2YzMuMjY1LDAsNy41OSwwLjQwMSwxMS4wNzItMi4wMDVsOTIuMjY1LTc3LjkxICAgdjY1LjI0OWMwLDIuNTA3LTAuMDU4LDE0LjY2NiwxMy4wMDMsMTQuNjY2YzMuMjY2LDAsNy41OTEsMC40MDEsMTEuMDcxLTIuMDA1bDEwMS45NjYtODYuMTAxICAgYzkuNjY4LTYuNjc1LDcuOTk3LTE0LjU1MSw3Ljk5Ny0xNC41NTFTMjUyLjA0OSwxMTcuMzY3LDI0Mi4zODEsMTEwLjY5M3oiIGZpbGw9IiNjMmM2Y2YiLz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
}
.player .control-panel.active .controls .play {
	background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIzMi42NzkgMjMyLjY3OSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjMyLjY3OSAyMzIuNjc5OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjEyOHB4IiBoZWlnaHQ9IjEyOHB4Ij4KPGcgaWQ9IlBhdXNlIj4KCTxwYXRoIHN0eWxlPSJmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDsiIGQ9Ik04MC41NDMsMEgzNS43OTdjLTkuODg1LDAtMTcuODk4LDguMDE0LTE3Ljg5OCwxNy44OTh2MTk2Ljg4MyAgIGMwLDkuODg1LDguMDEzLDE3Ljg5OCwxNy44OTgsMTcuODk4aDQ0Ljc0NmM5Ljg4NSwwLDE3Ljg5OC04LjAxMywxNy44OTgtMTcuODk4VjE3Ljg5OEM5OC40NCw4LjAxNCw5MC40MjcsMCw4MC41NDMsMHogTTE5Ni44ODIsMCAgIGgtNDQuNzQ2Yy05Ljg4NiwwLTE3Ljg5OSw4LjAxNC0xNy44OTksMTcuODk4djE5Ni44ODNjMCw5Ljg4NSw4LjAxMywxNy44OTgsMTcuODk5LDE3Ljg5OGg0NC43NDYgICBjOS44ODUsMCwxNy44OTgtOC4wMTMsMTcuODk4LTE3Ljg5OFYxNy44OThDMjE0Ljc4MSw4LjAxNCwyMDYuNzY3LDAsMTk2Ljg4MiwweiIgZmlsbD0iI2MyYzZjZiIvPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
}

.close-player {
	color: #fff;
	float: right;
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(-10px, -130%);
	fill: #fff;
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.mailbal:before {
	content: "bal";
	display: inline-block;
}
.mailbal:after {
	content: "balnational.be";
	display: inline-block;
}
.mailresto:before {
	content: "resto";
	display: inline-block;
}
.mailresto:after {
	content: "balnational.be";
	display: inline-block;
}

.press-list a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	align-items: center;
	padding: 1rem;
	font-size: 1.2rem;
	transition: all ease 0.4s;
}

.press-list a:hover {
	color: var(--color-secondary);
}

.press-list a svg {
	margin-right: 1rem;
	fill: #fff;
}

/* ==========================================================================
	RESPONSIVE
========================================================================== */

@media only screen and (max-width: 2000px) {
	#bal .event-infos::before {
		height: 13vh;
	}
}

@media only screen and (max-width: 1200px) {
	.navbar-brand img {
		width: 100px;
	}

	.nav-link {
		font-size: 0.8rem;
	}

	.lang-menu__link {
		font-size: 0.9rem;
	}

	.nav-item {
		margin-right: 0.7rem;
	}

	.info-block__content {
		padding: 4rem 3rem;
	}

	#bal {
		overflow: hidden;
	}

	#resto {
		overflow: hidden;
	}
}

@media only screen and (max-width: 1280px) {
	.p-about {
		padding-left: 60px;
	}
}

@media only screen and (max-width: 992px) {
	.p-about {
		padding-left: 0;
	}
	#bal .event-infos::before {
		height: 7vh;
	}

	.video-perso.chanteuse {
		max-width: 200px;
		height: auto;
	}

	.video-perso.guitariste {
		width: 220px;
		height: auto;
	}

	.info-block,
	.atable-info {
		width: 100%;
	}

	.nav-link {
		padding: 1rem 2rem;
	}

	.navbar-collapse {
		/* height: 100vh; */
		background: rgb(23, 22, 55);
		background: linear-gradient(180deg, rgba(23, 22, 55, 1) 0%, rgba(23, 22, 55, 0.6) 100%);
	}

	.header.fixed .navbar-collapse {
		background: none;
	}

	.alternatif {
		padding: 1rem;
	}
}

@media only screen and (max-width: 840px) {
	.p-about {
		padding-left: 60px;
	}
}

@media only screen and (max-width: 768px) {
	.p-about {
		padding-left: 0;
	}
	.header .navbar-brand img,
	.header.fixed .navbar-brand img {
		width: 87px;
	}

	.line {
		display: none;
	}

	.lang-menu__link {
		display: inline-block;
	}

	#bal .jumbo {
		padding-top: 8rem;
		padding-bottom: 9rem;
	}

	#resto .jumbo {
		padding-top: 7rem;
		padding-bottom: 8rem;
	}

	#resto .jumbo::before {
		bottom: 0;
	}

	.resto-infos {
		padding-top: 7rem;
	}

	#bal .event-infos::before,
	#bal .event-infos::after {
		display: none;
	}

	#bal .event-infos {
		padding-top: 5rem;
	}

	.info-block {
		padding: 1rem;
		margin-bottom: 2rem;
	}

	.social-club {
		margin: 0;
	}

	.translate-top {
		margin-top: 0;
	}

	.atable-info {
		margin-top: 8rem;
	}

	.atable-info {
		padding: 0rem 2rem 2rem;
	}

	.programme-illu::after {
		display: none;
	}

	.info-block--pad-s.info-block__content {
		padding: 7rem 1rem 2rem;
	}

	.video-gratos {
		width: 130px;
	}

	.switch {
		display: none;
	}

	.event-header__title {
		text-align: center;
	}

	.partner-list {
		margin: 0;
	}

	.partner-item {
		width: 50%;
		text-align: center;
	}

	.partner-item img {
		max-width: 100%;
		height: auto;
	}

	.playertoggle {
		display: none;
	}

	.fritjes {
		transform: translate(-75%, 0);
	}

	.info-block__content {
		padding: 3rem 2rem;
	}

	.info-block__sub-title {
		padding: 0 1rem;
	}
}
