/* VARIABLES
====================================== */
  .test {color: rgb(133, 46, 186);}

  :root {
    --color-primary: 32, 36, 55;
    --color-secondary_1: 122, 126, 223;
    --color-secondary_2: 133, 46, 186;

    --color-black: 18, 18, 18;
    --color-white: 245, 245, 245;

    --font-family: 'Open Sans', sans-serif;
    --font-family_accident: 'Open Sans', sans-serif;
    --font-color: 248, 249, 255;

    --logo-width: 282.3px;
    --logo-height: 40px;

    --text-size-normal: 16px;
    --text-size-title: 42px;

    --transition: all ease-out .15s;
  }


/* #MAIN
====================================== */
  html {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }

  * {
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  }

  *,
  *::before,
  *::after {
    -webkit-box-sizing: inherit !important;
    -moz-box-sizing: inherit !important;
    box-sizing: inherit !important;
  }

  *:focus {
    outline: none !important;
  }

  body {
    font: 400 var(--text-size-normal)/1.45 var(--font-family);
    color: rgb(var(--font-color));
    background: rgb(var(--color-black));
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  ::-moz-selection,
  ::selection {
    color: rgb(var(--color-white));
    background: rgb(var(--color-secondary_1));
  }

  input,
  textarea,
  select {
    padding: 10px 20px;
    border: 1px solid rgba(var(--color-black), .25);
    border-radius: 4px;
  }

  textarea {
    width: 100%;
    resize: vertical;
  }

  p {
    margin: 0 0 20px;
  }

  ul {
    list-style-position: inside;
    padding-left: 0;
  }

  a, a:hover {
    color: rgb(var(--font-color));
    text-decoration: none;
  }

  .link {
    color: rgb(var(--color-secondary_1));
    text-decoration: none;
    transition: all ease-out .25s;
  }

  .link:hover {
    color: rgb(var(--color-secondary_2));
  }

  #svg-sprite-place {
    display: none;
  }

  .wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }

  .wrapper_main {
    padding: 0;
    background: rgb(var(--color-primary));
    overflow: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(var(--color-black), .25);
  }

  .flex {
    display: flex !important;
    flex-flow: row wrap;
    align-items: center;
  }

  .flex_nocolumn {
    flex-flow: row nowrap;
  }

  .flex_flex-start {
    align-items: flex-start;
  }

  .col-auto{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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


/* #OTHER
====================================== */
  .page-background-place {
    pointer-events: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -9999;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .page-background-place:not(.pattern)::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: linear-gradient(to top, rgba(var(--color-black), 1), transparent);
  }

  .page-background-place.pattern {
    top: 0;
    position: fixed;
    background-repeat: repeat;
    background-size: auto auto;
  }


/* #ICONS
====================================== */
  .icon {
    display: block;
    margin-right: 10px;
    width: 24px;
    flex: 0 0 24px;
    height: 24px;
    fill: none;
    stroke: rgb(var(--font-color));
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .socials .icon {
    fill: rgb(var(--font-color));
    stroke: none;
    transition: all ease-out .25s;
  }

  .socials .icon:hover {
    transform: translateY(-4px);
  }

  .icon + span {
    display: inline-block;
  }

  .socials {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }

  .social__item {
    opacity: .8;
  }

  .social__item:hover {
    opacity: 1;
  }

  .social__item .icon {
    fill: rgb(var(--color-white));
    stroke: none;
  }

  .footer .social__item .icon {
    width: 24px;
    height: 24px;
  }


/* #HEADER
====================================== */
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgb(var(--color-primary));
    color: rgb(var(--color-white));
    box-shadow: 0 4px 10px rgba(var(--color-black), .25);
    padding: 20px 40px;
  }

  .header > .wrapper {
    justify-content: space-between;
  }

  .header__menu .menu__element {
    padding: 10px 0;
  }


/* #LOGO
====================================== */
  .logo {
    display: block;
    width: var(--logo-width);
    height: var(--logo-height);
    background: url(../img/logo.svg) top center no-repeat;
    background-size: contain;
  }

  a.logo {
    text-decoration: none;
  }


/* #MENU
====================================== */
  .menu {
    z-index: 9999;
    transition: background ease-out .4s;
  }

  .menu__container {
    position: relative;
    justify-content: flex-start;
    align-items: stretch;
  }

  .menu__element {
    position: relative;
    margin: 0 10px;
    padding: 10px 0;
    font-weight: 500;
  }

  .menu__element:first-child {
    margin-left: 0;
  }

  .menu__element:last-child {
    margin-right: 0;
  }

  div.menu__link {
    cursor: default;
  }

  .menu__link,
  .menu__link:hover {
    position: relative;
    display: block;
    color: rgb(var(--font-color));
    transition: color ease-out .25s;
    opacity: .6;
    line-height: 1;
  }

  .menu__link:hover,
  .menu__link_active {
    opacity: 1;
  }

  .menu__dropdown {
    position: absolute;
    visibility: hidden;
    top: 30px;
    left: 0;
    min-width: 250px;
    opacity: 0;
    background-color: rgb(var(--color-white));
    white-space: nowrap;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(var(--color-black), .25);
    transform: translateY(-10px);
    transition: all ease .3s;
    padding: 10px 0;
  }

  .menu__element:hover .menu__dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
  }

  .menu__dropdown > .menu__element {
    margin: 0;
    padding: 0;
  }

  .menu__dropdown .menu__link {
    padding: 10px 20px;
    color: rgb(var(--color-black));
    opacity: 1;
  }

  .menu__dropdown .menu__link:hover {
    background-color: rgba(var(--color-secondary_1), .15);
  }


/* HAMBURGER & CLOSE
====================================== */
  .hamburger {
    display: none;
    cursor: pointer;
    position: fixed;
    left: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    background: rgb(var(--color-secondary_1));
    justify-content: center;
    align-items: center;
  }

  .close {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 40px;
  }

  .hamburger .icon,
  .close .icon {
    width: 24px;
    height: 24px;
    margin: 0;
  }


/* #BUTTONS
====================================== */
  .button__wrapper {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }

  .button {
    display: inline-flex;
    position: relative;
    cursor: pointer;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    padding: 15px 40px;
    min-width: 200px;
    background: rgba(var(--color-secondary_1), .25);
    color: rgb(var(--color-white));
    line-height: 1;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(var(--color-black), .15);
  }

  .button:hover {
    transform: translateY(4px);
    background: rgba(var(--color-white));
    color: rgb(var(--color-primary));
    box-shadow: 0 0 15px rgba(var(--color-white), .15);
  }

  .button:hover .icon {
    stroke: rgb(var(--color-primary));
  }

  .button + .button {
    margin-left: 20px;
  }


/* #PAGE
====================================== */
  .page {
    flex: 1;
  }

  .page__head {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 40px 40px;
  }

  .page__body {
    padding: 0 40px 40px;
  }

  .page__body + .block {
    margin-top: 0;
  }

  .page__title {
    color: rgb(var(--color-white));
    font-size: var(--text-size-title);
    font-family: var(--font-family_accident);
    font-weight: 700;
    margin: 0;
    line-height: 1;
  }

  .page__subtitle {
    font-size: 18px;
    color: rgba(var(--font-color), .6);
    font-weight: 400;
  }

  .page__image {
    display: block;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .page__image_full-width {
    float: none;
    max-width: 100%;
  }

  .page__image img {
    display: block;
    max-width: 100%;
  }

  .page__image:first-child {
    margin-top: 0 !important;
  }

  .page__image:last-child {
    margin-bottom: 0 !important;
  }

  .page__image_right {
    order: 1;
    float: right;
    margin: 20px 0 20px 40px;
  }


/* #PAGINATION
====================================== */
  .pagination {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
  }

  .pagination__item {
    margin: 0 10px 10px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    background: rgba(var(--color-secondary_1), .15);
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(var(--color-black), .15);
  }

  .pagination__item.divider,
  .pagination__item.divider:hover {
    pointer-events: none;
    box-shadow: unset;
    color: rgb(var(--color-white));
    background: transparent ;
    transform: unset;
  }

  .pagination__item.active,
  .pagination__item:hover {
    background: rgba(var(--color-white));
    color: rgb(var(--color-primary));
    box-shadow: 0 0 15px rgba(var(--color-white), .15);
  }

  .pagination__item:hover {
    transform: translateY(4px);
  }

  .pagination__item.active:hover {
    transform: unset;
  }


/* #FOOTER
====================================== */
  .footer {
    position: relative;
    padding: 2rem 0;
  }

  .footer__wrapper {
    align-items: center;
    justify-content: space-between;
  }

  .home .footer__wrapper {
    padding-top: 100px;
  }

  .footer__wrapper > * {
    margin: 0 20px;
    flex: 1;
  }

  .footer__wrapper > *:first-child {margin-left: 0;}

  .footer__wrapper > *:last-child {
    margin-right: 0;
    text-align: right;
  }

  .footer__logo {
    height: 67px;
    width: 220px;
    background: url(../img/logo2.png) no-repeat;
    background-size: cover;
    flex: 0 0 auto;
  }

  .home .footer__logo {
    background: url(../img/logo.png) no-repeat;
    background-size: cover;
  }

  .footer__copyright {
    flex: 3;
  }


/* #SCROLL
====================================== */
  .scroll {
    display: none;
    z-index: 99;
    position: fixed;
    right: 48px;
    bottom: 48px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    background-color: rgb(var(--color-secondary_1));
    transition: background-color .25s ease-out;
    border-radius: 50%;
    animation: rollIn both .5s;
  }

  .icon-scroll {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    stroke: rgb(var(--color-white));
  }

  .scroll:hover {
    background-color: rgb(var(--color-secondary_2));
  }


/* #BLOCK
====================================== */
  .block {
    position: relative;
    margin: 40px 0;
    padding: 40px;
    background: radial-gradient(circle at top center, rgba(var(--color-white), .1), transparent 50%),
    linear-gradient(45deg, rgba(var(--color-secondary_1), .15), rgba(var(--color-secondary_2), .15));
    box-shadow: 0 0 10px rgba(var(--color-black), .25);
  }

  .block:first-child {
    margin-top: 0;
  }

  .block__wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }

  .block__head {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .block__title {
    font-weight: 700;
    font-size: var(--text-size-title);
    font-family: var(--font-family_accident);
    color: rgb(var(--color-white));
    line-height: 1;
  }

  .block__subtitle {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .flex > .block {
    align-self: stretch;
    flex: 1;
  }

  .flex > .block + .block {
    margin-left: 40px;
  }


/* #BOOKMARK
====================================== */
  .bookmark__icon {
    stroke: #fec37e;
  }

  .bookmark__text {
    white-space: nowrap;
  }


/* #SIDEBAR
====================================== */
  .sidebar {
    width: 350px;
    background: rgb(var(--color-primary));
    color: rgb(var(--font-color));
    padding: 0 0 40px 40px;
  }
  .sidebar-right {
    padding: 0 40px 40px 0;
  }

  .sidebar .menu__container.flex {
    z-index: 0;
    flex-flow: column wrap;
  }

  .sidebar .menu__element {
    margin-left: 0;
    margin-right: 0;
  }

  .sidebar .menu__separator {
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-family_accident);
    font-weight: 800;
  }

  .sidebar .menu__element:first-child .menu__separator {
    margin-top: 0;
  }

  .sidebar .menu__link {
    font-weight: 400;
    text-transform: unset;
    margin-bottom: 5px;
  }


/* #OTHER-2
====================================== */
  .page-news {
    flex: 0 0 760px;
    background-color: rgba(var(--color-secondary_1), .1);
  }

  .page-news .page__body {
    padding: 0 40px;
  }

  .page__toolbar {
    background: rgba(var(--color-secondary_1), .1);
    margin-bottom: 40px;
    padding: 10px 20px;
    justify-content: space-between;
  }

  .page__toolbar .flex .icon {
    stroke: #fec37e;
  }

  .page__toolbar .flex .icon:first-child {
    margin-right: 20px;
  }


/* #FILM
====================================== */
  .film .block__body {
    align-items: flex-start;
  }

  .film__column {
    display: flex;
    flex-flow: column wrap;
    margin-right: 40px;
    max-width: 280px;
  }

  .film__poster {
    width: 280px;
    max-height: 400px;
    height: 100%;
  }

  .film__image {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
  }

  .film__title {
    font-size: var(--text-size-title);
  }

  .film__title + .film__age-rating {
    margin-left: 20px;
  }

  .film__age-rating {
    min-width: 48px;
    text-align: center;
    padding: 2px;
    font-weight: 600;
    border: 2px solid #65DB62;
    border-radius: 6px;
  }

  .film__subtitle {
    color: rgba(var(--font-color), .6);
    margin-right: 20px;
  }

  .film__formats {
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .film__format {
    margin-right: 20px;
    background-color: rgba(var(--color-secondary_1), .25);
    text-align: center;
    min-width: 30px;
    font-size: 12px;
    padding: 5px;
    line-height: 1;
  }

  .z-film__metas {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .z-film__metas > div {
    flex: 1;
  }

  .film__meta {
    margin-bottom: 20px;
  }

  .film__meta-title {
    font-size: 13px;
    color: rgba(var(--font-color), .6);
  }

  .z-film__metas > .film__description {
    align-items: flex-start;
    flex: 0 0 100%;
  }

  .z-film__metas > .film__description .icon {
    margin-top: 4px;
  }

  .z-film__meta2 {
    flex: 1;
  }

  .film__actors .film__meta-text,
  .film__genres .film__meta-text,
  .film__description .film__meta-text {
    white-space: normal;
  }

  .z-film__info1 {
    flex: 1;
  }

  .z-film__info2 {
    flex: 0 0 100%;
    flex-wrap: nowrap;
    margin-top: 40px;
  }

  .z-film__info3 {
    margin-right: 40px;
  }


/* #RELEASES
====================================== */
  .releases {
    padding: 0;
    margin-bottom: 40px;
  }

  .releases:last-child {
    margin-bottom: 0;
  }

  .releases__head {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: rgba(var(--color-secondary_1), .15);
  }

  .releases__title {
    font-size: 24px;
    font-weight: 700;
  }

  .releases__body {
    padding: 20px 40px 40px;
  }

  .release {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(var(--color-secondary_1), .15);
  }

  .release:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .release .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .z-release__about {
    flex: 1;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .z-release__about .film__formats {
    margin-bottom: 0;
  }

  .release__poster {
    flex: 0 0 84px;
    margin-right: 40px;
  }

  .release__image {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
  }

  .z-release__info {
    max-width: 100%;
    width: 100%;
  }

  .release__head {
    align-items: center;
    margin-bottom: 22px;
  }

  .release .film__title {
    font-size: 22px;
  }

  .release__meta > div {
    margin-right: 40px;
  }

  .release .film__genres {
    flex-grow: 2;
  }

  .release__formats {
    margin-top: 0;
  }

  .z-release__side {
    margin-left: auto;
  }

  .z-release__side > div {
    margin-bottom: 20px;
  }


/* #RELEASE-WEEK
====================================== */
  .release-week {
    position: relative;
    overflow: hidden;
    max-width: 1120px;
  }

  .release-week__item {
    max-width: 250px;
    margin-right: 40px;
  }

  .release-week__item:last-child {
    margin-right: 0;
  }

  .release-week__poster {
    display: block;
    margin-bottom: 20px;
  }

  .release-week__title {
    display: block;
    margin-bottom: 20px;
  }

  .release-week__item .icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }


/* #BLOCK-FILM-NEWS
====================================== */
  .news-list__news {
    margin-bottom: 40px;
  }

  .news-list__news:last-child {
    margin-bottom: 0;
  }

  .news-list__news .icon {
    align-self: flex-start;
  }


/* #BLOCK-NEWS
====================================== */
  .news {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .news__item {
    position: relative;
    display: block;
    height: 200px;
    box-shadow: 0 0 0 rgba(var(--color-black), 0);
    transition: var(--transition);
  }

  .news__item:hover {
    padding: 0;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 10px 15px rgba(var(--color-black), .5);
  }

  .news__cover {
    overflow: hidden;
    z-index: 2;
  }

  .news__image {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
    z-index: 1;
  }

  .news__category {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    font-size: 10px;
    background-color: rgb(var(--color-secondary_2));
    padding: 5px 10px;
    text-transform: uppercase;
    z-index: 2;
  }

  .news__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
  }

  .news__meta {
    position: relative;
    overflow: hidden;
  }

  .news__date {
    display: inline-block;
    margin-top: 5px;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    background: rgb(var(--color-primary));
  }

  .news__title-text {
    position: relative;
    padding: 10px 20px;
    background: rgba(var(--color-primary), .8);
    z-index: 2;
  }

  .news__title-image {
    position: absolute;
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    top: calc(-200px + 100%);
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    filter: blur(5px);
  }


/* #BLOCK-ORGANISATIONS
====================================== */
  .page-organization .page__title {
    line-height: 1;
  }

  .organisations {
    grid-template-columns: repeat(2, 1fr);
  }

  .organisations__item {
    display: flex;
    flex-flow: row nowrap;
    min-height: 200px;
    box-shadow: 0 0 0 rgba(var(--color-black), 0);
    transition: var(--transition);
    font-size: 14px;
    align-items: flex-start;
  }

  .organisations__item-image {
    margin-right: 40px;
  }

  .organisations__item-image img {
    height: 200px;
    width: 200px;
    display: block;
    object-fit: cover;
  }

  .organisations__item-info > * {
    margin-bottom: 10px;
  }

  .organisations__item-title,
  .organisations__item-title:hover {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgb(var(--color-secondary_1));
    margin-top: -7px;
  }

  .organisations__item-tag {
    display: inline-block;
    font-size: 10px;
    background-color: rgba(var(--color-secondary_2), .5);
    padding: 5px 10px;
    text-transform: uppercase;
  }


/* #PAGE-ORGANISATION
====================================== */
  .organisation__tags {
    margin-top: 20px;
  }

  .organisation__emails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .organisation__phones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .organisation__socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .organisation__contacts .block__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .film__meta-text_name {
    color: rgb(var(--color-secondary_1));
  }

/* #BLOCK-EVENTS
====================================== */
  .page-events .page__title {
    line-height: 1;
  }

  .events {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .events__item {
    display: flex;
    flex-flow: row nowrap;
    min-height: 200px;
    box-shadow: 0 0 0 rgba(var(--color-black), 0);
    transition: var(--transition);
    font-size: 14px;
    align-items: flex-start;

    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(var(--color-secondary_1), .15);
  }

  .events__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .events__item-image {
    margin-right: 40px;
  }

  .events__item-image img {
    height: 200px;
    width: 200px;
    display: block;
    object-fit: cover;
  }

  .events__item-info > * {
    margin-bottom: 10px;
  }

  .events__item-title,
  .events__item-title:hover {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgb(var(--color-secondary_1));
    margin-top: -7px;
  }

  .events__item-tag {
    display: inline-block;
    font-size: 10px;
    background-color: rgba(var(--color-secondary_2), .5);
    padding: 5px 10px;
    text-transform: uppercase;
  }


/* #PAGE-EVENT
====================================== */
  .event__tags {
    margin-top: 20px;
  }

  .event__emails {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }

  .event__phones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }

  .event__socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .event__contacts .block__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
  }

  .film__meta-text_name {
    color: rgb(var(--color-secondary_1));
  }

  .event__dates {
    list-style: none;
    margin-bottom: 0;
    padding-left: 5px;
  }

  .event__date {
    padding-bottom: 25px;
    padding-left: 10px;
  }

  .event__date-outdated {
    opacity: 0.4;
  }

  .event__date-container {
    display: table;
    padding-left: 15px;
    position: relative;
    vertical-align: middle;
    width: calc(100% - 15px);
  }

  .event__date-container::before {
    background-color: #ededed;
    display: block;
    content: '';
    position: absolute;
    width: 1px;
    height: 80%;
    left: -7px;
    top: 75%;
  }

  .event__date:last-child .event__date-container::before {
    display: none;
  }

  .event__date:last-child {
    padding-bottom: 0;
  }

  .event__date-container::after {
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 0 5px white;
    display: block;
    content: '';
    position: absolute;
    color: #666;
    width: 6px;
    height: 6px;
    left: -10px;
    top: 30%;
    border: 2px solid;
  }

  .event__date-time {

  }

  .event__date-title {

  }


/* #BLOCK-SHOTS
====================================== */
  .shots {
    display: grid;
    grid-template-columns: repeat(auto-fill, 270px);
    grid-gap: 40px;
  }

  .shots__shot {
    display: block;
    height: 150px;
  }

  .shots__shot-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
  }


/* #BLOCK-VERSUS
====================================== */
  .block-versus .block__body {
    align-items: flex-start;
  }


/* #Z-VS
====================================== */
  .z-vs {
    display: block;
    max-width: 100%;
  }

  .versus {}

  .versus__vs {
    font-size: 32px;
    font-weight: 700;
    margin: 0 20px;
  }

  .versus__item {}

  .versus__poster {
    position: relative;
    max-width: 205px;
  }

  .versus__image {
    display: block;
    max-width: 100%;
    object-fit: cover;
  }

  .versus__fees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to top, rgba(var(--color-primary)), rgba(var(--color-primary), .25) 95%, transparent);
  }

  .versus__range {
    font-size: 14px;
  }

  .versus__amount {
    font-size: 24px;
    font-weight: 700;
    color: #fec37e;
  }


/* #VERSUS-LIST
====================================== */
  .versus-list {
    display: grid;
    grid-template-rows: repeat(auto-fit, 1fr);
    grid-template-columns: repeat(3, 180px);
    grid-gap: 20px;
    margin-left: 40px;
  }

  .versus-list__item {
    cursor: pointer;
    opacity: .6;
    padding: 10px 20px;
    background-color: rgba(var(--color-secondary_1), .15);
    transition: opacity ease-out .25s;
  }

  .versus-list__item:hover {
    opacity: 1;
  }

  .versus-list__poster {
    width: 40px;
  }

  .versus-list__vs {
    margin: 0 20px;
    font-weight: 700;
    color: #fec37e;
  }

  .versus-list__film {
    margin: 10px auto 0;
    text-align: center;
  }


/* #OTHER
====================================== */
  .z-circle {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: rgb(var(--color-white));
  }

  .z-meta-text {
    flex: 1;
  }


/* #SELECT
====================================== */
  .select-css {
    cursor: pointer;
    display: block;
    font-weight: 600;
    color: rgb(var(--font-color));
    padding: 10px 20px;
    width: 300px;
    box-sizing: border-box;
    margin: 0;
    border: 2px solid rgb(var(--color-secondary_1));
    box-shadow: unset;
    border-radius: 40px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to bottom, transparent, transparent);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
  }

  .select2-container--default .select2-selection--single {
    cursor: pointer;
    display: block;
    font-weight: 600;
    color: rgb(var(--font-color));
    padding: 10px 20px;
    width: 300px;
    height: unset;
    margin: 0;
    border: 2px solid rgb(var(--color-secondary_1));
    box-shadow: unset;
    border-radius: 40px;
    background: transparent;
    transition: border-top-right-radius ease-in-out .15s, border-top-left-radius ease-in-out .15s, border-bottom-left-radius ease-out .15s, border-bottom-right-radius ease-out .15s;
  }

  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    transition: border-top-right-radius ease-in-out .15s, border-top-left-radius ease-in-out .15s;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: unset;
    line-height: unset;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 20px;
    top: calc(50% - 13px);
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #79d7ff transparent transparent transparent;
  }

  .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #79d7ff transparent;
  }

  .select2-dropdown {
    background: rgb(var(--color-primary));
    border: 2px solid rgb(var(--color-secondary_1));
    padding: 0;
  }

  .select2-container--default .select2-search--dropdown .select2-search__field {
    width: calc(100% - 20px);
    margin: 10px;
    border: none;
    padding: 10px 20px;
  }

  .select2-container--default .select2-results__option {
    padding: 10px 20px;
  }

  .select2-container--default .select2-results__option[aria-selected=true] {
    background: rgb(var(--color-secondary_1)) !important;
  }

  .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(var(--color-secondary_1), .5);
  }

  .select-css::-ms-expand {
    display: none;
  }

  .select-css:focus {
    box-shadow: unset;
    outline: none;
  }

  .select-css option {
    font-weight: 400;
    color: rgb(var(--color-primary));
  }


/* #NEWS
====================================== */
  .page-content .page__head {
    position: relative;
    height: 400px;
    padding: 0;
    margin-bottom: 40px;
  }

  .page-content .page__image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
  }

  .page-content .page__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    overflow: hidden;
  }

  .page-content .page__meta {
    position: relative;
    padding: 20px 40px;
    z-index: 2;
    background: rgba(var(--color-primary), .8);
  }

  .page-content .page__title-text {
    line-height: 1.45;
    /* ----z---- */
  }

  .page-content .page__date {
    font-size: 14px;
    margin-top: 20px;
    color: #ddd;
    font-weight: 400;
  }

  .page-content .page__title-image {
    position: absolute;
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    top: calc(-400px + 100%);
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    filter: blur(5px);
  }


/* #ALERT
====================================== */
  .alert {
    padding: 40px;
    margin: 40px auto;
    background: rgba(var(--color-secondary_1), .15);
    text-align: center;
  }
