.page-header {
    display: table;
    width: 100%;
    height: 200px;
    text-align: center;
    background-image: url('../images/bg/page-cover.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 56px;
}
.page-header__inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: 40px 0;
}
.page-header_inverse {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .page-header {
        height: auto;
        margin-bottom: 32px;
    }
}

.page-title {
    font-weight: bold;
    font-size: 50px;
    line-height: 120%;
    text-align: center;
    letter-spacing: -0.005em;
    color: #FFFFFF;
    margin-bottom: 72px;
}
.page-title_mb_md {
    margin-bottom: 32px;
}

.section-page {
    position: relative;
}
.section-page_first {
    padding-top: 220px;
}
.section-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.section-page__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
}
.section-page_first .section-page__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(2, 2, 1, 0) 74.48%, #212022 100%), rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.section_dark {
    background: #161616;
}
.section_black {
    background: #000;
}
.section-page_seo {
    color: #fff;
    padding: 0 0 40px;
}
.section-page_seo-light {
    background: #fff;
    color: #000;
    margin-top: -100px;
    padding-top: 40px;
}

.section-page_first_w100 .section-page__bg {
    height: auto;
}
.section-page_first_w100 .section-page__bg-img {
    object-fit: unset;
    width: 100%;
    height: auto;
    position: relative;
    max-width: none;
}
.section-page__content {
    position: relative;
    z-index: 5;
}
.section-page__title {
    font-weight: bold;
    font-size: 40px;
    line-height: 125%;
    color: #FFFFFF;
    text-align: center;
}
.section-page__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 125%;
    color: #FFFFFF;
    text-align: center;
}
.section-page:last-child {
    margin-bottom: 40px;
}
.section-page_first_w100 {
    overflow: hidden;
}
.section-page_first_w100:last-child {
    padding-bottom: 40px;
    margin-bottom: 0;
}
* + .section-page__text {
    margin-top: 13px;
}
@media screen and (max-width: 767px) {
    .page-title {
        font-size: 36px;
    }
    .section-page_first {
        padding-top: 80px;
    }
    .section-page__title {
        font-size: 28px;
    }
    .section-page__text {
        font-size: 18px;
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.breadcrumbs__item {
    font-weight: 300;
    font-size: 11px;
    line-height: 1.55;
    color: #FFFFFF;
    position: relative;
}
.breadcrumbs__item:not(:last-child) {
    padding-right: 17px;
    margin-right: 7px;
}
.breadcrumbs__item:not(:last-child):before {
    content: "—";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 1px;
}
.breadcrumbs__link {
    color: #FFFFFF;
    border-bottom: 1px solid transparent;
}
.breadcrumbs__link:hover {
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.5);
}
@media screen and (max-width: 767px) {
    .breadcrumbs {
        display: none;
    }
}

.section {
    display: table;
    width: 100%;
    position: relative;
}
.section__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 2px);
  width: calc(177.77777778vh + 2px);
  min-width: calc(100% + 2px);
  min-height: calc(56.25vw + 2px);
  cursor: pointer;
}
.section__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.section__content {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  z-index: 5;
  padding: 80px 0;
}
.section_pd_md .section__content {
    padding: 40px 0;
}
.section__content_overlay {
  mix-blend-mode: overlay;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
    .section__content_overlay_mobile {
        mix-blend-mode: initial;
    }
}
.section_content {
    padding: 0 0 60px;
}

.section_intro .section__video-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
  z-index: 3;
}
.section_intro.section-page_first .section__video-wrapper {
    opacity: 0.8;
}
.section_intro.section-page_first .section__video-wrapper:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  background: -moz-linear-gradient(top,  rgba(22,22,22,0) 0%, rgba(22,22,22,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(22,22,22,0) 0%,rgba(22,22,22,1) 100%);
  background: linear-gradient(to bottom,  rgba(22,22,22,0) 0%,rgba(22,22,22,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00161616', endColorstr='#161616',GradientType=0 );
  z-index: 3;
}
.section_full {
  height: 100vh;
}
.section_layout_fixed {
    table-layout: fixed;
}
.section_detail {
    z-index: 7;
}
.section_articles {
    position: relative;
    padding-bottom: 35%;
}
.section_articles:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    top: 0;
    bottom: 0;
    width: calc(100vw + 30px);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url("../images/bg/bg-articles.jpg");
    filter: blur(3px);
}

.auth-logo {
    display: block;
    position: relative;
    margin: 0 auto 60px;
    width: 207px;
    height: 40px;
    background: url("../images/ak-rs-logo.svg") center center no-repeat;
    background-size: contain;
}
.user-area-form {
    margin-bottom: 60px;
}


a {
    text-decoration: none !important;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease;
    color: #000;
}
a:hover {
    text-decoration: none !important;
    color: #000;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* helpers */
.text-nowrap {
    white-space: nowrap !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-primary {
    color: #C8102E !important;
}
.text-green,
.status-green {
    color: #88BB00 !important;
}
.status-red {
    color: #fb7474 !important;
}
.text-grey {
    color: #AAAAAA !important;
}
.text-white {
    color: #fff !important;
}
.text-black {
    color: #000 !important;
}
.text-bold {
    font-weight: bold !important;
}
.text-larger {
    font-size: larger;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-120 {
    margin-bottom: 120px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-self-end {
    align-self: flex-end;
}

.fade {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fade:not(.show) {
    opacity: 0;
    visibility: hidden;
}
.hidden {
    display: none !important;
}
@media screen and (min-width: 768px) {
    .visible_mobile {
        display: none !important;
    }
    .flex-nowrap {
        flex-wrap: nowrap !important;
    }
}
@media screen and (min-width: 992px) {
    .visible_tablet {
        display: none !important;
    }
    .flex-nowrap_lg {
        flex-wrap: nowrap !important;
    }
}
@media screen and (max-width: 1199px) {
    .hidden_lg {
        display: none !important;
    }
}
@media screen and (max-width: 991px) {
    .hidden_tablet {
        display: none !important;
    }
}
@media screen and (max-width: 767px) {
    .hidden_mobile {
        display: none !important;
    }
    .text-center_mobile {
        text-align: center !important;
    }
}

/* typography */
h1 {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.25;
    margin: 0;
}
.h1 {
    font-weight: bold;
    font-size: 32px;
    line-height: 1.25;
}
h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
    margin: 0;
}
h3, .h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.33;
    margin: 0;
}
h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 10px;
}
h5 {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 10px;
}
@media screen and (max-width: 991px) {
    h1 {
        font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 22px;
    }
}

.content-styles {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.54;
    color: #000000;
}

.content-styles > * + * {
    margin-top: 20px;
}

.content-styles p {
    margin: 0;
}
.content-styles p + p {
    margin-top: 20px;
}
.content-styles ul:not([class]) {
    list-style-type: none;
    margin: 0 0 15px;
    padding: 0;
}
.content-styles ul:not([class]) > li {
    padding-left: 46px;
    position: relative;
}
.content-styles ul:not([class]) > li:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: #CC392B;
    top: 11px;
    left: 20px;
}
.content-styles ul:not([class]) > li:not(:last-child) {
    margin-bottom: 15px;
}
.content-styles ol:not([class]) {
    padding: 0;
    margin: 0 0 15px;
    list-style-type: none;
    counter-reset: ol-item;
}
.content-styles ol:not([class]) > li {
    padding-left: 46px;
    position: relative;
}
.content-styles ol:not([class]) > li:before {
    content: counter(ol-item) ".";
    counter-increment: ol-item;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 1px;
}
.content-styles ol:not([class]) > li:not(:last-child) {
    margin-bottom: 10px;
}
.content-styles h2 {
    margin-bottom: 20px;
}
.content-styles * + h2 {
    margin-top: 40px;
}
.content-styles * + h3,
.content-styles * + .h3,
.content-styles * + h4,
.content-styles * + h5 {
    margin-top: 30px;
}
.content-styles * + ul:not([class]),
.content-styles * + ol:not([class]),
.content-styles * + p {
    margin-top: 20px;
}
.content-styles .h1 + h2 {
    margin-top: 6px;
}
.content-styles .h1 + p {
    margin-top: 24px;
}
.content-styles a:not([class]) {
    color: #C8102E;
    border-bottom: 1px solid rgba(200,16,46,0.5);
}
.content-styles a:not([class]):hover {
    color: #C8102E;
    border-color: transparent;
}
.content-styles img:not([class]) {}
.content-styles_mb {
    margin-bottom: 80px;
}
.content-section {
    margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
    .row.content-section img:not([class]) {
        margin-top: 16px;
    }
    .content-styles img:not([class]) {
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 767px) {
    .content-styles {
        font-size: 15px;
        line-height: 1.6;
    }
    .content-styles * + h2,
    .content-styles * + h3,
    .content-styles * + h4,
    .content-styles * + h5 {
        margin-top: 25px;
    }
}
@media screen and (min-width: 768px) {
    .content-styles_lg {
        font-size: 18px;
    }
}

.link-primary {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: #111111;
    padding-bottom: 5px;
    border-bottom: 2px solid #CC392B;
}

hr {
    height: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 0;
    border-top: 2px solid #F7F7F7;
}

/*.btn {
    border: none;
    text-decoration: none !important;
    padding: 0 20px;
    line-height: 48px;
    height: 48px;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    background: none;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    z-index: 1;
    border-radius: 2px;
    box-shadow: none;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
}*/
.btn {
    height: 60px;
    line-height: 54px;
    padding: 0 40px;
    white-space: nowrap;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.005em;
    color: #FFFFFF;
    /*text-transform: uppercase;*/
    border: 3px solid transparent;
    border-radius: 50px;
    text-decoration: none !important;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    box-shadow: none;
}
.btn_default {
    color: #FFFFFF;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}
.btn_default:hover {
    background: #ea072b;
    border-color: #ea072b;
    color: #fff;
}
.btn_primary {
    background: #C8102E;
    color: #fff;
}
.btn_primary:hover {
    color: #fff;
    background: #9D0E25;
}
.btn_white {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.btn_white:hover {
  background: #ea072b;
  color: #fff;
  border-color: #ea072b;
}
.btn_secondary {
    background: #A0A0A0;
    color: #fff;
    font-size: 16px;
}
.btn_secondary:hover {
    background: #888;
    color: #fff;
}
.btn_glow {
    background: #C50D2A;
    font-size: 16px;
    text-transform: none;
    line-height: 50px;
    height: 50px;
    padding: 0 32px;
    color: #fff;
    border: none;
    box-shadow: 0 0 30px 0 rgba(247, 4, 36, 1);
}
/*.btn_glow:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #C50D2A;
    z-index: -1;
    filter: blur(14px);
    transition: opacity 0.3s ease;
}*/
.btn_glow:hover {
    color: #fff;
}
.btn_glow:hover {
    /*opacity: 0.8;*/
    box-shadow: 0 0 30px 0 rgba(247, 4, 36, 0.8);
}
.btn_glow:active {
    /*opacity: 0;*/
    box-shadow: none;
}
.btn_glow_black {
    background: #000;
    border: 1px solid #F70424;

}
/*.btn_default {
    font-size: 11px;
    background: #fff;
    color: #757575;
    border: 1px solid #757575;
    height: 48px;
    line-height: 48px;
}
.btn_default:hover {
    color: #C8102E;
    border-color: #C8102E;
}*/
.btn_disabled, .btn[disabled] {
    cursor: not-allowed !important;
}
.btn_block {
    display: flex;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.btn_flex {
    display: flex;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.btn_mmd {
    height: 48px;
    line-height: 48px;
}
.btn_md {
    height: 40px;
    line-height: 40px;
}
.btn_sm {
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    text-transform: none;
    font-size: 12px;
}

@media screen and (max-width: 575px) {
    .btn_wide {
        padding: 0 15px;
        font-size: 15px;
    }
}
@media screen and (max-width: 359px) {
    .btn_wide {
        font-size: 14px;
        letter-spacing: -0.05em;
    }
}


.nav-tabs {}
.nav-tabs .swiper-slide {
    width: auto;
}
.nav-tabs .swiper-slide:not(:last-child) {
    margin-right: 40px;
}
.nav-tabs .swiper-button-prev, .nav-tabs .swiper-button-next {
    width: 60px;
    height: 24px;
    border-radius: 0;
    box-shadow: none;
    color: #C8102E;
    pointer-events: none;
}
.nav-tabs .swiper-button-prev:before, .nav-tabs .swiper-button-next:before {
    width: 40px;
    height: 24px;
    transform: none;
    top: 0;
    pointer-events: auto;
    line-height: 24px;
    text-align: center;
}
.nav-tabs .swiper-button-prev:hover, .nav-tabs .swiper-button-next:hover {
    color: #9D0E25;
}
.nav-tabs .swiper-button-prev {
    left: 0;
    background: linear-gradient(90deg, #f6f6f6 50%, rgba(255, 255, 255, 0) 100%) !important;
}
.nav-tabs .swiper-button-prev:before {
    transform: rotate(90deg);
    left: 0;
}
.nav-tabs .swiper-button-next {
    right: 0;
    background: linear-gradient(270deg, #f6f6f6 50%, rgba(255, 255, 255, 0) 100%) !important;
}
.nav-tabs .swiper-button-next:before {
    transform: rotate(-90deg);
    right: 0;
}
.nav-tabs .swiper-button-disabled:before {
    pointer-events: none;
}
.nav-tabs__link {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    height: 24px;
    white-space: nowrap;
    border-bottom: 1px solid #C8102E;
    padding-bottom: 2px;
    color: #C8102E;
    display: block;
}
.nav-tabs__link:hover {
    color: #C8102E;
    border-color: transparent;
}
.nav-tabs__link.active,
.nav-tabs__link.active:hover {
    color: #000000;
    border-color: transparent;
}

.nav-tabs_line {
    position: relative;
}
.nav-tabs_line:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #E5E5E5;
    pointer-events: none;
}
.nav-tabs_line .nav-tabs__link {
    height: 43px;
    font-weight: bold;
    font-size: 13px;
    line-height: 20px;
    padding-bottom: 20px;
    border-bottom-width: 3px;
    border-color: transparent;
    color: #000000;
}
.nav-tabs_line .nav-tabs__link:hover {
    color: #757575;
    border-color: #AAAAAA;
}
.nav-tabs_line .nav-tabs__link.active {
    color: #C8102E;
    border-color: #C8102E;
}
.nav-tabs_line .swiper-button-prev, 
.nav-tabs_line .swiper-button-next {
    height: 40px;
    top: 0;
    transform: none;
}
.nav-tabs_line .swiper-button-prev:before, 
.nav-tabs_line .swiper-button-next:before {
    height: 40px;
    line-height: 40px;
}
@media screen and (max-width: 767px) {
    .nav-tabs {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .nav-tabs .swiper-container {
        overflow: visible;
    }
    .nav-tabs .swiper-slide:not(:last-child) {
        margin-right: 24px;
    }
    .nav-tabs .swiper-button-prev {
        left: -20px;
    }
    .nav-tabs .swiper-button-next {
        right: -20px;
    }
    .nav-tabs__link {
        font-size: 16px;
    }
}

.tab-content {
    margin-top: 30px;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content .active {
    display: block;
}

.swiper-button-prev, .swiper-button-next {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 50%;
    color: #C8102E;
    transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
    margin: 0;
    transform: translate(0, -50%);
}
.swiper-button-prev:before, .swiper-button-next:before {
    content: "\e901";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    font-family: "ak-icons";
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}
.swiper-button-prev:after, .swiper-button-next:after {
    content: none;
    display: none;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    color: #9D0E25;
}
.swiper-button-prev:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.swiper-button-disabled {
    opacity: 0 !important;
}
.swiper-scrollbar {
    background: #E5E5E5;
    border-radius: 10px;
}
.swiper-scrollbar-drag {
    border-radius: 10px;
    background: #C8102E;
}
.swiper-container-vertical .swiper-scrollbar {
    top: 0;
    height: 100%;
    width: 4px;
    right: 0;
}
.swiper-pagination-bullet {
    background: none;
    border: 1px solid #C8102E;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: #C8102E;
}

.swiper-button_red {
    background: none;
    border: 1px solid #F70424;
    color: #F70424;
}
.swiper-button_red:before {
    font-size: 20px;
}

.swiper-button_empty {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}
.swiper-button_empty:before {
    font-size: 16px;
}
.swiper-button_empty:hover {
    border-color: #F70424;
}


.form-block {
    position: relative;
    min-height: 300px;
}
.form-block_mb_md {
    margin-bottom: 50px;
}
.form-block__title {
    font-size: 28px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 32px;
}
.form-block__content {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-block__result {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-block__result-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.form-block__content_hidden {
    display: none!important;
    opacity: 0;
    visibility: hidden;
}
.form-block__result_active {
    /*display: block!important;*/
    visibility: visible;
    opacity: 1;
}
.form-block__result-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 28px;
}
.form-block__result-message {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25;
    color: #000000;
    padding-left: 42px;
    position: relative;
    margin-bottom: 24px;
}
.form-block__result-message:before {
    content: "\e900";
    position: absolute;
    top: 2px;
    left: 0;
    font-family: "ak-icons";
    font-size: 25px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    color: #C8102E;
}
.form-block__result-text {
    font-weight: normal;
    font-size: 18px;
    line-height: 1.33;
    color: #000000;
}
@media screen and (max-width: 767px) {
    .form-block__result-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    .form-block__result-message {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .form-block__result-text {
        font-size: 15px;
    }
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}
.form-group_md {
    margin-bottom: 20px;
}
.form-group_lg {
    margin-bottom: 40px;
}
.form-group_required:after {
    content: "*";
    position: absolute;
    top: 11px;
    right: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    color: #C8102E;
    margin-top: 3px;
}
.form-group_wl.form-group_required:after {
    top: 39px;
}
.form-group_required .form-control {
    padding-right: 42px !important;
}
.form-control {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    height: 44px;
    padding: 10px 20px;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.54;
    color: #111111;
    width: 100%;
    display: block;
    box-shadow: none;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.form-control:hover,
.form-control:focus {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}
.form-control.is-invalid,
.form-control_error {
    border-color: #C8102E;
    color: #C8102E;
}
.form-control_large {
    width: 100%;
    display: block;
    height: 60px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: bold;
}
.form-control_flag {
    padding-left: 60px !important;
    background-position: 20px center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDIxIDE1Ij4gIDxnIGZpbGw9Im5vbmUiPiAgICA8cmVjdCB3aWR0aD0iMjEiIGhlaWdodD0iNSIgZmlsbD0iI0VGRUZFRiIvPiAgICA8cmVjdCB3aWR0aD0iMjEiIGhlaWdodD0iNSIgeT0iMTAiIGZpbGw9IiNGRjNEMDAiLz4gICAgPHJlY3Qgd2lkdGg9IjIxIiBoZWlnaHQ9IjUiIHk9IjUiIGZpbGw9IiMzRjUxQjUiLz4gIDwvZz48L3N2Zz4=");
}
.form-label {
    font-weight: 300;
    font-size: 13px;
    line-height: 1.55;
    color: #757575;
}
.form-label_offset {
    padding-left: 20px;
    font-size: 10px;
}
.form-group_slide {}
.form-group_slide .form-control {
    padding: 18px 20px 6px;
}
.form-group_slide .form-label {
    position: absolute;
    bottom: 100%;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.55;
    color: #757575;
    transform: translate(0,41px);
    left: 20px;
    right: 20px;
    pointer-events: none;
    transition: transform 0.2s ease, font-size 0.2s ease;
    white-space: nowrap;
}
.form-group_slide .form-control:focus ~ .form-label,
.form-group_slide .form-control_not_empty ~ .form-label,
.form-group_slide .form-label_offset_slide {
    transform: translate(0,28px);
    font-size: 10px;
}
.invalid-feedback,
.form-error {
    color: #C8102E;
    font-size: 12px;
    margin-top: 3px;
}
.form-response {
    margin-top: 16px;
}
textarea.form-control {
    height: 96px;
    resize: none;
}
.form-image {
    max-height: 150px;
    padding: 10px;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    margin-bottom: 16px;
}

.form-helper {
    font-weight: 300;
    font-size: 11px;
    line-height: 1.55;
    color: #111111;
}
.form-helper a:not([class]) {
    color: #C8102E;
    border-bottom: 1px solid rgba(200,16,46,0.5);
}
.form-helper a:not([class]):hover {
    color: #C8102E;
    border-color: transparent;
}

.file-upload {
    display: table;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    
    height: 120px;
    cursor: pointer;
    background: #ECEDEF;
}
.file-upload__inner {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.3;
    color: #757575;
    border: 2px dashed #C6CDD3;
}
.file-upload__button {
    margin-bottom: 8px;
    text-transform: uppercase;
    display: block;
}
.file-upload__title {
    display: block;
}
.file-upload__input[type=file] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    max-width: 100%;
}
.file-upload__input.form-control_error ~ .file-upload__inner {
    border-color: #C8102E;
}

.studio-file-upload {
    display: block;
    position: relative;
    overflow: hidden;
}
.studio-file-upload__label {
    display: inline-block;
    margin: 0;
}
.studio-file-upload__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: #757575;
    position: relative;
    cursor: pointer;
    z-index: 3;
    background: #ECEDEF;
    border: 1px solid #C6CDD3;
    height: 48px;
    padding: 0 32px;
    min-width: 230px;
}
.studio-file-upload__list {
    margin-top: 20px;
    padding: 10px 0 0;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}
.studio-file-upload__list:before {
    content: "Прикрепленные файлы:";
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.21;
    color: #535353;
    margin-bottom: 20px;
}
.studio-file-upload__list-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.studio-file-upload__list-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #757575;
    min-height: 24px;
}
.studio-file-upload__list-del {
    flex: 0 0 auto;
    margin-left: 12px;
    width: 24px;
    height: 24px;
    position: relative;
    color: #E01D24;
    top: -2px;
}
.studio-file-upload__list-del:before {
    content: "\e902";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "ak-icons";
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}
.studio-file-upload__list-del:hover {
    color: #bbb;
}
.studio-file-upload__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    max-width: 100%;
    z-index: 1;
}
.studio-photo {
    position: relative;
    margin-bottom: 20px;
}
.studio-photo__delete {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 15px;
    color: #E01D24;
}
.studio-photo__delete:hover {
    color: #fff;
}
.studio-photo__delete:before {
    content: "\e902";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "ak-icons";
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}
.studio_doc-item {
    display: flex;
}
.studio_doc-item span {
    padding: 0 5px;
}
.studio-doc__delete {
    position: relative;
    width: 24px;
    height: 24px;
    color: #E01D24;
}
.studio-doc__delete:hover {
    color: #bbb;
}
.studio-doc__delete:before {
    content: "\e902";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: "ak-icons";
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
}

.bootstrap-select {
    position: relative;
    width: 100% !important;
    text-align: left;
}
.bootstrap-select .dropdown-toggle.btn {
    width: 100%;
    line-height: 44px;
    height: 44px;
    padding: 0 40px 0 15px;
    font-weight: normal;
    font-size: 14px;
    color: #757575;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 0;
    text-transform: none;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu {
    padding: 0;
    border-radius: 0;
    border-top: none;
    margin-top: 0px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu ul {
    max-height: 215px !important;
    overflow-y: auto !important;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu a {
    padding: 8px 15px;
    display: block;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.3;
    color: #232628;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu a:hover,
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu a.active {
    color: #C8102E;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu a .text {
    display: flex;
    flex-direction: column;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu a .text-muted {
    padding: 0;
    order: -1;
    line-height: 1;
    font-size: 10px;
    font-weight: 500;
    color: rgba(43, 43, 43, 0.5);
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu li:first-child {
    margin-top: 7px;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu li:last-child {
    margin-bottom: 7px;
}
.bootstrap-select .dropdown-toggle.btn + .dropdown-menu li.disabled {
    display: none;
}
.bootstrap-select .dropdown-toggle.btn.bs-placeholder {
    color: #757575;
}
.bootstrap-select .dropdown-toggle.btn .bs-caret {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translate(0, -50%);
}
.bootstrap-select .dropdown-toggle.btn .filter-option {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    width: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: normal;
    justify-content: center;
}
.bootstrap-select.dropup .dropdown-toggle.btn + .dropdown-menu {}
.bootstrap-select > .dropdown-toggle {
    cursor: pointer;
    position: relative;
}
.bootstrap-select > .dropdown-toggle:focus {
    outline: none !important;
}
.bootstrap-select > .dropdown-menu {
    display: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
}
.bootstrap-select > .dropdown-menu.show {
    display: block;
}
.bootstrap-select .bs-caret {
    position: relative;
    right: 11px;
    width: 8px;
    height: 8px;
}
.bootstrap-select .dropdown-toggle.btn:before {
    content: "\e901";
    font-family: "ak-icons";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, -50%);
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    transition: transform 0.2s ease;
    color: #757575;
}
.bootstrap-select .bs-caret:before {
    content: "\e901";
    font-family: "ak-icons";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-180deg);
    font-size: 8px;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    transition: transform 0.2s ease;
    color: #757575;
}
.bootstrap-select.show .bs-caret:before {
    transform: translate(-50%, -50%) rotate(0deg);
}
.bootstrap-select.show .dropdown-toggle.btn:before {
    transform: translate(-50%, -50%) rotate(-180deg);
}
.bootstrap-select.disabled .dropdown-toggle.btn {
    background: #E5E5E5;
    cursor: not-allowed;
}
.bootstrap-select.disabled .bs-caret {
    opacity: 0.5;
}

.table-default {
    width: 100%;
}
.table-default th {
    font-weight: normal;
    font-size: 11px;
    line-height: 1.55;
    color: #AAAAAA;
    text-transform: uppercase;
    border-bottom: 1px solid #E5E5E5;
    padding: 0 8px 12px;
}
.table-default th:first-child {
    padding-left: 0;
}
.table-default th:last-child {
    padding-right: 0;
}
.table-default td {
    padding: 16px 8px;
    vertical-align: top;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.54;
    color: #000000;
    border-bottom: 1px solid #E5E5E5;
}
.table-default td:first-child {
    padding-left: 0;
}
.table-default td:last-child {
    padding-right: 0;
}
.table-default__name {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}
.table-default a:not([class]) {
    color: #000;
}
.table-default a:not([class]):hover {
    color: #C8102E;
}
@media screen and (max-width: 767px) {
    .table-default thead {
        display: none;
    }
    .table-default tr {
        display: block;
        background: #f7f7f7;
        margin-bottom: 16px;
    }
    .table-default td {
        display: flex;
        padding: 8px !important;
    }
    .table-default td:last-child {
        border: none;
    }
    .table-default td:before {
        content: attr(data-th-name);
        flex: 0 0 50%;
        max-width: 50%;
        font-weight: normal;
        font-size: 11px;
        line-height: 1.55;
        color: #AAAAAA;
        text-transform: uppercase;
    }
}

.table-content {
    width: 100%;
}
.table-content th {
    font-weight: bold;
    font-size: 13px;
    line-height: 1.6;
    color: #000;
    text-transform: uppercase;
    border: 1px solid #E5E5E5;
    padding: 12px 8px;
    vertical-align: top;
    background: #f5f5f5;
}
.table-content td {
    padding: 12px 8px;
    vertical-align: top;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    border: 1px solid #E5E5E5;
}
.table-content_responsive {
    text-align: center;
}
.table-content_responsive thead th {
    background: #eee;
}
.table-content_responsive tbody th {
    background: #eee;
    text-align: left;
    vertical-align: middle;
}
.table-content_responsive td {
    vertical-align: middle;
}
.table-content_responsive .cars-block__logo {
    display: inline-block;
}
@media screen and (max-width: 767px) {
    .table-content_responsive thead {
        display: none;
    }
    .table-content_responsive tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #ccc;
    }
    .table-content_responsive th {
        text-align: center !important;
        display: block;
    }
    .table-content_responsive td,
    .table-content_responsive th {
        border-left: none;
        border-right: none;
    }
    .table-content_responsive td {
        display: flex;
        text-align: left;
    }
    .table-content_responsive td:before {
        content: attr(data-th);
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 12px;
        font-weight: bold;
        font-size: 13px;
        line-height: 1.6;
        color: #000;
        text-transform: uppercase;
        text-align: left;
    }
    .table-content_responsive {}
    .table-content_responsive {}
    .table-content_responsive {}
    .table-content_responsive {}
}

.custom-control-install label  {
    position: relative;
    z-index: 5;
    font-weight: normal;
    font-size: 15px;
    line-height: 1.3;
    color: #444;
    padding-top: 1px;
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
}

.custom-checkbox {
    padding-left: 20px;
    position: relative;
    margin-bottom: 16px;
}
.custom-checkbox input {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    opacity: 0;
    z-index: 1;
}
.custom-checkbox input:checked + label:after {
    opacity: 1;
}
.custom-checkbox label {
    position: relative;
    z-index: 5;
    padding-left: 10px;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.3;
    color: #444;
    padding-top: 1px;
    cursor: pointer;
    transition: color 0.2s ease;
    margin: 0;
}
.custom-checkbox label:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #B7B7B7;
    top: 0;
    left: -20px;
    z-index: 1;
}
.custom-checkbox label:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 6px;
    border-left: 2px solid #C8102E;
    border-bottom: 2px solid #C8102E;
    top: 6px;
    left: -15px;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #232628;
    z-index: 3;
    transform: rotate(-45deg);
}
.custom-checkbox label:hover {
    color: #111;
}
.custom-checkbox label a {
    color: #EA072B;
    border-bottom: 1px solid rgb(234, 7, 43, 0.5);
}
.custom-checkbox label a:hover {
    border-color: transparent;
}
.custom-checkbox_lg label {
    font-size: 15px;
    line-height: 1.33;
    color: #000000;
}
.custom-checkbox_lg label:before {
    top: 1px;
}
.custom-checkbox_lg label:after {
    top: 7px;
}

@media screen and (max-width: 767px) {
    .main-ui-filter-search {
        min-width: 0;
        width: 100%;
    }
}

#header h1 {
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}

.auth-error {
    border: 1px solid #C8102E;
    border-radius: 2px;
    height: 44px;
    padding: 12px 20px 10px;
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 13px;
    color: #C8102E;
}

.video-content {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.video-content > iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.video-content__wrapper_max_640 {
    max-width: 640px;
    margin: 0 auto;
}

.cars-block {
    margin-bottom: 40px;
}
.cars-block__list {}
.cars-block__item-wrapper {
    margin-bottom: 30px;
}
.cars-block__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #E5E5E5;
    height: 100%;
}
.cars-block__name-wrapper {
    background: #f5f5f5;
    text-align: center;
    padding: 8px 15px;
    width: 100%;
}
.cars-block__name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.cars-block__logo {
    height: 16px;
    display: block;
    margin: 0 auto 4px;
}
.cars-block__title {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 4px;
}
.cars-block__ul {
    margin: 0;
    padding: 0 0 0 16px;
    list-style-type: none;
    flex: 1 1 auto;
}
.cars-block__ul > li {
    padding-left: 20px;
    position: relative;
}
.cars-block__ul > li:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: #CC392B;
    top: 0.8em;
    left: 0px;
}
.cars-block__desc {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}
.cars-block__helper {
    margin-top: 16px;
    font-size: 14px;
}


.map-block {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 50px;
}
.map-block__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.product-card {
    border: 1px solid #000;
    padding: 24px;
    margin-bottom: 32px;
}
.product-card__name {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.product-card__img {
    margin: 0 auto 8px;
}
.product-card__helper {
    font-size: 16px;
    line-height: 1.4;
}
.product-card__price {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
}
.product-card__price_old {
    text-decoration: line-through;
    font-size: 20px;
    opacity: 0.4;
    margin-bottom: 0;
}
.product-card__buttons {
    display: flex;
    flex-direction: column;
}
.product-card__buttons .btn {
    min-width: 240px;
    max-width: 240px;
}
.product-card__buttons .btn + .btn {
    margin-top: 12px;
}
.product-card {}
@media screen and (max-width: 767px) {
    .product-card__name,
    .product-card__helper,
    .product-card__price {
        text-align: center;
    }
    .product-card__buttons {
        align-items: center;
    }
}

.tooltip-block {
    position: relative;
    z-index: 10;
}
.tooltip-block:before,
.tooltip-block:after {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tooltip-block:before {
    content: attr(data-text);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    /*transform: translate(-50%,0);*/
    transform: translate(-40%,0);
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    width: 300px;
    padding: 8px 15px;
    pointer-events: none;
    font-size: 12px;
    line-height: 1.4;
    font-weight: normal;
    color: #fff;
}
.tooltip-block:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%,0) rotate(-45deg);
    background: #000;
    pointer-events: none;
}

.tooltip-block:hover:before,
.tooltip-block:hover:after {
    opacity: 1;
    visibility: visible;
}
.tooltip-block_inverse:after {
    transform: translate(-50%,0);
    width: 0;
    height: 0;
    bottom: calc(100% + 1px);
    background: none;
    border: none;
    border-style: solid;
    border-width: 9px 8px 0 8px;
    border-color: #000000 transparent transparent transparent;
}
.tooltip-block_left:before {
    transform: translate(-30%,0);
}
@media screen and (min-width: 768px) {
    .tooltip-block:before {
        width: 350px;
    }
    .tooltip-block_right:before {
        transform: translate(-75%,0);
    }
}


.video-slider-yt {
    position: relative;
}
.video-slider-yt .swiper-button-prev,
.video-slider-yt .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #C8102E;
    color: #fff;
}
.video-slider-yt .swiper-button-prev {
    left: -30px;
}
.video-slider-yt .swiper-button-next {
    right: -30px;
}
@media screen and (min-width: 768px) {
    .video-slider-yt .swiper-button-prev {
        left: -50px;
    }
    .video-slider-yt .swiper-button-next {
        right: -50px;
    }
}

.video-yt {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    z-index: 3;
    background: #000;
}
.video-yt__cover,
.video-yt__frame,
.video-yt > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.video-yt__cover {
    cursor: pointer;
    object-position: center center;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.video-yt_yt:before {
    content: "";
    position: absolute;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background-color: #EF4130;
    background-position: 55% center;
    background-repeat: no-repeat;
    background-size: 20px 24px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjAgMTJMMC41MDAwMDEgMjMuMjU4M0wwLjUwMDAwMiAwLjc0MTY2OEwyMCAxMloiIGZpbGw9IndoaXRlIi8+PC9zdmc+");
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.video-yt_yt_yellow:before {
    background-color: #FFD139;
}
.video-yt_loaded .video-yt__cover,
.video-yt_loaded:before {
    opacity: 0;
    visibility: hidden;
}
.video-yt_loaded:after {
    content: "";
    width: 58px;
    height: 58px;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    transform-origin: 50%;
    border: 6px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: preloaderSpin 1s infinite linear
}
@keyframes preloaderSpin {
    0% {
        transform: translate(-50%,-50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%,-50%) rotate(360deg);
    }
}

.radio-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    position: relative;
}
.radio-rating input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}
.radio-rating input:checked ~ label:before {
    filter: none;
    opacity: 1;
}
.radio-rating label {
    margin: 0;
    cursor: pointer;
}
.radio-rating label:before {
    content: "";
    display: block;
    transition: filter 0.2s ease, opacity 0.2s ease;
    filter: brightness(0);
    opacity: 0.5;
    width: 24px;
    height: 23px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxOCAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOSAwTDExLjAyMDYgNi4yMTg4NUgxNy41NTk1TDEyLjI2OTQgMTAuMDYyM0wxNC4yOTAxIDE2LjI4MTJMOSAxMi40Mzc3TDMuNzA5OTMgMTYuMjgxMkw1LjczMDU2IDEwLjA2MjNMMC40NDA0OTIgNi4yMTg4NUg2Ljk3OTM3TDkgMFoiIGZpbGw9IiNFRDFEMjQiLz48L3N2Zz4=");
}


._loading_fullscreen {
    position: relative;
}
body._loading_fullscreen {
    overflow: hidden;
}
._loading_fullscreen:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 10000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 50px;
    background-image: url('../images/ak-logo.svg');
}
._loading_fullscreen:after {
    content: "";
    width: 42px;
    height: 42px;
    position: fixed;
    left: 50%;
    top: calc(50% + 80px);
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10001;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid #EA072B;
    border-radius: 50%;
    border-top-color: transparent;
    animation: preloader-spin 1s infinite linear;
}
@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}