@charset "UTF-8";
@font-face {
  font-family: 'FuturaPT';
  src: url("/special/polk/fonts/FuturaPT-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }
@font-face {
  font-family: 'FuturaPT';
  src: url("/special/polk/fonts/FuturaPT-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'FuturaPT';
  src: url("/special/polk/fonts/FuturaPT-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }
@font-face {
  font-family: 'FuturaPT';
  src: url("/special/polk/fonts/FuturaPT-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }
@font-face {
  font-family: 'FuturaPT';
  src: url("/special/polk/fonts/FuturaPT-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: 'Philosopher';
  src: url("/special/polk/fonts/Philosopher-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Philosopher';
  src: url("/special/polk/fonts/Philosopher-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap; }
@font-face {
  font-family: 'Philosopher';
  src: url("/special/polk/fonts/Philosopher-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap; }
@font-face {
  font-family: 'Philosopher';
  src: url("/special/polk/fonts/Philosopher-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
:root {
  --textPrimary: #232427;
  --textWhite: #FAFBFE;
  --textAccent: #148f2c;
  --backgroundPrimary: #F6F7F9;
  --colorButtonDefaultBackground: #e5ecf1;
  --gray100: #f8f9fa;
  --gray200: #e9ecef;
  --gray300: #dee2e6;
  --gray400: #A0A9C0;
  --gray500: #838a9d;
  --gray600: #727C94;
  --gray700: #495057;
  --gray800: #222631;
  --gray900: #232427;
  --redPrimary: #8D2729;
  --redAccent: #64090b;
  --greenPrimary: #30ae42;
  --greenAccent: #1d832c; }

@media (max-width: 767.98px) {
  .vdPopupBox {
    display: flex;
    position: fixed;
    z-index: 1300;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%; } }

.vdPopupBox--bottomToTop {
  align-items: flex-end;
  padding-top: 60px; }

.vdPopupBox--topToBottom {
  align-items: flex-start;
  padding-bottom: 60px; }

.vdPopupBox--leftToRight {
  justify-content: flex-start; }

.vdPopupBox--rightToLeft {
  align-items: flex-end; }

.vdPopupTitle {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px; }

.vdPopup {
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px !important;
  background: #fff;
  z-index: 1002;
  border-radius: 8px; }
  @media (min-width: 768px) {
    .vdPopup {
      width: 600px; } }

.vdPopup--bottomToTop {
  bottom: 0;
  transform: translate3d(0px, 100%, 0px);
  width: 100%;
  border-radius: 30px 30px 0 0;
  max-height: calc(100% - 70px); }

.vdPopup--topToBottom {
  top: 0;
  transform: translate3d(0px, -100%, 0px);
  width: 100%;
  border-radius: 0 0 30px 30px;
  max-height: calc(100% - 70px); }

.vdPopup--leftToRight {
  top: 0;
  right: auto;
  height: 100%;
  width: 100%;
  transform: translate3d(-100%, 0px, 0px);
  border-radius: 0; }
  @media (min-width: 768px) {
    .vdPopup--leftToRight {
      width: 70%;
      border-radius: 0 30px 30px 0; } }
  @media (min-width: 992px) {
    .vdPopup--leftToRight {
      width: 50%; } }
  @media (min-width: 1200px) {
    .vdPopup--leftToRight {
      width: 40%; } }
  .vdPopup--leftToRight .closeSmartBtn {
    right: 0;
    top: 0;
    background-image: url("/spacial/polk/images/close.svg");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center; }
    @media (min-width: 768px) {
      .vdPopup--leftToRight .closeSmartBtn {
        display: none; } }

.vdPopup--rightToLeft {
  top: 0;
  left: auto;
  height: 100%;
  width: 100%;
  transform: translate3d(100%, 0px, 0px);
  border-radius: 0; }
  @media (min-width: 768px) {
    .vdPopup--rightToLeft {
      width: 70%;
      border-radius: 30px 0 0 30px; } }
  @media (min-width: 992px) {
    .vdPopup--rightToLeft {
      width: 50%; } }
  @media (min-width: 1200px) {
    .vdPopup--rightToLeft {
      width: 40%; } }
  .vdPopup--rightToLeft .closeSmartBtn {
    right: 0;
    left: 0;
    background-image: url("/spacial/polk/images/close.svg");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center; }
    @media (min-width: 768px) {
      .vdPopup--rightToLeft .closeSmartBtn {
        display: none; } }

.vdPopupBackground {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001; }

.successTitle {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px; }

.closePopupBtn {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1005;
  background: rgba(30, 30, 30, 0.6);
  cursor: pointer;
  height: 50px;
  padding: 10px;
  width: 50px; }
  @media (min-width: 768px) {
    .closePopupBtn {
      display: block; } }
  .closePopupBtn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("/spacial/polk/images/close.svg");
    background-repeat: no-repeat;
    background-size: 50%;
    background-position: center; }

.closeSmartBtn {
  position: absolute;
  right: -2px;
  top: -45px;
  width: 50px;
  height: 50px;
  background-image: url("/spacial/polk/images/close.svg");
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  cursor: pointer; }
  @media (min-width: 768px) {
    .closeSmartBtn {
      right: -35px;
      top: -35px;
      width: 50px;
      height: 50px; } }

.popupThumb {
  position: absolute;
  opacity: 0.3 !important;
  border-radius: 1.5px;
  background-color: #fff; }
  @media (min-width: 992px) {
    .popupThumb {
      display: none; } }

.popupThumb--bottomToTop {
  bottom: 100%;
  right: 0;
  left: 0;
  margin: auto auto 8px;
  width: 40px;
  height: 3px; }

.popupThumb--topToBottom {
  bottom: 100%;
  right: 0;
  left: 0;
  margin: 8px auto auto;
  width: 40px;
  height: 3px; }

.popup-loader {
  width: 100px;
  background-image: url("/spacial/polk/images/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px;
  padding-top: 120px;
  margin: auto;
  text-align: center;
  line-height: 1;
  font-size: 1.6rem; }

.popup__closeConfirm {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1006; }
  .popup__closeConfirm .popup__closeConfirm-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1006; }

.popup__closeConfirm-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 500px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  z-index: 1007;
  border-radius: 8px; }

.popup__closeConfirm-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  width: 100%; }

.popup__btn {
  width: calc(33% - 10px); }

.cbForm {
  display: grid; }
  .cbForm__title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px; }
  .cbForm .cbBtn {
    justify-self: center;
    margin-top: 10px;
    margin-bottom: 10px; }

.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.11); }
  .header__grid {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .header__logo {
    height: 70px;
    width: 100%;
    background-image: url("/special/polk/images/logo.png");
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat; }
  .header__menu {
    align-items: end; }
    @media screen and (min-width: 992px) {
      .header__menu__list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end; }
        .header__menu__list a {
          display: block;
          text-transform: uppercase;
          color: var(--default);
          padding: 0 10px;
          white-space: nowrap; } }
    @media screen and (max-width: 992px) {
      .header__menu__list {
        display: flex;
        flex-direction: column;
        padding: 50px 15px;
        background: #f3f3f3;
        width: 250px;
        height: 100%; }
        .header__menu__list a {
          display: block;
          color: var(--default);
          padding: 10px 0;
          font-size: 18px; } }
    @media screen and (max-width: 992px) {
      .header__menu {
        position: absolute;
        top: 94px;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        transition: 0.3s;
        transform: translateX(-100%);
        background: transparent; }
        .header__menu.active {
          transform: translateX(0);
          background: #00000075; } }
  .header__hamburger {
    width: 50px;
    height: 50px;
    background-image: url("/special/polk/images/hamburger.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 50px; }
    @media screen and (min-width: 992px) {
      .header__hamburger {
        display: none; } }

* {
  margin: 0;
  padding: 0; }

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

html {
  font-size: 8px; }
  @media (min-width: 992px) {
    html {
      font-size: 10px; } }

body {
  font-family: "FuturaPT",Arial,Helvetica,sans-serif;
  -webkit-font-feature-settings: "kern";
  font-feature-settings: "kern";
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: #fff;
  color: var(--textPrimary); }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  color: var(--textPrimary); }

ul {
  margin-bottom: 0; }

a {
  color: var(--yellow-1);
  transition: all .2s ease;
  text-decoration: none; }
  a:hover {
    text-decoration: none;
    color: var(--yellow-2); }

.polkbg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("/special/polk/images/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: .35; }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px; }

.polk__grid {
  display: grid;
  position: relative;
  z-index: 5; }
  @media (min-width: 992px) {
    .polk__grid {
      grid-template-columns: 70% auto;
      grid-gap: 30px; } }

.polk__parad {
  margin-top: 30px; }
  .polk__parad__title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 10px; }
    .polk__parad__title h1 {
      font-size: 2.2rem;
      font-weight: 600; }
  .polk__parad__statistic {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-left: 10px;
    min-width: 90px;
    text-align: right; }
    .polk__parad__statistic span {
      padding: 4px 10px;
      background-color: #FFDADB;
      color: var(--redPrimary);
      border-radius: 4px;
      font-weight: 600; }
  .polk__parad__content {
    position: relative;
    width: 100%;
    padding: 0 12px;
    height: 600px;
    overflow: hidden;
    background-image: url("/special/polk/images/place3.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    border-radius: 24px; }
    .polk__parad__content #pauseResumeButton {
      position: absolute;
      font-size: 20px;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      padding: 10px 15px;
      background-color: #8d27296e;
      border-radius: 10px;
      cursor: pointer;
      top: 20%;
      left: 50%;
      transform: translate(-50%, 0);
      transition: .3s;
      opacity: 0; }
    .polk__parad__content:hover #pauseResumeButton {
      opacity: 1; }
  .polk__parad__row {
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    gap: 20px;
    top: 57%;
    right: 0;
    left: -3%;
    margin: 0 auto;
    transform: scale(0.1);
    opacity: 1;
    transform-origin: center top; }
  .polk__parad__block {
    position: relative;
    display: flex;
    width: 340px;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: space-between;
    transition: all .2s ease-in-out;
    cursor: pointer; }
    .polk__parad__block:hover {
      transform: scale(1.1); }

.polk {
  position: relative;
  padding-bottom: 60px; }
  .polk__block-info {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 25px 10px 20px 10px; }
    @media (min-width: 1200px) {
      .polk__block-info {
        padding: 30px 10px 20px 10px; } }
  .polk__block__image {
    position: relative;
    height: 0;
    padding-top: 100%;
    width: 100%; }
    .polk__block__image:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 1;
      box-shadow: inset 0 0 9px 0 black; }
    .polk__block__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      position: absolute;
      top: 0; }
  .polk__block__rank {
    font-size: 1.6rem;
    color: #4C0006;
    margin-bottom: 4px;
    line-height: 1.4rem; }
  .polk__block__lastName {
    font-size: 1.6rem;
    color: #4C0006;
    font-weight: 700;
    text-transform: uppercase; }
  .polk__block__fio {
    font-size: 1.6rem;
    color: #4C0006; }
  .polk__list {
    display: flex;
    flex-direction: column;
    max-height: 400px;
    overflow: auto; }
    .polk__list__item {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 20px;
      padding: 10px;
      background: var(--gray200);
      border-radius: 35px;
      margin-bottom: 6px;
      opacity: 0;
      transition: opacity 0.5s ease-in-out; }
      .polk__list__item.show {
        opacity: 1; }
      .polk__list__item.hide {
        opacity: 0;
        transition: opacity 0.2s ease-in-out; }
    .polk__list__image {
      width: 45px;
      height: 45px;
      border-radius: 100%;
      overflow: hidden; }
      .polk__list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center; }
    .polk__list__info {
      color: var(--default); }
    .polk__list__rank {
      display: block;
      font-size: 1.2rem; }
    .polk__list__fio {
      font-size: 1.4rem; }
      .polk__list__fio span {
        font-weight: 600;
        text-transform: uppercase; }
    .polk__list__btn {
      position: absolute;
      bottom: 15px;
      left: 0;
      width: 100%;
      text-align: center; }
      .polk__list__btn a {
        display: inline-block;
        padding: 8px 15px;
        border-radius: 6px;
        background: var(--gray200); }
        .polk__list__btn a:hover {
          background: var(--gray300); }
      @media (max-width: 991.98px) {
        .polk__list__btn {
          position: relative;
          bottom: 0;
          margin-top: 10px; } }
  .polk:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/special/polk/images/lenta-fon.webp);
    -webkit-filter: grayscale(100%);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    top: 0;
    left: 0; }
  .polk:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(/special/polk/images/star2.webp);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left center;
    position: absolute;
    top: 0;
    left: 0; }

.polk__menu {
  margin-top: 40px; }
  .polk__menu__header {
    text-align: right; }
    .polk__menu__header a {
      display: block;
      color: var(--redPrimary);
      font-size: 1.5rem;
      margin-bottom: 10px;
      font-weight: 600; }
  .polk__menu__content {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    height: calc(100% - 40px); }
    .polk__menu__content input {
      width: 100%;
      border-radius: 24px;
      background-color: var(--gray200);
      outline: none;
      border: none;
      padding: 10px 15px;
      font-size: 1.6rem; }
    .polk__menu__content button {
      width: 20px;
      height: 20px;
      background-image: url("/special/polk/images/icons/search.svg");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center; }
  .polk__menu__title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gray200);
    padding-bottom: 10px; }
  .polk__menu__search {
    position: relative;
    margin-bottom: 10px; }
    .polk__menu__search button {
      position: absolute;
      border: none;
      outline: none;
      background-color: transparent;
      background-image: url("/special/polk/images/icons/search.svg");
      background-repeat: no-repeat;
      background-size: auto 90%;
      background-position: center;
      right: 10px;
      bottom: 0;
      top: 0;
      width: 26px;
      height: 26px;
      margin: auto 0; }
  .polk__menu__alphabet {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray200); }
    .polk__menu__alphabet span {
      display: block;
      padding: 0 6px;
      cursor: pointer;
      font-size: 1.7rem;
      transition: all .2s ease; }
      .polk__menu__alphabet span:hover {
        background: var(--gray200); }

.lenta {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-50%);
  height: fit-content;
  width: 100%;
  z-index: 3; }
  .lenta img {
    width: 100%;
    height: auto;
    position: relative; }

.parad__popup {
  display: flex;
  align-items: flex-start;
  max-height: calc(80vh - 40px);
  padding: 5px;
  overflow-y: auto;
  margin: -5px; }
  @media (max-width: 575.98px) {
    .parad__popup {
      flex-direction: column; } }
  .parad__popup__image {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex: 0 0 300px; }
    @media (max-width: 767.98px) {
      .parad__popup__image {
        flex: 0 0 210px; } }
    @media (max-width: 575.98px) {
      .parad__popup__image {
        flex: 0 0 100%; } }
    .parad__popup__image img {
      width: 100%;
      object-fit: contain;
      object-position: top; }
  .parad__popup__content {
    flex: 0 1 auto;
    padding: 0 0 0 30px; }
    @media (max-width: 767.98px) {
      .parad__popup__content {
        padding: 0 0 0 15px; } }
    @media (max-width: 575.98px) {
      .parad__popup__content {
        padding: 15px 0 0 0; } }
  .parad__popup__img-descr {
    font-family: "Philosopher", "FuturaPT",Arial,Helvetica,sans-serif;
    font-size: 4rem;
    padding: 100px 15px 10px;
    text-align: right;
    font-style: italic;
    font-weight: 700;
    line-height: 3.3rem;
    position: relative;
    margin-top: -25%; }
    .parad__popup__img-descr:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      background-image: url("/special/polk/images/lenta2.webp");
      background-position: left top;
      background-size: cover;
      background-repeat: no-repeat;
      z-index: 3; }
  .parad__popup__lastname {
    font-size: 3rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase; }
  .parad__popup__firstname {
    font-size: 2.4rem;
    line-height: 1; }
  .parad__popup__middlename {
    font-size: 2.4rem;
    line-height: 1; }
  .parad__popup__rank {
    margin-top: 20px;
    font-size: 2rem;
    color: var(--gray700); }
  .parad__popup__description {
    font-size: 2rem;
    color: var(--gray700);
    margin-top: 20px; }

.player {
  position: relative;
  width: 90%;
  margin: 20px auto 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  padding: 10px 30px;
  flex-wrap: nowrap;
  grid-gap: 10px;
  align-items: center;
  overflow: hidden;
  display: flex; }
  @media (max-width: 575.98px) {
    .player {
      margin: 0 -12px;
      width: calc(100% + 24px);
      border-radius: 24px 24px 0 0;
      padding: 10px 15px; } }
  .player button {
    background-color: transparent;
    border: none;
    outline: none;
    width: 30px;
    height: 30px;
    cursor: pointer; }
  .player__play {
    background-image: url("/special/polk/images/icons/play.svg");
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat; }
    .player__play_played {
      background-image: url("/special/polk/images/icons/pause.svg");
      background-position: center;
      background-size: 45%;
      background-repeat: no-repeat; }
  .player__next {
    background-image: url("/special/polk/images/icons/next.svg");
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat; }
  .player__prev {
    background-image: url("/special/polk/images/icons/next.svg");
    background-position: center;
    background-size: 90%;
    background-repeat: no-repeat;
    transform: scaleX(-1); }
  .player__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    overflow: hidden; }
    .player__progress input[type=range] {
      -webkit-appearance: none;
      width: 100%;
      -webkit-transition: .2s;
      /* Плавность перехода */
      transition: opacity .2s; }
    .player__progress input[type=range]:focus {
      outline: none; }
    .player__progress input[type=range]::-webkit-slider-runnable-track {
      width: 100%;
      height: 8px;
      cursor: pointer;
      background: var(--redPrimary);
      border-radius: 10px;
      border: none; }
    .player__progress input[type=range]::-webkit-slider-thumb {
      border: none;
      height: 12px;
      width: 12px;
      border-radius: 50px;
      background: var(--redAccent);
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -2px; }
    .player__progress input[type=range]:focus::-webkit-slider-runnable-track {
      background: var(--redPrimary); }
    .player__progress input[type=range]::-moz-range-track {
      width: 100%;
      height: 10px;
      cursor: pointer;
      background: var(--redPrimary);
      border-radius: 10px;
      border: none; }
    .player__progress input[type=range]::-moz-range-thumb {
      border: none;
      height: 12px;
      width: 12px;
      border-radius: 50px;
      background: #FFFFFF;
      cursor: pointer; }
    .player__progress input[type=range]::-ms-track {
      width: 100%;
      height: 8px;
      cursor: pointer;
      background: transparent;
      border-color: transparent;
      color: transparent; }
    .player__progress input[type=range]::-ms-fill-lower {
      background: var(--redPrimary);
      border: none;
      border-radius: 20px; }
    .player__progress input[type=range]::-ms-fill-upper {
      background: var(--redPrimary);
      border: none;
      border-radius: 20px; }
    .player__progress input[type=range]::-ms-thumb {
      margin-top: 1px;
      border: none;
      height: 12px;
      width: 12px;
      border-radius: 50px;
      background: #FFFFFF;
      cursor: pointer; }
    .player__progress input[type=range]:focus::-ms-fill-lower {
      background: var(--redPrimary); }
    .player__progress input[type=range]:focus::-ms-fill-upper {
      background: var(--redPrimary); }
  .player__volume {
    flex: 0 0 15%; }
    .player__volume input[type=range] {
      -webkit-appearance: none;
      width: 100%; }
    .player__volume input[type=range]:focus {
      outline: none; }
    .player__volume input[type=range]::-webkit-slider-runnable-track {
      width: 100%;
      height: 8px;
      cursor: pointer;
      background: var(--redPrimary);
      border-radius: 10px;
      border: none; }
    .player__volume input[type=range]::-webkit-slider-thumb {
      border: none;
      height: 12px;
      width: 12px;
      border-radius: 50px;
      background: var(--redAccent);
      cursor: pointer;
      -webkit-appearance: none;
      margin-top: -2px; }
    .player__volume input[type=range]:focus::-webkit-slider-runnable-track {
      background: var(--redPrimary); }
    .player__volume input[type=range]::-moz-range-track {
      width: 100%;
      height: 10px;
      cursor: pointer;
      background: var(--redPrimary);
      border-radius: 10px;
      border: none; }
    .player__volume input[type=range]::-moz-range-thumb {
      border: none;
      height: 12px;
      width: 12px;
      border-radius: 50px;
      background: #FFFFFF;
      cursor: pointer; }
    .player__volume input[type=range]::-ms-track {
      width: 100%;
      height: 8px;
      cursor: pointer;
      background: transparent;
      border-color: transparent;
      color: transparent; }
    .player__volume input[type=range]::-ms-fill-lower {
      background: var(--redPrimary);
      border: none;
      border-radius: 20px; }
    .player__volume input[type=range]::-ms-fill-upper {
      background: var(--redPrimary);
      border: none;
      border-radius: 20px; }
    .player__volume input[type=range]::-ms-thumb {
      margin-top: 1px;
      border: none;
      height: 12px;
      width: 12px;
      border-radius: 50px;
      background: #FFFFFF;
      cursor: pointer; }
    .player__volume input[type=range]:focus::-ms-fill-lower {
      background: var(--redPrimary); }
    .player__volume input[type=range]:focus::-ms-fill-upper {
      background: var(--redPrimary); }
  .player__tools {
    flex: 0 0 auto; }
  .player__track-name {
    flex: 1 1 auto; }
    .player__track-name__name {
      font-weight: 600; }

.vdPopup {
  max-height: 80vh; }

.closePopupBtn:after {
  background-image: url(/special/polk/images/close.svg); }

.may9__multiSlider-history {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  height: 300px; }
  .may9__multiSlider-history:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 24%, transparent 45%, transparent 100%);
    z-index: 0; }
  .may9__multiSlider-history .may9__multiSlider-title {
    position: relative;
    z-index: 1;
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 2.4rem; }
  .may9__multiSlider-history .may9__multiSlider-descr {
    position: relative;
    z-index: 1;
    display: block;
    color: rgba(255, 255, 255, 0.8); }
  .may9__multiSlider-history .may9__multiSlider-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 20px; }

.may9__multiSlider-video {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  height: 300px; }
  .may9__multiSlider-video:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 24%, transparent 45%, transparent 100%);
    z-index: 0; }
  .may9__multiSlider-video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='23' viewBox='0 0 20 23'%3E%3Cpath d='M9.766,3.015a2,2,0,0,1,3.468,0L21.277,17a2,2,0,0,1-1.734,3H3.457a2,2,0,0,1-1.734-3Z' transform='translate(20) rotate(90)' fill='%23dfdfdf'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; }
  .may9__multiSlider-video:hover:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='23' viewBox='0 0 20 23'%3E%3Cpath d='M9.766,3.015a2,2,0,0,1,3.468,0L21.277,17a2,2,0,0,1-1.734,3H3.457a2,2,0,0,1-1.734-3Z' transform='translate(20) rotate(90)' fill='%23DA271E'/%3E%3C/svg%3E"); }
  .may9__multiSlider-video .may9__multiSlider-title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
    z-index: 1;
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 2.4rem;
    text-align: center; }

.may9__block {
  margin-bottom: 60px; }

.may9__title {
  font-size: 2rem;
  color: #353535;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 1em; }

.may9__bigSlider {
  position: relative; }
  .may9__bigSlider .owl-prev {
    left: 30px !important; }
  .may9__bigSlider .owl-next {
    right: 30px !important; }
  .may9__bigSlider .owl-dots {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%; }
    .may9__bigSlider .owl-dots .owl-dot {
      background: #fff; }

.may9__bigSlider-item {
  display: block;
  height: 600px;
  position: relative;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat; }
  @media (min-width: 1200px) {
    .may9__bigSlider-item {
      height: 100vh; } }
  .may9__bigSlider-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 24%, transparent 55%, transparent 100%); }
    @media (min-width: 768px) {
      .may9__bigSlider-item:after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 24%, transparent 45%, transparent 100%); } }

.may9__bigSlider-item-top {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 0;
  width: 100%;
  padding: 0 20px; }

.may9__bigSlider-item-content {
  position: absolute;
  z-index: 1;
  bottom: 20%;
  left: 0;
  width: 100%;
  padding: 0 20px; }

.may9__text {
  font-size: 16px; }
  .may9__text p:not(:last-child) {
    margin-bottom: 0.5em; }

.hs__year {
  color: #000000;
  font-size: 6rem;
  font-weight: 700; }

.hs__title {
  color: #000000;
  font-size: 2.8rem;
  font-weight: 500;
  width: 100%;
  line-height: 1;
  background: #fff;
  padding: 5px; }
  @media (min-width: 768px) {
    .hs__title {
      width: 40%; } }

.hs__descr {
  display: inline-block;
  padding: 5px 20px;
  text-transform: uppercase;
  color: #fff;
  background: #000;
  font-size: 2.4rem;
  font-weight: 600; }
  @media (min-width: 768px) {
    .hs__descr {
      font-size: 1.8rem; } }

.hs__red-title {
  display: block;
  margin-top: 10px; }
  .hs__red-title h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    background: #E52C23;
    padding: 0 30px;
    margin: 0; }
    @media (min-width: 768px) {
      .hs__red-title h2 {
        display: inline;
        font-size: 5rem;
        margin: 10px 0; } }

.owl-stage {
  display: flex;
  flex-wrap: nowrap; }

.owl-dots {
  text-align: center !important; }
  .owl-dots .owl-dot {
    display: inline-block;
    border: none;
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    background: #727C94; }
  .owl-dots .owl-dot.active {
    background: #E52C23;
    width: 40px;
    border-radius: 7px; }

@media (max-width: 991.98px) {
  .owl-nav {
    margin-top: 30px; } }
.owl-nav .owl-prev, .owl-nav .owl-next {
  display: block;
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 300ms ease;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  bottom: -10px;
  border: none; }
  @media (min-width: 992px) {
    .owl-nav .owl-prev, .owl-nav .owl-next {
      top: 40%;
      bottom: auto; } }
  .owl-nav .owl-prev:after, .owl-nav .owl-next:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto 18px;
    background-repeat: no-repeat;
    background-position: center; }
.owl-nav .owl-prev {
  left: 15px;
  box-shadow: 2px 2px 5px 0 #00000026; }
  @media (min-width: 992px) {
    .owl-nav .owl-prev {
      left: 10px; } }
  .owl-nav .owl-prev:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2230%22%20viewBox%3D%220%200%2016%2030%22%3E%3Cpolygon%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20points%3D%2216%2050%202%2036%2016%2022%2015%2021%201%2035%200%2036%201%2037%2015%2051%22%20transform%3D%22translate(0%20-21)%22%2F%3E%3C%2Fsvg%3E"); }
.owl-nav .owl-next {
  right: 15px;
  transform: rotate(180deg);
  box-shadow: 2px -2px 5px 0 #00000026; }
  @media (min-width: 992px) {
    .owl-nav .owl-next {
      right: 10px; } }
  .owl-nav .owl-next:after {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2230%22%20viewBox%3D%220%200%2016%2030%22%3E%3Cpolygon%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20points%3D%2216%2050%202%2036%2016%2022%2015%2021%201%2035%200%2036%201%2037%2015%2051%22%20transform%3D%22translate(0%20-21)%22%2F%3E%3C%2Fsvg%3E"); }

.hh-soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  padding: 2px;
  border-radius: 3px;
  background-color: transparent;
  transition: 0.3s; }
  .hh-soc-item svg {
    display: block; }
  .hh-soc-item.vk:hover, .hh-soc-item.telegram:hover {
    background-color: #0088cc; }
  .hh-soc-item.youtube:hover {
    background-color: #cd201f; }
  .hh-soc-item.rutube:hover {
    background-color: #100943; }
  .hh-soc-item.ok:hover {
    background-color: #ed812b; }
  .hh-soc-item.dzen:hover {
    background-color: #000; }
  .hh-soc-item.rss:hover {
    background-color: black; }

.footer__top {
  padding: 40px 0;
  background-color: #bfbfbf2e; }
.footer__row {
  display: flex;
  margin: 0 -15px; }
  @media (max-width: 991.98px) {
    .footer__row {
      flex-wrap: wrap;
      justify-content: center;
      margin: 0 -12px; } }
.footer__col {
  flex: 0 1 25%;
  padding: 0 15px;
  margin-bottom: 30px; }
  @media (max-width: 991.98px) {
    .footer__col {
      flex: 0 1 33.33%;
      padding: 0 12px; } }
  @media (max-width: 767.98px) {
    .footer__col {
      flex: 0 1 50%; } }
  @media (max-width: 575.98px) {
    .footer__col {
      flex: 1 1 100%;
      text-align: center; } }
  @media (max-width: 991.98px) {
    .footer__col:first-child {
      flex: 1 1 100%;
      text-align: center; } }
  @media (max-width: 767.98px) {
    .footer__col:last-child {
      text-align: center; } }
.footer__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase; }
.footer__logo img {
  max-width: 150px; }
.footer__links {
  display: flex;
  flex-direction: column; }
  .footer__links a {
    margin-bottom: 10px;
    display: inline-block;
    transition: .3s;
    font-size: 15px; }
    .footer__links a:hover {
      color: #8D2729; }
.footer__soc {
  list-style: none;
  display: flex;
  align-items: center; }
  @media (max-width: 767.98px) {
    .footer__soc {
      justify-content: center; } }
  .footer__soc li:not(:last-child) {
    margin-right: 5px; }
  .footer__soc .hh-soc-item {
    height: 32px;
    width: 32px;
    padding: 4px; }
    .footer__soc .hh-soc-item svg {
      width: 24px; }
.footer__bottom {
  background-color: #BFBFBF;
  font-size: 15px;
  line-height: normal; }

#caption {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  color: #580002;
  text-align: center;
  position: absolute;
  padding: 30px 56px;
  width: max-content;
  max-width: 80%;
  background: #ffffffe0;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  @media screen and (max-width: 550px) {
    #caption {
      font-size: 24px;
      width: 90%;
      max-width: 100%;
      padding: 20px 30px; }
      #caption br {
        display: none; } }

/*# sourceMappingURL=style.css.map */
