@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;
}

a {
    color: inherit;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

button {
    cursor: pointer;
}


*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* MIXIN's */
.flex, .flex--center, .header__inner, .table__row, .footer__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

html {
    font-size: 15px;
}

body {
    color: #333333;
    font-family: 'Roboto', Helvetica, sans-serif;
    background-color: #FFFFFF;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body a:hover {
    text-decoration: none;
}

body.tv {
	width: 1080px;
	height: 1920px;
	overflow: hidden;
}

.content {
	width: 1080px;
	line-height: 1.3rem;
	font-weight: 400;
	font-size: 14px;
}

.content.desktop {
    width: 1080px;
    margin: 0 auto;
}

.content.mobile {
	overflow-y: hidden;
	font-size: 13px;
}

.banners {
    width: 1080px;
    height: 1920px;
    overflow: hidden;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(img/logo.svg);
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.banner {
    position: absolute;
    opacity: 0;
    overflow: hidden;
    width: 1080px;
    height: 1920px;
    -webkit-animation: fade 2s alternate both;
    /* Safari 4+ */
    animation: fade 2s alternate both;
    /* IE 10+, Fx 29+ */
}

h1 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 400;
}

h2 {
    font-size: 1.6rem;
    line-height: 1.4rem;
}

h3 {
    font-size: 1rem;
    line-height: 1.6rem;
    font-weight: 400;
}

h4 {
    font-size: 1.1rem;
    line-height: 1.2rem;
}

.text--small {
    font-size: 0.9rem;
}

.text--big {
    font-size: 1.6rem;
    font-weight: bold;
}

.pointer, .btn {
    cursor: pointer;
}

/* НАВИГАЦИЯ */
.link {
    text-decoration: underline;
}

.link:hover {
    text-decoration: none;
}

.overlay {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 998;
    opacity: 0;
    display: block;
    visibility: hidden;
}

.overlay--show {
    opacity: 1;
    visibility: visible;
}

.inner, .header__inner, .main__inner, .footer__inner {
    width: 100%;
    position: relative;
    margin: 0 auto;
}


.content.mobile header {
	display: none
}

.header__inner {
    padding: 16px;
}

.header__logo {
    width: 140px;
    height: 48px;
    background-image: url(img/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.header__title {
    align-self: center;
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
}

.content.mobile .header__title{
	display: none
}

.header__date {
    align-self: center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.main__title {
    margin-bottom: 4px;
    position: relative;
    display: inline-block;
}

.table {
    width: 100%;
}

.content.mobile .table {
	padding-left: 200px;
	overflow: hidden;
}

.table__time {
    position: absolute;
    width: 48px;
    top: -24px;
    z-index: 20;
    background-color: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    line-height: 16px;
	text-align: center;
}

.table__time::after {
    content: '';
    border-left: 2px dashed red;
    position: absolute;
    height: 1920px;
    right: 0;
	top: 16px
}

.content.nextday .table__time {
    display: none;
}

.table__header>.table__col {
    text-align: center;
    align-self: center;
}

.table__header>.table__col--title {
    text-align: left;
    align-self: center;
}

.table__row {
    width: 100%;
    min-height: 40px;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.table__row--sep {
    min-height: 30px;
}


.content.mobile .table__row--sep {
	display: none
}


.table__col {
    position: relative;
	flex: 0 0 48px;
	box-shadow: 1px 0px 0px rgba(0, 0, 0, 0.1);
}

.table__col--title {
    min-width: 216px;
    max-width: 216px;
    border-left: none;
    align-self: center;
    padding-left: 8px;
	vertical-align: middle;
}


.content.mobile .table__col--title {
    position: fixed;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	z-index: 100;
	margin-left: -200px;
}


.table__col--tooltip {
    font-size: 12px;
    color: #808080;
    display: block;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table__col--center {
    text-align: center;
    width: 100%;
    background-color: #EAEAEA;
    color: #808080;
    align-self: center;
    line-height: 30px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
	flex: 0 0 100%;
}

.table__event {
    content: attr(event);
    font-weight: bold;
    position: absolute;
    background-color: #C9DAF8;
    text-align: center;
    bottom: 0;
    top: 0;
    text-decoration: none;
    font-style: normal;
    z-index: -1;
    vertical-align: middle;
    display: table;
    padding: 5px 0;
    min-height: 40px;
	line-height: 15px;
}

.table__event .table__col--tooltip {
    color: #333333;
}

.table__event--special {
    background-color: #FFE599;
}

.table__event--30m {
    margin-left: 25px;
}

.footer {
    display: block;
    font-size: 0.8rem;
}

.footer__inner {
    align-items: center;
    padding: 8px;
}
