* {
	box-sizing : border-box;
	outline : none;
}

html {
	width: 100%;
	height: 100%;
}

body {
	font-size : 12pt;
	background-color : #eaeaeb;
	background-color: #383838;
	background-color: #262629;
	color : #383838;
	font-family: 'Montserrat','Helvetica','sans-serif';
	padding : 0;
	margin : 0;
	/*background-image: url('../images/back.jpg');*/
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

body.mainPage {}
.client .subpage {
	display: none;
}

.layout {
	position: relative;
	transition: transform .5s ease;
}

body.noscroll {
	overflow : hidden;
}


.grid1400 {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.grid2 {
	display: flex;
}

.grid2>* {
	width: 50%;
}



.menu {
	position: fixed;
	display: flex;
	/*justify-content: center;*/
	width: 100%;
	z-index: 999;

	/*top: .5rem;*/
}

.menu .grid1400 {
	background-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(5px);
	border-radius: 0 0 .5rem .5rem;
	/*justify-content: center;*/
	display: flex;
	box-shadow: 0 0 .5rem -.25rem #000;
}

.menu .grid1400>div {
	display: inline-flex;
	padding: 0 2rem;
	justify-content: space-between;
	/*justify-content: center;*/
	/*background-color: #fff;*/
	/*border-radius: 0 0 0.5rem 0.5rem;*/
	/*border: 1px solid #aaa;*/
	border-top: 0;
	width: 100%;
}

.menu .logo {
	display: inline-block;
	background-image: url('../images/logo.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 8rem;
	height: 3rem;
}

.menu ul {
	display: inline-flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
}

.menu ul li a {
	display: inline-flex;
	padding: 1rem 2rem;
	color: #000;
	text-decoration: none;
	transition: color .5s ease, background-color .5s ease;
}

.menu ul li a:hover {
	background-color: #fff;
	color: #262629;
}



header.mainBanner {
	display: flex;
	height: 75vh;
	position: relative;
	overflow: hidden;
}

header.mainBanner>a {
	position: absolute;
	top: 0;
	display: inline-flex;
	align-items: center;
	height: 100%;
	font-size: 2rem;
	color: #fff;
	text-decoration: none;
	opacity: .5;
	transition: opacity .5s ease;
	z-index: 9;
	padding: 1rem;
}

header.mainBanner>a:hover {
	opacity: 1;
}

header.mainBanner>a.left {
	left: 0;
}

header.mainBanner>a.right {
	right: 0;
}

header.mainBanner .bannerItem {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #29292b;
	transition: left .5s ease;
}

header.mainBanner .bannerItem {
	left: -100%;
	z-index: 1;
}

header.mainBanner .bannerItem.active+.bannerItem {
	left: 100%;
	z-index: 2;
	transition: none;
}

header.mainBanner .bannerItem.active {
	left: 0;
	z-index: 3;
}

header.mainBanner .bannerItem.b404 {
	flex-direction: column;
}

header.mainBanner .bannerItem.b404 h1 {
	font-size: 15rem;
	margin: 0;
}

header.mainBanner .bannerItem.b404 p {
	font-size: 2rem;
	margin: 0;
}

header.mainBanner .bannerItem.addBanner a {
	display: inline-flex;
	flex-direction: column;
	color: #fff;
	text-decoration: none;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	/*border: .15rem solid rgba(255,255,255,0.5);*/
	position: relative;
	justify-content: center;
	align-items: center;
	opacity: .25;
}

header.mainBanner .bannerItem.addBanner a:hover {
	opacity: 1;
}

header.mainBanner .bannerItem.addBanner a .icon {
	font-size: 5rem;

}

header.mainBanner img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

header.mainBanner h2 {
	color: #fff;
	padding: 0 0rem;
	margin: 0;
	font-size: 3rem;
	text-shadow: 1px 1px 2px #000;
}

header.mainBanner input.h2 {
	color: #fff;
	padding: 0 0rem;
	margin: 0;
	font-size: 3rem;
	text-shadow: 1px 1px 2px #000;
	transition: background-color .5s ease;
	background-color: rgba(255,255,255,0.01);
	border: 0;
	display: block;
	width: 100%;
}

header.mainBanner input.h2:focus {
	background-color: rgba(255,255,255,0.1);
}

header.mainBanner .info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-image: linear-gradient(0deg,#383838,transparent);
	background-image: linear-gradient(0deg,#000,transparent);
	background-image: linear-gradient(0deg,#262629,transparent);
	padding-bottom: 2rem;
	padding-top: 2rem;
	z-index: 5;
}

header.mainBanner .info ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	justify-content: flex-start;
}

header.mainBanner .info ul li {
	display: inline-flex;
	padding: 0;
	margin: 1rem 0;
	margin-right: 1rem;
	transition: opacity .5s ease;
}


.client header.mainBanner .info ul li.unpub { display: none; }
.adminmode header.mainBanner .info ul li.unpub { opacity:.5; }

header.mainBanner .info ul li a {
	color: #fff;
	display: flex;
	text-decoration: none;
	border-radius: 2rem;
	border: 1px solid #fff;
	padding: .5rem 1rem;
	transition: background-color .5s ease, backdrop-filter .5s ease;
}

header.mainBanner .info ul li a:hover {
	background-color: rgba(255,255,255,0.25);
	backdrop-filter: blur(5px);
}

header.mainBanner .info ul li a .location { 
	display: flex;
	flex-direction: column;
	margin-right: 1rem;
}

header.mainBanner .info ul li a .location p { 
	margin: 0;
	/*line-height: 1;*/
}


header.mainBanner .info ul li a .location p.city { 
	font-weight: bold;
}

header.mainBanner .info ul li a .location p.place { 
	/*opacity: .75;*/
	font-size: .75rem;
}

header.mainBanner .info ul li a .date { 
	margin: 0;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
}




.eventsList {}
.eventsList .content {}
.eventsList .content h2 {
	margin: 1rem 0 5rem 0;
	font-size: 2rem;
	color: #535353;
	/*color: #858585;*/
	font-weight: 600;
	text-transform: uppercase;
}

.eventsList .content h3 {
	margin: 2rem 0;
	font-size: 4rem;
	color: #595959;
	font-weight: bold;
	text-transform: uppercase;
}

.eventsList .content .event {
	display: flex;
	margin-bottom: 2rem;
	padding: 0rem;
	background-color: rgba(255,255,255,0.75);
	background-color: #fff;
	border-radius: .5rem;
	align-items: stretch;
	transition: box-shadow .5s ease;
}

.eventsList .content .event.empty {
	background-color: rgba(255,255,255,0.05);
	justify-content: center;
	align-items: center;
	color: #535353;
}

.eventsList .content .event:hover {
	box-shadow: 1px 1px 1rem #000;
}

.eventsList .content .event .date {
	display: inline-flex;
	flex-direction: column;
	width: 10rem;
	padding: 1rem;
	justify-content: center;
	text-align: center;
	line-height: 1;
	margin-right: 0rem;
	flex-shrink: 0;
	/*border-right: 2px dashed #cfcfcf;*/
}

.eventsList .content .event .date .day { font-size:4rem; font-weight:bold; }
.eventsList .content .event .date .month { font-size:1.25rem; }
.eventsList .content .event .date .time { display: flex; flex-grow:1; align-items:flex-end; justify-content: center; font-size: 2rem; font-weight: bold;}
.eventsList .content .event .poster {
	display: inline-block;
	width: 15rem;
	/*height: 100%;*/
	padding: 0rem 0;
	flex-shrink: 0;
}

.eventsList .content .event .poster img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	line-height: 1;
	border-radius: 0rem;
	vertical-align: top;
}

.eventsList .content .event .info {
	padding: 1rem 1rem;
	flex-direction: column;
	display: flex;
	justify-content: center;
	flex-grow: 1;
}

.eventsList .content .event .info p {
	margin: 0;
	margin-top: .5rem;
}

.eventsList .content .event .info a.artist {
	font-size: 2rem;
	transition: color .5s ease;
}

.eventsList .content .event .info a.artist:hover {
	color: #c70909;
}

.eventsList .content .event .info a {
	text-decoration: none;
	color: #595959;
	transition: color .5s ease;
}

.eventsList .content .event .info a:hover {
	color: #c70909;
}

.eventsList .content .event .ctrls {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
	border-left: 2px dashed #cfcfcf;
}

.eventsList .content .event .ctrls a.aslink:hover,
.eventsList .content .event .ctrls a:hover {
	background-color: #950606;
	color: #fff;
}
.eventsList .content .event .ctrls a {
	transition: background-color .5s ease;
	display: inline-block;
	padding: .5rem 1rem;
	color: #fff;
	text-decoration: none;
	/*border: 1px solid #aaa;*/
	margin: .5rem;
	border-radius: .5rem;
	background-color: #c70909;
	text-align: center;
}

.eventsList .content .event .ctrls a.aslink {
	background-color: transparent;
	color: #c70909;
}

section#about {
	margin: 5rem 0;
	color: #cfcfcf;
}

section#about .title {
	width: auto;
}

section#about .content {
	margin-left: auto;
	/*width: 60%;*/
}

section#about .content p {
	margin: 0;
	margin-top: 3.3rem;
}

section#about .content .photos {
	display: flex;
	flex-wrap: wrap;
	margin-top: 5rem;
}

section#about .content .photos a {
	display: inline-block;
	width: 33%;
	height: auto;
}

section#about .content .photos a img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	line-height: 1;
	vertical-align: top;
	transition: opacity .5s ease;
}

section#about .content .photos a:hover img {
	opacity: .75;
}

section#about .title h1 {
	font-size: 10rem;
	margin: 0;
	line-height: 1;
	font-weight: 200;
	color: #c70909;
	text-align: right;
}

section#about .title p {
	margin: 0;
	text-align: right;
	font-size: 3rem;
	color: #595959;
	color: #858585;
	padding-right: 1rem;
}



footer {
	display: block;
	/*background-color: #383838;*/
	color: #fff;
	padding: 2rem 0 0 0;
	background-image: linear-gradient(0deg, #121212, transparent);
}

footer .grid1400 {
	display: flex;
}

footer .logofooter {
    display: inline-block;
    background-image: url(../images/logofooter.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 8rem;
    height: 3rem;
}

footer .contacts {
	flex-grow: 1;
	flex-shrink: 0;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .contacts>div a {
	padding: 1rem;
}

footer .contacts .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

footer .contacts .social a {font-size: 2rem;}

footer .contacts a {
	color: #fff;
	text-decoration: none;
}

footer .contacts a:hover {
	text-decoration: underline;
}

footer .req { display: flex; align-items:center; }
footer .req p {
	margin: 0;
	font-size: .75rem;
	color: #717171;
	text-align: right;
}

footer .subfooter {}
footer .subfooter .grid1400 {
	align-items: center;
	justify-content: space-between;
}

footer .subfooter .grid1400 a {
	color: #aaa;
	text-decoration: none;
}

.client .ctrlPanel {
	display: none;
}


/* EVENT STYLE */

.inspage header h1 {
	color: #fff;
    padding: 0 0rem;
    margin: 0;
    font-size: 3rem;
    text-shadow: 1px 1px 2px #000;
}

.inspage header .aboutEvent {
	max-width: 60%;
	color: #fff;
}

.inspage header .details {
	color: #fff;
	max-width: 60%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inspage header .details .date p {
	font-size: 2rem;
	margin: 0;
	font-weight: bold;
}

.inspage header .details .place a {
	font-size: 1rem;
	/*color: #aaa;*/
	/*text-decoration: none;*/
}

.inspage header .details .place a:hover {
	text-decoration: underline;
}

.inspage header .details .buyTicket {
	display: inline-flex;
	justify-content: flex-end;
}

.inspage header .details .buyTicket a {
    transition: background-color .5s ease;
    display: inline-block;
    padding: .5rem 1rem;
    color: #fff;
    text-decoration: none;
    /* border: 1px solid #aaa; */
    margin: .5rem;
    border-radius: .5rem;
    background-color: #c70909;
    text-align: center;
    width: 100%;
    font-size: 1rem;
}

.inspage header .details .buyTicket a p {
	margin: 0;
	font-weight: bold;
}

.inspage header .details .buyTicket a p+p {
	font-weight: normal;
}

.inspage header .details .buyTicket a:hover {
	background-color: #950606;
    color: #fff;
}

.inspage .block .panel {
	/*background-color: #fff;*/
	/*border-radius: 1rem;	*/
}

.inspage .block .title h2 {
    margin: 3rem 0 3rem 0;
    font-size: 2rem;
    color: #535353;
    /* color: #858585; */
    font-weight: 600;
    text-transform: uppercase;
}

.inspage .block .panel iframe {
	width: 100%;
	display: inline-block;
	height: 75vh;
	border-radius: 1rem;
	border: 0;
}

.inspage section#about .title {
	width: 40%;
}

.inspage section#about .title p { font-size: 2rem; text-align:left; }
.inspage section#about .title h1 {
    font-size: 5rem;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-align: left;
}

.inspage section#about .title a {
	color: #c70909;
	display: inline-block;
}

.inspage section#about .title a:hover {
	text-decoration: none;
}

.inspage section#about .title a:hover p {
	color: #c70909;
}

.inspage .info a {
	display: inline-block;
	font-size: 1.5rem;
	color: #c70909;
}

.inspage .info a p {
	margin: 0;
	color: #fff;
}

.inspage .info a:hover p {
	color: inherit;
}



.inspage .itemsList .grid3 {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	/*justify-content: space-between;*/
}

.inspage .itemsList .grid3 a {
	display: inline-block;
	position: relative;
	width: calc(100% / 4 - 1rem);
	height: calc( 1400px / 4 - 1rem);
	margin-bottom: 1rem;
}

.inspage .itemsList .grid3 .empty {
    background-color: rgba(255, 255, 255, 0.05);
    justify-content: center;
    align-items: center;
    color: #535353;
    display: flex;
    width: 100%;
    border-radius: 1rem;
}


span.addItem {
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: rgba(255,255,255,0.1);
	text-decoration: none;
	/*flex-direction: column;*/
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0 0 .5rem .5rem;
	width: auto;
	height: auto;
	padding: .5rem 2rem;
	border-top: 5px solid #c70909;
	overflow: hidden;
	background-color: #262629;
	z-index: 999;
}

span.addItem:hover {
	background-color: #7f7f85;
}

span.addItem p {
	margin: 0;
}

span.addItem .icon {
	font-size: 3rem;
	position: absolute;
	bottom: -1rem;
	right: -.5rem;
}

.inspage .itemsList .grid3 a+a {
	margin-left: 1rem;
}

.inspage .itemsList .grid3 a:nth-child(5n) {
	margin-left: 0;
}

/*
.inspage .itemsList.placeList .grid3 a {
	display: inline-block;
	position: relative;
	width: calc(100% / 3 - 1rem);
	height: calc( 1400px / 3 - 1rem);
	margin-bottom: 1rem;
}
*/

.inspage .itemsList .grid3 a img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: grayscale(1);
	transition: filter .5s ease;
}

.inspage .itemsList .grid3 a:hover img {
	filter: none;
}

.inspage .itemsList .grid3 a .info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg,#000,transparent);
	padding: 1rem;
	display: inline-flex;
	align-items: flex-end;
}

.inspage .itemsList .grid3 a .info h2 {
	color: #fff;
	font-size: 1.25rem;
	font-weight: bold;
	margin: 0;
}

