

/* Start:/local/templates/main/assets/css/modal.css?16837997591213*/
.m-modal-overlay {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.377);
  z-index: var(--m-modal-z-index);
  transition: opacity .3s ease-in-out;
}
.m-modal-overlay--active {
  opacity: 1;
  pointer-events: all;
  transition: opacity .3s ease-in-out;
}
.m-modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: var(--m-modal-width);
  height: var(--m-modal-height);
  max-width: 90vw;
  max-height: 100vh;
  overflow-y: auto;
}
.m-modal-inner-wrapper {
  padding: 2rem;
  height: 95vh;
}
.m-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  appearance: none;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  --size: calc(var(--rem) * 25);
  --color: #000;
  --line-height: 1px;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  background: url(/img/icons/close_menu.png) no-repeat;
}

@media (max-width: 480px) {
  .m-modal-wrapper {
    top: 5%;
    transform: translateX(-50%);
    max-height: calc(100vh - 5%);
  }
}

/* End */


/* Start:/include/actions_bar/style.css?17346828191902*/
.eos-actions {
  display: flex;
  background-color: #fff;
  padding: 0;
  list-style: none;
  border-radius: calc(var(--rem) * 8);
  opacity: .9;
  justify-content: space-around;
  box-shadow: 0 2px 12px 0 #f2ede6;
}
.eos-actions--margin-top {
  margin-top: calc(var(--rem) * 80);
}
.eos-actions__item {
  --icon-size: calc(var(--rem) * 84);
  --left-icon-offset: calc(var(--rem) * 10);
  position: relative;
}

.eos-actions__item:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}
.eos-actions__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.eos-actions__title {
  padding: 2.5em 1em 2.5em calc(var(--icon-size) + 1em);
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--smaller-text-size);
}
.eos-actions__icon {
  position: absolute;
  top: 50%;
  left: var(--left-icon-offset);
  transform: translateY(-50%);
  width: var(--icon-size);
  height: var(--icon-size);
  z-index: 2;
}
.eos-actions__title::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: #f5efe6;
  border-radius: 50%;
  left: 0.5em;
  z-index: 1;
  transform: translateY(-50%) scale(0);
  transition: transform .3s ease-in-out;
  will-change: transform;
  z-index: 1;
}
.eos-actions__item:hover .eos-actions__title::before {
  transform: translateY(-50%) scale(1);
  transition: transform .3s ease-in-out;
}
.eos-actions__link span {
  height: 0;
  width: 0;
  display: block;
  opacity: 0
}

@media (max-width: 768px) {
  .eos-actions {
    flex-direction: column;
  }
  .eos-actions__item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .eos-actions__title {
    text-align: center;
    font-size: var(--big-text-size);
  }
  .eos-actions--invisible {
    display: none;
  }
}

/* End */


/* Start:/include/breadcrumbs/style.css?17652942481007*/
.eos-breadcrumbs {
  padding: 0;
  list-style: none;
  display: flex;
}
.eos-section.eos-breadcrumbs-section {
  padding-bottom: 0;
}
.eos-breadcrumbs__item:not(:last-child) {
  margin-right: .5em;
}
.eos-breadcrumbs__link {
  --icon-width: calc(var(--rem) * 14);
  position: relative;
  color: #6a6464;
  font-weight: 600;
  font-size: calc(var(--rem) * 12);
  transition: color .2s ease-in-out;
  padding-right: calc(var(--icon-width) + .5em);
  text-decoration: none;
}
.eos-breadcrumbs__item:not(:last-child) .eos-breadcrumbs__link:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--icon-width);
  height: calc(var(--rem) * 15);
  background: url(/include/breadcrumbs/img/breadcrumb_arrow.svg) no-repeat center / contain;
}
.eos-breadcrumbs__link:hover {
  color: var(--brand-color);
  transition: color .2s ease-in-out;
}

@media (max-width: 768px) {
  .eos-breadcrumbs {
    display: none;
  }
}

/* End */


/* Start:/include/steps_list/style.css?16837997581180*/
.oes-steps-list {
  display: flex;
  gap: 2em;
  counter-reset: step-count;
}
.oes-steps-list__item {
  width: 100%;
  position: relative;
  counter-increment: step-count;
  padding-left: 4em;
}
.oes-steps-list__item:first-child {
  padding-left: 3em;
}
.oes-steps-list__item-step {
  text-transform: uppercase;
  color: var(--brand-color);
  margin-bottom: .5em;
}
.oes-steps-list__item::before {
  content: counter(step-count);
  position: absolute;
  top: -.1em;
  left: 0;
  font-size: calc(var(--rem) * 90);
  color: var(--brand-color);
  line-height: 1;
  font-weight: 400;
}
.oes-steps-list__item:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 60%;
  height: 40%;
  background: url(/include/steps_list/img/step_arrow.svg) no-repeat center / contain;
}
@media (max-width: 1279px) {
  .oes-steps-list {
    flex-direction: column;
  }
  .oes-steps-list__item:not(:last-child):after {
    content: none;
  }
  .oes-steps-list__item,
  .oes-steps-list__item:first-child {
    padding-left: 5em;
  }
  .oes-steps-list__item:not(:last-child) {
    margin-bottom: 1em;
  }
}

/* End */


/* Start:/include/video_accordion/style.css?16837997581513*/
.eos-video-accordion {
  position: relative;
  --video-width: calc(var(--rem) * 650);
  --video-height: calc(var(--rem) * 365);
  padding-right: calc(var(--video-width) + calc(var(--rem) * 40));
  min-height: var(--video-height);
}
.eos-video-accordion__item:not(:last-child) {
  margin-bottom: .5em;
}
.eos-video-accordion__label {
  background-color: #fff;
  padding: 1em;
  display: block;
  transition: box-shadow .2s ease-in-out;
}
.eos-video-accordion__video {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: var(--video-width);
  height: var(--video-height);
  transition: .2s ease-in-out;
}
.eos-video-accordion__radio:checked + .eos-video-accordion__label {
  box-shadow: 0 0 4px 1px rgb(0 0 0 / 40%);
  transition: box-shadow .2s ease-in-out;
}
.eos-video-accordion__radio:checked ~ .eos-video-accordion__video {
  opacity: 1;
  pointer-events: all;
  transition: .2s ease-in-out;
}

@media (max-width: 1279px) {
  .eos-video-accordion__video {
    position: static;
    opacity: 1;
    pointer-events: all;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in-out;
    width: 100%;
    height: auto;
  }
  .eos-video-accordion__radio:checked ~ .eos-video-accordion__video {
    max-height: 100vh;
    margin-top: .5em;
    transition: max-height .3s ease-in-out;
  }
  .eos-video-accordion {
    padding-right: 0;
    max-width: var(--video-width);
    min-height: 0;
  }
}

/* End */


/* Start:/include/video/style.css?1683799758141*/
.video-js .vjs-control-bar {
  background-color: var(--brand-color);
}
.vjs-poster {
  object-fit: cover;
  background-color: #fff;
}

/* End */


/* Start:/local/templates/main/components/bitrix/player/player/style.min.css?1683799759122*/
td.popupmenu div.popupitem .playlist-edit{background-image:url(/bitrix/components/bitrix/player/images/playlist_edit.gif)}
/* End */


/* Start:/include/advices_block_slider/style.css?17346843324267*/
.eos-advices-content { margin: 0 -.3em; }

.eos-advices-previews_wrapper {
  box-sizing: border-box;
}
.eos-advice-preview_slide {
  cursor: pointer;
  padding: .4em;
}

.eos-advice-preview_unwatched .eos-advices_slider-item {
  border: 2px solid #9E2B11;
}

.eos-advices_slider-content {
  position: relative;
}

.eos-advices_slider-item {
  height: 100%;
  width: 100%;
  background: #b4d8e0;
  background: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0);
  overflow: hidden;
  border-radius: calc(var(--rem) * 8);
  padding: .3em;
}

.eos-advices_slider-preview {
  border-radius: calc(var(--rem) * 5);
  overflow: hidden;
}

.eos-advices__item__swiper-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.eos-advices__item__swiper-link span {
  height: 0;
  width: 0;
  display: block;
  opacity: 0
}
.eos-advices__item__swiper-img {
  margin: 0 auto;
  width: 100%;
}

/* fancybox -> */
.fancybox-container .fancybox-content {
  padding: 0;
  /* height: 90%; */
}

/* stories -> */
.eos-advices-storie {
  height: 100%;
}
.eos-advices-storie-img {
  max-height: 100%;
}
.eos-advices_stories-pagination {
  position: absolute;
  z-index: 100;
  top: 0;
  height: 0;
}

.eos-advices-all_stories {
  width: 350px;
}
.eos-advices-popup {
  display: none;
  width: 350px;
}
.fancybox__content.eos-advices-popup {
  padding: 0;
}

.eos-advices-storie-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.eos-advices-storie-btn.eos-advices-storie-btn--inactive {
  z-index: -10000;
}
.eos-button.eos-advices-storie-link {
  margin: 0 auto 2em;
}

/* pagination */

.eos-slider-pagination.eos-advices_stories-pagination {
  justify-content: space-between;
}
.eos-slider-pagination.eos-advices_stories-pagination .swiper-pagination-bullet {
  margin: 2px;
  border-radius: 0;
}

.eos-slider-pagination.eos-advices_stories-pagination .swiper-pagination-bullet {
  background: #9E2B11;
  opacity: 1;
  position: relative;
  width: 100%;
  height: 3px;
  display: inline-block;
  overflow: hidden;
}

.swiper-slide-active .eos-slider-pagination.eos-advices_stories-pagination .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.050);
}
.swiper-slide-active .eos-slider-pagination.eos-advices_stories-pagination .swiper-pagination-bullet-active:after {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  animation: load 8s infinite;
  background: #9E2B11;
}
.swiper-slide-active .eos-slider-pagination.eos-advices_stories-pagination .swiper-pagination-bullet-active ~ .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.300);
  opacity: .2;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* btn-s border */

.eos-advices-popup.fancybox__content .fancybox__content:focus:not(.carousel__button.is-close) {
  outline: none !important;
}
.eos-slider-next.eos-advices_stories-next,
.eos-slider-prev.eos-advices_stories-prev {
  outline: none !important;
}

/* new */

/* 7: */
.eos-advice-preview_unwatched:hover .eos-advices_slider-item {
  border: none;
  transition: border .2s ease-in-out;
  padding: 0;
}

.eos-advice-preview_unwatched.eos-advice-preview_slide:hover {
  box-shadow: 0 2px 11px 0 #f2ede6, 0 2px 8px 0 rgb(185 185 185 / 20%);
  padding: 0;
  border-radius: calc(var(--rem) * 10);
  transition: box-shadow .2s ease-in-out, padding .2s ease-in-out;
}
.eos-advice-preview_slide:hover .eos-advices_slider-item {
  box-shadow: 0 2px 11px 0 #f2ede6, 0 2px 8px 0 rgb(185 185 185 / 20%);
  padding: 0;
  border: none;
  transition: box-shadow .2s ease-in-out, padding .2s ease-in-out, border .2s ease-in-out;
}

/* 9: */
.eos-slider-pagination.eos-advices_stories_pagination {
  position: absolute;
  bottom: 7px;
  z-index: 1000;
}
.eos-slider-pagination.eos-advices-previews_pagination {
  margin-top: 1rem;
}

/* 6: */
.eos-advices-popup.fancybox__content {
  width: 500px;
  background: rgba(0,0,0,0);
}
@media(max-width: 500px) {
  .eos-advices-popup.fancybox__content {
    width: 80%;
  }
  .eos-advices-all_stories {
    width: 100%;
  }
}
/* End */
/* /local/templates/main/assets/css/modal.css?16837997591213 */
/* /include/actions_bar/style.css?17346828191902 */
/* /include/breadcrumbs/style.css?17652942481007 */
/* /include/steps_list/style.css?16837997581180 */
/* /include/video_accordion/style.css?16837997581513 */
/* /include/video/style.css?1683799758141 */
/* /local/templates/main/components/bitrix/player/player/style.min.css?1683799759122 */
/* /include/advices_block_slider/style.css?17346843324267 */
