

/* Start:/local/components/axi/stories/templates/main/style.css?176163887520723*/
@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(/local/components/axi/stories/templates/main/get-svg-url('checkmark', $user-variables: (fill: 'tomato)));
* Example: background-image: url(/local/components/axi/stories/templates/main/get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink)));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
:root {
  --stories-slider-z-shadows: 999;
  --stories-slider-z-pagination: 50;
  --stories-slider-z-navigation: 200;
  --stories-slider-z-user: 300;
  --stories-slider-z-actions: 300;
  --stories-slider-z-content: 100;
  --stories-slider-slide-bg-color: #000 ;
}

.stories-slider {
  padding-top: 44px;
  padding-bottom: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-slider > .swiper > .swiper-wrapper > .swiper-slide:not(.swiper-slide-next, .swiper-slide-prev, .swiper-slide-active) {
  opacity: 0;
}

.stories-slider > .swiper > .swiper-wrapper > .swiper-slide-next + .swiper-slide {
  opacity: 1;
}

.stories-slider .swiper {
  height: 100%;
  width: 100%;
}

.stories-slider .swiper .swiper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--stories-slider-slide-bg-color);
}

.stories-slider .swiper .swiper-slide-shadow-left, .stories-slider .swiper .swiper-slide-shadow-right {
  z-index: var(--stories-slider-z-shadows) !important;
}

.stories-slider .swiper .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
}

.stories-slider .swiper .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.5));
}

.stories-slider.stories-slider-perspective .swiper .swiper, .stories-slider.stories-slider-perspective .swiper-slide-shadow-left, .stories-slider.stories-slider-perspective .swiper-slide-shadow-right {
  transform: translateZ(calc(-1 * var(--swiper-cube-translate-z)));
  transform-origin: 0 0 calc(-1 * var(--swiper-cube-translate-z));
}

.stories-slider-button {
  position: absolute;
  z-index: var(--stories-slider-z-navigation);
  top: 0;
  height: 100%;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.stories-slider-button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition-duration: 0.2s;
}

.stories-slider-button:active:before {
  opacity: 0.25;
}

.stories-slider-button-prev {
  left: 0;
  width: 30%;
}

.stories-slider-button-prev:before {
  background-image: linear-gradient(to right, #000, rgba(0, 0, 0, 0));
}

.stories-slider-button-next {
  right: 0;
  width: 70%;
}

.stories-slider-button-next:before {
  background-image: linear-gradient(to left, #000, rgba(0, 0, 0, 0));
}

.stories-slider-pagination {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  display: flex;
  justify-content: space-between;
  z-index: var(--stories-slider-z-pagination);
  pointer-events: none;
  transform: translateZ(0);
}

.stories-slider-pagination-bullet {
  width: 100%;
  flex-shrink: 10;
  border-radius: 999px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3490196078);
}

.stories-slider-pagination-bullet span {
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  transform: translate(-100%);
  transition-timing-function: linear;
}

.stories-slider-pagination-bullet-viewed span {
  transform: translate(0);
  transition-duration: 0ms !important;
}

.stories-slider-pagination-bullet + .stories-slider-pagination-bullet {
  margin-left: 2px;
}

a.stories-slider-user, .stories-slider-user a {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition-duration: 0.2s;
}

a.stories-slider-user:active, .stories-slider-user a:active {
  opacity: 0.55;
}

.stories-slider-user {
  display: flex;
  align-items: center;
  position: absolute;
  top: 18px;
  left: 12px;
  height: 32px;
  z-index: var(--stories-slider-z-user);
  color: #fff;
  text-decoration: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.stories-slider-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
}

.stories-slider-user-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.stories-slider-user-name {
  font-size: 14px;
  font-weight: 700;
  margin-right: 12px;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.stories-slider-user-date {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.55;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.35);
}

.stories-slider-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 10px;
  top: 18px;
  height: 32px;
  z-index: var(--stories-slider-z-actions);
  transition-duration: 0.2s;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.stories-slider-close-button {
  margin-left: 18px;
  width: 22px;
  height: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 0;
  background: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.stories-slider-close-button:before, .stories-slider-close-button:after {
  content: "";
  width: 125%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3490196078);
}

.stories-slider-close-button:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.stories-slider-close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.stories-slider-close-button:active {
  opacity: 0.55;
}

.stories-slider-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: var(--stories-slider-z-content);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.stories-slider-content > img, .stories-slider-content > video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  display: block;
  border: none;
  outline: none;
  background: none;
  background-color: transparent;
}

.stories-slider-content > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.stories-slider-content > video {
  -o-object-fit: contain;
     object-fit: contain;
}

@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ 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) format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.demo-stories {
  display: flex;
  align-items: center;
  scrollbar-width: none;
}

.demo-stories-wrapper {
  margin-bottom: 32px;
  z-index: 30;
}
@media (min-width: 992px) {
  .demo-stories-wrapper {
    margin-bottom: 80px;
  }
}

.demo-stories::-webkit-scrollbar {
  display: none;
  opacity: 0;
}

.demo-stories .story-circle {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition-duration: 0.3s;
  transition-property: opacity;
  width: 90px;
  flex: 0 0 auto;
}
@media (min-width: 992px) {
  .demo-stories .story-circle {
    width: 120px;
  }
}
.demo-stories .story-circle:hover .demo-stories-name {
  color: #EA3AAE;
}

.demo-stories .story-circle:active {
  opacity: 0.55;
  transition-duration: 50ms;
}

.demo-stories-avatar {
  position: relative;
  border-radius: 50%;
  padding: 6px;
  background-image: linear-gradient(to right top, #ffc600 20%, #ff0040, #e600cc 80%);
}

.demo-stories-avatar:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
  background: #000;
  border-radius: 50%;
  z-index: 1;
}

.demo-stories-avatar img {
  position: relative;
  z-index: 2;
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.demo-stories-name {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-top: 10px;
}

.stories-slider {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1060;
  transform: translateZ(0) scale(0.5);
  opacity: 0;
  background: #000;
}

@media (min-width: 415px), (min-height: 897px) {
  .stories-slider {
    background: rgb(41, 40, 49);
  }
}
.stories-slider > .swiper {
  z-index: 2;
  max-width: 414px;
  max-height: 896px;
}

.stories-slider:not(.stories-slider-in) {
  pointer-events: none;
}

.stories-slider:not(.stories-slider-in) * {
  pointer-events: none !important;
}

.stories-slider-in {
  animation: stories-slider-in 0.4s forwards;
  pointer-events: auto;
  transform: translateZ(0) scale(1);
  opacity: 1;
}

.stories-slider-out {
  pointer-events: none;
  animation: stories-slider-out 0.4s forwards !important;
}

@keyframes stories-slider-in {
  0% {
    transform: translateZ(0) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translateZ(0) scale(1.05);
    opacity: 1;
  }
  to {
    transform: translateZ(0) scale(1);
    opacity: 1;
  }
}
@keyframes stories-slider-out {
  0% {
    transform: translateZ(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateZ(0) scale(0.5);
    opacity: 0;
  }
  to {
    transform: translateZ(0) scale(0.5);
    opacity: 0;
  }
}
.slider-wrapper .demo-stories {
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .slider-wrapper .demo-stories .swiper-slide {
    width: 100px;
  }
}

.stories-slider-content > img {
  height: auto !important;
}

.stories-slider > .swiper {
  max-width: 45vh;
  max-height: 80vh;
}

@media (min-width: 415px), (min-height: 897px) {
  .stories-slider {
    background: rgba(0, 0, 0, 0.8);
  }
}
.swiper-slide .button {
  position: absolute;
  z-index: 300;
  left: 16px;
  right: 16px;
  bottom: 16px;
}
.swiper-slide .button a {
  width: 100%;
}

.stories-slider-in {
  animation: stories-slider-fadein 0.4s forwards;
}

@keyframes stories-slider-fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes stories-slider-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.demo-stories-avatar {
  background-image: linear-gradient(to right bottom, #EA3AAE 20%, #DE3A61, #D13AEA 80%);
}

.demo-stories-avatar img {
  width: 82px;
  height: 82px;
}
@media (min-width: 992px) {
  .demo-stories-avatar img {
    width: 104px;
    height: 104px;
  }
}

.story-circle {
  text-align: center;
}

.stories-list {
  position: relative;
}
.stories-list .demo-stories-name {
  font-size: 12px;
  color: #AAA3A8;
  line-height: 18px;
}
@media (min-width: 992px) {
  .stories-list .demo-stories-name {
    font-size: 14px;
    line-height: 22px;
  }
}

.swiper-slide .sys__pin-info {
  background: #f1d500;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 4px;
  border-radius: 6px;
  color: #000;
  font-size: 13px;
}

.swiper-slide .sys__date-info {
  background: #6c185a;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding: 4px;
  border-radius: 6px;
  font-size: 11px;
}

.swiper-slide .btn-mute {
  position: absolute;
  right: 8px;
  top: 70px;
  z-index: 9999;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.swiper-slide .btn-mute:after {
  content: url("/upload/_base/icon-volume-muted.svg");
}
.swiper-slide .btn-mute.unmuted:after {
  content: url("/upload/_base/icon-volume-up.svg");
}

/* End */


/* Start:/local/_assets/ext/axi.slider/ext.css?17415991152009*/
@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(/local/_assets/ext/axi.slider/get-svg-url('checkmark', $user-variables: (fill: 'tomato)));
* Example: background-image: url(/local/_assets/ext/axi.slider/get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink)));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.slider-wrapper {
  position: relative;
}
@media (max-width: 991.98px) {
  .slider-wrapper {
    margin-right: -12px;
  }
}
.slider-wrapper .swiper-button-prev,
.slider-wrapper .swiper-button-next {
  opacity: 0;
  -webkit-transition: opacity 125ms ease-in;
  transition: opacity 125ms ease-in;
  background: #EA3AAE;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .slider-wrapper .swiper-button-prev,
  .slider-wrapper .swiper-button-next {
    display: none;
  }
}
.slider-wrapper .swiper-button-prev:after,
.slider-wrapper .swiper-button-next:after {
  content: url("/upload/_base/icon-slider-arrow-right.svg");
  font-size: 0;
  position: relative;
}
.slider-wrapper:hover .swiper-button-prev,
.slider-wrapper:hover .swiper-button-next {
  opacity: 1;
}
.slider-wrapper .swiper-button-prev {
  left: -22px;
}
.slider-wrapper .swiper-button-prev::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  right: 2px;
}
.slider-wrapper .swiper-button-next {
  right: -22px;
}
.slider-wrapper .swiper-button-next::after {
  left: 2px;
}
@media (max-width: 991.98px) {
  .slider-wrapper .swiper-slide {
    width: 65%;
  }
}
.slider-wrapper .swiper-button-prev.swiper-button-disabled, .slider-wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}

/* End */


/* Start:/local/templates/natalispa/components/bitrix/system.pagenavigation/only-loadmore-button/style.css?1748107804920*/
@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(/local/templates/natalispa/components/bitrix/system.pagenavigation/only-loadmore-button/get-svg-url('checkmark', $user-variables: (fill: 'tomato)));
* Example: background-image: url(/local/templates/natalispa/components/bitrix/system.pagenavigation/only-loadmore-button/get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink)));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.pagination__item {
  border: 1px solid #000;
  padding: 10px;
}
.pagination__more {
  width: 100%;
}
.pagination .btn {
  width: 100%;
  font-size: 14px;
  line-height: 21px;
}
@media (min-width: 992px) {
  .pagination .btn {
    font-size: 18px;
    line-height: 27px;
  }
}

/* End */


/* Start:/local/templates/natalispa/components/bitrix/news.list/blog/style.css?17481078041392*/
@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(/local/templates/natalispa/components/bitrix/news.list/blog/get-svg-url('checkmark', $user-variables: (fill: 'tomato)));
* Example: background-image: url(/local/templates/natalispa/components/bitrix/news.list/blog/get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink)));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.filter-blog .sections-btns {
  display: flex;
  flex-flow: row wrap;
}
.filter-blog .sections-btns .btn:not(:last-of-type) {
  margin-right: 10px;
}
.filter-blog .sections-btns .btn {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  padding: 9px 13px;
  color: #AAA3A8;
}
@media (min-width: 992px) {
  .filter-blog .sections-btns .btn {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 16px;
  }
}
.filter-blog .sections-btns .btn:hover {
  color: #F0F0F0;
}
.filter-blog .sections-btns .btn-pink {
  color: #F0F0F0;
}
.filter-blog .make-select2 {
  width: 270px;
}
.filter-blog .sort-select {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .filter-blog .sort-select {
    margin-left: auto;
    margin-top: 0;
  }
}

/* End */


/* Start:/local/components/axi/view/templates/tir-item/style.css?17481078044018*/
@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(/local/components/axi/view/templates/tir-item/get-svg-url('checkmark', $user-variables: (fill: 'tomato)));
* Example: background-image: url(/local/components/axi/view/templates/tir-item/get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink)));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
@media (max-width: 991.98px) {
  .tir-list-item:not(:last-of-type) {
    margin-bottom: 12px;
  }
}
@media (min-width: 992px) {
  .tir-list-item {
    margin-bottom: 24px;
  }
}
.tir-list-item .inner {
  border-radius: 14px;
  overflow: hidden;
  background: #1E1E1E;
  position: relative;
  height: 100%;
}
.tir-list-item__text {
  max-height: 156px;
  margin-bottom: 12px;
  overflow: hidden;
  padding: 10px 12px 0;
}
@media (min-width: 992px) {
  .tir-list-item__text {
    max-height: 173px;
    margin-bottom: 16px;
    padding: 13px 16px 0;
  }
}
.tir-list-item__text.lines-two {
  max-height: 88px;
}
@media (min-width: 992px) {
  .tir-list-item__text.lines-two {
    max-height: 95px;
  }
}
.tir-list-item__title {
  margin-bottom: 8px;
}
.tir-list-item__title h5 {
  display: inline-block;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 22px;
}
@media (min-width: 992px) {
  .tir-list-item__title h5 {
    line-height: 25px;
  }
}
.tir-list-item__title a {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
}
.tir-list-item__title .icon {
  position: relative;
  top: 1px;
  left: 0;
  transition: left 125ms ease-in;
}
.tir-list-item__desc {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #AAA3A8;
}
@media (min-width: 992px) {
  .tir-list-item__desc {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
  }
}
.tir-list-item__desc p {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .tir-list-item__desc p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
  }
}
.tir-list-item__picture {
  border-radius: 3px;
  width: 100%;
}
.tir-list-item__date {
  font-size: 12px;
  color: #676265;
  line-height: 22px;
  margin-bottom: 2px;
}
@media (min-width: 992px) {
  .tir-list-item__date {
    line-height: 25px;
    font-size: 14px;
  }
}
.tir-list-item__tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-flow: row wrap;
}
.tir-list-item__tags .tag {
  background: rgba(9, 9, 9, 0.5);
  border-radius: 8px;
  padding: 2px 9px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 12px;
}
.tir-list-item__tags .tag:not(:last-of-type) {
  margin-right: 6px;
}
.tir-list-item__tags .tag-hit {
  background: linear-gradient(113.8deg, #EA3AAE 14.58%, #EA3AE3 83.97%);
}
.tir-list-item__tags .tag-new {
  background: #ba3aea;
}
.tir-list-item__tags .tag-time {
  font-size: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.tir-list-item__tags .btn-tag {
  font-size: 12px;
  color: #F0F0F0;
  background: rgba(9, 9, 9, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 4px 8px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 8px;
}
.tir-list-item__tags .btn-tag:last-of-type {
  margin-right: 0;
}
.tir-list-item__price {
  margin-top: 12px;
  margin-bottom: 12px;
  margin-left: 12px;
  font-size: 18px;
  line-height: 25px;
}
@media (min-width: 992px) {
  .tir-list-item__price {
    font-size: 20px;
    line-height: 28px;
    margin-top: 16px;
    margin-bottom: 16px;
    margin-left: 16px;
  }
}
.tir-list-item:hover .tir-list-item__title {
  color: #EA3AAE;
}
.tir-list-item:hover .tir-list-item__title .icon {
  left: 2px;
}
.tir-list-item:hover .tir-list-item__title svg path {
  stroke: #EA3AAE;
}

/* End */


/* Start:/local/_assets/ext/axi.select2/ext.css?174159911522233*/
@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(/local/_assets/ext/axi.select2/get-svg-url('checkmark', $user-variables: (fill: 'tomato)));
* Example: background-image: url(/local/_assets/ext/axi.select2/get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink)));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.select2-search--dropdown {
  display: none !important;
}

.select2-container {
  height: 41px;
}
@media (min-width: 992px) {
  .select2-container {
    height: 46px;
  }
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 16px;
}
.select2-container .selection {
  outline: none;
}

.select2-dropdown {
  background-color: #1E1E1E;
  border-color: #1E1E1E;
  border-radius: 14px;
}

.select2-results {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  overflow: hidden;
}

.select2-results__options .select2-results__option {
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 27px;
}
@media (min-width: 992px) {
  .select2-results__options .select2-results__option {
    font-size: 18px;
  }
}

.select2-container--default .select2-selection--multiple {
  background-color: #1E1E1E;
}
.select2-container--default .select2-selection--single {
  background: #1E1E1E;
  border-color: #1E1E1E;
  border-radius: 14px;
  height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #F0F0F0;
  font-size: 14px;
  line-height: 41px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 16px;
    line-height: 46px;
  }
}
.select2-container--default .select2-results__option--selected {
  background: #1E1E1E;
  position: relative;
  padding-right: 50px;
}
.select2-container--default .select2-results__option--selected:after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("/upload/_base/icon-boolean-yes.svg") center center no-repeat;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #292929;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
  width: 26px;
  right: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  -webkit-transition: -webkit-transform 125ms ease-in;
  transition: -webkit-transform 125ms ease-in;
  transition: transform 125ms ease-in;
  transition: transform 125ms ease-in, -webkit-transform 125ms ease-in;
  border: 0;
  background: url("/upload/_base/icon-down-white.svg") center center no-repeat;
  width: 26px;
  height: 26px;
  left: 0;
  top: 0;
  margin-left: 0;
  margin-top: 0;
  display: block;
  position: relative;
}
.select2-container--default .select2-selection--single[aria-expanded=true] b {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* End */
/* /local/components/axi/stories/templates/main/style.css?176163887520723 */
/* /local/_assets/ext/axi.slider/ext.css?17415991152009 */
/* /local/templates/natalispa/components/bitrix/system.pagenavigation/only-loadmore-button/style.css?1748107804920 */
/* /local/templates/natalispa/components/bitrix/news.list/blog/style.css?17481078041392 */
/* /local/components/axi/view/templates/tir-item/style.css?17481078044018 */
/* /local/_assets/ext/axi.select2/ext.css?174159911522233 */
