
/* Blueprint header */

.bp-header {
	display: -webkit-flex;
	display: flex;
	height: 0;
}

.header-logo {
	position: fixed;
	top: 0;
	left: 0;
	width: 240px;
	height: 160px;
	padding: 1em 0 0 0;
	text-align: center;
	color: #3b3d4a;
	background: #fff;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
	z-index: 10;
}

.header-icon {
	font-size: 4em;
	background: url(../img/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 100px;
}

.heading {
	font-size: 0.75em;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-table;
}




@media screen and (max-width: 40em) {
	.bp-header {
/* 		padding-top: 3em; */
		height: 52px;
		width: 100%;
		background: white;
		display: block;
		z-index: 5;
		-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
		box-shadow: 0 2px 4px 0 rgba(0,0,0,0.07);
		position: fixed;
		top: -1px;
	}
	
	.logo-text-mobile {
		width: 100%;
		position: absolute;
		height: 100%;
		/* margin: auto; */
		text-align: center;
		top: 18px;
		text-transform: uppercase;
		font-size: 0.8em;
		font-weight: bold;
	}
	
	.logo-text-mobile a, .logo-text-mobile a:hover, .logo-text-mobile a:visited {
		color: black;
	}
	
	.header-logo {
		display: none;
	}
	.content {
		margin: 0;
		margin-top: 52px;
	}
	body,
	.container {
/* 		height: auto; */
		overflow: auto;
		min-height: 100%;
	}
}


.menu {
	background: white;
}





.footer-menu .menu {
	position: absolute;
    top: inherit;
    height: auto;
    width: auto;
    bottom: 0;
    box-shadow: none;
    list-style: none;
    padding: 0;
    width: 240px;
    text-align: center;
    margin-bottom: 10px;
}

.footer-menu .menu li {
	display: inline-block;
	font-size: 0.8em;
    padding: 0 10px;
}

.footer-menu .menu li a {
	color: #a7a7a7;
}

.footer-menu .menu li a:hover {
	color: #000;
}

.is-live .header-icon {
	
    background: #c53c36;
    margin: 30px auto 20px;
    padding: 10px;
	width: 70%;
	height: 50px;
}

.is-live .header-icon::after {
	content: "Прямой эфир";
    font-size: 0.2em;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    top: 65px;
    left: 67px;
    position: absolute;
    text-align: center;
}

.is-live .header-icon::before {
	content: " ";
/*     border: 1px solid #c53c36; */
	background: #c53c36;
    width: 70%;
    height: 52px;
    position: absolute;
    left: 36px;
    top: 45px;
    -webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

.fb-player {
	display: none;
}

.is-live.streaming {
	padding: 0;
}

.is-live.streaming > a, .is-live.streaming > div {
	display: none;
}

.is-live.streaming .fb-player {
	display: block;
}

/*
.heading:before {
	height: 12px;
    width: 24px;
    background-size: contain;
    display: table-cell;
    background-repeat: no-repeat;
    opacity: 0;
}

.heading-text.playing .heading:before {
	content: " ";
    background-image: url("../img/icon-play-rounded.svg");
    opacity: 1;
}

.heading-text.paused .heading:before {
	content: " ";
    background-image: url("../img/icon-pause-rounded.svg");
    opacity: 1;
}
*/