/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Roboto:ital,wdth,wght@0,75,100..900;1,75,100..900&display=swap');
/*
- fonts
- vars
- html body links and kbz's generic classes
- boostrap
- container
- sections
	- banner
	- about
	- footer

color terracotta red:
hex: #C24616;
rgba: rgba(194,70,22,1);

hex: #ff3300;
rgba: rgba(255,51,0,1);
*/



/* fonts */
.cardo-regular {
	font-family: "Cardo", serif;
	font-weight: 400;
	font-style: normal;
}
.cardo-bold {
	font-family: "Cardo", serif;
	font-weight: 700;
	font-style: normal;
}
.cardo-regular-italic {
	font-family: "Cardo", serif;
	font-weight: 400;
	font-style: italic;
}
.cardo-bold-italic {
	font-family: "Cardo", serif;
	font-weight: 700;
	font-style: italic;
}
.roboto {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	/* 100 a 900 */
	font-variation-settings: "wdth" 75;
}

a.a-link-banner {
	width: 100%;
	height: auto;
}
/* vars */
:root {
	--kbz-red: #ff3300;
}
/* bootstrap's vars light */
[data-bs-theme="light"] {
	--bs-body-color: #e1e1e1;
	--bs-body-bg: #000;
	--kbz-red: #ff3300;
	--kbz-btn-close: url("data:image/svg+xml,%3csvg xmlns='https://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");
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}
/* bootstrap's vars dark */
[data-bs-theme="dark"] {
	--bs-body-color: #e1e1e1;
	--bs-body-bg: #000;
	--kbz-red: #ff3300;
	--kbz-btn-close: url("data:image/svg+xml,%3csvg xmlns='https://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");
	--bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* end vars */



/* html body links and kbz's generic classes */
h1, h2, h3, h4, h5, h6, p,
.no-select {
	/* prevent select text */
	/*
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	*/
}
a {
	outline: none;
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
}
p + ul {
	/*margin-top: 0.25rem!important;*/
}
html {
	scroll-behavior: auto!important;
	overflow-x: hidden;
}
body {
	font-family: "Roboto", sans-serif;
	font-size: 19px;
	font-weight: 300;
	font-optical-sizing: auto;
	/* 100 a 900 */
	font-variation-settings: "wdth" 100;
}
h1, h2, h3, h4, h5, h6, .title {
	font-family: "Cardo", serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
}
@media (min-width: 1200px) {
	h2, .h2 {
		font-size: 2.5rem;
	}
	h3, .h3 {
		font-size: 2rem;
	}
}
i {
	font-size: 2em;
}
.mb-60 {
	margin-bottom: 60px;
}
/* end kbz */



/* tooltip */
/*
#tooltip {
	background: #333;
	color: white;
	font-weight: bold;
	padding: 4px 8px;
	font-size: 13px;
	border-radius: 4px;
	display: none;
}
#tooltip[data-show] {
	display: block;
}
#arrow,
#arrow::before {
	position: absolute;
	width: 8px;
	height: 8px;
	background: inherit;
}
#arrow {
	visibility: hidden;
}
#arrow::before {
	visibility: visible;
	content: '';
	transform: rotate(45deg);
}
#tooltip[data-popper-placement^='top'] > #arrow {
	bottom: -4px;
}
#tooltip[data-popper-placement^='bottom'] > #arrow {
	top: -4px;
}
#tooltip[data-popper-placement^='left'] > #arrow {
	right: -4px;
}
#tooltip[data-popper-placement^='right'] > #arrow {
	left: -4px;
}
*/
/* end tooltip */



/* boostrap */
/* nav */
.navbar-brand {
	padding: 0;
	margin-right: 0;
}
.navbar-brand #svgBrand {
	height: 20px!important;
	width: 109px!important;
}
.navbar-brand #svgBrand path {
	fill: #fff;
	opacity: 1;
}
body.home .navbar-brand #svgBrand {
	display: none;
}
body.home .navbar,
body.home .offcanvas-header,
body.home .offcanvas-body {
	background-color: transparent!important;
}
.text-bg-dark {
    color: #fff!important;
    background-color: #000!important;
}
nav {
	background-color: #000;
	min-height: 58px!important;
}
.navbar-nav.social-networks {
	padding: 0;
	margin: 0;
}
nav i {
	font-size: 1.4em;
}
nav a i {
	color: #fff;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
nav a:hover,
nav a:focus {
	text-decoration: none;
}
nav a:hover i,
nav a:focus i {
	color: var(--kbz-red)!important;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.nav-link {
    color: var(--bs-body-color);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--kbz-red);
}
.navbar-toggler {
	z-index: 66;
	border: none;
	outline: none;
	top: 13px;
	right: 10px;
	margin: 0;
	padding: 0;
	color: #fff;
	position: fixed;
	box-shadow: none;
}
.offcanvas-header {
	padding: 20px 10px;
}
.navbar-toggler:focus,
.offcanvas-header .btn-close:focus {
	box-shadow: none;
}
.offcanvas.offcanvas-end {
	border: none;
}
.offcanvas a.nav-link {  }
.navbar-nav.justify-content-end {  }
.offcanvas-header .btn-close {
	border: none;
	outline: none;
	box-shadow: none;
	padding: 0;
	opacity: 1;
	--bs-btn-close-white-filter: none;
	padding-top: 15px;
	padding-right: 30px;
}
.btn-close {
    --bs-btn-close-bg: 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.414'/%3e%3c/svg%3e)!important;
}











@media(max-width: 991px) {
	.nav-item {
		margin: 0 auto!important;
	}
	.nav-link {
		display: contents!important;
	}
	.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
		--bs-offcanvas-zindex: 1045;
		--bs-offcanvas-width: 400px;
	}
	.offcanvas-body {
		display: flex!important;
		justify-content: center!important;
		align-items: center!important;
		flex-direction: column!important;
	}
	.offcanvas-body .navbar-nav {
		justify-content: center!important;
	}
	.offcanvas-body .navbar-nav.socials {
		margin: 0 auto;
		margin-bottom: 30px;
	}
	nav i,
	.offcanvas a.nav-link {
	    font-size: 1.8em;
	    font-family: "Cardo", serif;
	    font-weight: 400;
	    font-style: normal;
	}
	.navbar-nav.socials li {
		display: block!important;
		padding: 0 7px;
	}
}
body.about .nav-item.about a,
body.shows .nav-item.shows a,
body.fito .nav-item.fito a,
body.contact .nav-item.contact a {
	color: var(--kbz-red)!important;
}
.nav-item.home {
	display: none;
}
@media(max-width: 991px) {
	.nav-item {
		position: relative;
	}
	.nav-item.home {
		display: block;
		padding-bottom: 15px;
		margin-top: -55px!important;
	}
	.nav-item.home i {
		font-size: 1em;
		color: var(--kbz-red);

		-webkit-transition: all 333ms linear;
		-moz-transition: all 333ms linear;
		-o-transition: all 333ms linear;
		transition: all 333ms linear;
	}
	.nav-item.home a:hover i,
	.nav-item.home a:focus i {
		color: #fff!important;

		-webkit-transition: all 333ms linear;
		-moz-transition: all 333ms linear;
		-o-transition: all 333ms linear;
		transition: all 333ms linear;
	}
}
/* end nav */
/* end boostrap */



/* container */
main {
	/*min-height: 100%;*/
	/*min-height: 100vh;*/
	/*min-height: 100svh;*/
	/*overflow: hidden;*/
}
main header {
	padding: 15px 0;
}
main header h2,
.header-shows-title h2 {
	padding: 0;
	margin: 0;
}
main header.header-fixed {
	margin-top: 75px;
}
.bi {
	fill: orange!important;
}
.kbz-anim {
	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
/*
@media(max-width: 767px){
	.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
		--bs-gutter-x: 2.5rem;
	}
}
*/
/* end container */




/* sections */
section.intro {
	background-color: #000;
	height: 100%;
	height: 100vh;
	height: 100svh;
	position: fixed!important;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -10;
	padding: 0;
}
/*
.spacer,
section.intro-back {
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
	flex-direction:column!important;
	border: 1px solid #f0f!important;
}
*/
section.intro-back {
	height: calc(100% - 58px)!important;
	height: calc(100vh - 58px)!important;
	height: calc(100svh - 58px)!important;
	/* 58px are nav height */

	/* kbz */
	/*background-color: rgba(0, 125, 0, .5)*/
	/*border: 1px solid #f0f!important;*/
}
section.main {
	background-color: #fff;
	min-height: 100vh;
	min-height: 100svh;
}
/* end sections */





/* intro */
section.intro h2 {
	font-size: 43px;
	line-height: 53px;
	margin: 0;
	padding: 0;
}
#introBack .video-background-controls:first-child {
	display: none!important;
}
.video-background-controls {
	width: 32px;
	display: block!important;
	z-index: 10!important;
	position: absolute!important;
	top: calc(100vh - 60px)!important;
	top: calc(100svh - 60px)!important;
	left: calc(50% - 16px)!important;
	right: calc(50% - 16px)!important;
	text-align: center!important;
	margin-left: -16px;

	/* kbz */
	/*border: 1px solid green!important;*/
}
.video-background-controls button {
	display: block;
	padding: 0px;
	margin: 0px;
	height: 32px;
	width: 32px;
	border: none;
	background: none;
	-webkit-appearance: none;
	color: white;
	filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, .5));
	cursor: pointer;
	margin-left: 0px;
	opacity: 1;
}
.video-background-controls button i {
	color: #fff;
	font-size: 32px;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.video-background-controls button:hover i,
.video-background-controls button:active i,
.video-background-controls button:focus i {
	color: var(--kbz-red)!important;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
iframe {
	transition: all 500ms ease-in-out;
	transition-delay: 250ms;
}
body .content-over-video {
	z-index: 1;
	opacity: 1;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
body .content-over-video.hide {
	opacity: 0;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
body.ytbg-sound-on .content-over-video {
	z-index: 5!important;
	opacity: 0;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.content-over-video img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.content-over-video a {
	width: fit-content;
	margin: 0 auto;
	padding: 0;
}
.mobile-over-video {
	width: 80%;
	margin: 0 auto;
}
@media(max-width: 600px) {
	.mobile-over-video {

	}
}



/* svg brand */
#svgBrand {
	width: 100%!important;
	height: auto;
}
#svgBrand path {
	fill: #fff;
	opacity: .75;
}
#intro #letter-O,
#intro #letter-H,
#intro #letter-C,
#intro #letter-U,
#intro #letter-A,
#intro #letter-G {
	opacity: 0;
}
/* end svg brand */



#ytbg,
#ytbg iframe {
	background-color: black!important;
}
/*kbz video opacity*/
body.home #ytbg iframe {
	filter: brightness(0.75) contrast(1.5)!important;
	/*opacity: .5!important;*/
	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
body.ytbg-sound-on #ytbg iframe {
	filter: brightness(1) contrast(1)!important;
	/*opacity: 1!important;*/
	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
/* end intro */



/* cards */
.wrapper {
	opacity: 0;
}
.wrapper.loaded {
	/*opacity: 100%;*/
	-webkit-transition: all 3330ms linear;
	-moz-transition: all 3330ms linear;
	-o-transition: all 3330ms linear;
	transition: all 3330ms linear;
}
.cards {
	width: 100%;
	height: 200px;
	position: relative;
}
.card,
.header-shows-title,
.spacer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction:column;
}
.spacer {
	margin: 0;
	overflow: hidden;
	/* kbz */
	/*background-color: red;*/
}
.spacer-up {
	/* kbz */
	/*background-color: yellow;*/
}
.spacer-down {
	/* kbz */
	/*background-color: blue;*/
}
@media(max-width: 767px) {
	.spacer-down {
		/* kbz */
		/*background-color: blue;*/
	}
}


.header-shows-title {
	width: 100%;
	height: 90px;
	line-height: 1;
	background: #000;
	margin: 0;
	padding: 0;
	font-size:clamp(30px, 10vw, 60px);
}
.wrapper-loading {
	margin-bottom: -90px;
}
body.shows h2,
.header-shows-title h2 {
	text-align: center;
	font-family: "Roboto", sans-serif;
	color: var(--kbz-red);
}
@media(max-width: 991px) {
	.header-shows-title {
		height: 90px;
	}
	.wrapper-loading {
		margin-bottom: -90px;
	}
}
@media(max-width: 767px) {
	.header-shows-title {
		height: 60px;
	}
	.wrapper-loading {
		margin-bottom: -60px;
	}
}
@media(max-width: 500px) {
	.header-shows-title {
		height: 45px;
	}
	.wrapper-loading {
		margin-bottom: -45px;
	}
}
.card {
	width: 100%;
	position: absolute;
	padding: 0;
	margin: 0;
	border-radius: 0;
}
.card-info {
	width: 100%;
	height: 66px;
	padding: 15px;
	background-color: #000;
}
.show-date,
.show-artist,
.show-venue,
a.bot-tickets {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-variation-settings: "wdth" 75;

	color: #fff;
	font-size: 1.25em;
	line-height: 30px;
	white-space: nowrap;
	display: inline-block;
	text-transform: uppercase;
}
.show-date {
	color: var(--kbz-red)!important;
	padding: 0 5px;
    font-weight: 500;
	margin-right: 15px;
}
.show-artist {
	margin-right: 15px;
}
.show-venue {
	color: #999;
	font-weight: 100;
	overflow: hidden;
	text-transform: capitalize!important;
}
a.bot-venue-map {
	color: #ccc;
	text-decoration: none;
	text-transform: capitalize!important;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
a.bot-venue-map:hover,
a.bot-venue-map:focus {
	color: #fff;
	text-decoration: underline;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.bot-tickets-wrapper {
	top: 15px;
	right: 15px;
	height: 30px;
	float: right;
	line-height: 30px;
	position: absolute;
}
a.bot-tickets {
	color: #fff;
	float: right;
	display: block;
	display: inline-block;
	text-align: center;
	font-size: 1em;
	line-height: 30px;
	font-weight: 500;
	padding: 0 15px;
	text-decoration: none;
	background-color: var(--kbz-red);
	height: 30px;
	text-transform: uppercase;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
a.bot-tickets:hover,
a.bot-tickets:focus {
	color: #000;
	background-color: #fff;
	text-decoration: none;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.img-to-mobile {
	aspect-ratio: 80/27!important;
}
@media(max-width: 767px) {
	.img-to-mobile {
		aspect-ratio: 3/4!important;
	}
}
@media(max-width: 767px) {
	.show-artist-mobile {
		padding-bottom: 0;
	}
	.show-date {
		margin-right: 0;
		padding-left: 0!important;
	}
	.show-venue {
		margin-left: 0;
	}
	.show-date,
	.show-artist,
	.show-venue,
	a.bot-tickets {
		font-size: 1em;
		line-height: 1em;
	}
	.show-venue {
		font-weight: 300;
		display: inline-flex;
	}
	a.bot-tickets {
		display: initial;
		font-size: 16px;
		line-height: 24px;
		padding: 0 5px;
		height: 24px;
		text-transform: uppercase;
	}
	.bot-tickets-wrapper {
		top: 20px;
		right: 20px;
		line-height: 24px;
		height: 24px;
		margin-top: 0;
	}
	a.bot-venue-map {
		color: #e1e1e1;
		text-decoration: none;
		text-transform: capitalize!important;
		margin: 0;
		padding: 0;
		line-height: 1em;
		display: inline-block;
		height: 19px;

		-webkit-transition: all 333ms linear;
		-moz-transition: all 333ms linear;
		-o-transition: all 333ms linear;
		transition: all 333ms linear;
	}
}
@media(max-width: 500px) {
	.card-info {
		padding: 10px;
	}
	.show-artist-mobile {
		display: block;
		padding-bottom: 0;
	}
	.bot-tickets-wrapper {
		top: 6px;
		right: 5px;
	}
}
/* end cards */




/*
t */
.container-full-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}
.about-ceo {
	border-bottom: 1px dotted rgba(255,51,0,.5);
}
body.about .container-full-bg {
	background: black url("/images/backgrounds/about.jpg") no-repeat center/cover;
}
body.about .video-background-controls {
	display: none!important;
}
.cards-staff {
	margin-top: 45px;
}
.card.member {
	border: 0;
	position: relative;
	margin-bottom: 45px;
	border-radius: 0!important;
	border-left: 3px solid var(--kbz-red);
	background-color: transparent!important;
	-webkit-border-top-right-radius: 5px!important;
	-webkit-border-bottom-right-radius: 5px!important;
	-moz-border-radius-topright: 5px!important;
	-moz-border-radius-bottomright: 5px!important;
	border-top-right-radius: 5px!important;
	border-bottom-right-radius: 5px!important;
}
.card.member .card-body {
	padding: 0 15px;
	width: 100%;
}
.card.member h5 {
	color: #fff;
	text-transform: capitalize;
	font-size: 1.25em;
}
.card.member h6 {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: .8em;
	color: var(--kbz-red)!important;
}
.card.member a {
	color: #ccc;
	text-decoration: none;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.card.member a:hover,
.card.member a:focus {
	text-decoration: none;
	color: var(--kbz-red)!important;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.ticker-container {
	height: 140px;
	overflow: hidden;
	padding-right: 30px;
	border-right: 3px solid var(--kbz-red);
}
#verticalTicker {
	list-style: none;
	padding: 0;
	margin: 0;
	transition: transform 0.5s ease-in-out;
}
#verticalTicker li span:first-child {
	margin-top: 10px;
}
#verticalTicker li {
	display: block;
	padding: 10px 0;
	color: var(--kbz-red);
	font-family: "Cardo", serif;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: calc(1.325rem + 0.9vw);
	line-height: calc(1.325rem + 0.9vw);
	text-align: right;
}
#verticalTicker li span {
	color: #fff;
	display: block;
	font-family: "Roboto", sans-serif;
	font-family: "Cardo", serif;
	font-optical-sizing: auto;
	font-weight: 300;

	font-size: calc(1.06rem + 0.72vw);
	line-height: calc(1.46rem + 0.72vw);
	text-align: right;
}
@media(max-width: 1400px){
	.ticker-container {
		height: 120px;
	}
	#verticalTicker li {
		padding: 10px 0;
	}
}
@media(max-width: 991px){
	#verticalTicker li,
	#verticalTicker li span {
		text-align: left;
	}
	.ticker-container {
		height: 120px;
		padding-right: 0;
		border-right: 0;
		padding-left: 30px;
		border-left: 3px solid var(--kbz-red);
		margin-left: 0px;
	}
}
@media(max-width: 767px){
	.ticker-container {
		height: 110px;
	}
}
/* end about */



/* fito */
body.fito .container-full-bg {
	background: black url("/images/backgrounds/fitopaez.jpg") no-repeat center/cover;
}
@media(max-width: 767px){
	body.fito .container-full-bg {
		background: black url("/images/backgrounds/fitopaez-mobile.jpg") no-repeat center/cover;
	}
}
.fito-brand {
	height: 75px;
	width: auto;
	display: inline-block;
	overflow: hidden;
	margin-top: 45px;
}
.fito-contet {
	padding: 60px 0;
	background-color: #000;
	margin-top: 60%;
	margin-top: 60vh;
	margin-top: 60svh;
	margin-bottom: calc(100% - 210px);
	margin-bottom: calc(100vh - 210px);
	margin-bottom: calc(100svh - 210px);
}
.fito-text p.highlight {
	font-size: 1.5em;
	line-height: 1.4em;
	font-weight: 400;
	color: rgba(255,51,0,.85);
	padding-right: 60px;
}
.fito-text p.highlight.two {
	padding-right: 0;
}
@media (max-width: 991px) {
	.fito-text p.highlight {
		font-size: 1.2em;
		padding-right: 0;
		line-height: 1.2em;
		padding-bottom: 45px;
	}
}
.fito-text p a {
	color: var(--bs-body-color);
	text-decoration: underline;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.fito-text p a:hover,
.fito-text p a:focus {
	color: var(--kbz-red);
	text-decoration: underline;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.ul-fito-links i {
	font-size: 1.4em!important;
}
@media (max-width: 500px) {
	.ul-fito-links li {
		margin-right: 12px!important;
	}
}
.fito-show-date,
.fito-show-city,
.fito-show-venue,
.show-year {
	overflow: hidden;
	white-space: nowrap;
	font-size: 1.25em;
	line-height: 1.25em;
}
.fito-show-date,
.show-year {
	color: var(--kbz-red);
	font-weight: 400;
	font-size: 1.25em;
	line-height: 1.25em;
}
.fito-show-venue {
	color: #999;
}
.show-year {
	color: #fff;
	padding-top: 30px;
	padding-left: 20px;
}
.fito-show {
	position: relative;
	padding: 15px 0;
	border-bottom: 1px dotted rgba(255,51,0,.5);
}
.fito-show:first-child {
	border-top: 1px dotted var(--kbz-red);
}
@media(max-width: 992px) {
	.fito-show {
		padding: 45px 0;
		text-align: center!important;
		border-bottom: none;
	}
	.fito-show:first-child {
		/*border-top: 0;*/
	}
	.fito-show .bot-tickets-wrapper {
		float: none;
		top: inherit;
		right: 0;
		bottom: 0;
		text-align: center;
		margin-right: 0;
	}
	.fito-show a.bot-tickets {
		float: none;
		display: inline-block;
		padding: 0 15px!important;
	}
	.show-year {
		padding: 0;
		padding-top: 45px;
		text-align: center;
	}
}
/* end fito */



/* footer */
footer {
	color: #fff;
	border-top: 2px solid var(--kbz-red);
	background-color: #000;
}
ul.social-networks {
	display: block;
	list-style-type: none;
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	padding-inline-start: 0;
	margin: 30px 0;
}
footer ul.social-networks {
	margin-top: 0!important;
	margin-bottom: .5rem!important;
}
footer p.contact {
	margin-bottom: 2rem!important;
}
ul.social-networks li {
	display: inline-block;
	margin-right: 15px;
}
body.shows a.scroll-to-top.fixed {
	position: fixed;
	z-index: 900;
	right: 15px;
	bottom: 20px;
}
a.scroll-to-top,
a.contact,
ul.social-networks li a {
	color: #fff;
	text-decoration: none;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
footer p.copy,
footer p.copy a {
	color: #ccc;
	font-size: 15px;
	text-decoration: none;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
footer p.copy a:hover,
footer p.copy a:focus {
	color: #fff;
	text-decoration: underline;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
footer p.copy a.credits {
	color: #ccc;
	letter-spacing: .5px;
	font-family: monospace;
}
a.scroll-to-top:hover,
a.scroll-to-top:focus,
a.contact:hover,
a.contact:focus,
ul.social-networks li a:hover,
ul.social-networks li a:focus {
	color: var(--kbz-red);

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
a.scroll-to-top i,
ul.social-networks li i {
	width: auto;
	font-size: 1.6em;
}
@media (max-width: 600px) {
	ul.social-networks.ul-fito-links {
		margin-bottom: 15px;
		text-align: center;
	}
	a.scroll-to-top i,
	ul.social-networks li i {
		/*font-size: 1.6em;*/
	}
	footer p.contact {
		margin-bottom: 0!important;
	}
}
/* end footer */


/* Extra small devices (portrait phones, less than 576px)
No media query for 'xs' since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* Extra large devices (large desktops)
No media query since the extra-large breakpoint has no upper bound on its width */
/* animation */


/*
.next-show {
	border: 2px solid red;
	background-color: rgba(0,0,0,.25);
}
*/


















































.card img {
	width: 100%;
	height: auto;
	display: block;
}











/*


.cards {
	width: 100%;
	height: 360px;
	position: relative;
}
.card,
.header,
.spacer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.header {
	width: 100%;
	height: 120px;
	color: #fff;
	color: var(--kbz-red);
	background-color: #000;
	background-color: #0F0;
	border-bottom: 1px dotted var(--kbz-red);
}
.header h2 {
	padding: 0;
	margin: 0;
}
.card {
	position: absolute;
	width: 100%;
	height: 360px;
	background: yellow;
}
.card:nth-child(odd) {
	background: blue;
}
.card img {
	display: none;
	width: 100%;
	height: 360px;
	z-index: -1;
	z-index: 1;
}
.card-info-wrapper {
	display: none;
	width: 100%;
	padding: 15px;
	height: 66px;
	background-color: #000;
}
.card-info {
	height: 30px;
	line-height: 30px;
}
@media(max-width: 767px) {
	.card-info-wrapper {
		padding: 10px;
	}
	.card-info {
		height: 24px;
		line-height: 24px;
	}
}
.show-date,
.show-artist,
.show-venue,
a.bot-tickets {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-variation-settings: "wdth" 75;

	color: #fff;
	font-size: 1.25em;
	line-height: 30px;
	white-space: nowrap;
	display: inline-block;
}
.show-date {
	color: var(--kbz-red);
	padding: 0 5px;
    font-weight: 500;
	margin-right: 15px;
}
.show-artist {
	margin-right: 15px;
}
.show-venue {
	color: #999;
	font-weight: 300;
	overflow: hidden;
	text-transform: capitalize!important;
}
.show-venue:after {

}
a.bot-venue-map {
	color: #999;
	text-decoration: none;
	text-transform: capitalize!important;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
a.bot-venue-map:hover,
a.bot-venue-map:focus {
	color: #fff;
	text-decoration: underline;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.bot-tickets-wrapper {
	float: right;
	line-height: 30px;
	height: 30px;
}
a.bot-tickets {
	color: #fff;
	float: right;
	display: block;
	display: inline-block;
	text-align: center;
	font-size: 1em;
	line-height: 30px;
	font-weight: 500;
	padding: 0 15px;
	text-decoration: none;
	background-color: var(--kbz-red);
	height: 30px;
	text-transform: uppercase;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
a.bot-tickets:hover,
a.bot-tickets:focus {
	color: #000;
	background-color: #fff;
	text-decoration: none;

	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
@media(max-width: 767px) {
	.show-artist-mobile {
		padding-bottom: 5px;
	}
	.show-date {
		margin-right: 10px;
		padding-left: 0!important;
	}
	.show-venue {
		margin-left: 0;
	}
	.show-date,
	.show-artist,
	.show-venue,
	a.bot-tickets {
		font-size: 1em;
		line-height: 1em;
	}
	.show-venue {
		font-weight: 100;
	}
	a.bot-tickets {
		display: initial;
		font-size: 16px;
		line-height: 24px;
		padding: 0 5px;
		height: 24px;
		text-transform: uppercase;
	}
	.bot-tickets-wrapper {
		bottom: 0;
		right: -5px;
		line-height: 24px;
		position: relative;
		height: 24px;
		margin-top: 0;
	}
}
.kbz666 {
	display: flex!important;
	align-items: center!important;
	justify-content: center!important;
	flex-direction:column!important;
	font-size: 50px!important;

	border: 1px solid #f0f!important;
}
*/










.old-shows img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
div.old-shows a {
	pointer-events: none!important;
	cursor: default!important;
	text-decoration: none!important;
}
