body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #ccb;
	background: #15212f;
	font-size: 1em;
	line-height: 150%;
	font-family: 'PT Sans', sans-serif;
}

a {
    color: #f63!important;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p, .p {
	margin: 1em 0;
}

img {
	max-width: 100%;
}

big, .big {
	font-size: 1.6em;
	line-height: 120%;
}

h1 {
	color: #e5b847;
	font-family: PlumbMediumCMediumC, sans-serif;
	margin: 1em 0;
	font-weight: normal;
	font-size: 2em;
	line-height: 120%;
	text-transform: uppercase;
}

h2 {
	color: #ddd;
	font-family: PlumbMediumCMediumC, sans-serif;
	margin: 1em 0 0 0;
	font-weight: normal;
	font-size: 1.5em;
	line-height: 120%;
}

td {
	vertical-align: bottom;
}

td:nth-child(2) {
	padding: 0 1em;
}

.b {
	font-weight: bold;
}

.i {
	font-style: italic;
}

.yellow {
	color: #e5b847;
}

.nobr {
	white-space: nowrap;
}

.left {
	text-align: left!important;
}

.right {
	text-align: right!important;
}

.center {
	text-align: center!important;
}

.top {
	vertical-align: top!important;
}

.middle {
	vertical-align: middle!important;
}

.bottom {
	vertical-align: bottom!important;
}

.page {
	margin: 0;
	padding: 0;
}

.h50 {
	height: 50vh;
}

.h100 {
	height: 100vh;
}

.page.table {
	display: table;
}

.content {
	padding: 5em;
}

.content.cell {
	display: table-cell;
	vertical-align: middle;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video iframe,  
.video object,  
.video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup {
	display: none;
	color: #333;
	background-color: #fff;
    border-radius: .5em;
	padding: 4em;
	margin: 2em;
	text-align: left;
	position: relative;
	max-width: 600px;
}

.popup-close {
	position: absolute;
	top: 1em;
	right: 1.3em;
	z-index: 300;
	cursor: pointer;
	color: #ccc;
}

.popup h2 {
	color: #e5b847;
}

@media screen and (max-width: 600px) {
    .content {
    	padding: 2em 1em;
    }
    .popup {
    	width: auto;
    	max-width: none;
    	margin: 1em;
    	padding: 2em;
    }
    .popup-close {
    	top: .5em;
    	right: .8em;
    }
}

.column1of2 {
	display: inline-block;
	width: 40%;
	margin-right: 5%;
	vertical-align: top;
}

.column2of2 {
	display: inline-block;
	width: 40%;
	margin-left: 5%;
	vertical-align: top;
}

.column1of3 {
	display: inline-block;
	width: 30%;
	vertical-align: top;
}

.column2of3 {
	display: inline-block;
	width: 30%;
	margin: 0 3%;
	vertical-align: top;
}

.column3of3 {
	display: inline-block;
	width: 30%;
	vertical-align: top;
}

@media screen and (max-width: 800px) {
    .column1of2,
    .column2of2,
    .column1of3,
    .column2of3,
    .column3of3 {
    	display: block;
    	width: auto;
    	margin: 0 auto;
    }
    .column2of2 h1 {
    	margin-top: 1em;
    }
}

/*** BEAR ***/

#bear {
	position: absolute;
    top: 0;
    left: 1rem;
    z-index: 2000;
    background-image: url(../img/bear_bg.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 150px;
    height: 85px;
}

#bear img {
	max-width: 80px;
    margin: 10px 25px;
}

@media screen and (max-width: 480px) {
	#bear {
		background-image: none;
		width: auto;
		height: auto;
		top: 0.6rem;
		left: 1rem;
	}
	#bear img {
		max-width: 6rem;
		margin: 0;
	}
}

/*** COVER ***/

#cover {
	width: 100%;
	position: relative;
}

#cover .content {
	color: #fff;
	background-color: transparent;
	background-image: url(../img/cover.png);
	background-size: cover;
	background-position: center center;
}

#cover-superman {
	display: block;
	width: 50%;
	max-width: 360px;
	margin: 0 auto;
}

#cover-logo {
	display: block;
	width: 50%;
	max-width: 360px;
	margin: 1em auto;
}

#cover-text {
	font-family: PlumbCRegular;
    margin: 0 auto 7em auto;
}

#cover-text-date {
	font-size: 1.5em;
	line-height: 120%;
	color: #e5b847;
	text-transform: uppercase;
}

#cover-text-place {
	font-size: 1em;
	line-height: 120%;
	margin: .5em 0 2em 0;
}

#cover-ticket {
	display: inline-block;
    text-decoration: none!important;
    border: 1px solid #fff;
    padding: .5em 1em;
    color: #fff!important;
    text-transform: uppercase;
    background-color: rgba(229, 184, 71, .7);
}

#cover-ticket:hover {
	/*border-color: #e5b847!important;*/
	background-color: rgb(229, 184, 71);
}


@keyframes cover-down-fade {
    from { bottom: 1em; }
    50% { bottom: 1.2em; }
    to { bottom: 1em; }
}
 
#cover-down {
	color: #e5b847;
	position: absolute;
	bottom: 1em;
	left: 50%;
    transform: translate(-50%, 0);
    animation: cover-down-fade 2000ms infinite;
}

#cover-sponsor {
	display: block;
    position: absolute;
    bottom: 1.5em;
	left: 1.5em;
}

#cover-sponsor img {
	width: 15em;
}

@media screen and (max-width: 800px) {
	#cover-superman,
    #cover-logo {
    	width: 80%;
    }
    #cover-text {
    	width: 80%;
    }
}

@media screen and (max-width: 800px) and (max-height: 700px) {
	#cover-superman {
		display: none;
	}
}

/*** INFO ***/

#info {
	position: relative;
	background: url('/img/stripes_bottom.png') left bottom no-repeat, url('/img/stripes_top.png') right top no-repeat;
	background-color: #000;
}

#info-text {
	display: inline-block;
	width: 30%;
	margin-right: 5%;
	vertical-align: middle;
	text-align: left;
}

#info-video {
	display: inline-block;
	width: 55%;
	margin-left: 5%;
	vertical-align: middle;
}

@media screen and (max-width: 800px) {
    #info-text,
    #info-video {
    	display: block;
    	width: auto;
    	margin: 0 auto;
    }
}

/*** NEWS ***/

#news {
	position: relative;
	border-top: 1px solid #283340;
}

#news h1 {
	position: relative;
	padding-right: 5em;
}

#news h1 a.more {
    display: block;
    color: #fff!important;
    background-color: #f63;
    margin: 0;
    padding: 0 1em;
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    text-decoration: none;
    position: absolute;
    left: auto;
    right: 1em;
    top: 0;
    bottom: auto;
    font-size: .5em;
    white-space: nowrap;
}

#news h1 a.more::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.8em;
    border: .5em solid transparent;
    border-left: .5em solid #f63;
    border-top: .5em solid #f63;
}

#news-corner {
    margin-top: -1px;
    background: url('/img/news_corner.png') top center no-repeat;
    height: 2em;
}

/*** FEATURES ***/

#features {
	position: relative;
	background: url('/img/stripes_bottom.png') left bottom no-repeat, url('/img/stripes_top.png') right top no-repeat;
	background-color: #10382d;
}

#features .features-item {
	position: relative;
}

#features .features-text {
	display: inline-block;
	width: 35%;
	margin-right: 5%;
	vertical-align: middle;
	text-align: left;
}

#features .features-item img {
	display: inline-block;
	width: 50%;
	height: auto;
	vertical-align: middle;
}

#features .features-sign {
	display: none;
}

@media screen and (max-width: 800px) {
    #features .features-text {
    	display: block;
    	width: auto;
    	margin: 0 auto;
    	text-align: center;
    }
    #features .features-item img {
    	display: block;
    	width: 80%;
    	margin: 0 auto;
    }
    #features .features-text p {
    	display: none;
    }
    #features .features-sign {
		display: block;
    	width: 80%;
    	margin: 1em auto 0 auto;
    	text-align: center;
	}
}

/*** PART ***/

#part {
	position: relative;
}

/*** TICKETS ***/

#tickets {
	position: relative;
	background: url('/img/stripes_bottom.png') left bottom no-repeat, url('/img/stripes_top.png') right top no-repeat;
	background-color: #000;
}

#tickets-places img {
	width: 40%;
	margin: 2em 2%;
	display: inline-block;
	vertical-align: middle;
}

@media screen and (max-width: 800px) {
	#tickets-places img {
		width: 20%;
		margin: 2em 1%;
	}
}

#tickets-types table {
	width: 100%;
}

#tickets-types td {
	vertical-align: top;
	padding: 0;
}

#tickets-types td:last-child {
	padding-left: 2em;
}

#tickets-types td span.more {
    color: #f63;
    cursor: pointer;
    display: block;
}

#tickets-types td span.more:hover {
	text-decoration: underline;
}

#tickets-types td div.more {
	display: none;
	font-size: 80%;
	line-height: 150%;
}

#tickets-types td.price span {
	white-space: nowrap;
	margin-top: 1.75em;
	display: block
}

#tickets-types td.price a {
	white-space: nowrap;
	display: block
}

/*** COSPLAY-ALLEY ***/

#cosplay-alley {
	position: relative;
	border-top: 1px solid #283340;
}

#cosplay-alley-corner {
    margin-top: -1px;
    background: url('/img/news_corner.png') top center no-repeat;
    height: 2em;
}

/*** PRESS ***/

#press {
	position: relative;
	background: url('/img/stripes_bottom.png') left bottom no-repeat, url('/img/stripes_top.png') right top no-repeat;
	background-color: #10382d;
}

/*** CONTACTS ***/

#contacts {
	position: relative;
	background: url('/img/stripes_bottom.png') left bottom no-repeat, url('/img/stripes_top.png') right top no-repeat;
	background-color: #10382d;
}

#contacts .form-button {
	display: inline-block;
    background-color: #275f64;
    border-radius: .5em;
    padding: .5em 1em;
    cursor: pointer;
    color: #e5b846;
}

.contact {
	margin: 2em 0;
	text-align: center;
}

.contact img {
	width: 50%;
	border-radius: 50%;
}

.contact .name {
	color: #ddd;
	font-family: PlumbMediumCMediumC, sans-serif;
	font-size: 1.5em;
	line-height: 150%;
}

.contact .info {
	
}

.contact .phone {
	white-space: nowrap;
}

.contact .email {
	white-space: nowrap;	
}

/*** FOOTER ***/

#footer {
	background: #333 url('../img/footer_bg.jpg') top center repeat-y;
	background-size: cover;
}

#footer .content {
	opacity: .5;
	color: #fff;
	padding: 1em 0;
}

#footer a {
	text-decoration: none;
	color: #fff!important;
}

#footer .fa-stack-1x {
	color: #003!important;
}

/*** YMAPS BALLOON ***/

.map-balloon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: block;
    padding: 1em;
    text-align: left;
    white-space: normal;
    background-color: #266064;
    color: #ddd;
    padding-right: 3em;
}

.map-balloon-inner {

}

.map-balloon-title {
    font-size: 1.5em;
    line-height: 100%;
    color: #e5b847;
	font-family: PlumbMediumCMediumC, sans-serif;
}

.map-balloon-content {
    margin-top: 1em;
}

.map-balloon-close {
	position: absolute;
	top: .5em;
	right: .8em;
	cursor: pointer;
	color: #f63;
}

/*** PARTNERS ***/

#partners {
	position: relative;
}

.partners-item {
	display: inline-block;
	vertical-align: middle;
	padding: 1em 3em;
}

.partners-item img {
	max-width: 10em;
	max-height: 5em;
	cursor: pointer;
	display: inline-block;
}

.sponsors-item {
	display: inline-block;
	vertical-align: middle;
	padding: 1em 1em 5em 1em;
}

.sponsors-item img {
	max-height: 10em;
	cursor: pointer;
	display: inline-block;
}

#partners-press img {
	max-height: 3em;
    max-width: 6em;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin: .5em;
}

/*** FOR SLICK SLIDER ***/

.slick-prev,
.slick-next {
    width: 2rem;
    height: 2rem;
}

.slick-prev { left:  -2.5rem; }
.slick-next { right: -2.5rem; }

.slick-prev:before,
.slick-next:before {
    font-family: FontAwesome;
    font-size: 2rem;
}

.slick-prev:before { content: "\f104"; }
.slick-next:before { content: "\f105"; }

.slick-dots { bottom: -3.5rem; }
.slick-dots li button:before { color: #fff; }
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #fff;
}

@media screen and (max-width: 600px) {
	.slick-prev { left:  -1rem; }
	.slick-next { right: -1rem; }
	.slick-dots { bottom: -2rem; }
	.slick-dots li { margin: 0; }
}


