@charset "UTF-8";

.itv-theme {
    font-family: 'Roboto Condensed', sans-serif;
    width: 312px;
    height: 325px;
    margin: 0 auto;
}

@-webkit-keyframes blink {
    0% {
        border-color: #ededed;
    }

    100% {
        border-color: #b94a48;
    }
}

@keyframes blink {
    0% {
        border-color: #ededed;
    }

    100% {
        border-color: #b94a48;
    }
}

[aria-label][role~=tooltip] {
    position: relative;
}

[aria-label][role~=tooltip]::after,
[aria-label][role~=tooltip]::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10;
    -webkit-transform-origin: top;
    transform-origin: top;
}

[aria-label][role~=tooltip]::before {
    content: "";
    width: 0;
    height: 0;
}

[aria-label][role~=tooltip]::after {
    background-color: rgba(17, 17, 17, 0.9);
    border-radius: 4px;
    color: #fff;
    content: attr(aria-label);
    font-size: var(--microtip-font-size, 13px);
    font-weight: var(--microtip-font-weight, normal);
    text-transform: var(--microtip-text-transform, none);
    padding: .5em 1em;
    white-space: nowrap;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

[aria-label][role~=tooltip]:focus::after,
[aria-label][role~=tooltip]:focus::before,
[aria-label][role~=tooltip]:hover::after,
[aria-label][role~=tooltip]:hover::before {
    opacity: 1;
    pointer-events: auto;
}

[role~=tooltip][data-microtip-position|=top]::before {
    margin-bottom: 5px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid;
    border-top-color: rgba(17, 17, 17, 0.9);
}

[role~=tooltip][data-microtip-position|=top]::after {
    margin-bottom: 11px;
}

[role~=tooltip][data-microtip-position|=top]::before {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    bottom: 100%;
    left: 50%;
}

[role~=tooltip][data-microtip-position|=top]:hover::before {
    -webkit-transform: translate3d(-50%, -5px, 0);
    transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position|=top]::after {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    bottom: 100%;
    left: 50%;
}

[role~=tooltip][data-microtip-position=top]:hover::after {
    -webkit-transform: translate3d(-50%, -5px, 0);
    transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position=top-left]::after {
    -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
    transform: translate3d(calc(-100% + 16px), 0, 0);
    bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-left]:hover::after {
    -webkit-transform: translate3d(calc(-100% + 16px), -5px, 0);
    transform: translate3d(calc(-100% + 16px), -5px, 0);
}

[role~=tooltip][data-microtip-position=top-right]::after {
    -webkit-transform: translate3d(calc(0 + -16px), 0, 0);
    transform: translate3d(calc(0 + -16px), 0, 0);
    bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-right]:hover::after {
    -webkit-transform: translate3d(calc(0 + -16px), -5px, 0);
    transform: translate3d(calc(0 + -16px), -5px, 0);
}

[role~=tooltip][data-microtip-position|=bottom]::before {
    margin-top: 5px;
    margin-bottom: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid;
    border-bottom-color: rgba(17, 17, 17, 0.9);
}

[role~=tooltip][data-microtip-position|=bottom]::after {
    margin-top: 11px;
}

[role~=tooltip][data-microtip-position|=bottom]::before {
    -webkit-transform: translate3d(-50%, -10px, 0);
    transform: translate3d(-50%, -10px, 0);
    bottom: auto;
    left: 50%;
    top: 100%;
}

[role~=tooltip][data-microtip-position|=bottom]:hover::before {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position|=bottom]::after {
    -webkit-transform: translate3d(-50%, -10px, 0);
    transform: translate3d(-50%, -10px, 0);
    top: 100%;
    left: 50%;
}

[role~=tooltip][data-microtip-position=bottom]:hover::after {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position=bottom-left]::after {
    -webkit-transform: translate3d(calc(-100% + 16px), -10px, 0);
    transform: translate3d(calc(-100% + 16px), -10px, 0);
    top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-left]:hover::after {
    -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
    transform: translate3d(calc(-100% + 16px), 0, 0);
}

[role~=tooltip][data-microtip-position=bottom-right]::after {
    -webkit-transform: translate3d(calc(0 + -16px), -10px, 0);
    transform: translate3d(calc(0 + -16px), -10px, 0);
    top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-right]:hover::after {
    -webkit-transform: translate3d(calc(0 + -16px), 0, 0);
    transform: translate3d(calc(0 + -16px), 0, 0);
}

[role~=tooltip][data-microtip-position=left]::after,
[role~=tooltip][data-microtip-position=left]::before {
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    -webkit-transform: translate3d(10px, -50%, 0);
    transform: translate3d(10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=left]::before {
    margin-right: 5px;
    margin-bottom: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid;
    border-left-color: rgba(17, 17, 17, 0.9);
}

[role~=tooltip][data-microtip-position=left]::after {
    margin-right: 11px;
}

[role~=tooltip][data-microtip-position=left]:hover::after,
[role~=tooltip][data-microtip-position=left]:hover::before {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]::after,
[role~=tooltip][data-microtip-position=right]::before {
    bottom: auto;
    left: 100%;
    top: 50%;
    -webkit-transform: translate3d(-10px, -50%, 0);
    transform: translate3d(-10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]::before {
    margin-bottom: 0;
    margin-left: 5px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid;
    border-right-color: rgba(17, 17, 17, 0.9);
}

[role~=tooltip][data-microtip-position=right]::after {
    margin-left: 11px;
}

[role~=tooltip][data-microtip-position=right]:hover::after,
[role~=tooltip][data-microtip-position=right]:hover::before {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

[role~=tooltip][data-microtip-size=small]::after {
    white-space: initial;
    width: 80px;
}

[role~=tooltip][data-microtip-size=medium]::after {
    white-space: initial;
    width: 150px;
}

[role~=tooltip][data-microtip-size=large]::after {
    white-space: initial;
    width: 260px;
}

@font-face {
    src: url(../fonts/element-icons-c91af7d439e2ea10795197f4c8b92809e7d979093fb977b6b632601c7d0f0af4.woff);
}

body>ul.ui-autocomplete {
    z-index: 101;
}

.navbar {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    min-height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 101;
    border-radius: 0;
}

.navbar .logo {
    width: 50px;
}

.navbar ::after,
.navbar ::before,
.navbar::after,
.navbar::before {
    content: none;
}

.navbar .placeholder {
    width: 100%;
    height: 0;
    display: none;
}

.navbar .info {
    height: 65px;
    line-height: 50px;
    vertical-align: bottom;
}

.navbar .info>.content-width {
    line-height: 50px;
    position: relative;
}

.navbar .info .logo,
.navbar .info .regions,
.navbar .info .regions-wrapper,
.navbar .info .social-buttons-compact,
.navbar .info .time,
.navbar .info .title {
    display: inline-block;
    vertical-align: bottom;
}

.navbar .info .logo {
    position: relative;
    z-index: 1;
    margin-bottom: -8px;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-image: url(../images/logo-ac67852f1625b338f9d1fb96be089d03557d50bfc5790d5f48dc56799f59dec6.svg);
    background-size: 40px 40px;
    background-position: center center;
}

.navbar .info .title {
    margin-right: 16px;
    margin-left: 14px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: #05519d;
    letter-spacing: 1.3px;
    text-decoration: none;
}

.navbar .info .title:hover {
    text-decoration: none;
}

.navbar .info .time {
    margin-right: 20px;
    font-size: 12px;
    line-height: 20px;
    color: #96a0a8;
}

.navbar .info .regions {
    line-height: 20px;
}

.navbar .info .regions .region {
    cursor: pointer;
    font-size: 13px;
    color: #05519d;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.navbar .info .regions .region::after {
    content: " ";
    display: inline-block;
    margin-left: 5px;
    width: 8px;
    height: 6px;
    background-image: url(../images/nib-blue-bb09c2b3c592d4c96f46ca91c2647144f30ced097b10c478375aee08b94a17bd.svg);
    background-repeat: no-repeat;
}

.navbar .info .regions .region-select-widget {
    display: none;
}

.navbar .info .social-buttons-compact {
    position: absolute;
    top: 0;
    right: 15px;
    margin-right: 20px;
}

.navbar .info .social-buttons-compact a {
    vertical-align: bottom;
}

.navbar .info .social-buttons-compact::after {
    content: "";
    display: block;
    clear: both;
}

.navbar .info .social-buttons-compact .all-regions .hidden {
    display: none;
}

.navbar .info .navbar-links>ul.nav-left {
    margin-left: 45px;
    padding-left: 5px;
}

.navbar .info .navbar-links>a.search {
    display: none;
}

.navbar .navbar-header {
    margin: -10px 0 0 0;
    line-height: 30px;
    float: left;
}

.navbar .navbar-header img {
    float: left;
}

.navbar .navbar-header .navbar-toggle {
    display: none;
    cursor: pointer;
    float: right;
    background-color: #fff;
    position: relative;
    padding: 9px 10px;
    margin: 0;
    border: 1px solid #000;
}

.navbar .navbar-header .navbar-toggle span.icon-bar {
    background-color: #000;
    display: block;
    width: 22px;
    height: 2px;
}

.navbar .navbar-header .navbar-toggle span.icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar .nav {
    float: none;
    height: 100%;
}

.navbar .nav::before {
    content: "";
    display: table;
}

.navbar .nav::after {
    content: "";
    clear: both;
}

.navbar .nav ul {
    height: 100%;
    list-style-type: none;
}

.navbar .nav ul.nav-left {
    padding-left: 0;
    margin: 0;
    float: left;
    max-width: 860px;
    overflow: hidden;
    color: #1b354a;
    white-space: nowrap;
}

.navbar .nav ul.nav-left li {
    color: inherit;
    -webkit-transition: opacity .1s ease-in-out;
    transition: opacity .1s ease-in-out;
}

.navbar .nav ul.nav-left:hover li {
    opacity: .5;
}

.navbar .nav ul.nav-left:hover li:hover {
    opacity: 1;
    color: #2077d0;
}

.navbar .nav ul.nav-left:hover li:active {
    color: #01478d;
}

.navbar .nav ul a {
    display: block;
    width: 100%;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    height: 100%;
    line-height: 25px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.navbar .nav ul li {
    height: 100%;
    display: inline-block;
    margin-right: 13px;
}

.navbar .menu {
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
}

.navbar .menu .itv-flex-spacer {
    -webkit-box-ordinal-group: 91;
    -ms-flex-order: 90;
    order: 90;
}

.navbar .menu>.itv-content-width {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar .menu .toggle-button {
    position: absolute;
    display: none;
    left: 25px;
    top: 15px;
    width: 34px;
    height: 34px;
    background-image: url(../images/hamburger-normal-748c6b151d8d9a6a674ff709092d622338666f3daf34209407f2b7f7226f22d8.svg);
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.navbar .menu .toggle-button:active {
    background-image: url(../images/hamburger-click-462f3b411b1ac91b416f0edf0244bf41b30176af4e653b84f04965f3f0990434.svg);
}

.navbar .menu .logo {
    display: inline-block;
    vertical-align: top;
    width: 58px;
    height: 58px;
    background-repeat: no-repeat;
    background-image: url(../images/logo-ac67852f1625b338f9d1fb96be089d03557d50bfc5790d5f48dc56799f59dec6.svg);
    background-position: center center;
    background-size: 30px 30px;
    visibility: hidden;
}

.navbar .menu .links {
    display: inline-block;
    vertical-align: top;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 0 0 7px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    list-style-type: none;
    white-space: nowrap;
}

@media (min-width: 733px) {
    .navbar .menu .links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: calc(100% - 75px);
    }
}

.navbar .menu .links:hover .itv-flex-spacer:hover~.main_menu_item .main-menu-item-link {
    opacity: 1;
}

.navbar .menu .links:hover .main_menu_item .main-menu-item-link {
    opacity: .5;
}

.navbar .menu .links:hover .main_menu_item:hover .main-menu-item-link {
    opacity: 1;
    color: #2077d0;
}

.navbar .menu .links:hover .main_menu_item:hover~.menu_item_promo {
    opacity: .5;
}

@media (min-width: 984px) {
    .navbar .menu .links:hover .main_menu_item:hover .shows {
        max-height: 1000px;
    }
}

.navbar .menu .links:hover:active {
    color: #01478d;
}

.navbar .menu .links li {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-right: 11px;
    line-height: 56px;
    letter-spacing: .9px;
    -webkit-transition: unset;
    transition: unset;
}

@media (max-width: 732px) {
    .navbar .menu .links li {
        position: relative;
    }
}

.navbar .menu .links li.menu_item_promo {
    width: 180px;
    overflow: hidden;
    margin-left: -5px;
    margin-right: 0;
    opacity: .8;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-box-ordinal-group: 100;
    -ms-flex-order: 99;
    order: 99;
}

.navbar .menu .links li.menu_item_promo:hover {
    opacity: 1;
}

@media (min-width: 733px) {
    .navbar .menu .links li.menu_item_promo {
        float: right;
    }
}

.navbar .menu .links li.menu_item_promo img {
    width: 100%;
    height: auto;
    max-width: 180px;
    max-height: 60px;
    vertical-align: middle;
}

.navbar .menu .links li .shows {
    position: absolute;
    display: block;
    overflow: hidden;
    max-height: 0;
    height: auto;
    width: 100%;
    left: 0;
    margin-top: 4px;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-transition: max-height .3s;
    transition: max-height .3s;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    opacity: 1;
    z-index: 101;
}

.navbar .menu .links li .shows:hover {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    max-height: 1000px;
}

.navbar .menu .links li .shows .content-width {
    margin-top: 4px;
    -webkit-columns: 4;
    columns: 4;
    -webkit-column-width: 215px;
    column-width: 215px;
    padding: 20px 40px 20px 20px;
}

.navbar .menu .links li .shows a {
    -moz-column-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid-column;
    display: block;
    white-space: normal;
    padding-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #0757a8 !important;
    letter-spacing: 0;
    text-transform: none;
}

.navbar .menu .links li .shows a:hover {
    color: #2077d0 !important;
}

.navbar .menu .links li .shows a:active {
    color: #01478d !important;
}

.navbar .menu .links li .shows a.main-menu-show-all {
    text-transform: uppercase;
}

.navbar .menu .links li a {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 25px;
    cursor: pointer;
    color: #1b354a;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar .menu .links li::last-child {
    margin-right: 0;
}

.navbar .menu .search-button {
    display: block;
    width: 20px;
    height: 20px;
    margin: 10px 35px 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    border-radius: 2px;
    background-image: url(../images/search-blue-635e469c445b5332771e9b392f53ab090ab8236de40a64f903725009bd28c914.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
}

.navbar .menu .search-button:not(.mobile):hover {
    background-image: url(../images/search-white-f1e1caee6b681bc80ae3fa93c86a0e6102266ca0689ff2b889e03d62a7cb98a5.svg);
    background-color: #5296db;
}

.navbar .menu .search-button::after {
    content: "";
    display: block;
    clear: both;
}

.navbar .menu .search-button.mobile {
    display: none;
}

@media (max-width: 732px) {
    .navbar .menu .search-button.mobile {
        display: block;
    }

    .navbar .menu .search-button.mobile+.search-button {
        display: none;
    }
}

@media (max-width: 732px) {
    .navbar .info {
        display: none;
        height: 0;
    }

    .navbar.short {
        position: fixed;
    }

    .navbar .menu {
        position: relative;
    }

    .navbar .menu .toggle-button {
        display: block;
    }

    .navbar .menu .logo {
        visibility: visible;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .navbar .menu .search-button {
        position: absolute;
        right: 0;
        width: 40px;
        padding: 0;
        margin-right: 20px;
    }

    .navbar .menu .search-button:hover {
        margin-right: 20px;
    }

    .navbar .menu ul.links {
        display: none;
        position: absolute;
        width: 100%;
        max-height: calc(100vh - 60px);
        padding-left: 35px;
        padding-bottom: 50px;
        top: 60px;
        height: auto;
        background-color: #fff;
        overflow: scroll;
    }

    .navbar .menu ul.links li {
        display: block;
        line-height: 40px;
    }

    .navbar .menu ul.links li .shows {
        display: none !important;
    }

    .navbar .menu ul.links li a {
        width: auto;
    }
}

.navbar.short .placeholder {
    display: block;
}

.navbar.short .info {
    visibility: hidden;
}

.navbar.short .menu {
    position: fixed;
    top: 0;
    -webkit-transition: top .4s ease, height .3s ease;
    transition: top .4s ease, height .3s ease;
}

.navbar.short .menu .logo {
    visibility: visible;
}

.navbar:not(.short) .menu .search-button:active {
    padding: 0;
    margin: 10px 0 0;
    width: 60px;
    height: 53px;
    background-image: url(../images/search-white-f1e1caee6b681bc80ae3fa93c86a0e6102266ca0689ff2b889e03d62a7cb98a5.svg);
    background-clip: border-box;
    background-color: #1b354a;
    background-position: center 9px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.navbar .searchbar .search {
    padding: 20px;
}

.searchbar {
    background-color: #1b354a;
    position: absolute;
    top: 60px;
    width: 100%;
    min-height: 80px;
    z-index: 100;
    padding: 20px 0;
}

.searchbar .search {
    position: relative;
    margin: 0 auto;
}

.searchbar .search form {
    position: relative;
    width: 100%;
}

.searchbar .search .interactive-button {
    cursor: pointer;
    position: absolute;
    width: 42px;
    height: 32px;
    top: 0;
    right: 0;
    margin-top: 10px;
    background: transparent url(../images/search-reset-095e6f026d2db28e84cfd05e88188b33e9ea902799aef7342d7289cfb8c906c5.svg) no-repeat center top;
    background-size: 20px 20px;
    z-index: 100;
    opacity: .8;
}

.searchbar .search .interactive-button.search {
    background-image: url(../images/search-enter-4b462cd3216ec12b92ba74d44c521646bc794c3c537dc50fb37f0cb31e43f867.svg);
}

.searchbar .search .interactive-button:hover {
    opacity: 1;
}

.searchbar .search .token-search-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: 40px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 4px 5px;
    border: 1px solid #3d5466;
    background-color: #1b354a;
    outline: 0;
}

.searchbar .search .token-search-input .q {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    margin-bottom: 0;
    margin-top: 4px;
    height: 30px;
    min-width: 200px;
    max-width: 100%;
    line-height: 30px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    font-size: 21px;
    color: #fff;
    background-color: transparent;
    border: none;
    outline: 0;
}

.searchbar .search .token-search-input .token {
    margin-top: 9px;
}

.searchbar .search .token-search-input:placeholder-shown {
    color: #58a6dd;
    text-overflow: ellipsis;
}

.searchbar .search .token-search-input:placeholder-shown+.interactive-button {
    display: none;
}

.tv-search-token {
    display: block;
    position: relative;
    min-height: 30px;
    margin: 4px 4px 0 4px;
    margin-left: 0;
    padding: 0 30px 0 10px;
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    background-color: #41789f;
    color: #fff;
    border-radius: 2px;
    cursor: default;
}

.tv-search-token:focus {
    background-color: #2196f3;
    outline: 0;
}

.tv-search-token--date {
    font-size: 16px;
    background-color: transparent;
    border: 1px solid #4c82a8;
    font-weight: 400;
}

.tv-search-token--date::before {
    content: url(../images/calendar-lightblue-f05d27a2d4f78a92ae8f65243cdcec53ed633cf50910ee4a2bc174ffac0d682a.svg);
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

header.page-title {
    color: #05519d;
    background-color: #fff;
}

header.page-title {
    position: relative;
    z-index: 4;
}

header.page-title .promo {
    height: auto;
    min-height: 60px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@media (max-width: 732px) {
    header.page-title .promo {
        min-height: 45px;
        padding: 0 20px;
    }
}

header.page-title .promo>div {
    position: relative;
}

header.page-title .promo .title {
    max-width: 100%;
    padding-left: 20px;
}

@media (max-width: 732px) {
    header.page-title .promo .title {
        max-width: calc(100% - 40px);
        padding-left: 0;
    }
}

header.page-title .promo .title .title__link,
header.page-title .promo .title .title__text {
    display: inline-block;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    color: inherit;
    float: left;
    text-transform: uppercase;
    text-decoration: none;
}

header.page-title .promo .title .title__link:active,
header.page-title .promo .title .title__link:hover,
header.page-title .promo .title .title__text:active,
header.page-title .promo .title .title__text:hover {
    text-decoration: none;
}

header.page-title .promo .title .title__link {
    word-break: break-word;
}

header.page-title .promo .title .title__text {
    margin-top: 10px;
    margin-right: 7px;
}

@media (max-width: 732px) {
    header.page-title .promo .title .title__text {
        float: none !important;
        margin-bottom: 0;
    }

    header.page-title .promo .title .title h1.title {
        display: block;
        float: none;
        font-size: 18px;
        line-height: 22px;
    }

    header.page-title .promo .title .title span {
        display: none;
        margin-top: 0;
        font-size: 17px !important;
        line-height: 25px !important;
        padding-right: 45px;
    }

    header.page-title .promo .title .message:empty {
        display: none;
    }
}

header.page-title .promo .title__message {
    display: inline-block;
    float: none;
    margin-top: 15px;
    vertical-align: top;
    opacity: .5;
    line-height: normal;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
}

header.page-title .promo .age_restriction {
    width: 60px;
    margin: 20px 0 0 0;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: 10px;
}

header.page-title .promo .age_restriction .age-pill {
    display: block;
    width: 40px;
    margin: 0 auto;
    padding: 1px 5px 1px 5px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    text-align: center;
}

@media (max-width: 732px) {
    header.page-title .promo .age_restriction {
        top: 0;
        right: 0;
    }

    header.page-title .promo .age_restriction .pill {
        margin: 0 0 0 auto;
    }
}

header.page-title .menu {
    padding: 0 20px 5px;
    line-height: 35px;
    overflow: initial;
}

@media (max-width: 732px) {
    header.page-title .menu {
        padding: 0 10px;
    }
}

header.page-title .menu ul {
    display: inline-block;
    margin: 0;
    margin-left: -3px;
    margin-right: -11px;
    margin-left: -14px;
    padding: 0;
    vertical-align: top;
    list-style: none;
}

@media (max-width: 732px) {
    header.page-title .menu ul {
        margin-left: 0;
    }
}

header.page-title .menu ul li {
    display: inline-block;
    margin: 0 11px;
}

header.page-title .menu ul li:last-child {
    margin-right: 13px;
}

@media (max-width: 732px) {
    header.page-title .menu ul li {
        margin-right: 10px;
        line-height: 20px;
    }
}

header.page-title .menu ul li a {
    display: block;
    line-height: 21px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .99px;
    padding: 3px;
}

@media (max-width: 732px) {
    header.page-title .menu ul li a {
        padding: 0;
    }
}

header.page-title .menu ul:hover li:not(:hover) {
    opacity: .5;
}

header.page-title .menu ul:hover li:not(:hover):hover {
    opacity: 1;
}

header.page-title .header-background {
    width: 100%;
    height: 100%;
    max-height: 250px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

header.page-title .header-background:before {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-box-shadow: 0 -80px 50px -60px #fff inset;
    box-shadow: 0 -80px 50px -60px #fff inset;
}

header.page-title .header-background_image {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 0;
}

header.page-title .presenter-photo,
header.page-title .project-logotype {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

header.page-title .presenter-photo_image,
header.page-title .project-logotype_image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

header.page-title .project-logotype {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

header.page-title .project-logotype_image {
    width: 100%;
}

header.page-title .presenter-photo {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 312px;
    height: 150px;
    margin-right: 24px;
    margin-left: auto;
}

header.page-title .project-logotype {
    width: 228px;
    height: 120px;
    margin-top: 20px;
}

header.page-title .message-container {
    display: table;
    height: 100px;
    width: 100%;
    background-color: #fff;
}

header.page-title .message-container .message {
    display: table-cell;
    vertical-align: middle;
    line-height: 35px;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    color: #05519d;
}

header.page-title a.message {
    display: block;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
}

header.page-title #navbar-links {
    display: none;
}

header.page-title #navbar-links.show {
    display: block;
}

header.page-title #navbar-links ul.nav-left {
    float: none !important;
    display: block;
    padding-left: 0;
}

header.page-title #navbar-links ul.nav-left li {
    margin: 0;
    background-color: #fff;
    float: none;
    display: block;
}

.main-alert {
    display: none;
    position: relative;
    width: 100%;
    min-height: 70px;
    font-size: 22px;
    line-height: 30px;
    background-color: #dc4348;
    color: #fff;
    font-weight: 700;
}

.main-alert.display {
    display: block;
}

.main-alert .alert-container {
    padding-right: 40px;
    max-width: 984px;
    margin: 0 auto;
    position: relative;
}

.main-alert a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    padding-right: 0;
    color: inherit;
    text-decoration: none;
    outline: 0;
}

.main-alert a:hover {
    color: #fff;
    text-decoration: underline;
}

.main-alert a span::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(../images/readmore-arrow-83f9c80027fff41c9274f26d886b930b16b6d1a7d9491b1d6faf6136a5ee7bf3.svg) no-repeat center center;
    vertical-align: middle;
    margin-left: 20px;
    margin-top: -5px;
}

.main-alert span.close {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 40px;
    height: 100%;
    opacity: .5;
    background: url(../images/close-08b63a1fd5e72d487d7e8728d54f87f02e07d1bb5ec6fdb2aab91c6c03ee9094.svg) no-repeat center center;
    background-size: 22px 22px;
    cursor: pointer;
}

.main-alert span.close:hover {
    opacity: 1;
}

.main-menu__submenu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40px;
    z-index: 2;
    opacity: 0;
    font-size: 16px;
    overflow: hidden;
    outline: 0;
}

.main-menu-item {
    position: relative;
    word-break: break-word;
}

nav.navbar {
    position: relative;
}

@media (max-width: 732px) {
    .container {
        width: 100%;
    }

    .container .row {
        width: 100%;
        margin: 0;
    }
}

article header.page-title.project-title .promo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

article header.page-title.project-title .promo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 150px;
    padding: 0 20px;
    position: relative;
}

@media (max-width: 732px) {
    article header.page-title.project-title .promo {
        height: auto;
        padding-bottom: 15px;
    }
}

article header.page-title.project-title .promo:before {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.4)), to(transparent));
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
    opacity: .4;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

article header.page-title.project-title .promo .title {
    max-width: 43%;
    margin-left: 13px;
    margin-right: 20px;
    padding: 0;
    padding-top: 20px;
}

@media (max-width: 732px) {
    article header.page-title.project-title .promo .title {
        max-width: 100%;
        padding-top: 5px;
    }
}

article header.page-title.project-title .promo .title:hover span {
    text-decoration: none;
}

article header.page-title.project-title .promo .title .title__link,
article header.page-title.project-title .promo .title .title__text {
    margin-right: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

article header.page-title.project-title .promo .title .title__link .nowrap,
article header.page-title.project-title .promo .title .title__text .nowrap {
    position: relative;
}

@media (max-width: 732px) {

    article header.page-title.project-title .promo .title .title__link,
    article header.page-title.project-title .promo .title .title__text {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 1px;
    }
}

@media (min-width: 1600px) {

    article header.page-title.project-title .promo .title .title__link,
    article header.page-title.project-title .promo .title .title__text {
        font-size: 30px;
        line-height: 38px;
        letter-spacing: 1.5px;
    }
}

article header.page-title.project-title .promo .title__message {
    display: none;
    visibility: hidden;
}

article header.page-title.project-title .promo .age_restriction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 20px;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    right: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

article header.page-title.project-title .promo .age_restriction .age-pill {
    width: auto;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: 0 0;
    border-radius: 0;
}

article header.page-title.project-title .menu {
    padding: 0;
    border-top: 1px solid #fff;
    position: relative;
}

article header.page-title.project-title .menu:after {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
    background-image: linear-gradient(to bottom, #000, transparent);
    opacity: .4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

article header.page-title.project-title .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 auto;
    margin-top: 12px;
    padding: 0 20px 5px 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 732px) {
    article header.page-title.project-title .menu ul {
        padding: 0 20px;
    }
}

article header.page-title.project-title .menu ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0 2px;
    margin-bottom: 3px;
    -webkit-transition: none;
    transition: none;
}

article header.page-title.project-title .menu ul li:last-child {
    margin-right: 2px;
}

article header.page-title.project-title .menu ul li a,
article header.page-title.project-title .menu ul li button.sub-menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    padding: 2px 10px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: .45px;
    text-decoration: none;
    text-transform: uppercase;
    color: inherit;
    border: 1px solid;
    border-color: transparent;
    border-radius: 1px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 732px) {

    article header.page-title.project-title .menu ul li a,
    article header.page-title.project-title .menu ul li button.sub-menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

article header.page-title.project-title .menu ul li .menu-icon {
    margin-right: 10px;
    max-width: 26px;
    overflow: visible;
}

article header.page-title.project-title .menu ul li img,
article header.page-title.project-title .menu ul li svg {
    display: block;
    width: auto;
    height: 24px;
}

article header.page-title.project-title .sub-menu {
    position: static;
    display: inline-block;
}

article header.page-title.project-title .sub-menu button.sub-menu-toggle {
    margin: 0;
    background: 0 0;
    position: relative;
}

article header.page-title.project-title .sub-menu button.sub-menu-toggle:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background: 0 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid;
    border-bottom-color: #05519d;
    position: absolute;
    bottom: -3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 11;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

article header.page-title.project-title .sub-menu button.sub-menu-toggle:hover:before {
    opacity: 1;
}

article header.page-title.project-title .sub-menu:hover .sub-menu-toggle:before {
    opacity: 1;
}

.main-menu-promo {
    position: relative;
    display: block;
    height: 60px;
    width: 180px;
}

.main-menu-promo__item {
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

section.region-select-widget {
    background-color: #fff;
    padding: 0 24px 40px 24px;
}

section.region-select-widget header {
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 732px) {
    section.region-select-widget header {
        height: 50px;
    }
}

section.region-select-widget header p {
    font-size: 16px;
    opacity: .5;
    margin-top: 20px;
}

section.region-select-widget header .close {
    cursor: pointer;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 30px;
    height: 30px;
    background-image: url(../images/close-08b63a1fd5e72d487d7e8728d54f87f02e07d1bb5ec6fdb2aab91c6c03ee9094.svg);
    background-position: center;
    background-repeat: no-repeat;
}

section.region-select-widget .regions {
    -webkit-columns: 3;
    columns: 3;
}

@media (max-width: 732px) {
    section.region-select-widget .regions {
        -webkit-columns: 2;
        columns: 2;
    }
}

section.region-select-widget .regions p {
    margin: 2px 0;
    display: inline-block;
    width: 100%;
}

section.region-select-widget .regions p .region {
    display: inline-block;
    margin-left: -7px;
    padding: 5px 7px;
    cursor: pointer;
    font-size: 14px;
    color: #05519d;
}

section.region-select-widget .regions p .region:hover {
    color: #348bcd;
}

section.region-select-widget .regions p .region:active {
    color: #01478d;
}

@media (max-width: 732px) {
    .navbar .menu .links .main_menu_item__regions {
        display: block;
        margin-right: 0;
        margin-left: -35px;
        padding-top: 15px;
        padding-right: 10px;
        padding-bottom: 15px;
        padding-left: 35px;
        border-top: .1px solid #e5e5e5;
        border-bottom: .1px solid #e5e5e5;
        line-height: 20px;
    }

    .navbar .menu .links .main_menu_item__regions .region {
        cursor: pointer;
        font-size: 13px;
        letter-spacing: 0;
        color: #05519d;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

    .navbar .menu .links .main_menu_item__regions .region::after {
        content: " ";
        display: inline-block;
        margin-left: 5px;
        width: 8px;
        height: 6px;
        background-image: url(../images/nib-blue-bb09c2b3c592d4c96f46ca91c2647144f30ced097b10c478375aee08b94a17bd.svg);
        background-repeat: no-repeat;
    }

    .navbar .menu .links .main_menu_item__regions .region-select-widget {
        display: none;
    }
}

@media (min-width: 733px) {
    .navbar .menu .links .main_menu_item__regions {
        display: none;
        visibility: collapse;
    }
}

main:not(.index-page) .header-schedule {
    display: none;
}

.header-schedule {
    position: relative;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    max-height: 500px;
    overflow: hidden;
    min-height: 30px;
}

.header-schedule .next,
.header-schedule .previous {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    height: 160px;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.header-schedule .next.next .card .splash .image::after,
.header-schedule .previous.next .card .splash .image::after {
    display: none;
}

.header-schedule .next .card,
.header-schedule .previous .card {
    width: 480px;
    padding: 20px 0;
}

@media (min-width: 1600px) {

    .header-schedule .next .card,
    .header-schedule .previous .card {
        width: 648px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header-schedule .next .card .splash,
    .header-schedule .previous .card .splash {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .header-schedule .next .card .text,
    .header-schedule .previous .card .text {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        overflow: hidden;
        max-width: 100%;
    }

    .header-schedule .next .card .text .wrapper .title,
    .header-schedule .previous .card .text .wrapper .title {
        max-width: calc(100% - 60px);
        width: 100% !important;
    }
}

.header-schedule .next .splash,
.header-schedule .previous .splash {
    display: inline-block;
    width: 144px;
}

.header-schedule .next .splash .image,
.header-schedule .previous .splash .image {
    position: relative;
    width: 100%;
    height: 81px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.header-schedule .next .splash .image:not(.no-image),
.header-schedule .previous .splash .image:not(.no-image) {
    background-color: #000;
}

.header-schedule .next .splash .image::after,
.header-schedule .previous .splash .image::after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 10px;
    background-image: url(../images/play-icon-4e126a4b2d6a86eb9fcb14fb79a451e190b4ff18362d3d7d6f3eed8299924ef7.svg);
}

.header-schedule .next .splash .image.no-image::after,
.header-schedule .previous .splash .image.no-image::after {
    display: none !important;
}

.header-schedule .next .splash .info,
.header-schedule .previous .splash .info {
    width: 100%;
    height: 40px;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}

.header-schedule .next .splash .info .time,
.header-schedule .previous .splash .info .time {
    display: inline-block;
    width: 60px;
    line-height: 40px;
    background-color: #fff;
    color: #0757a8;
    font-weight: 700;
}

.header-schedule .next .splash .info .time-label,
.header-schedule .previous .splash .info .time-label {
    display: inline-block;
    width: 84px;
    height: 100%;
    line-height: 40px;
    background-color: #3979b9;
    color: #fff;
}

.header-schedule .next .splash .info .time-label-short,
.header-schedule .previous .splash .info .time-label-short {
    display: none;
}

.header-schedule .next .text,
.header-schedule .previous .text {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 312px;
    height: 121px;
    margin-left: 24px;
    font-size: 18px;
    line-height: 20px;
}

.header-schedule .next .text .wrapper,
.header-schedule .previous .text .wrapper {
    width: 100%;
    height: 100%;
}

.header-schedule .next .text .wrapper .title,
.header-schedule .previous .text .wrapper .title {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 252px;
    height: 82px;
    font-weight: 700;
    overflow: hidden;
}

.header-schedule .next .text .wrapper .title::after,
.header-schedule .previous .text .wrapper .title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
}

.header-schedule .next .text .wrapper .age:not(:empty),
.header-schedule .previous .text .wrapper .age:not(:empty) {
    display: inline-block;
    margin-left: 10px;
    margin-right: 20px;
    width: 30px;
    height: 20px;
    border: 1px solid #c4d2de;
    border-radius: 1px;
    font-size: 13px;
    opacity: .5;
    text-align: center;
}

.header-schedule .next .text button,
.header-schedule .previous .text button {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: 228px;
    border: none;
    background-color: #fff;
    color: #0757a8;
    opacity: .95;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.header-schedule .next .text button:hover,
.header-schedule .previous .text button:hover {
    opacity: 1;
    border-color: #fff;
}

.header-schedule .next .text button:active,
.header-schedule .previous .text button:active {
    opacity: 1;
    border-color: #fff;
}

.header-schedule .next .text button .icon,
.header-schedule .previous .text button .icon {
    vertical-align: middle;
    margin-top: -2px;
    background-image: url(../images/playicon-blue-4a640670c99f2caa7371a795dc13e933ac25855a53c62c494914525ffd78a9e1.svg);
}

.header-schedule .previous {
    background-color: #0757a8;
}

.header-schedule .previous .card {
    float: right;
}

.header-schedule .previous .card .title::after {
    -webkit-box-shadow: 0 0 10px 10px #0757a8;
    box-shadow: 0 0 10px 10px #0757a8;
}

.header-schedule .next {
    background-color: #1f7ac2;
}

.header-schedule .next .card {
    width: 502px;
    padding-left: 22px;
}

@media (min-width: 1600px) {
    .header-schedule .next .card {
        width: 648px;
    }
}

.header-schedule .next .card .splash .info .time-label {
    background-color: #4c95ce;
}

.header-schedule .next .card .title::after {
    -webkit-box-shadow: 0 0 10px 10px #1f7ac2;
    box-shadow: 0 0 10px 10px #1f7ac2;
}

.header-schedule button.index-schedule-arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    background-image: url(../images/tv-nib-6c0a387182af99bd7da68ed333302cf314cef9eda3af86d733648134edf30a28.svg);
}

.header-schedule.short button.index-schedule-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-schedule.short .next,
.header-schedule.short .previous {
    height: 30px;
}

.header-schedule.short .next .card,
.header-schedule.short .previous .card {
    padding: 0;
}

.header-schedule.short .next .card .age,
.header-schedule.short .next .card .image,
.header-schedule.short .next .card .time-label,
.header-schedule.short .next .card button,
.header-schedule.short .previous .card .age,
.header-schedule.short .previous .card .image,
.header-schedule.short .previous .card .time-label,
.header-schedule.short .previous .card button {
    display: none !important;
}

.header-schedule.short .next .card .splash.splash-for-orbit_0::after,
.header-schedule.short .next .card .splash.splash-for-orbit_3::after,
.header-schedule.short .next .card .splash::after,
.header-schedule.short .previous .card .splash.splash-for-orbit_0::after,
.header-schedule.short .previous .card .splash.splash-for-orbit_3::after,
.header-schedule.short .previous .card .splash::after {
    content: none;
}

.header-schedule.short .next .card .info,
.header-schedule.short .next .card .text,
.header-schedule.short .previous .card .info,
.header-schedule.short .previous .card .text {
    display: inline-block;
    width: auto;
    height: 30px;
}

.header-schedule.short .next .card .info .time,
.header-schedule.short .next .card .text .time,
.header-schedule.short .previous .card .info .time,
.header-schedule.short .previous .card .text .time {
    display: inline-block;
    vertical-align: top;
    width: auto;
    background-color: transparent;
    color: #fff;
    font-size: 13px;
    line-height: 30px;
    font-weight: 700;
}

.header-schedule.short .next .card .info .time-label-short,
.header-schedule.short .next .card .text .time-label-short,
.header-schedule.short .previous .card .info .time-label-short,
.header-schedule.short .previous .card .text .time-label-short {
    display: inline-block;
    margin-left: 5px;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    height: 30px;
    opacity: .7;
    vertical-align: top;
}

.header-schedule.short .next .card .splash,
.header-schedule.short .previous .card .splash {
    width: auto;
}

.header-schedule.short .next .card .text,
.header-schedule.short .previous .card .text {
    margin: 0;
}

.header-schedule.short .next .card .text .wrapper .title,
.header-schedule.short .previous .card .text .wrapper .title {
    width: 295px;
    height: 30px;
    margin-left: 10px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 700;
    white-space: nowrap;
}

.header-schedule.short .next .card .text .wrapper .title::after,
.header-schedule.short .previous .card .text .wrapper .title::after {
    bottom: auto;
    right: 0;
    width: 0;
    top: 0;
    height: 100%;
}

.header-schedule.short .next .card {
    padding: 0 0 0 35px;
    cursor: default;
}

@media (max-width: 732px) {
    .header-schedule button.index-schedule-arrow {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .header-schedule .next,
    .header-schedule .previous {
        height: 30px;
    }

    .header-schedule .next .card,
    .header-schedule .previous .card {
        padding: 0;
    }

    .header-schedule .next .card .age,
    .header-schedule .next .card .image,
    .header-schedule .next .card .time-label,
    .header-schedule .next .card button,
    .header-schedule .previous .card .age,
    .header-schedule .previous .card .image,
    .header-schedule .previous .card .time-label,
    .header-schedule .previous .card button {
        display: none !important;
    }

    .header-schedule .next .card .splash.splash-for-orbit_0::after,
    .header-schedule .next .card .splash.splash-for-orbit_3::after,
    .header-schedule .next .card .splash::after,
    .header-schedule .previous .card .splash.splash-for-orbit_0::after,
    .header-schedule .previous .card .splash.splash-for-orbit_3::after,
    .header-schedule .previous .card .splash::after {
        content: none;
    }

    .header-schedule .next .card .info,
    .header-schedule .next .card .text,
    .header-schedule .previous .card .info,
    .header-schedule .previous .card .text {
        display: inline-block;
        width: auto;
        height: 30px;
    }

    .header-schedule .next .card .info .time,
    .header-schedule .next .card .text .time,
    .header-schedule .previous .card .info .time,
    .header-schedule .previous .card .text .time {
        display: inline-block;
        vertical-align: top;
        width: auto;
        background-color: transparent;
        color: #fff;
        font-size: 13px;
        line-height: 30px;
        font-weight: 700;
    }

    .header-schedule .next .card .info .time-label-short,
    .header-schedule .next .card .text .time-label-short,
    .header-schedule .previous .card .info .time-label-short,
    .header-schedule .previous .card .text .time-label-short {
        display: inline-block;
        margin-left: 5px;
        color: #fff;
        font-size: 14px;
        line-height: 28px;
        height: 30px;
        opacity: .7;
        vertical-align: top;
    }

    .header-schedule .next .card .splash,
    .header-schedule .previous .card .splash {
        width: auto;
    }

    .header-schedule .next .card .text,
    .header-schedule .previous .card .text {
        margin: 0;
    }

    .header-schedule .next .card .text .wrapper .title,
    .header-schedule .previous .card .text .wrapper .title {
        width: 295px;
        height: 30px;
        margin-left: 10px;
        font-size: 14px;
        line-height: 28px;
        font-weight: 700;
        white-space: nowrap;
    }

    .header-schedule .next .card .text .wrapper .title::after,
    .header-schedule .previous .card .text .wrapper .title::after {
        bottom: auto;
        right: 0;
        width: 0;
        top: 0;
        height: 100%;
    }

    .header-schedule .next .card {
        padding: 0 0 0 35px;
        cursor: default;
    }
}

@media (max-width: 732px) {

    .header-schedule .next .card .age,
    .header-schedule .next .card .image,
    .header-schedule .next .card .time-label,
    .header-schedule .next .card button,
    .header-schedule .previous .card .age,
    .header-schedule .previous .card .image,
    .header-schedule .previous .card .time-label,
    .header-schedule .previous .card button,
    .index-schedule-arrow {
        display: none;
    }

    .header-schedule .next,
    .header-schedule .previous,
    .header-schedule.short .next,
    .header-schedule.short .previous {
        display: block;
        width: 100%;
        height: auto !important;
        overflow: hidden;
    }

    .header-schedule .next .card,
    .header-schedule .previous .card,
    .header-schedule.short .next .card,
    .header-schedule.short .previous .card {
        width: 100%;
        padding: 5px 24px;
        min-height: 60px;
    }

    .header-schedule .next .card .info,
    .header-schedule .previous .card .info,
    .header-schedule.short .next .card .info,
    .header-schedule.short .previous .card .info {
        height: 20px;
    }

    .header-schedule .next .card .text,
    .header-schedule .previous .card .text,
    .header-schedule.short .next .card .text,
    .header-schedule.short .previous .card .text {
        display: block;
        height: auto;
    }

    .header-schedule .next .card .text .wrapper .title,
    .header-schedule .previous .card .text .wrapper .title,
    .header-schedule.short .next .card .text .wrapper .title,
    .header-schedule.short .previous .card .text .wrapper .title {
        margin-left: 0;
        width: 100%;
        height: auto;
        line-height: 20px;
        white-space: normal;
    }

    .header-schedule .next .card .text .wrapper .title::after,
    .header-schedule .previous .card .text .wrapper .title::after,
    .header-schedule.short .next .card .text .wrapper .title::after,
    .header-schedule.short .previous .card .text .wrapper .title::after {
        content: none;
    }
}

.index-page {
    position: relative;
    background-color: #fff;
}

.middle-promo-place {
    background-color: #edf1f6;
    border: none;
}

@media (min-width: 733px) {
    .article-wide {
        margin: 0 auto;
    }
}

.article .text .w_row {
    width: 100%;
}

@media (max-width: 732px) {

    .article .w_content .w_block.c-10,
    .article .w_content .w_block.c-6,
    .article .w_content .w_block.c-8 {
        width: 100%;
        overflow: visible;
    }

    .article .w_content .w_block.o-1 {
        margin-left: 12px;
    }

    .article .w_content .w_block .w__block__collection {
        width: calc(100% + 40px);
        margin: 0 -20px 20px;
        overflow: visible;
        padding-bottom: 15px;
    }

    .article .w_content .w_block .w_collection_items {
        max-width: 100%;
    }
}

@media (min-width: 1600px) {
    .article .w_content .w_block.c-8 {
        width: 100%;
    }

    .article .w_content .w_block.c-6 {
        width: 816px;
    }
}

.article .article-header .bg-image {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: -41px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
}

.article .article-header .bg-image .name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.article .article-header .bg-image .name .text {
    max-width: 648px;
    margin: 0;
    padding: 50px 0 50px 84px;
    font-size: 50px;
    line-height: 50px;
    font-weight: 700;
    color: inherit;
}

.article section.article-container .head {
    padding: 0;
}

.article section.article-container .w__block__collection.type-row .text {
    padding: 0 10px;
}

.article section.article-container .w__block__collection.type-big-slider {
    width: auto;
}

.article section.article-container .w__block__collection.type-big-slider a.card {
    max-width: 648px;
}

.article section.article-container .w__block__collection.type-big-slider a.card .text {
    margin: 0;
}

.article section.article-container .w__block__collection.type-big-slider .w_collection_items::after,
.article section.article-container .w__block__collection.type-big-slider .w_collection_items::before,
.article section.article-container .w__block__collection.type-slider .w_collection_items::after,
.article section.article-container .w__block__collection.type-slider .w_collection_items::before {
    content: "";
    display: none;
}

.article section.article-container .w__block__collection.type-big-slider .w_collection_items a.card,
.article section.article-container .w__block__collection.type-slider .w_collection_items a.card {
    height: auto;
}

.article section.article-container .w__block__collection.type-big-slider .w_collection_items a.card .text,
.article section.article-container .w__block__collection.type-slider .w_collection_items a.card .text {
    position: relative;
    background: 0 0;
    color: #000;
    min-height: initial;
}

.article section.article-container .w__block__collection.type-big-slider .w_collection_items a.card .text .title,
.article section.article-container .w__block__collection.type-slider .w_collection_items a.card .text .title {
    margin: 10px 84px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.article section.article-container .w__block__collection.type-big-slider .w_collection_items a.card:hover,
.article section.article-container .w__block__collection.type-slider .w_collection_items a.card:hover {
    text-decoration: none;
}

.article .background {
    width: 100%;
}

.article .article-container {
    margin-bottom: 10px;
}

.article .article-container .row {
    margin: 0;
}

.article .w_content .w_row .w_block .text-block h2 {
    margin: 15px 0;
    font-size: 26px;
    line-height: 30px;
}

.article .w_content .w_row .w_block .text-block h3 {
    font-size: 18px;
    line-height: 23px;
}

.article .w_content .w_row .w_block .text-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.article .w_content .w_row .w_block .text-block ul li::before {
    content: "—";
    display: inline-block;
    margin-right: 5px;
    margin-left: -1em;
}

.article .w_content .w_row .w_block .text-block ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.article .w_content .w_row .w_block .text-block ol li {
    counter-increment: step-counter;
}

.article .w_content .w_row .w_block .text-block ol li::before {
    content: counter(step-counter);
    display: inline-block;
    margin-right: 5px;
    margin-left: -1em;
}

.article .w_content .w_content .row {
    margin: 0;
}

.article .w_content .w_content>.w_row {
    display: block;
}

.article .w_content .w_content>.w_row>.w_block.c-1 {
    width: 60px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-1 {
    margin-left: 96px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-2 {
    width: 144px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-2 {
    margin-left: 180px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-3 {
    width: 228px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-3 {
    margin-left: 264px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-4 {
    width: 312px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-4 {
    margin-left: 348px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-5 {
    width: 396px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-5 {
    margin-left: 432px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-6 {
    width: 480px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-6 {
    margin-left: 516px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-7 {
    width: 564px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-7 {
    margin-left: 600px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-8 {
    width: 648px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-8 {
    margin-left: 684px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-9 {
    width: 732px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-9 {
    margin-left: 768px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-10 {
    width: 816px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-10 {
    margin-left: 852px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-11 {
    width: 900px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-11 {
    margin-left: 936px !important;
}

.article .w_content .w_content>.w_row>.w_block.c-12 {
    width: 984px;
    margin: 0 12px;
}

.article .w_content .w_content>.w_row>.w_block.o-12 {
    margin-left: 1020px !important;
}

@media (max-width: 732px) {
    article.article .article-container:not(.article-wide) .w__block__promo_position {
        margin: 20px -20px;
    }

    article.article section.article-header .bg-image {
        height: auto;
        position: relative;
        margin-top: 0;
        background-image: none !important;
        background-color: transparent !important;
    }

    article.article section.article-header .bg-image .name {
        position: relative;
    }

    article.article section.article-header .bg-image .name .text {
        font-size: 28px;
        line-height: 33px;
        word-wrap: break-word;
        padding: 20px;
        background-color: transparent !important;
    }
}

@media (min-width: 1600px) {
    .article .article-wide .w_content .w_row .w_block.c-10 {
        width: 1152px;
    }
}

.article .article-wide.article-header .row {
    margin: 0;
}

.article .article-wide.article-header h2.title {
    margin-top: -5px;
    margin-bottom: 20px;
    padding: 0 20px 0 0;
    font-size: 38px;
    line-height: 40px;
    font-weight: 700;
}

.article .article-wide.article-container .w_content {
    width: 100%;
}

@media (max-width: 732px) {
    .article .article-wide.article-header h2.title {
        font-size: 28px;
        line-height: 33px;
        word-wrap: break-word;
    }

    .article .article-wide .promo {
        position: relative;
        padding: 0;
    }

    .article .article-wide.article-container .w_block,
    .article .article-wide.article-container div[class*=col-] {
        padding: 0 !important;
    }

    .article .article-wide.article-container .tag-container {
        padding: 0 20px;
    }

    .article .article-wide.article-container .promo {
        display: none;
    }

    .article .article-wide.article-container .text-block {
        padding: 0 20px;
    }
}

.article-wide .w__block__collection .itv-button {
    margin-left: 12px;
    margin-right: 12px;
}

@media (max-width: 732px) {
    .article-wide .w__block__collection .itv-button {
        margin: 0 auto !important;
    }
}

@media (min-width: 733px) and (max-width: 1599px) {
    .article-wide .w__block__collection .itv-button {
        max-width: calc(100% - 24px);
    }
}

article .text {
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
}

article .text p {
    margin: 0;
    padding: 5px 0;
    text-decoration: none;
}

article .text p:first-of-type {
    padding-top: 0;
}

article .text p:last-child {
    padding-bottom: 0;
}

article .text h2 {
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
    margin: 10px 0 15px;
    padding: 0;
}

article .text h3 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 20px;
    margin: 10px 0 10px 0;
    padding: 0;
}

article .text h4 {
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 17px;
    margin: 10px 0 5px;
    padding: 0;
}

article .text b {
    font-weight: 700;
}

article .text i {
    font-style: italic;
}

article .text ul {
    padding: 0;
    list-style: none;
}

article .text ul li::before {
    content: "— ";
    margin-left: -1em;
}

article .text ul li b::before {
    content: "— ";
    font-weight: 700;
    margin-left: -1.1em;
}

article .text ol {
    padding: 0;
    list-style: decimal inside;
    margin-left: -1em;
}

article .text hr {
    margin: 20px 0;
    padding: 0;
    border: 1px;
    border-style: solid;
}

article .text .big {
    font-size: 24px;
}

a,
button {
    cursor: pointer;
}

a:focus,
button:focus {
    outline: 0;
}

.button {
    text-decoration: none;
}

.itv-button {
    display: block;
    margin: 10px 0;
    padding: 8px 5px;
    min-height: 40px;
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: color .2s, background-color .2s, border-color .2s, fill .2s;
    transition: color .2s, background-color .2s, border-color .2s, fill .2s;
    background-color: transparent;
    color: #0757a8;
    border-width: 2px;
    border-style: solid;
    border-color: #0757a8;
}

.itv-button:focus {
    outline: 0;
}

.itv-button .itv-button__icon {
    fill: #0757a8;
}

.itv-button:hover {
    text-decoration: none;
    border-color: #348bcd;
    background-color: transparent;
    color: #348bcd;
}

.itv-button:hover .itv-button__icon {
    fill: #348bcd;
}

.itv-button:active {
    text-decoration: none;
    border-color: #01478d;
    background-color: transparent;
    color: #01478d;
}

.itv-button:active .itv-button__icon {
    fill: #01478d;
}

.itv-button--margin {
    margin-left: 12px;
    margin-right: 12px;
}

.itv-button--no-margin {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 732px) {
    .itv-button--no-margin {
        max-width: 312px;
        margin-left: auto;
        margin-right: auto;
    }
}

.itv-button--wide {
    width: 100%;
}

.itv-button__icon {
    width: 19px;
    height: 19px;
    margin-bottom: -3px;
    margin-right: 5px;
}

.itv-button--invert-colors,
.itv-invert-button-colors .itv-button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.itv-button--invert-colors .itv-button__icon,
.itv-invert-button-colors .itv-button .itv-button__icon {
    fill: #fff;
}

.itv-button--invert-colors:hover,
.itv-invert-button-colors .itv-button:hover {
    background-color: transparent;
    color: #c0c9d4;
    border: 1px solid #c0c9d4;
}

.itv-button--invert-colors:hover .itv-button__icon,
.itv-invert-button-colors .itv-button:hover .itv-button__icon {
    fill: c0c9d4;
}

.itv-button--invert-colors:active,
.itv-invert-button-colors .itv-button:active {
    text-decoration: none;
    border-color: #dae0e7;
    background-color: transparent;
    color: #dae0e7;
}

.itv-button--invert-colors:active .itv-button__icon,
.itv-invert-button-colors .itv-button:active .itv-button__icon {
    fill: #dae0e7;
}

span.icon {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    width: 22px;
    height: 22px;
    margin: 0 5px;
    margin-top: -5px;
}

.button {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 10px;
    width: 100%;
    min-height: 40px;
    line-height: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #05519d;
    text-decoration: none;
    text-align: center;
    border: 1px solid #05519d;
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.scroll-top {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-image: url(../images/scroll-top-bfa96e998419b47c0dd33b2d29c3e7c0969b37a5ba782cdfacf78448272b8878.svg);
    background-color: rgba(255, 255, 255, 0.8);
    background-size: cover;
    background-position: center center;
    border-radius: 50%;
    border: 2px solid #a2aeba;
    opacity: .8;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    z-index: 10;
}

.scroll-top:hover {
    background-color: #fff;
    opacity: 1;
}

.button {
    color: #fff;
    font-weight: 700;
    background-color: #05519d;
}

.button:hover {
    background-color: #348bcd;
}

.button:active {
    background-color: #01478d;
}

:not(.col-*) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

main {
    margin: 0 auto;
}

.content-width {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 320px) {
    .content-width {
        max-width: 984px;
    }
}

@media (min-width: 1600px) {
    .content-width-wide {
        max-width: 1360px;
    }
}

.container {
    width: 100%;
}

@media (min-width: 320px) {
    .container {
        width: 984px;
    }
}

@media (min-width: 1600px) {
    .container {
        width: 1320px;
    }
}

.row {
    display: block;
    margin: 0 -12px 0 -12px;
}

.row::before {
    content: " ";
    display: table;
    width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.row::after {
    content: " ";
    clear: both;
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.row>div[class^=col-md-] {
    float: left;
    max-width: 100%;
}

article[class*=col-],
div[class*=col-],
section[class*=' col-'] {
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

@media (min-width: 320px) {
    body>.container {
        width: 100%;
    }

    .itv-w-1 {
        width: 60px;
    }

    .itv-w-2 {
        width: 144px;
    }

    .itv-w-3 {
        width: 228px;
    }

    .itv-w-4 {
        width: 312px;
    }

    .itv-w-5 {
        width: 396px;
    }

    .itv-w-6 {
        width: 480px;
    }

    .itv-w-7 {
        width: 564px;
    }

    .itv-w-8 {
        width: 648px;
    }

    .itv-w-9 {
        width: 732px;
    }

    .itv-w-10 {
        width: 816px;
    }

    .itv-w-11 {
        width: 900px;
    }

    .itv-w-12 {
        width: 984px;
    }
}

.w_content .w_row {
    width: 984px;
    max-width: 100%;
}

@media (min-width: 1600px) {
    .w_content .w_row {
        width: auto;
    }
}

.w_content.big-slider {
    width: 100% !important;
}

.w_content>.w_block:first-child {
    margin-left: 0;
}

.w_content .w_block .text-block p {
    margin: 0 0 20px 0;
}

.w_content .w_block .text-block p a:not(.button, .itv-button, .text-face, .text-quote, .text-incut) {
    text-decoration: underline;
}

.w_content .w_block.c-1 {
    width: 60px;
    margin: 0 12px;
}

.w_content .w_block.c-2 {
    width: 144px;
    margin: 0 12px;
}

.w_content .w_block.c-3 {
    width: 228px;
    margin: 0 12px;
}

.w_content .w_block.c-4 {
    width: 312px;
    margin: 0 12px;
}

.w_content .w_block.c-5 {
    width: 396px;
    margin: 0 12px;
}

.w_content .w_block.c-6 {
    width: 480px;
    margin: 0 12px;
}

.w_content .w_block.c-7 {
    width: 564px;
    margin: 0 12px;
}

.w_content .w_block.c-8 {
    width: 648px;
    margin: 0 12px;
}

.w_content .w_block.c-9 {
    width: 732px;
    margin: 0 12px;
}

.w_content .w_block.c-10 {
    width: 816px;
    margin: 0 12px;
}

.w_content .w_block.c-11 {
    width: 900px;
    margin: 0 12px;
}

.w_content .w_block.c-12 {
    width: 984px;
    margin: 0 12px;
}

.w_content .w_block.o-1 {
    margin-left: 96px;
}

.w_content .w_block.o-2 {
    margin-left: 180px;
}

.w_content .w_block.o-3 {
    margin-left: 264px;
}

.w_content .w_block.o-4 {
    margin-left: 348px;
}

.w_content .w_block.o-5 {
    margin-left: 432px;
}

.w_content .w_block.o-6 {
    margin-left: 516px;
}

.w_content .w_block.o-7 {
    margin-left: 600px;
}

.w_content .w_block.o-8 {
    margin-left: 684px;
}

.w_content .w_block.o-9 {
    margin-left: 768px;
}

.w_content .w_block.o-10 {
    margin-left: 852px;
}

.w_content .w_block.o-11 {
    margin-left: 936px;
}

.w_content .w_block.o-12 {
    margin-left: 1020px;
}

.itv-flex-spacer {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.itv-container {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 733px) {
    .itv-container {
        width: 100%;
    }
}

@media (min-width: 1600px) {
    .itv-container {
        width: 1360px;
    }
}

.itv-content-width {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 733px) {
    .itv-content-width {
        width: 100%;
    }

    .itv-content-width--padded {
        padding-left: 20px;
        padding-right: 20px;
    }

    .itv-content-width--static {
        position: static;
    }
}

@media (min-width: 1600px) {
    .itv-content-width {
        width: 1360px;
    }
}

.itv-row {
    width: auto;
    margin: 0 20px;
}

@media (min-width: 733px) {
    .itv-row {
        margin: 0 8px;
    }
}

.itv-row::after {
    display: block;
    content: "";
    clear: both;
}

.itv-row--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.itv-row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.itv-row-flex--center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.itv-row-flex [class*=itv-col-] {
    float: none;
}

.widget-date {
    margin-top: 10px;
    height: 70px;
    color: #fff;
    background: url(../images/calendar-icon-dc52476017e4cd79daf27fc4d8137004adb37a18cc1ab3e7ed77d964fdfd3c39.png);
    background-size: cover;
    text-align: center;
    line-height: 17px;
}

.widget-date .date {
    font-size: 16px;
    padding-top: 12px;
    text-transform: capitalize;
}

.widget-date .time {
    font-size: 14px;
}

input::-ms-clear {
    display: none;
}

article.search header.search-bar {
    background-color: #1b354a;
    position: relative;
    padding: 20px 20px 0 20px;
}

.search.project .searchbar,
article.search .searchbar {
    position: relative;
    top: 0;
    height: auto;
    min-height: 40px;
}

.search.project .searchbar {
    padding: 20px;
}

@media (min-width: 733px) {
    .search.project .searchbar {
        padding: 20px 0;
    }
}

@media (max-width: 732px) {
    .searchbar {
        padding: 0;
    }

    a.button.scroll-top {
        display: none !important;
    }

    ul.ui-autocomplete {
        left: 0 !important;
        right: 0;
        width: 100% !important;
        padding: 0 20px;
        background-color: transparent;
        border: none;
    }

    ul.ui-autocomplete li,
    ul.ui-autocomplete:first-child {
        background-color: #fff;
        border-left: 1px solid #aebfcc;
        border-right: 1px solid #aebfcc;
    }

    .searchbar .search input {
        font-size: 18px;
    }

    article.search header.search-bar {
        padding: 20px;
    }
}

ul.ui-autocomplete {
    position: absolute;
    padding: 0;
    max-width: 984px;
    z-index: 10;
    font-size: 16px;
    line-height: 40px;
    background-color: #fff;
    list-style: none;
    border: 1px solid #aebfcc;
    color: #000;
}

@media (max-width: 732px) {
    ul.ui-autocomplete {
        margin: auto;
        max-width: calc(100vw - 40px);
    }
}

@media (min-width: 733px) {
    ul.ui-autocomplete {
        margin-left: auto;
        margin-right: auto;
        margin-top: 5px;
        left: 0 !important;
        right: 0 !important;
        width: 984px !important;
    }
}

@media (min-width: 1600px) {
    ul.ui-autocomplete {
        max-width: 1320px !important;
        width: 1320px !important;
    }
}

ul.ui-autocomplete li.ui-menu-item {
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #aebfcc;
    cursor: pointer;
}

ul.ui-autocomplete li.ui-menu-item:first-child {
    border: none;
}

ul.ui-autocomplete li.ui-menu-item:hover {
    color: #fff;
    background-color: #58a6dd;
}

ul.ui-autocomplete li.ui-menu-item:active {
    color: #fff;
    background-color: #05519d;
}

ul.ui-autocomplete li.ui-menu-item--date::before {
    display: inline-block;
    content: url(../images/calendar-lightblue-f05d27a2d4f78a92ae8f65243cdcec53ed633cf50910ee4a2bc174ffac0d682a.svg);
    margin-right: 10px;
    width: 20px;
    height: 36px;
    vertical-align: middle;
}

.content-width a.message {
    display: block;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
}

.content-width a.message .message {
    width: 80%;
    font-size: 30px;
    color: #05519d;
    margin: 0 auto;
}

.card__label {
    width: calc(100%);
    height: 30px;
    line-height: 30px;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    font-family: 'Roboto Condensed', sans-serif;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.itv-schedule {
    margin-top: 20px;
    overflow: hidden;
}

.itv-schedule-button {
    min-width: 228px;
}

@media (max-width: 732px) {
    .itv-schedule-button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.itv-schedule .itv-date__text {
    margin-top: 0;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
    color: #05519d;
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
}

.itv-schedule>.container {
    margin-top: 25px;
}

.itv-schedule .date {
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.itv-schedule .date .arrow-left {
    display: inline-block;
    height: 70px;
    vertical-align: bottom;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: none;
    background: url(../images/schedule-arrow-left-7fd87c4c3000279438b6787d948b108bc37ba8fb21dd671f175cb0df47473ae7.svg) no-repeat center center;
}

.itv-schedule .date .text {
    overflow: hidden;
    display: inline-block;
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    float: none;
    vertical-align: middle;
    color: #05519d;
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
}

.itv-schedule .schedule_button {
    position: relative;
    margin: 10px auto;
    font-size: 18px;
    letter-spacing: .1px;
    height: auto;
}

@media (max-width: 732px) {
    .itv-schedule .schedule_button {
        max-width: calc(100% - 40px);
        margin: 10px 20px;
    }
}

@media (max-width: 732px) {
    .itv-schedule .date .arrow-left {
        width: 50px;
        margin: auto;
    }

    .itv-schedule .date .text {
        width: calc(100% - 124px);
        margin: 0;
        padding-left: 10px;
        font-size: 18px;
        line-height: 20px;
        vertical-align: top;
    }
}

.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 15px auto 0 auto;
    max-height: 100px;
    -webkit-transition: max-height .2s linear, margin .2s linear;
    transition: max-height .2s linear, margin .2s linear;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    overflow: hidden;
}

.rating__icon {
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.rating__text {
    text-align: center;
}

@media (min-width: 733px) {
    .itv-card-rating {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .itv-card-rating .rating {
        z-index: 2;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        -webkit-transition: all .2s;
        transition: all .2s;
        -webkit-transition-delay: .15s !important;
        transition-delay: .15s !important;
    }
}

.w_content {
    max-width: 100%;
}

@media (min-width: 733px) {
    .w_content .w_row .w_block.c-12 {
        display: block;
        width: 100%;
        max-width: 984px;
        margin: 0 auto;
    }
}

@media (min-width: 733px) and (min-width: 1600px) {
    .w_content .w_row .w_block.c-12 {
        max-width: 960px;
    }
}

article.show-main .w_row.big-slider .w_block {
    margin: 0 auto;
    width: 100%;
}

article.show-main .w_row.big-slider .w_block .w__block__collection {
    width: 100%;
    margin: 0;
}

article.show-main .w_row.big-slider .w_block .w__block__collection .w_collection_items {
    max-width: 984px;
    margin: 0 auto 20px;
}

article.show-main .w_content {
    width: auto;
    margin: 0 auto;
}

@media (min-width: 1600px) {
    article.show-main .w_content {
        width: auto;
    }
}

article.show-main .w_content:first-child::before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
}

@media (min-width: 733px) {
    article.show-main .w_content .w_row {
        margin: 0 auto;
    }
}

article.show-main>.background {
    position: relative;
}

article.show-main>.background .w_content .project_title {
    position: relative;
    z-index: 2;
}

article.show-main>.background .w_content .bg-mask-wrapper {
    opacity: .3;
}

article.show-main>.background .w_content .bg-mask-wrapper::after {
    -webkit-box-shadow: 0 0 60px 120px;
    box-shadow: 0 0 60px 120px;
}

article.show-main>.background .w_row:not(:first-child) {
    position: relative;
}

article.show-main hr.fat {
    margin-top: -10px;
}

article.show-main section.bg {
    min-height: 500px;
    position: relative;
}

article.show-main section.bg .content {
    position: relative;
}

article.show-main .project-image {
    max-width: 816px;
    height: auto;
    margin: 50px auto;
    position: relative;
    background-size: contain;
    z-index: 2;
    padding: 0;
}

article.show-main .project-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

article.show-main section.image {
    margin-bottom: 20px;
    padding: 0;
}

article.show-main section.image img {
    display: block;
    margin: 0 auto;
}

section.collection-1 {
    margin-top: 13px;
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
}

section.collection-1 div.card {
    padding: 0;
}

section.collection-1 .collection_items {
    -webkit-transition: max-height 1s;
    transition: max-height 1s;
    overflow: hidden;
}

@media (max-width: 732px) {

    .type-mosaic .collection_items .card.card.promo,
    .type-mosaic .w_collection_items .card.card.promo {
        width: 100%;
        height: auto;
        padding: 0 10px;
    }
}

@media (min-width: 733px) {

    .type-mosaic .collection_items .card.card.promo,
    .type-mosaic .w_collection_items .card.card.promo {
        height: auto;
        margin: 12px;
        margin-top: 5px;
    }
}

.w__block__collection.type-slider .w_collection_items div.card:only-child {
    display: block;
}

.w__block__collection.type-slider .w_collection_items div.card:only-child .card {
    display: block;
    margin: 0 auto;
}

.w_collection_title {
    display: block;
    position: relative;
    padding: 0 40px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 400;
}

.w_collection_title:empty {
    margin-top: 20px;
}

.w__block__collection,
div[class*=collection-] {
    overflow: hidden;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.w__block__collection .collection-name,
.w__block__collection .w_collection_title,
div[class*=collection-] .collection-name,
div[class*=collection-] .w_collection_title {
    display: block;
    position: relative;
    padding: 0 20px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.w__block__collection .collection-name:empty,
.w__block__collection .w_collection_title:empty,
div[class*=collection-] .collection-name:empty,
div[class*=collection-] .w_collection_title:empty {
    margin-top: 0;
    margin-bottom: 15px;
}

@media (max-width: 1599px) {

    .w__block__collection .collection-name:empty,
    .w__block__collection .w_collection_title:empty,
    div[class*=collection-] .collection-name:empty,
    div[class*=collection-] .w_collection_title:empty {
        margin-bottom: 8px;
    }
}

@media (max-width: 732px) {

    .type-mosaic .w__block__collection .w_collection_items,
    .type-mosaic div[class*=collection-] .w_collection_items {
        margin: 0;
    }
}

@media (min-width: 733px) {

    .w__block__collection .w_collection_items,
    div[class*=collection-] .w_collection_items {
        overflow: hidden;
    }
}

.w__block__collection .card,
div[class*=collection-] .card {
    position: relative;
    display: inline-block;
    vertical-align: top;
    word-break: normal;
    overflow: hidden;
    border: none;
}

.w__block__collection .card .text,
div[class*=collection-] .card .text {
    overflow: hidden;
}

.w__block__collection .card img,
div[class*=collection-] .card img {
    display: block;
    position: relative;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.w__block__collection.type-big-slider,
div[class*=collection-].type-big-slider {
    width: 984px;
    overflow: hidden;
    max-width: 100%;
}

.w__block__collection.type-big-slider a.card,
div[class*=collection-].type-big-slider a.card {
    width: 984px;
    max-width: 100%;
    max-height: 750px;
    text-decoration: none;
    outline: 0;
}

.w__block__collection.type-big-slider a.card:only-child,
div[class*=collection-].type-big-slider a.card:only-child {
    display: block;
    margin: 0 auto;
}

.w__block__collection.type-big-slider a.card img,
div[class*=collection-].type-big-slider a.card img {
    width: 100%;
    height: auto;
}

.w__block__collection.type-big-slider a.card .text,
div[class*=collection-].type-big-slider a.card .text {
    padding: 0 5px;
}

.w__block__collection.type-big-slider a.card .text .subtitle,
.w__block__collection.type-big-slider a.card .text .title,
div[class*=collection-].type-big-slider a.card .text .subtitle,
div[class*=collection-].type-big-slider a.card .text .title {
    display: none;
}

.w__block__collection.type-row .w_collection_items,
div[class*=collection-].type-row .w_collection_items {
    height: 300px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.w__block__collection.type-row .w_collection_items div.card,
div[class*=collection-].type-row .w_collection_items div.card {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.w__block__collection.type-row .w_collection_items a.card,
div[class*=collection-].type-row .w_collection_items a.card {
    display: inline-block;
    width: 312px;
    height: 300px;
    background-color: transparent;
    color: inherit;
    margin: 0 12px;
    text-decoration: none;
    cursor: pointer;
}

.w__block__collection.type-row .w_collection_items a.card:nth-child(n+4),
div[class*=collection-].type-row .w_collection_items a.card:nth-child(n+4) {
    display: none;
}

.w__block__collection.type-row .w_collection_items a.card img,
div[class*=collection-].type-row .w_collection_items a.card img {
    -webkit-transition: all .7s;
    transition: all .7s;
}

.w__block__collection.type-row .w_collection_items a.card .img-wrapper,
div[class*=collection-].type-row .w_collection_items a.card .img-wrapper {
    overflow: hidden;
    border: 4px solid;
}

.w__block__collection.type-row .w_collection_items a.card .text,
div[class*=collection-].type-row .w_collection_items a.card .text {
    padding: 5px 10px 0 10px;
    height: 105px;
    overflow: hidden;
}

.w__block__collection.type-row .w_collection_items a.card .text::after,
div[class*=collection-].type-row .w_collection_items a.card .text::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    color: #fff;
    -webkit-box-shadow: 0 0 15px 20px;
    box-shadow: 0 0 15px 20px;
}

.w__block__collection.type-row .w_collection_items a.card .text .show-name,
.w__block__collection.type-row .w_collection_items a.card .text .title,
div[class*=collection-].type-row .w_collection_items a.card .text .show-name,
div[class*=collection-].type-row .w_collection_items a.card .text .title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: inherit;
}

.w__block__collection.type-row .w_collection_items a.card .text .date,
.w__block__collection.type-row .w_collection_items a.card .text .subtitle,
div[class*=collection-].type-row .w_collection_items a.card .text .date,
div[class*=collection-].type-row .w_collection_items a.card .text .subtitle {
    display: none;
}

.w__block__collection.type-row .w_collection_items a.card:hover .text,
div[class*=collection-].type-row .w_collection_items a.card:hover .text {
    text-decoration: underline;
}

.w__block__collection.type-slider .w_collection_items,
div[class*=collection-].type-slider .w_collection_items {
    width: auto;
    overflow: hidden;
    position: relative;
}

.w__block__collection.type-slider .w_collection_items:not(.slick-initialized) div.card:not(:first-child),
div[class*=collection-].type-slider .w_collection_items:not(.slick-initialized) div.card:not(:first-child) {
    display: none;
}

@media (min-width: 733px) {

    .w__block__collection.type-slider .w_collection_items::before,
    div[class*=collection-].type-slider .w_collection_items::before {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 300px;
        -webkit-box-shadow: -60px 0 54px 172px;
        box-shadow: -60px 0 54px 172px;
        z-index: 3;
        left: -5px;
        top: 60px;
    }

    .w__block__collection.type-slider .w_collection_items::after,
    div[class*=collection-].type-slider .w_collection_items::after {
        content: "";
        display: block;
        position: absolute;
        width: 0;
        height: 300px;
        -webkit-box-shadow: 60px 0 54px 172px;
        box-shadow: 60px 0 54px 172px;
        z-index: 3;
        right: -5px;
        top: 60px;
    }
}

.w__block__collection.type-slider .w_collection_items div.card,
div[class*=collection-].type-slider .w_collection_items div.card {
    margin: 0 12px;
}

.w__block__collection.type-slider .w_collection_items a.card,
div[class*=collection-].type-slider .w_collection_items a.card {
    display: none;
    position: relative;
    margin: 0;
    border: 4px solid;
    width: 648px;
    height: 368px;
    overflow: hidden;
    outline: 0;
}

@media (max-width: 732px) {

    .w__block__collection.type-slider .w_collection_items a.card,
    div[class*=collection-].type-slider .w_collection_items a.card {
        height: auto;
    }
}

.w__block__collection.type-slider .w_collection_items a.card .img-wrapper,
div[class*=collection-].type-slider .w_collection_items a.card .img-wrapper {
    height: 100%;
}

.w__block__collection.type-slider .w_collection_items a.card:only-child,
div[class*=collection-].type-slider .w_collection_items a.card:only-child {
    display: block;
    margin: 0 auto;
}

.w__block__collection.type-slider .w_collection_items a.card img,
div[class*=collection-].type-slider .w_collection_items a.card img {
    width: 100%;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

.w__block__collection.type-slider .w_collection_items a.card .text,
div[class*=collection-].type-slider .w_collection_items a.card .text {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 640px;
    min-height: 120px;
    max-height: 145px;
    overflow: hidden;
    background-image: url(../images/collection-2-shadow-18388d8d9aa65a2a4fe89a5be394cdf6e4bca561c7dffc964a636fec7fbabec4.png);
    background-size: 100% 100%;
    color: #fff;
}

.w__block__collection.type-slider .w_collection_items a.card .text::after,
div[class*=collection-].type-slider .w_collection_items a.card .text::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    -webkit-box-shadow: 0 0 15px 15px #000;
    box-shadow: 0 0 15px 15px #000;
}

.w__block__collection.type-slider .w_collection_items a.card .text .date,
div[class*=collection-].type-slider .w_collection_items a.card .text .date {
    display: none;
}

.w__block__collection.type-slider .w_collection_items a.card .text .show-name,
.w__block__collection.type-slider .w_collection_items a.card .text .title,
div[class*=collection-].type-slider .w_collection_items a.card .text .show-name,
div[class*=collection-].type-slider .w_collection_items a.card .text .title {
    position: absolute;
    bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    width: unset;
    max-width: unset;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .25px;
    line-height: 25px;
}

.w__block__collection.type-slider .w_collection_items a.card .text .subtitle,
div[class*=collection-].type-slider .w_collection_items a.card .text .subtitle {
    margin-top: 10px;
    padding: 0;
    color: #96a0a8;
}

.w_block .text_block {
    margin-left: 84px;
    float: left;
}

.w_block .text_block::after {
    content: "";
    display: block;
    clear: both;
}

.show-main .w_block {
    width: 984px;
}

.w_content {
    position: relative;
}

.w__block__collection.type-row .w_collection_items {
    text-align: center;
}

.w__block__collection.type-row .w_collection_items .text {
    text-align: left;
}

.w__block__collection.type-row .w_collection_items .img-wrapper {
    background-color: #000;
    overflow: hidden;
    max-width: 312px;
    width: 304px;
    height: 171px;
}

.w__block__collection.type-row .w_collection_items .img-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 110%;
    -webkit-transition: all .7s;
    transition: all .7s;
}

.w__block__collection.type-row .w_collection_items .img-wrapper img[src=''] {
    opacity: 0;
}

.w__block__collection.type-row .card:hover .img-wrapper img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

div.card .length .svg.icon {
    display: none;
}

article.show-main .w_block .text-block a:not(.button, .text-face) {
    text-decoration: underline;
    font-weight: 700;
}

article.show-main .w__block__collection.type-row .w_collection_items:nth-child(n+4) {
    display: none;
}

.article .w__block__collection.type-row .w_collection_items:nth-child(n+3) {
    display: none;
}

@media (max-width: 732px) {
    .w_block .itv-button {
        max-width: 312px;
        margin-left: auto;
        margin-right: auto;
    }
}

.w_block div:not(ul.slick-dots) a.button,
.w_block div:not(ul.slick-dots) button {
    word-break: normal;
    min-height: 40px;
    padding: 8px;
}

.w_block p {
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0;
    margin: 0 0 20px;
}

.w_block p::after {
    content: "";
    display: block;
    clear: both;
}

.w_block h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    font-style: normal;
    line-height: 30px;
    margin: 15px 0;
    padding: 0;
    color: #05519d;
}

.w_block p+h2 {
    margin-top: 72px;
}

.w_block h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 20px;
    margin: 10px 0 10px;
    padding: 0;
}

.w_block a.button {
    margin: 5px 0 10px 0;
}

.w_block hr {
    margin: 20px 0;
    padding: 0;
    border: 0 0 1px;
    border-color: #1f7bc2;
    border-style: solid;
}

.show-main .w_row .text-block {
    color: inherit;
}

.w_row .text-block {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #000;
}

.w_row .text-block a.button {
    border: none !important;
}

.w_row .text-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.w_row .text-block ul li::before {
    content: "—";
    display: inline-block;
    margin-right: 5px;
    min-width: 13px;
}

@media (min-width: 733px) {
    .w_row .text-block ul li::before {
        margin-left: -1.1em;
    }
}

.w_row .text-block ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.w_row .text-block ol li {
    counter-increment: step-counter;
}

.w_row .text-block ol li::before {
    content: counter(step-counter);
    display: inline-block;
    margin-right: 5px;
    min-width: 13px;
}

@media (min-width: 733px) {
    .w_row .text-block ol li::before {
        margin-left: -1.1em;
    }
}

.w_block {
    display: inline-block;
    vertical-align: top;
}

.w_content .w_row .w_block.c-4:first-of-type {
    margin-left: 0;
}

.w_content .w_row .w_block.c-4:last-of-type {
    margin-right: 0;
}

.w__block__collection .splash_wrapper {
    position: relative;
}

.w__block__collection .splash_wrapper::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 104px;
    height: 100px;
    margin: auto;
    background-image: url(../images/play-big-e7c713d590a2769da812c912625fe832cf60d4d66f31fc702de2c0bf4f136465.png);
    background-size: 100px;
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 2;
}

@media (max-height: 605px) {

    .w__block__collection.w__block__collection.type-big-slider .w_collection_items,
    .w__block__collection.w__block__collection.type-big-slider .w_collection_items a.card {
        max-width: 819px !important;
    }
}

@media (max-width: 732px) {
    header#page-title .title .message {
        margin-top: 0;
    }

    .navbar.live .navbar-links ul.nav-left {
        padding-top: 40px;
    }

    .w_row>.w_block {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .show-main .text-block {
        padding: 0 20px;
    }

    .project-image,
    .project-image img {
        max-width: 100% !important;
    }

    .type-mosaic .w_collection_items,
    .type-row .w_collection_items {
        margin: 0 !important;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .type-mosaic .w_collection_items .card,
    .type-row .w_collection_items .card {
        height: auto !important;
    }

    .type-mosaic .w_collection_items .card .text,
    .type-row .w_collection_items .card .text {
        position: relative !important;
        height: auto !important;
        padding-bottom: 0 !important;
        top: 0 !important;
        max-width: 100%;
    }

    .type-mosaic .w_collection_items .card .text::after,
    .type-row .w_collection_items .card .text::after {
        display: none !important;
    }

    .type-mosaic .w_collection_items .card a.card,
    .type-row .w_collection_items .card a.card {
        height: auto !important;
        margin-bottom: 0 !important;
    }

    .type-row .w_collection_items .card {
        margin: 12px 4px !important;
    }

    article.show-main {
        overflow: hidden;
        width: 100%;
    }

    article.show-main .w_content .w_row {
        max-width: 100%;
        padding: 0;
    }

    article.show-main .w_content .w_row .w_block {
        display: block;
        margin: 0 auto !important;
        overflow: visible;
    }

    article.show-main .w_content .w_row.big-slider {
        padding: 0;
    }

    article.show-main .w_block {
        max-width: 100%;
    }

    article.show-main .w_collection_items {
        max-width: 100% !important;
    }

    article.show-main .w_collection_items a.card {
        max-width: 100% !important;
    }

    article.show-main .type-row .w_collection_items {
        height: auto;
    }

    article.show-main .type-row .card {
        height: auto !important;
    }

    article.show-main .type-row .card .img-wrapper {
        position: relative;
        border: none !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        max-height: 500px;
    }

    article.show-main .type-row .card .img-wrapper::before {
        content: "";
        display: block;
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }

    article.show-main .type-row .card .img-wrapper img {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        max-height: 500px;
        margin: auto;
    }

    article.show-main .type-row .card .text::after {
        display: none !important;
    }

    article.show-main .w__block__collection.w__block__collection.type-big-slider .w_collection_items,
    article.show-main .w__block__collection.w__block__collection.type-big-slider .w_collection_items a.card {
        max-width: 100% !important;
    }

    article.show-main .w__block__collection.w__block__collection.type-big-slider .w_collection_items a.card,
    article.show-main .w__block__collection.w__block__collection.type-big-slider .w_collection_items a.card a.card {
        max-width: 100% !important;
    }

    article.show-main .w__block__collection.w__block__collection.type-big-slider .w_collection_items a.card .text,
    article.show-main .w__block__collection.w__block__collection.type-big-slider .w_collection_items a.card a.card .text {
        margin-bottom: 0;
        height: auto;
    }

    article.show-main .w__block__collection a.button {
        display: block !important;
        width: 312px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    article.show-main .w__block__collection.type-slider .w_collection_items {
        margin: 0;
    }

    article.show-main .w__block__collection.type-slider a.card .text {
        left: 0;
        right: 0;
        padding: 0 10px;
    }

    article.show-main .w__block__collection.type-slider a.card .text .show-name,
    article.show-main .w__block__collection.type-slider a.card .text .title {
        position: absolute;
        bottom: 0;
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 15px;
        z-index: 2;
    }

    article.show-main .w__block__promo_position .promo-place {
        display: block;
    }

    article.show-main .w__block__promo_position .promo-place::before {
        content: "";
        display: block;
        width: 100%;
        padding-top: 60%;
    }

    article.show-main .w__block__promo_position .promo-place:not(.slick-initialized)::before {
        padding-top: 49%;
    }

    article.show-main .w__block__promo_position .promo-place a.card[style],
    article.show-main .w__block__promo_position .promo-place div.card[style] {
        background-size: contain;
        min-height: 100% !important;
        height: 80% !important;
        width: 100vw;
    }

    article.show-main .w__block__promo_position .promo-place a.card[style]:only-child,
    article.show-main .w__block__promo_position .promo-place div.card[style]:only-child {
        position: absolute;
        width: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    article.show-main .w__block__promo_position .promo-place>img {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        max-width: 100%;
        max-height: 100%;
    }

    article.show-main a.button {
        width: 312px;
        max-width: 100%;
        height: auto;
        line-height: 25px;
        padding: 5px;
        margin: 0 auto;
    }

    .type-big-slider .card,
    .type-slider .card {
        display: none;
    }
}

.w_content>.w_row>.w_block>.w__block__promo_position {
    margin-top: 20px;
}

.w__block__promo_position {
    margin: 20px 0;
}

hr.fat.themed {
    position: relative;
    z-index: 3;
}

@-webkit-keyframes collection_load {
    0% {
        max-height: 0;
    }

    99% {
        max-height: 100vh;
    }

    100% {
        max-height: none;
    }
}

@keyframes collection_load {
    0% {
        max-height: 0;
    }

    99% {
        max-height: 100vh;
    }

    100% {
        max-height: none;
    }
}

.project_title {
    margin: 20px 12px;
    overflow: hidden;
    text-align: center;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 1600px) {
    .show-main .w_row .w_block {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 732px) {
    .show-main .w_content .w_row {
        width: 1360px;
    }
}

.bg-mask-wrapper {
    display: block;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 440px;
    background-size: 1360px 440px;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (min-width: 733px) {
    .bg-mask-wrapper {
        max-width: 1024px;
    }
}

@media (min-width: 1600px) {
    .bg-mask-wrapper {
        max-width: 1360px;
    }
}

.bg-mask-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 0 100px 100px;
    box-shadow: 0 0 100px 100px;
}

.popup {
    opacity: 0;
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    bottom: 0;
    left: -20px;
    height: auto;
    overflow-y: scroll;
    overflow-x: hidden;
}

@media (max-width: 732px) {
    .popup {
        left: 0;
    }

    .popup .content {
        padding-left: 0 !important;
        width: 100%;
    }

    .popup .background .close-wrapper .close-button {
        right: 20px;
    }
}

.popup .background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: center center;
}

.popup .close-wrapper {
    margin: 0 auto;
    position: relative;
    max-width: 1024px;
}

@media (min-width: 1600px) {
    .popup .close-wrapper {
        max-width: 1360px;
    }
}

@media (max-width: 732px) {
    .popup .close-wrapper {
        width: 100%;
    }
}

.popup .content_container {
    display: inline-block;
    position: relative;
    max-width: 100%;
}

.popup .close-button {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 30px;
    height: 30px;
    right: 0;
    top: 70px;
    background: url(../images/close-08b63a1fd5e72d487d7e8728d54f87f02e07d1bb5ec6fdb2aab91c6c03ee9094.svg) no-repeat center center;
    z-index: 101;
    opacity: .7;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

@media (max-width: 732px) {
    .popup .close-button {
        top: 20px;
    }
}

.popup .close-button:hover {
    opacity: 1;
}

.popup .close-button:hover::before {
    content: "Закрыть";
    display: inline-block;
    color: #fff;
    margin-left: -100px;
    vertical-align: middle;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 700;
}

.popup .content {
    position: relative;
    display: inline-block;
    text-align: left;
    z-index: 10;
    margin: 110px auto 20px;
    padding-left: 20px;
    max-width: 1024px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    background-color: transparent;
    font-size: 20px;
}

@media (max-width: 732px) {
    .popup .content {
        margin-top: 60px;
    }
}

@media (min-width: 1600px) {
    .popup .content {
        max-width: 1360px;
    }
}

.popup .content:empty {
    width: 100vw;
}

.itv-push-suggest {
    position: relative;
    width: 100%;
    background-color: #0757a8;
    color: #fff;
    overflow: hidden;
    -webkit-transition: max-height .3s;
    transition: max-height .3s;
    max-height: 500px;
}

.itv-push-suggest--hidden {
    max-height: 0;
}

.itv-push-suggest__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 20px 0;
}

.itv-push-suggest__icon {
    display: block;
    content: "";
    width: 40px;
    height: 25px;
    margin-right: 7px;
    fill: #fff;
}

.itv-push-suggest__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2px 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.itv-push-suggest__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px;
}

.itv-push-suggest__buttons .itv-button {
    min-width: 100px;
    min-height: 28px;
    height: 24px;
    margin: 0 0 0 20px;
    padding: 0;
    border-width: 2px;
    font-size: 14px;
    font-weight: 700;
}

.itv-push-suggest__buttons .itv-button:active,
.itv-push-suggest__buttons .itv-button:hover {
    border-width: 2px;
    background-color: #fff;
    border-color: #fff;
    color: #0757a8;
}

.footer {
    padding: 15px;
    text-align: center;
}

.footer .collection-head {
    margin: 25px auto;
    padding: 0 20px;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #05519d;
    font-weight: 400;
    word-wrap: break-word;
}

.footer .links {
    margin-top: 35px;
}

.footer .links>div {
    margin: 0 auto;
}

.footer .links .logo {
    width: 50px;
    height: 50px;
    background-image: url(../images/logo-ac67852f1625b338f9d1fb96be089d03557d50bfc5790d5f48dc56799f59dec6.svg);
    background-repeat: no-repeat;
}

.footer .links .channel-name {
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #05519d;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer .links .footer-menu {
    margin-top: 20px;
    max-width: 600px;
}

.footer .links .footer-menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

.footer .links .footer-menu ul li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
}

.footer .links .footer-menu ul li a {
    color: #1b354a;
    text-decoration: none;
}

.footer .links .footer-menu ul li a:hover {
    text-decoration: underline;
}

.social-buttons-compact {
    display: inline-block;
    vertical-align: top;
    margin-left: 30px;
}

.social-buttons-compact>a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    background-color: transparent;
    border-radius: 2px;
}

.social-buttons-compact>a:hover {
    background-color: #5296db;
}

.social-buttons-compact>a:active {
    background-color: #05519d;
}

.social-buttons-compact>a:last-child {
    margin-right: 0;
}

.social-buttons-compact>a>span {
    display: inline-block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.social-buttons-compact>a .fb {
    background-image: url(../images/fb-blue-eeda0347dc65f89ce6126cc80de6313ef7991b515efaaa5b264b47d0c19eb5da.svg);
}

.social-buttons-compact>a .fb:hover {
    background-image: url(../images/fb-white-21ec58989c667129fe85d5dfcbef4136d3d98ec4b570551914ad15f8f69d8501.svg);
}

.social-buttons-compact>a .vk {
    background-image: url(../images/vk-blue-3625575f914d0ea3464222b1e382674e4b6186635c28f598a83002491196b66b.svg);
}

.social-buttons-compact>a .vk:hover {
    background-image: url(../images/vk-white-918ec8259d0f4607115d6e94dbe4b0711a3a6315a51c4d238a732bdabf365f00.svg);
}

.social-buttons-compact>a .twitter {
    background-image: url(../images/tw-blue-38674d48d3aa0e2791f77ecad5a7895dc813f3ccd5d84d7ed5b0454ea1fdd76c.svg);
}

.social-buttons-compact>a .twitter:hover {
    background-image: url(../images/tw-white-c401b2cff22574ef4164b1e266e4d54a3d3383d238a29ed5b8d62b15955cb501.svg);
}

.social-buttons-compact>a .ok {
    background-image: url(../images/ok-blue-88c90a73a6d3e166735a5e20c2248636e872c02ff6b2d721d2d1cc1af8b98d57.svg);
}

.social-buttons-compact>a .ok:hover {
    background-image: url(../images/ok-white-6c99d65804abc73474f72c4e073ddbbc538595ac476f7d6b0f56a2188a9b28e7.svg);
}

.social-buttons-compact>a .insta {
    background-image: url(../images/insta-blue-688f8717f2c9a442fca0b0d9b5838aa1c9d69b56b911f3c678df2027f22c1fd2.svg);
}

.social-buttons-compact>a .insta:hover {
    background-image: url(../images/insta-white-782828312862382a166e38a00be766fa5a0159d620ae0ca645b40e2e432c0ba8.svg);
}

.popup[data-block=embed_modal] {
    opacity: 0;
    z-index: 150;
}

@media (min-width: 733px) {
    .popup[data-block=embed_modal] .background {
        min-width: 1044px;
    }
}

@media all and (max-width: 1023px) {
    .popup[data-block=embed_modal] {
        overflow-x: scroll;
    }
}

@media all and (max-width: 1023px) and (max-width: 732px) {
    .popup[data-block=embed_modal] {
        overflow-x: hidden;
    }
}

.popup[data-block=embed_modal] .content {
    margin-top: 60px;
}

.popup[data-block=embed_modal] .close-button {
    top: 20px;
}

.popup[data-block=embed_modal] .itv-push-suggest__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 30px;
}

@media (max-width: 732px) {
    .popup[data-block=embed_modal] .itv-push-suggest__buttons {
        margin-right: 0;
    }

    .popup[data-block=embed_modal] .itv-push-suggest__buttons .itv-button {
        margin-left: 45px;
    }

    .popup[data-block=embed_modal] .itv-push-suggest__buttons .itv-button:first-of-type {
        margin-left: 0;
    }
}

.popup[data-block=embed_modal] .itv-push-suggest__buttons .itv-button {
    margin-top: 10px;
}

.navbar.live .navbar-header a .logo {
    width: 40px;
    height: 40px;
    background-image: url(../images/logo-small-1524c8905fd7475f91175fc2e9f4433de3a70cee8daf45828cd7e2b92f8f673a.png);
}

.navbar.live .navbar-info {
    display: none;
}

.navbar.live .navbar-links ul.nav-left {
    margin-left: 25px;
    padding-left: 5px;
    margin-top: 4px;
}

.navbar.live .navbar-links ul.nav-left li {
    vertical-align: middle;
}

.navbar.live .navbar-links ul.nav-left li.search {
    margin-right: 50px;
}

.navbar.live .navbar-links ul.nav-left li.social {
    height: 30px;
}

.navbar.live .social-buttons-compact {
    height: 30px;
    float: right;
    margin: 0;
}

.navbar.live .social-buttons-compact a {
    width: 30px;
    height: 30px;
    display: inline-block;
}

article.live {
    position: relative;
    overflow: auto;
}

article.live .buttons {
    position: relative;
    max-width: 984px;
    padding: 0;
    margin: 0 auto;
    height: 45px;
}

@media (max-width: 732px) {
    article.live .buttons {
        height: auto;
    }
}

article.live .buttons section {
    display: inline-block;
}

article.live .live-orbit-time-message {
    margin-top: 20px;
    text-align: center;
    color: #0757a8;
}

@media (max-width: 983px) {
    article.live .live-orbit-time-message {
        margin-bottom: 20px;
    }
}

@media (max-width: 732px) {
    main {
        overflow: hidden;
    }
}

[data-block=hbbtv_icon_tooltip] {
    position: relative;
}

[data-block=hbbtv_icon_tooltip]:hover {
    opacity: 1;
}

.position-info {
    text-align: center;
    margin: 15px 25px;
}

@media (orientation: landscape) {
    [data-role*=player_wrapper] {
        height: auto !important;
    }
}

.footer-promo-place,
.header-promo-place,
.middle-promo-place {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 10px 0;
    overflow: hidden;
}

@media (max-width: 732px) {

    .footer-promo-place,
    .header-promo-place,
    .middle-promo-place {
        display: none;
    }
}

.footer-promo-place .promo-place,
.header-promo-place .promo-place,
.middle-promo-place .promo-place {
    text-align: center;
}

.footer-promo-place .promo-place .position,
.header-promo-place .promo-place .position,
.middle-promo-place .promo-place .position {
    display: inline-block;
    margin: 0 auto;
}

.header-promo-place [id^=adfox_] [id^=yandex_rtb_] {
    margin-top: -10px;
}

.footer-promo-place {
    padding: 50px 0;
}

.middle-promo-place .promo-place .position {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-promo-place {
    position: fixed;
    bottom: -1px;
    width: 100%;
    z-index: 98;
    max-height: 100px;
    background-color: #fff;
}

@media (min-width: 733px) {
    .mobile-promo-place {
        display: none;
    }
}

.mobile-promo-place .promo-place {
    position: relative;
    width: 302px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid grey;
}

.mobile-promo-place .promo-place:empty {
    display: none;
}

.mobile-promo-place img {
    max-width: 100%;
}

.mobile-promo-place__close-button {
    display: block;
    position: absolute;
    top: -35px;
    right: calc(50% - 160px);
    width: 70px;
    height: 70px;
    z-index: 103;
    cursor: pointer;
}

.mobile-promo-place__close-button .icon {
    width: 30px;
    height: 30px;
    margin: 20px;
}

.brandable,
article.live {
    position: relative;
    overflow: hidden;
}

@media (max-width: 732px) {
    .brandable {
        overflow: initial;
    }
}

.search.project {
    padding-bottom: 10px;
    margin-bottom: 10px;
    background-color: #fff;
}

.search.project header.search-bar {
    position: relative;
    padding-bottom: 20px;
    max-width: 100%;
}

.search_in_project {
    position: relative;
    color: #fff;
    opacity: .7;
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 732px) {
    .search_in_project {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.search_in_project:hover {
    opacity: 1;
}

.search_in_project:active label {
    vertical-align: middle;
}

.search_in_project label {
    width: 40px;
    margin: 0;
    font-weight: 400;
}

.search_in_project label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    margin-top: -3px;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 1px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.search_in_project label span {
    font-weight: 700;
}

.search_in_project input[type=checkbox] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 30px;
    opacity: 0;
    cursor: pointer;
}

.search_in_project input[type=checkbox]:checked+label::before {
    background-image: url(../images/search-checkbox-v-white-4d59b6422d70bd3674bb83eb69e88085f204e5d3589a7d48376166f79bf18772.svg);
}

.search_in_project input[type=checkbox]:active+label::before {
    background-color: #fff;
    background-image: url(../images/search-checkbox-v-10137fa952caa904c52342876f52a75fb72d4a907f0fd72c96a0f8cff4ac3ef8.svg);
}

.scroll-top.scroll-top.scroll-top {
    left: 20px;
    right: auto;
}

.ol18-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ol18-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title.project_title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    line-height: 50px;
    margin-top: 0;
    padding-top: 20px;
}

.title.project_title:first-letter,
h2.title.project_title:first-letter {
    text-transform: capitalize;
}

img[src="#"] {
    visibility: hidden;
    margin-right: 0;
    width: 10px;
}

.w-block__text-info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 71px;
    margin-bottom: 50px;
    position: relative;
    text-align: left;
}

.w-block__text-info-wrapper:after,
.w-block__text-info-wrapper:before {
    content: "";
    display: block;
    width: calc(100% - 168px);
    height: 1px;
    position: absolute;
    left: 0;
    background-color: #000;
    margin-left: 84px;
    margin-right: 84px;
}

.w-block__text-info-wrapper:before {
    top: -25px;
}

.w-block__text-info-wrapper:after {
    bottom: -25px;
}

.w-text-info__logo {
    width: 60px;
    height: 56px;
    margin-right: 24px;
    padding: 0 2px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.w-text-info {
    margin-right: 84px;
    outline: 0;
}

.w .w-text-info {
    pointer-events: all !important;
    width: 100%;
}

.w-block__text-info-wrapper p {
    margin-top: 0;
    margin-bottom: 0;
}

.w-block__text-info-wrapper p:empty {
    height: 20px;
}

.w_block .w-block__text-info-wrapper p {
    margin-top: 0;
}

.w-block__text-info-wrapper a {
    font-weight: 700;
    text-decoration: underline;
    color: inherit;
}

.w-block__text-info-wrapper b {
    color: #000;
}

hr.w-text-info-hr {
    margin: 0 84px 20px;
    width: 100%;
    height: 1px;
}

.w-text-info--link {
    font-weight: 700;
    text-decoration: underline;
    color: inherit;
}

@media (max-width: 732px) {
    .w-block__text-info-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .article-wide .w-block__text-info-wrapper {
        padding: 0 20px;
    }

    .w-block__text-info-wrapper::after,
    .w-block__text-info-wrapper::before {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .article-wide .w-block__text-info-wrapper::after,
    .article-wide .w-block__text-info-wrapper::before {
        width: calc(100% - 40px);
    }

    .w-text-info__logo {
        margin-bottom: 20px;
    }

    .w-text-info {
        margin-right: 0;
    }
}

.itv-index-header {
    margin-top: 0;
    padding: 36px 20px 0;
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    color: #00162e;
    font-weight: 400;
    letter-spacing: .2px;
    word-wrap: break-word;
}

.itv-index-collection {
    max-width: 100%;
    width: 1024px;
    margin: 12px auto 0;
}

.itv-index-card {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    text-align: left;
}

@media (max-width: 732px) {
    .itv-index-card {
        margin-bottom: 0;
        padding-bottom: 60px;
    }
}

.itv-index-card:hover a {
    text-decoration: none;
}

.itv-index-card .itv-index-card__header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
    z-index: 2;
}

.itv-index-card .itv-index-card__header::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 -20px 70px 60px rgba(0, 0, 0, 0.65);
    box-shadow: 0 -20px 70px 60px rgba(0, 0, 0, 0.65);
}

.itv-index-card-promo {
    position: relative;
    display: block;
    width: 312px;
    margin: 12px;
}

@media (max-width: 732px) {
    .itv-index-card-promo {
        margin-bottom: 42px;
    }
}

.itv-index-card__photo {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.itv-index-card__img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform .7s, -webkit-filter .3s;
    -webkit-transition: -webkit-transform .7s, -webkit-filter .3s;
    transition: -webkit-transform .7s, -webkit-filter .3s;
    transition: transform .7s, filter .3s;
    transition: transform .7s, filter .3s, -webkit-transform .7s, -webkit-filter .3s;
    transition: transform .7s, filter .3s, -webkit-filter .3s;
}

.itv-index-card__footer {
    width: 100%;
    padding: 10px 20px 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    z-index: 3;
}

.itv-index-card__title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    color: #0757a8;
}

.itv-index-card__text {
    font-size: 15px;
    line-height: 20px;
    color: #000;
}

@media (max-width: 732px) {
    .itv-index-card.itv-index-card__with-label .card__label {
        bottom: auto;
        top: 0;
    }

    .itv-index-card.itv-index-card__with-label .itv-index-card__header {
        top: 30px;
    }
}

@media (min-width: 733px) and (max-width: 1599px) {
    .itv-index-card {
        margin: 12px;
    }

    .itv-index-card::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        -webkit-box-shadow: 0 0 50px 45px #0d1f32;
        box-shadow: 0 0 50px 45px #0d1f32;
        z-index: 3;
    }

    .itv-index-card.itv-index-card__with-label::after {
        bottom: 10px;
    }

    .itv-index-card:hover {
        text-decoration: none;
        color: #fff;
    }

    .itv-index-card:hover .itv-index-card__img {
        -webkit-transform: scale(1.17);
        transform: scale(1.17);
    }

    .itv-index-card .itv-index-card__footer,
    .itv-index-card .text {
        position: absolute;
    }

    .itv-index-card .itv-index-card__footer:hover,
    .itv-index-card .text:hover {
        padding-top: 40px;
    }

    .itv-index-card:nth-child(12n+1),
    .itv-index-card:nth-child(12n+2) {
        width: 480px;
        height: 271px;
    }

    .itv-index-card:nth-child(12n+1)::after,
    .itv-index-card:nth-child(12n+2)::after {
        content: none;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+1) .text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+2) .text {
        top: auto;
        bottom: 0;
        min-height: 10px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(13, 31, 50, 0)), to(rgba(13, 31, 50, 0.9)));
        background-image: linear-gradient(180deg, rgba(13, 31, 50, 0) 0, rgba(13, 31, 50, 0.9) 100%);
        -webkit-transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
        transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+1) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+2) .text.itv-index-card__with-label {
        padding-bottom: 20px;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+1) .text:hover,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+2) .text:hover {
        top: auto;
        height: auto;
        min-height: 100%;
        color: #fff;
        background-color: rgba(13, 31, 50, 0.9);
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+1) .text:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .text:hover .itv-index-card__text {
        max-height: 500px;
        -webkit-transition: all .3s linear 150ms;
        transition: all .3s linear 150ms;
        -webkit-transition-delay: 150ms;
        transition-delay: 150ms;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+1) .text .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .text .itv-index-card__text {
        max-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        overflow: hidden;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__title,
    .itv-index-card:nth-child(12n+1) .text .title,
    .itv-index-card:nth-child(12n+2) .itv-index-card__title,
    .itv-index-card:nth-child(12n+2) .text .title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 20px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__text {
        color: #fff;
        font-size: 16px;
        line-height: 20px;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+3) {
        width: 312px;
        height: 365px;
        color: #fff;
        background-color: #0d1f32;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+3) .text {
        position: absolute;
        top: 176px;
        background-color: #0d1f32;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+3) .text.itv-index-card__with-label {
        top: 156px;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+3) .text:hover {
        height: 100%;
        top: 0;
        padding-top: 10px;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__title,
    .itv-index-card:nth-child(12n+3) .text .title {
        margin-bottom: 7px;
        font-size: 20px;
        line-height: 25px;
        color: #fff;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__text {
        font-size: 16px;
        line-height: 20px;
        color: #fff;
    }

    .itv-index-card:nth-child(12n+4) {
        width: 648px;
        height: 365px;
    }

    .itv-index-card:nth-child(12n+4)::after {
        content: none;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+4) .text {
        top: auto;
        bottom: 0;
        min-height: 10px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(13, 31, 50, 0)), to(rgba(13, 31, 50, 0.9)));
        background-image: linear-gradient(180deg, rgba(13, 31, 50, 0) 0, rgba(13, 31, 50, 0.9) 100%);
        -webkit-transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
        transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+4) .text.itv-index-card__with-label {
        padding-bottom: 20px;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+4) .text:hover {
        top: auto;
        height: auto;
        min-height: 100%;
        color: #fff;
        background-color: rgba(13, 31, 50, 0.9);
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .text:hover .itv-index-card__text {
        max-height: 500px;
        -webkit-transition: all .3s linear 150ms;
        transition: all .3s linear 150ms;
        -webkit-transition-delay: 150ms;
        transition-delay: 150ms;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .text .itv-index-card__text {
        max-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        overflow: hidden;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+4) .text.itv-index-card__with-label {
        padding-bottom: 30px;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__title,
    .itv-index-card:nth-child(12n+4) .text .title {
        font-size: 26px;
        line-height: 30px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+4) .itv-index-card__text {
        font-size: 18px;
        line-height: 22px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+10),
    .itv-index-card:nth-child(12n+11),
    .itv-index-card:nth-child(12n+12),
    .itv-index-card:nth-child(12n+5),
    .itv-index-card:nth-child(12n+6),
    .itv-index-card:nth-child(12n+7) {
        width: 312px;
        height: 270px;
        background-color: #fff;
    }

    .itv-index-card:nth-child(12n+10)::after,
    .itv-index-card:nth-child(12n+11)::after,
    .itv-index-card:nth-child(12n+12)::after,
    .itv-index-card:nth-child(12n+5)::after,
    .itv-index-card:nth-child(12n+6)::after,
    .itv-index-card:nth-child(12n+7)::after {
        -webkit-box-shadow: 0 0 25px 25px #fff;
        box-shadow: 0 0 25px 25px #fff;
    }

    .itv-index-card:nth-child(12n+10):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+11):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+12):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+5):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+6):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+7):hover .itv-index-card__text {
        display: block;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__header,
    .itv-index-card:nth-child(12n+11) .itv-index-card__header,
    .itv-index-card:nth-child(12n+12) .itv-index-card__header,
    .itv-index-card:nth-child(12n+5) .itv-index-card__header,
    .itv-index-card:nth-child(12n+6) .itv-index-card__header,
    .itv-index-card:nth-child(12n+7) .itv-index-card__header {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+11) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+5) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer:hover {
        top: 0 !important;
        height: 100%;
        width: 100%;
        padding-top: 10px;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+11) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+5) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer:hover .itv-index-card__text {
        opacity: 1;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+11) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+12) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+5) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+6) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+7) .itv-index-card__photo {
        border: 10px solid #fff;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+10) .text,
    .itv-index-card:nth-child(12n+11) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+11) .text,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+12) .text,
    .itv-index-card:nth-child(12n+5) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+5) .text,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+6) .text,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+7) .text {
        position: absolute;
        top: 176px;
        background-color: #fff;
        color: #03396f;
        padding: 5px 10px 100%;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+10) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+11) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+11) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+12) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+5) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+5) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+6) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+7) .text.itv-index-card__with-label {
        top: 156px;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__title,
    .itv-index-card:nth-child(12n+10) .text .title,
    .itv-index-card:nth-child(12n+11) .itv-index-card__title,
    .itv-index-card:nth-child(12n+11) .text .title,
    .itv-index-card:nth-child(12n+12) .itv-index-card__title,
    .itv-index-card:nth-child(12n+12) .text .title,
    .itv-index-card:nth-child(12n+5) .itv-index-card__title,
    .itv-index-card:nth-child(12n+5) .text .title,
    .itv-index-card:nth-child(12n+6) .itv-index-card__title,
    .itv-index-card:nth-child(12n+6) .text .title,
    .itv-index-card:nth-child(12n+7) .itv-index-card__title,
    .itv-index-card:nth-child(12n+7) .text .title {
        color: #03396f;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__text,
    .itv-index-card:nth-child(12n+11) .itv-index-card__text,
    .itv-index-card:nth-child(12n+12) .itv-index-card__text,
    .itv-index-card:nth-child(12n+5) .itv-index-card__text,
    .itv-index-card:nth-child(12n+6) .itv-index-card__text,
    .itv-index-card:nth-child(12n+7) .itv-index-card__text {
        color: #000;
        opacity: 0;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }

    .itv-index-card:nth-child(12n+8),
    .itv-index-card:nth-child(12n+9) {
        width: 480px;
        height: 271px;
    }

    .itv-index-card:nth-child(12n+8)::after,
    .itv-index-card:nth-child(12n+9)::after {
        content: none;
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+8) .text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+9) .text {
        top: auto;
        bottom: 0;
        min-height: 10px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(13, 31, 50, 0)), to(rgba(13, 31, 50, 0.9)));
        background-image: linear-gradient(180deg, rgba(13, 31, 50, 0) 0, rgba(13, 31, 50, 0.9) 100%);
        -webkit-transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
        transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+8) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+9) .text.itv-index-card__with-label {
        padding-bottom: 20px;
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+8) .text:hover,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+9) .text:hover {
        top: auto;
        height: auto;
        min-height: 100%;
        color: #fff;
        background-color: rgba(13, 31, 50, 0.9);
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+8) .text:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .text:hover .itv-index-card__text {
        max-height: 500px;
        -webkit-transition: all .3s linear 150ms;
        transition: all .3s linear 150ms;
        -webkit-transition-delay: 150ms;
        transition-delay: 150ms;
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+8) .text .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .text .itv-index-card__text {
        max-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        overflow: hidden;
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__title,
    .itv-index-card:nth-child(12n+8) .text .title,
    .itv-index-card:nth-child(12n+9) .itv-index-card__title,
    .itv-index-card:nth-child(12n+9) .text .title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 20px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+8) .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__text {
        color: #fff;
        font-size: 16px;
        line-height: 20px;
        position: relative;
        z-index: 2;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+8) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+9) .itv-index-card__footer {
        background-image: none !important;
        padding-top: 0;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+8) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+9) .itv-index-card__footer:before {
        content: "";
        display: block;
        background: #0d1f32;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: .9;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+8) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+9) .itv-index-card__footer:hover {
        padding-top: 30px;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+8) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+9) .itv-index-card__footer .itv-index-card__title {
        margin-top: 0;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+8) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+9) .itv-index-card__footer .itv-index-card__title:before {
        content: "";
        display: block;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0d1f32), to(transparent));
        background-image: linear-gradient(to top, #0d1f32 0, transparent 100%);
        width: calc(100% + 40px);
        position: absolute;
        left: -20px;
        opacity: .9;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+8) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+9) .itv-index-card__footer .itv-index-card__title:before {
        height: 50px;
        top: -50px;
    }

    .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title:before {
        height: 80px;
        top: -80px;
    }
}

@media (min-width: 1600px) {
    .itv-index-card {
        margin: 12px;
    }

    .itv-index-card::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 0;
        -webkit-box-shadow: 0 0 50px 45px #0d1f32;
        box-shadow: 0 0 50px 45px #0d1f32;
        z-index: 3;
    }

    .itv-index-card.itv-index-card__with-label::after {
        bottom: 10px;
    }

    .itv-index-card:hover {
        text-decoration: none;
        color: #fff;
    }

    .itv-index-card:hover .itv-index-card__img {
        -webkit-transform: scale(1.17);
        transform: scale(1.17);
    }

    .itv-index-card .itv-index-card__footer,
    .itv-index-card .text {
        position: absolute;
    }

    .itv-index-card .itv-index-card__footer:hover,
    .itv-index-card .text:hover {
        padding-top: 40px;
    }

    .itv-index-card:nth-child(12n+1),
    .itv-index-card:nth-child(12n+2) {
        width: 648px;
        height: 365px;
    }

    .itv-index-card:nth-child(12n+1)::after,
    .itv-index-card:nth-child(12n+2)::after {
        content: none;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+1) .text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+2) .text {
        top: auto;
        bottom: 0;
        min-height: 10px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(13, 31, 50, 0)), to(rgba(13, 31, 50, 0.9)));
        background-image: linear-gradient(180deg, rgba(13, 31, 50, 0) 0, rgba(13, 31, 50, 0.9) 100%);
        -webkit-transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
        transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+1) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+2) .text.itv-index-card__with-label {
        padding-bottom: 20px;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+1) .text:hover,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+2) .text:hover {
        top: auto;
        height: auto;
        min-height: 100%;
        color: #fff;
        background-color: rgba(13, 31, 50, 0.9);
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+1) .text:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .text:hover .itv-index-card__text {
        max-height: 500px;
        -webkit-transition: all .3s linear 150ms;
        transition: all .3s linear 150ms;
        -webkit-transition-delay: 150ms;
        transition-delay: 150ms;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+1) .text .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .text .itv-index-card__text {
        max-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        overflow: hidden;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+1) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+2) .text.itv-index-card__with-label {
        padding-bottom: 30px;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__title,
    .itv-index-card:nth-child(12n+1) .text .title,
    .itv-index-card:nth-child(12n+2) .itv-index-card__title,
    .itv-index-card:nth-child(12n+2) .text .title {
        font-size: 26px;
        line-height: 30px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__text,
    .itv-index-card:nth-child(12n+2) .itv-index-card__text {
        font-size: 18px;
        line-height: 22px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+3),
    .itv-index-card:nth-child(12n+4) {
        width: 480px;
        height: 271px;
    }

    .itv-index-card:nth-child(12n+3)::after,
    .itv-index-card:nth-child(12n+4)::after {
        content: none;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+3) .text,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+4) .text {
        top: auto;
        bottom: 0;
        min-height: 10px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(13, 31, 50, 0)), to(rgba(13, 31, 50, 0.9)));
        background-image: linear-gradient(180deg, rgba(13, 31, 50, 0) 0, rgba(13, 31, 50, 0.9) 100%);
        -webkit-transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
        transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+3) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+4) .text.itv-index-card__with-label {
        padding-bottom: 20px;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+3) .text:hover,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+4) .text:hover {
        top: auto;
        height: auto;
        min-height: 100%;
        color: #fff;
        background-color: rgba(13, 31, 50, 0.9);
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+3) .text:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .text:hover .itv-index-card__text {
        max-height: 500px;
        -webkit-transition: all .3s linear 150ms;
        transition: all .3s linear 150ms;
        -webkit-transition-delay: 150ms;
        transition-delay: 150ms;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+3) .text .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .text .itv-index-card__text {
        max-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        overflow: hidden;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__title,
    .itv-index-card:nth-child(12n+3) .text .title,
    .itv-index-card:nth-child(12n+4) .itv-index-card__title,
    .itv-index-card:nth-child(12n+4) .text .title {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 20px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+3) .itv-index-card__text,
    .itv-index-card:nth-child(12n+4) .itv-index-card__text {
        color: #fff;
        font-size: 16px;
        line-height: 20px;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+5),
    .itv-index-card:nth-child(12n+6),
    .itv-index-card:nth-child(12n+7),
    .itv-index-card:nth-child(12n+8),
    .itv-index-card:nth-child(12n+9) {
        width: 312px;
        height: 270px;
        background-color: #fff;
    }

    .itv-index-card:nth-child(12n+5)::after,
    .itv-index-card:nth-child(12n+6)::after,
    .itv-index-card:nth-child(12n+7)::after,
    .itv-index-card:nth-child(12n+8)::after,
    .itv-index-card:nth-child(12n+9)::after {
        -webkit-box-shadow: 0 0 25px 25px #fff;
        box-shadow: 0 0 25px 25px #fff;
    }

    .itv-index-card:nth-child(12n+5):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+6):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+7):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+8):hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+9):hover .itv-index-card__text {
        display: block;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__header,
    .itv-index-card:nth-child(12n+6) .itv-index-card__header,
    .itv-index-card:nth-child(12n+7) .itv-index-card__header,
    .itv-index-card:nth-child(12n+8) .itv-index-card__header,
    .itv-index-card:nth-child(12n+9) .itv-index-card__header {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+8) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer:hover {
        top: 0 !important;
        height: 100%;
        width: 100%;
        padding-top: 10px;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+8) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer:hover .itv-index-card__text {
        opacity: 1;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+6) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+7) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+8) .itv-index-card__photo,
    .itv-index-card:nth-child(12n+9) .itv-index-card__photo {
        border: 10px solid #fff;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+5) .text,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+6) .text,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+7) .text,
    .itv-index-card:nth-child(12n+8) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+8) .text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+9) .text {
        position: absolute;
        top: 176px;
        background-color: #fff;
        color: #03396f;
        padding: 5px 10px 100%;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+5) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+6) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+6) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+7) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+7) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+8) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+8) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+9) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+9) .text.itv-index-card__with-label {
        top: 156px;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__title,
    .itv-index-card:nth-child(12n+5) .text .title,
    .itv-index-card:nth-child(12n+6) .itv-index-card__title,
    .itv-index-card:nth-child(12n+6) .text .title,
    .itv-index-card:nth-child(12n+7) .itv-index-card__title,
    .itv-index-card:nth-child(12n+7) .text .title,
    .itv-index-card:nth-child(12n+8) .itv-index-card__title,
    .itv-index-card:nth-child(12n+8) .text .title,
    .itv-index-card:nth-child(12n+9) .itv-index-card__title,
    .itv-index-card:nth-child(12n+9) .text .title {
        color: #03396f;
    }

    .itv-index-card:nth-child(12n+5) .itv-index-card__text,
    .itv-index-card:nth-child(12n+6) .itv-index-card__text,
    .itv-index-card:nth-child(12n+7) .itv-index-card__text,
    .itv-index-card:nth-child(12n+8) .itv-index-card__text,
    .itv-index-card:nth-child(12n+9) .itv-index-card__text {
        color: #000;
        opacity: 0;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }

    .itv-index-card:nth-child(12n+10),
    .itv-index-card:nth-child(12n+12) {
        width: 312px;
        height: 365px;
        color: #fff;
        background-color: #0d1f32;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+10) .text,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+12) .text {
        position: absolute;
        top: 176px;
        background-color: #0d1f32;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+10) .text.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+12) .text.itv-index-card__with-label {
        top: 156px;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+10) .text:hover,
    .itv-index-card:nth-child(12n+12) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+12) .text:hover {
        height: 100%;
        top: 0;
        padding-top: 10px;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__title,
    .itv-index-card:nth-child(12n+10) .text .title,
    .itv-index-card:nth-child(12n+12) .itv-index-card__title,
    .itv-index-card:nth-child(12n+12) .text .title {
        margin-bottom: 7px;
        font-size: 20px;
        line-height: 25px;
        color: #fff;
    }

    .itv-index-card:nth-child(12n+10) .itv-index-card__text,
    .itv-index-card:nth-child(12n+12) .itv-index-card__text {
        font-size: 16px;
        line-height: 20px;
        color: #fff;
    }

    .itv-index-card:nth-child(12n+11) {
        width: 648px;
        height: 365px;
    }

    .itv-index-card:nth-child(12n+11)::after {
        content: none;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__footer,
    .itv-index-card:nth-child(12n+11) .text {
        top: auto;
        bottom: 0;
        min-height: 10px;
        background-color: transparent;
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(13, 31, 50, 0)), to(rgba(13, 31, 50, 0.9)));
        background-image: linear-gradient(180deg, rgba(13, 31, 50, 0) 0, rgba(13, 31, 50, 0.9) 100%);
        -webkit-transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
        transition: min-height .3s linear, background-color .3s linear, top .3s linear, bottom .3s linear, padding .3s linear;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+11) .text.itv-index-card__with-label {
        padding-bottom: 20px;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+11) .text:hover {
        top: auto;
        height: auto;
        min-height: 100%;
        color: #fff;
        background-color: rgba(13, 31, 50, 0.9);
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__footer:hover .itv-index-card__text,
    .itv-index-card:nth-child(12n+11) .text:hover .itv-index-card__text {
        max-height: 500px;
        -webkit-transition: all .3s linear 150ms;
        transition: all .3s linear 150ms;
        -webkit-transition-delay: 150ms;
        transition-delay: 150ms;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__footer .itv-index-card__text,
    .itv-index-card:nth-child(12n+11) .text .itv-index-card__text {
        max-height: 0;
        margin: 0;
        font-size: 16px;
        line-height: 20px;
        overflow: hidden;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__footer.itv-index-card__with-label,
    .itv-index-card:nth-child(12n+11) .text.itv-index-card__with-label {
        padding-bottom: 30px;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__title,
    .itv-index-card:nth-child(12n+11) .text .title {
        font-size: 26px;
        line-height: 30px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .itv-index-card:nth-child(12n+11) .itv-index-card__text {
        font-size: 18px;
        line-height: 22px;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+11) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+3) .itv-index-card__footer,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer {
        background-image: none;
        background-image: none !important;
        padding-top: 0;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+11) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+3) .itv-index-card__footer:before,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer:before {
        content: "";
        display: block;
        background: #0d1f32;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: .9;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+11) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+3) .itv-index-card__footer:hover,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover {
        padding-top: 30px;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+11) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+3) .itv-index-card__footer .itv-index-card__title,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title {
        margin-top: 0;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+11) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+3) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title:before {
        content: "";
        display: block;
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0d1f32), to(transparent));
        background-image: linear-gradient(to top, #0d1f32 0, transparent 100%);
        width: calc(100% + 40px);
        position: absolute;
        left: -20px;
        opacity: .9;
    }

    .collection-item__card:nth-child(12n+3) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title:before {
        height: 50px;
        top: -50px;
    }

    .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+11) .itv-index-card__footer .itv-index-card__title:before,
    .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title:before {
        height: 80px;
        top: -80px;
    }
}

.article .w_content .w_row .w_block[data-type=widget]:first-of-type:not([class*=o-]) {
    margin-left: 12px;
}

@media (min-width: 1600px) {
    .article .w_content .w_row .w_block[data-type=widget].c-1 {
        width: 396px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-2 {
        width: 480px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-3 {
        width: 564px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-4 {
        width: 648px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-5 {
        width: 732px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-6 {
        width: 816px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-7 {
        width: 900px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-8 {
        width: 984px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-9 {
        width: 1068px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-10 {
        width: 1152px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-11 {
        width: 1236px;
    }

    .article .w_content .w_row .w_block[data-type=widget].c-12 {
        width: 1320px;
    }
}

.itv-tag-list {
    position: relative;
    margin-top: 20px;
}

.itv-tag-list--padded {
    padding: 0 20px;
}

.itv-tag {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 0 9px;
    width: auto;
    height: 30px;
    line-height: 28px;
    font-size: 13px;
    letter-spacing: .1px;
    font-weight: 400;
    background-color: transparent;
    color: #366799;
    border: 1px solid #7e9fb8;
    border-radius: 2px;
    text-decoration: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.itv-tag:hover {
    background-color: #348bcd;
    border-color: #348bcd;
    color: #fff;
    text-decoration: none;
}

.itv-tag:active {
    background-color: #01478d;
    border-color: #01478d;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 733px) {
    .itv-tag-list::after {
        display: none;
    }
}

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

.w1tv-header {
    margin-top: 0;
}

.w1tv-button-link {
    width: 100%;
    display: block;
    margin: 10px 0;
    padding: 8px 5px;
    min-height: 40px;
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: color .2s, background-color .2s, border-color .2s, fill .2s;
    transition: color .2s, background-color .2s, border-color .2s, fill .2s;
    background-color: transparent;
    border-width: 2px;
    border-style: solid;
}

.w1tv-button-link:active,
.w1tv-button-link:hover {
    text-decoration: none;
}

.w1tv-promo {
    display: block;
    position: relative;
}

.w1tv-promo--subtitle {
    margin-top: 15px;
}

.w1tv-promo--subtitle::before {
    content: "Реклама";
    position: absolute;
    top: -15px;
    display: block;
    margin: 0 auto 5px;
    color: #bcbcbc;
    font-size: 10px;
    line-height: 6px;
}

.w1tv-promo--border {
    border: 1px solid;
}

.promo-position__image {
    max-width: 100%;
}

.w1tv-block {
    margin-bottom: 24px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    min-width: 320px;
    margin: 0;
}

a {
    text-decoration: none;
    color: #337ab7;
}

a:hover {
    color: #23527c;
    text-decoration: underline;
}

p a {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

button,
input,
select {
    font-family: 'Roboto Condensed', sans-serif;
}

html {
    -ms-overflow-style: scrollbar;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::after {
    content: url(../images/preloader-01-59d4519f83b9a7527d7dcf7382b734aafb2f26df639871a8bc7e9d44f44e0d0c.gif) url(../images/close-08b63a1fd5e72d487d7e8728d54f87f02e07d1bb5ec6fdb2aab91c6c03ee9094.svg) url(../images/arrow-left-824f227a117d51b8e87b6869ec9d2bc8726c320e0dd4eee1c08f17d54f149200.svg) url(../images/arrow-right-974b15228d371217ee51a9013408a6eaf298c6e4367700acf5da15a25f8ef342.svg);
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
}

.nowrap {
    white-space: pre;
}

.itv-nowrap {
    white-space: nowrap;
}

.container {
    padding: 0;
}

.noclick {
    pointer-events: none;
}

.height-30 {
    height: 30px;
}

@media (min-width: 733px) {
    body {
        min-width: 100%;
        overflow-x: hidden;
    }
}

.th-color-text-article {
    color: #05519d;
}

hr {
    border: 0;
    height: 1px;
    background: #333;
}

hr.fat {
    position: relative;
    height: 10px;
    background-color: #05519d;
    margin: 0 auto;
    padding: 0;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: .25px;
}

main {
    font-family: 'Roboto Condensed', sans-serif;
}

.row>div[class^=col-]:first-child {
    padding-left: 0;
}

.row>div[class^=col-]:last-child {
    padding-right: 0;
}

section[class*="-cards"] {
    padding: 0;
}

section[class*="-cards"] .card {
    border-top: 1px solid #a1c5e1;
    padding: 20px 0 20px 0;
    line-height: 20px;
    font-size: 18px;
    position: relative;
}

section[class*="-cards"] .card .age,
section[class*="-cards"] .card .image,
section[class*="-cards"] .card .text,
section[class*="-cards"] .card section.body,
section[class*="-cards"] .card section.content,
section[class*="-cards"] .card section.time {
    display: inline-block;
    vertical-align: top;
}

section[class*="-cards"] .card .padded {
    padding: 0 20px;
}

section[class*="-cards"] .card .padded .title {
    margin: 0 0 15px 0;
}

section[class*="-cards"] .card .title,
section[class*="-cards"] .card a.title {
    margin: 0 0 5px 0;
    display: block;
    font-size: 18px;
    font-weight: 700;
}

section[class*="-cards"] .card .title h2,
section[class*="-cards"] .card a.title h2 {
    margin: -7px 0 15px 0;
    color: #000;
    font-size: 26px;
    line-height: 30px;
}

section[class*="-cards"] .card p {
    margin: 0;
    font-size: 14px;
}

section[class*="-cards"] .card .red {
    color: #eb0f4d;
}

section[class*="-cards"] .card .date {
    margin: 0 20px 0 0;
}

section[class*="-cards"] .card .time {
    font-weight: 700;
    color: #05519d;
    text-align: left;
    margin-bottom: 5px;
}

section[class*="-cards"] .card .image .border {
    position: relative;
    border: 1px solid #96a0a8;
    padding: 3px;
}

section[class*="-cards"] .card .image .border img {
    width: 100%;
    height: 100%;
}

section[class*="-cards"] .card .image .info {
    position: absolute;
    height: 20px;
    width: 100%;
    margin-top: -20px;
}

section[class*="-cards"] .card .age {
    font-size: 14px;
    display: inline-block;
}

section[class*="-cards"] .card .age .border {
    float: right;
    margin-right: 10px;
    color: #96a0a8;
    border: 1px solid #96a0a8;
    padding: 0 2px;
    border-radius: 2px;
}

.title {
    word-break: break-word;
}

.title:hover span {
    text-decoration: underline;
}

.tag-container {
    font-size: 13px;
}

.tag-container .tag {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 5px;
    border: 1px solid #58a6dd;
    border-radius: 2px;
    color: #5296db;
}

.tag-container .tag:hover {
    background-color: #58a6dd;
    color: #fff;
}

.tag-container .tag:active {
    background-color: #1b354a;
}

span.icon {
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
}

span.icon.arrow-up {
    margin-top: -5px;
    margin-right: 10px;
    background-image: url(../images/icon-arrow-up-c4ed3493f54e0b40c67bf6ce7c2f1a9acdfc05eed54ac192e008f631456160eb.png);
}

.display_none {
    display: none;
}

@media (max-width: 732px) {
    .hide-on-mobile {
        display: none !important;
    }

    .scroll-top {
        display: none !important;
    }

    .container {
        width: 100%;
    }

    .container .row {
        width: 100%;
        margin: 0;
    }
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pill-buttons {
    margin-bottom: 35px;
    padding: 0;
}

.pill-buttons a.button,
.pill-buttons button {
    display: inline-block;
    margin: 0;
    width: 50%;
    line-height: 38px;
    color: #5296db;
    border: 1px solid #5296db;
    background-color: transparent;
    font-weight: 700;
    border-radius: 0;
}

.pill-buttons a.button:first-child,
.pill-buttons button:first-child {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.pill-buttons a.button:last-child,
.pill-buttons button:last-child {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

@media (max-width: 732px) {
    .pill-buttons {
        width: 100%;
        margin-top: 10px;
        -webkit-box-sizing: border-box !important;
        box-sizing: border-box !important;
    }

    .pill-buttons button {
        display: block;
        width: 100%;
    }

    .pill-buttons button.short {
        border-top-left-radius: 0;
        border-bottom-left-radius: 2px;
    }
}

p[data-role=incut_focus] {
    display: none;
}

svg.svg.icon {
    -webkit-transition: all .2s;
    transition: all .2s;
}

.w_row:not(.big-slider) {
    font-size: 0;
}

.w_row:not(.big-slider) .w_block {
    font-size: 16px;
}

@media (min-width: 733px) {
    .w_row:not(.big-slider) {
        width: 1008px;
    }
}

@media (min-width: 1600px) {
    .w_row:not(.big-slider) {
        width: 1344px;
    }
}

@media (min-width: 733px) and (max-width: 983px) {

    footer.footer,
    hr.fat,
    main,
    section.footer {
        width: 720px;
    }
}

.w_block a.button {
    line-height: 38px;
    height: auto;
}

.themed.brandable {
    background-color: #260701;
}

.themed .th-link-color-text-article {
    color: #84171e;
}

.themed .th-link-color-text-article:hover {
    color: #951720;
}

.themed .th-link-color-text-article:active {
    color: #67080e;
}

.themed .th-border-color-text-article {
    border-color: #84171e;
}

.themed .th-border-text {
    border-color: #e4cbcc;
}

.themed .th-border-tile-base {
    border-color: #40080e;
}

.themed .th-border-base {
    border-color: #84171e;
}

.themed .th-bg-head {
    background-color: #260701;
}

.themed .th-bg-base {
    background-color: #84171e;
}

.themed .th-bg-sub {
    background-color: #380e12;
}

.themed .th-bg-tile-base {
    background-color: #40080e;
}

.themed .th-bg-text-article {
    background-color: #84171e;
}

.themed .th-color-head {
    color: #260701;
}

.themed .th-color-text {
    color: #e4cbcc;
}

.themed .th-color-tile-text {
    color: #c99296;
}

.themed .th-color-text-article {
    color: #84171e;
}

.themed .th-color-sub {
    color: #380e12;
}

.themed .th-color-tile-base {
    color: #40080e;
}

.themed .th-fill-tile-text {
    fill: #c99296;
}

.themed .th-fill-text-article {
    fill: #84171e;
}

.themed .itv-button,
.themed .th-itv-button {
    border-color: #84171e;
    background-color: transparent;
    color: #84171e;
    fill: #84171e;
}

.themed .itv-button:hover,
.themed .th-itv-button:hover {
    border-color: #951720;
    background-color: transparent;
    color: #951720;
    fill: #951720;
}

.themed .itv-button:active,
.themed .th-itv-button:active {
    border-color: #67080e;
    background-color: transparent;
    color: #67080e;
    fill: #67080e;
}

.themed a {
    color: #84171e;
    fill: #84171e;
}

.themed a:hover {
    color: #951720;
    fill: #951720;
}

.themed a:active {
    color: #67080e;
    fill: #67080e;
}

.themed .th-button-tile-color {
    border-color: #c99296;
    background-color: transparent;
    color: #c99296;
    fill: #c99296;
}

.themed .th-button-tile-color:hover {
    border-color: #e9cece;
    background-color: transparent;
    color: #e9cece;
    fill: #e9cece;
}

.themed .th-button-tile-color:active {
    border-color: #67080e;
    background-color: transparent;
    color: #67080e;
    fill: #67080e;
}

.themed .w_collection_title,
.themed img {
    color: #e4cbcc;
}

.themed .promo-place {
    border-color: #40080e;
}

.themed .type-slider {
    fill: #e4cbcc;
}

.themed .type-slider a.card {
    border-color: #40080e;
}

.themed .type-slider .w_collection_items::after,
.themed .type-slider .w_collection_items::before {
    color: #260701;
}

.themed .w_block .img {
    border-color: #e4cbcc;
    color: #e4cbcc;
}

.themed h2 {
    color: #e4cbcc;
}

.themed article.show-main .w_content:first-child::before,
article.show-main hr.fat {
    background-color: #380e12;
}

.themed .rating__icon {
    fill: #e4cbcc;
}

.themed [aria-label][role~=tooltip]::after {
    background-color: #e4cbcc;
    color: #84171e;
}

.themed [role~=tooltip][data-microtip-position|=top]::before {
    border-top-color: #e4cbcc;
}

.themed [role~=tooltip][data-microtip-position|=bottom]::before {
    border-bottom-color: #e4cbcc;
}

.themed [role~=tooltip][data-microtip-position|=left]::before {
    border-left-color: #e4cbcc;
}

.themed [role~=tooltip][data-microtip-position|=right]::before {
    border-right-color: #e4cbcc;
}

.themed .bg-mask-wrapper {
    color: #260701;
}

.themed.themed.themed .th-fill-tile-text {
    fill: #c99296;
}

.themed .w_content .w-block__text-info-wrapper:before {
    background-color: #84171e;
}

.themed .w_content .w-block__text-info-wrapper:after {
    background-color: #84171e;
}

.themed .w_content .w-block__text-info-wrapper .w-text-info b {
    color: #84171e;
}

.themed .w_content .w-block__text-info-wrapper .w-text-info__logo {
    fill: #84171e;
}

.themed .itv-index-card {
    background-color: #40080e;
}

.themed .type-mosaic .itv-index-card__text,
.themed .type-mosaic .itv-index-card__title {
    color: #c99296;
}

.themed .type-mosaic .itv-index-card:hover .itv-index-card__text,
.themed .type-mosaic .itv-index-card:hover .itv-index-card__title {
    color: #e9cece;
}

.themed .type-mosaic .itv-index-card:hover .itv-index-card__photo {
    border-color: #500c11;
    background-color: #500c11;
}

.themed .type-mosaic .itv-index-card:active .itv-index-card__text,
.themed .type-mosaic .itv-index-card:active .itv-index-card__title {
    color: #e9cece;
}

.themed .type-mosaic .itv-index-card:active .itv-index-card__photo {
    border-color: #360207;
    background-color: #360207;
}

@media (min-width: 733px) and (max-width: 1599px) {
    .themed .itv-index-card::after {
        -webkit-box-shadow: 0 0 50px 45px #40080e;
        box-shadow: 0 0 50px 45px #40080e;
    }

    .themed .itv-index-card:nth-child(12n+3) {
        background-color: #40080e;
    }

    .themed .itv-index-card:nth-child(12n+10) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+11) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+12) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+5) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+6) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+7) .itv-index-card__photo {
        border-color: #40080e;
        background-color: #40080e;
    }

    .themed .itv-index-card:nth-child(12n+10) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+11) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+12) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+3) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+5) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+6) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+7) .itv-index-card__footer {
        background-color: #40080e;
    }

    .themed .itv-index-card:nth-child(12n+10)::after,
    .themed .itv-index-card:nth-child(12n+11)::after,
    .themed .itv-index-card:nth-child(12n+12)::after,
    .themed .itv-index-card:nth-child(12n+5)::after,
    .themed .itv-index-card:nth-child(12n+6)::after,
    .themed .itv-index-card:nth-child(12n+7)::after {
        -webkit-box-shadow: 0 0 25px 25px #40080e;
        box-shadow: 0 0 25px 25px #40080e;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:before {
        background-color: #40080e;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #40080e), to(transparent));
        background-image: linear-gradient(to top, #40080e 0, transparent 100%);
    }

    .themed .itv-index-card:hover::after {
        -webkit-box-shadow: 0 0 50px 45px #500c11;
        box-shadow: 0 0 50px 45px #500c11;
    }

    .themed .itv-index-card:nth-child(12n+3):hover {
        background-color: #500c11;
    }

    .themed .itv-index-card:nth-child(12n+10):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+11):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+12):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+5):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+6):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+7):hover .itv-index-card__photo {
        border-color: #500c11;
        background-color: #500c11;
    }

    .themed .itv-index-card:nth-child(12n+10):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+11):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+12):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+3):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+5):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+6):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+7):hover .itv-index-card__footer {
        background-color: #500c11;
    }

    .themed .itv-index-card:nth-child(12n+10):hover::after,
    .themed .itv-index-card:nth-child(12n+11):hover::after,
    .themed .itv-index-card:nth-child(12n+12):hover::after,
    .themed .itv-index-card:nth-child(12n+5):hover::after,
    .themed .itv-index-card:nth-child(12n+6):hover::after,
    .themed .itv-index-card:nth-child(12n+7):hover::after {
        -webkit-box-shadow: 0 0 25px 25px #500c11;
        box-shadow: 0 0 25px 25px #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+2):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+4):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+8):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+9):hover .itv-index-card__footer:before {
        background-color: #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+8):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+9):hover .itv-index-card__footer .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #500c11), to(transparent));
        background-image: linear-gradient(to top, #500c11 0, transparent 100%);
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:hover,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:hover {
        background-color: #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:hover:before {
        background-color: #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:hover .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #500c11), to(transparent));
        background-image: linear-gradient(to top, #500c11 0, transparent 100%);
    }

    .themed .itv-index-card:active::after {
        -webkit-box-shadow: 0 0 50px 45px #360207;
        box-shadow: 0 0 50px 45px #360207;
    }

    .themed .itv-index-card:nth-child(12n+3):active {
        background-color: #360207;
    }

    .themed .itv-index-card:nth-child(12n+10):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+11):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+12):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+5):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+6):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+7):active .itv-index-card__photo {
        border-color: #360207;
        background-color: #360207;
    }

    .themed .itv-index-card:nth-child(12n+10):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+11):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+12):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+3):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+5):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+6):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+7):active .itv-index-card__footer {
        background-color: #360207;
    }

    .themed .itv-index-card:nth-child(12n+10):active::after,
    .themed .itv-index-card:nth-child(12n+11):active::after,
    .themed .itv-index-card:nth-child(12n+12):active::after,
    .themed .itv-index-card:nth-child(12n+5):active::after,
    .themed .itv-index-card:nth-child(12n+6):active::after,
    .themed .itv-index-card:nth-child(12n+7):active::after {
        -webkit-box-shadow: 0 0 25px 25px #360207;
        box-shadow: 0 0 25px 25px #360207;
    }

    .themed .collection-item__card:nth-child(12n+1):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+2):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+4):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+8):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+9):active .itv-index-card__footer:before {
        background-color: #360207;
    }

    .themed .collection-item__card:nth-child(12n+1):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+8):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+9):active .itv-index-card__footer .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #360207), to(transparent));
        background-image: linear-gradient(to top, #360207 0, transparent 100%);
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:active,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:active,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:active,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:active,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:active {
        background-color: #360207;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:active:before {
        background-color: #360207;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+8) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+9) .itv-index-card__footer:active .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #360207), to(transparent));
        background-image: linear-gradient(to top, #360207 0, transparent 100%);
    }
}

@media (min-width: 1600px) {
    .themed .itv-index-card::after {
        -webkit-box-shadow: 0 0 50px 45px #40080e;
        box-shadow: 0 0 50px 45px #40080e;
    }

    .themed .itv-index-card:nth-child(12n+10) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+12) .itv-index-card__footer {
        background-color: #40080e;
    }

    .themed .itv-index-card:nth-child(12n+5) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+6) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+7) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+8) .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+9) .itv-index-card__photo {
        border-color: #40080e;
        background-color: #40080e;
    }

    .themed .itv-index-card:nth-child(12n+5) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+6) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+7) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+8) .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+9) .itv-index-card__footer {
        background-color: #40080e;
    }

    .themed .itv-index-card:nth-child(12n+5)::after,
    .themed .itv-index-card:nth-child(12n+6)::after,
    .themed .itv-index-card:nth-child(12n+7)::after,
    .themed .itv-index-card:nth-child(12n+8)::after,
    .themed .itv-index-card:nth-child(12n+9)::after {
        -webkit-box-shadow: 0 0 25px 25px #40080e;
        box-shadow: 0 0 25px 25px #40080e;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+11) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+3) .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:before {
        background-color: #40080e;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+11) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+3) .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #40080e), to(transparent));
        background-image: linear-gradient(to top, #40080e 0, transparent 100%);
    }

    .themed .itv-index-card:hover {
        background-color: #500c11;
    }

    .themed .itv-index-card:hover::after {
        -webkit-box-shadow: 0 0 50px 45px #500c11;
        box-shadow: 0 0 50px 45px #500c11;
    }

    .themed .itv-index-card:nth-child(12n+5):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+6):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+7):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+8):hover .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+9):hover .itv-index-card__photo {
        border-color: #500c11;
        background-color: #500c11;
    }

    .themed .itv-index-card:nth-child(12n+10):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+12):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+5):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+6):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+7):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+8):hover .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+9):hover .itv-index-card__footer {
        background-color: #500c11;
    }

    .themed .itv-index-card:nth-child(12n+5):hover::after,
    .themed .itv-index-card:nth-child(12n+6):hover::after,
    .themed .itv-index-card:nth-child(12n+7):hover::after,
    .themed .itv-index-card:nth-child(12n+8):hover::after,
    .themed .itv-index-card:nth-child(12n+9):hover::after {
        -webkit-box-shadow: 0 0 25px 25px #500c11;
        box-shadow: 0 0 25px 25px #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+11):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+2):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+3):hover .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+4):hover .itv-index-card__footer:before {
        background-color: #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+11):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+3):hover .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4):hover .itv-index-card__footer .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #500c11), to(transparent));
        background-image: linear-gradient(to top, #500c11 0, transparent 100%);
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+11) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+3) .itv-index-card__footer:hover,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer:hover {
        background-color: #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+11) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+3) .itv-index-card__footer:hover:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover:before {
        background-color: #500c11;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+11) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+3) .itv-index-card__footer:hover .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:hover .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #500c11), to(transparent));
        background-image: linear-gradient(to top, #500c11 0, transparent 100%);
    }

    .themed .itv-index-card:active::after {
        -webkit-box-shadow: 0 0 50px 45px #360207;
        box-shadow: 0 0 50px 45px #360207;
    }

    .themed .itv-index-card:nth-child(12n+5):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+6):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+7):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+8):active .itv-index-card__photo,
    .themed .itv-index-card:nth-child(12n+9):active .itv-index-card__photo {
        border-color: #360207;
        background-color: #360207;
    }

    .themed .itv-index-card:nth-child(12n+10):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+12):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+5):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+6):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+7):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+8):active .itv-index-card__footer,
    .themed .itv-index-card:nth-child(12n+9):active .itv-index-card__footer {
        background-color: #360207;
    }

    .themed .itv-index-card:nth-child(12n+5):active::after,
    .themed .itv-index-card:nth-child(12n+6):active::after,
    .themed .itv-index-card:nth-child(12n+7):active::after,
    .themed .itv-index-card:nth-child(12n+8):active::after,
    .themed .itv-index-card:nth-child(12n+9):active::after {
        -webkit-box-shadow: 0 0 25px 25px #360207;
        box-shadow: 0 0 25px 25px #360207;
    }

    .themed .collection-item__card:nth-child(12n+1):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+11):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+2):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+3):active .itv-index-card__footer:before,
    .themed .collection-item__card:nth-child(12n+4):active .itv-index-card__footer:before {
        background-color: #360207;
    }

    .themed .collection-item__card:nth-child(12n+1):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+11):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+3):active .itv-index-card__footer .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4):active .itv-index-card__footer .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #360207), to(transparent));
        background-image: linear-gradient(to top, #360207 0, transparent 100%);
    }

    .itv-index-card:nth-child(12n+1) .itv-index-card__footer:active,
    .itv-index-card:nth-child(12n+11) .itv-index-card__footer:active,
    .itv-index-card:nth-child(12n+2) .itv-index-card__footer:active,
    .itv-index-card:nth-child(12n+3) .itv-index-card__footer:active,
    .itv-index-card:nth-child(12n+4) .itv-index-card__footer:active {
        background-color: #360207;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+11) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+3) .itv-index-card__footer:active:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:active:before {
        background-color: #360207;
    }

    .themed .collection-item__card:nth-child(12n+1) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+11) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+2) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+3) .itv-index-card__footer:active .itv-index-card__title:before,
    .themed .collection-item__card:nth-child(12n+4) .itv-index-card__footer:active .itv-index-card__title:before {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #360207), to(transparent));
        background-image: linear-gradient(to top, #360207 0, transparent 100%);
    }
}

.themed header.page-title.project-title .header-background::before {
    -webkit-box-shadow: 0 -80px 50px -60px #260701 inset;
    box-shadow: 0 -80px 50px -60px #260701 inset;
}

.themed header.page-title.project-title .menu {
    border-top: 1px solid #380e12;
}

.themed header#page-title .menu ul li button:hover,
.themed header.page-title.project-title .menu ul li a:hover {
    color: #260701;
    background-color: #951720;
    border-color: #951720;
}

.themed header#page-title .menu ul li button:active,
.themed header.page-title.project-title .menu ul li a:active {
    color: #e4cbcc;
    background-color: #67080e;
    border-color: #67080e;
}

.themed header.page-title.project-title .menu .sub-menu button.sub-menu-toggle:before {
    border-bottom-color: #84171e;
}

.themed header.page-title.project-title .menu .sub-menu hr.fat {
    background-color: #84171e;
}

button.reply,
input[type=submit].reply {
    border-color: #c99296;
    color: #c99296;
}

button.reply:hover,
input[type=submit].reply:hover {
    border-color: #e9cece;
    color: #e9cece;
}

.themed.themed.themed.theme-60.themed-splash {
    background-color: #8f0d28;
}

.themed.themed.themed.theme-7.themed-splash {
    background-color: #84171e;
}

.themed.themed.themed.theme-5.themed-splash {
    background-color: #7e9357;
}

.themed.themed.themed.theme-1.themed-splash {
    background-color: #0e61a2;
}

.themed.themed.themed.theme-63.themed-splash {
    background-color: #5e61e6;
}

.themed.themed.themed.theme-14.themed-splash {
    background-color: #6f7c92;
}

.themed.themed.themed.theme-57.themed-splash {
    background-color: #0a41a5;
}

.themed.themed.themed.theme-15.themed-splash {
    background-color: #0a8475;
}

.themed.themed.themed.theme-9.themed-splash {
    background-color: #3f1d39;
}

.themed.themed.themed.theme-62.themed-splash {
    background-color: #ed6250;
}

.themed.themed.themed.theme-61.themed-splash {
    background-color: #ea3b4b;
}

.themed.themed.themed.theme-65.themed-splash {
    background-color: #5e8c4e;
}

.themed.themed.themed.theme-12.themed-splash {
    background-color: #212228;
}

.themed.themed.themed.theme-3.themed-splash {
    background-color: #5a7e93;
}

.themed.themed.themed.theme-2.themed-splash {
    background-color: #6a7084;
}

.themed.themed.themed.theme-11.themed-splash {
    background-color: #d04152;
}

.themed.themed.themed.theme-10.themed-splash {
    background-color: #dd7726;
}

.themed.themed.themed.theme-59.themed-splash {
    background-color: #84171e;
}

.themed.themed.themed.theme-6.themed-splash {
    background-color: #7a1313;
}

.themed.themed.themed.theme-13.themed-splash {
    background-color: #958d7c;
}

.themed.themed.themed.theme-4.themed-splash {
    background-color: #b04341;
}

.themed.themed.themed.theme-56.themed-splash {
    background-color: #0e61a2;
}

.themed.themed.themed.theme-18.themed-splash {
    background-color: #23b378;
}

.themed.themed.themed.theme-58.themed-splash {
    background-color: #66a9b1;
}

.themed.themed.themed.theme-16.themed-splash {
    background-color: #0a41a5;
}

.themed.themed.themed.theme-8.themed-splash {
    background-color: #933c80;
}

.themed.themed.themed.theme-17.themed-splash {
    background-color: #0757a8;
}

.w_collection_items {
    padding-left: 15px;
    padding-right: 15px;
}

.text-big {
    font-size: 20px !important;
}

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

.w_collection_items img {
    max-width: 100%;
    margin: 0 auto 20px;
}

.w_collection_items p {
    font-size: 18px;
    line-height: 1.4;
}

.text-danger {
    color: red;
}

p.subtitle {
    font-size: 17px;
}

.alert-block {
    border: 1px solid #000;
    margin: 0 0 20px;
    padding: 15px !important;
    background: #d9ead3;
    color: #000;
}

.comment-item {
    padding: 15px 0;
}

.user-message {
    padding: 15px 0;
    color: #000;
    font-size: 18px;
    line-height: 1.4;
}

.user-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.user-info div {
    padding-left: 15px;
    font-weight: 700;
}

.user-info img {
    width: 50px;
    -webkit-box-flex: 50px;
    -ms-flex: 50px 0 0px;
    flex: 50px 0 0;
    margin: 0;
}

.user-message img {
    display: block;
    margin: 20px 0;
    width: 100%;
    max-width: 350px;
}

.reply {
    padding-left: 60px;
}

.cursor-text,
.main-form,
.main-form h2,
.pop-up-window {
    color: #000;
}

.btn-main {
    display: inline-block;
    margin: 30px 0;
    font-size: 30px;
    font-weight: 700;
    text-decoration: underline;
}

.w__block__collection .collection-name,
.w__block__collection .w_collection_title,
div[class*=collection-] .collection-name,
div[class*=collection-] .w_collection_title {
    font-size: 27px;
}

@media (max-width: 730px) {
    .show-main .menu {
        display: none;
    }
}

.main-list {
    color: #000;
    font-weight: 700;
}

.main-list p {
    font-weight: 400;
}

.w_content .w_row .w_block.c-12 {
    background: #fff;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.themed h2,
.user-info,
.w_block h3,
.w_collection_items p,
.w_collection_title {
    color: #000 !important;
}

.w_collection_title {
    font-size: 28px;
    font-weight: 700;
}

#order_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#order_form input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inp-form {
    padding-left: 5px;
    height: 42px;
    margin-bottom: 10px;
}

.submit-roulette:active {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.submit-roulette {
    text-transform: uppercase;
    padding: 10px 15px;
    margin: 15px 0;
    outline: 0;
    border: none;
    margin-top: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 3px #242120;
    box-shadow: 0 4px 3px #242120;
    background-color: red;
    -webkit-background-color: red;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: background .3s;
    transition: background .3s;
}

.submit-roulette:hover {
    background: #b00 !important;
    -webkit-transition: background .3s;
    transition: background .3s;
}

.price-bl {
    padding: 10px 0;
    font-size: 20px;
    color: #000;
}

.old-pr {
    text-decoration: line-through;
}

.no-marg {
    margin-bottom: 0 !important;
}

.alert-block {
    padding: 20px !important;
}

.inp-form {
    width: 220px;
    border: 1px solid #858585;
}

input[type=submit] {
    width: 220px;
    text-align: center;
}

.d-480 {
    display: none;
}

@media screen and (max-width: 480px) {
    .w_block p.subtitle {
        font-size: 15px;
    }

    .d-480 {
        display: block;
    }

    p.subtitle {
        font-size: 14px;
    }

    article header.page-title.project-title .promo-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .w_block p {
        font-size: 14px;
    }

    .w__block__collection .collection-name,
    .w__block__collection .w_collection_title,
    div[class*=collection-] .collection-name,
    div[class*=collection-] .w_collection_title {
        font-size: 18px;
    }

    .w_collection_items img {
        max-width: 230px;
    }

    .text-big {
        font-size: 18px !important;
    }

    .w_collection_items>img {
        max-width: 350px;
    }

    .user-message {
        font-size: 16px;
    }
}

.d-992 {
    display: none;
}

@media (min-width: 992px) {
    .d-992 {
        display: block;
    }
}

@media (max-width: 1215px) {
    .RRRR {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    body>.container {
        width: 1024px;
    }
}

input[type=submit] {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.title__text {
    white-space: nowrap;
}

@media screen and (min-width: 321px) and (max-width: 480px) {
    .w_collection_items img {
        max-width: 350px;
    }
}