

/* Start:/bitrix/templates/ftsarr/stylesheets/accordion-slider.min.css?15155017203394*/
.accordion-slider{position:relative;margin-left:auto;margin-right:auto}.accordion-slider *{-webkit-tap-highlight-color:transparent}.as-mask{position:absolute;width:100%;height:100%;overflow:hidden}.as-panels{position:absolute}.as-horizontal .as-panels{height:100%}.as-vertical .as-panels{width:100%}.as-panel{position:absolute;overflow:hidden}.as-overlap .as-panel{overflow:visible}.as-horizontal .as-panel{height:100%;width:auto}.as-vertical .as-panel{width:100%;height:auto}.as-shadow{-webkit-box-shadow:-5px 0 40px 1px #000;-mox-box-shadow:-5px 0 40px 1px #000;box-shadow:-5px 0 40px 1px #000}.as-background,.as-background-opened{border:0}.as-horizontal .as-background,.as-horizontal .as-background-opened{height:100%;width:auto}.as-vertical .as-background,.as-vertical .as-background-opened{width:100%;height:auto}.as-background-opened{position:absolute;left:0;top:0;visibility:hidden}.as-layer{position:absolute;margin:0;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-webkit-font-smoothing:subpixel-antialiased}.as-black{color:#FFF;background:#000;background:rgba(0,0,0,.7)}.as-white{color:#000;background:#fff;background:rgba(255,255,255,.7)}.as-rounded{border-radius:10px}.as-padding{padding:10px}.as-pagination-buttons{position:absolute;top:100%;width:100%;text-align:center;padding-top:10px}.as-pagination-button{width:10px;height:10px;border:2px solid #000;border-radius:50%;margin:4px;display:inline-block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.as-pagination-buttons .as-selected{background-color:#000}.as-has-buttons{margin-bottom:32px}@media only screen and (min-width:768px) and (max-width:1024px){.as-pagination-button{width:14px;height:14px}.as-has-buttons{margin-bottom:36px}}@media only screen and (min-width:568px) and (max-width:768px){.as-pagination-button{width:16px;height:16px}.as-has-buttons{margin-bottom:38px}}@media only screen and (min-width:320px) and (max-width:568px){.as-pagination-button{width:18px;height:18px}.as-has-buttons{margin-bottom:40px}}.as-selectable{cursor:default}.as-grab{cursor:url(/bitrix/templates/ftsarr/stylesheets/images/openhand.cur),move}.as-grabbing{cursor:url(/bitrix/templates/ftsarr/stylesheets/images/closedhand.cur),move}.as-no-js{overflow:hidden;max-width:100%}.accordion-slider p.as-layer{font-size:14px;line-height:1.4}.accordion-slider h1.as-layer{font-size:32px;line-height:1.4}.accordion-slider h2.as-layer{font-size:24px;line-height:1.4}.accordion-slider h3.as-layer{font-size:19px;line-height:1.4}.accordion-slider h4.as-layer{font-size:16px;line-height:1.4}.accordion-slider h5.as-layer{font-size:13px;line-height:1.4}.accordion-slider h6.as-layer{font-size:11px;line-height:1.4}.accordion-slider img.as-layer{border:0}.accordion-slider .as-background,.accordion-slider .as-background-opened{max-width:none!important;max-height:none!important;border:0!important;border-radius:0!important;margin:0!important;padding:0!important;-webkit-box-shadow:none!important;-mox-box-shadow:none!important;box-shadow:none!important;transition:none;-moz-transition:none;-webkit-transition:none;-o-transition:none}.accordion-slider a{position:static;transition:none!important;-moz-transition:none!important;-webkit-transition:none!important;-o-transition:none!important}.accordion-slider iframe,.accordion-slider object,.accordion-slider video,.accordion-slider embed,.accordion-slider canvas{max-width:none;max-height:none}
/* End */


/* Start:/bitrix/templates/ftsarr/stylesheets/animate.css?151550172023848*/
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

/* End */


/* Start:/bitrix/templates/ftsarr/stylesheets/jquery.cookieBar.min.css?15523068063560*/
@charset "UTF-8";/*!
 * Cookie Bar component (https://github.com/kovarp/jquery.cookieBar)
 * Version 1.2.0
 *
 * Copyright 2018 Pavel Kovář - Frontend developer [www.pavelkovar.cz]
 * Licensed under MIT (https://github.com/kovarp/jquery.cookieBar/blob/master/LICENSE)
 */.cookie-bar__inner{background-color:#000;color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:.875rem;padding:.375rem .5rem;text-align:center}@media (min-width:62rem){.cookie-bar__inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.cookie-bar__buttons{display:block;margin-top:.375rem}@media (min-width:62rem){.cookie-bar__buttons{display:inline;margin-top:0}}.cookie-bar__btn{background-color:#0275d8;color:#fff;border:none;margin:0 .875rem;padding:.125rem .875rem;-webkit-transition:background-color .3s;-o-transition:background-color .3s;transition:background-color .3s;cursor:pointer}@media (max-width:36rem){.cookie-bar__btn{display:block;margin:0 auto .25rem}}.cookie-bar__btn:hover{background-color:#0267bf}.cookie-bar__btn:active{background-color:#0262b5}.cookie-bar__link{margin:0 .5rem}.cookie-bar a{color:#fff;text-decoration:underline}.cookie-bar a:hover{text-decoration:none}.cookie-bar-privacy-popup{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.cookie-bar-privacy-popup.cookie-bar-privacy-popup--hidden{display:none}.cookie-bar-privacy-popup__dialog{background-color:#fff;width:100%;max-width:50rem;max-height:90vh;overflow:auto;padding:2rem 1.5rem 1.5rem;position:relative}.cookie-bar-privacy-popup__dialog__close{position:absolute;top:0;right:0;background-color:#000;color:#fff;display:block;width:2rem;height:2rem;border:none;cursor:pointer}.cookie-bar-privacy-popup__dialog__close:after,.cookie-bar-privacy-popup__dialog__close:before{content:'';display:block;width:1rem;height:.25rem;background-color:#fff;position:absolute;top:50%;left:25%;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;margin-top:-.125rem}.cookie-bar-privacy-popup__dialog__close:before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.cookie-bar-privacy-popup__dialog__close:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.cookie-bar-privacy-popup__dialog p:last-child{margin-bottom:0}.cookie-bar--bottom,.cookie-bar--bottom-left,.cookie-bar--bottom-right{z-index:100;position:fixed}.cookie-bar--bottom{right:0;bottom:0;left:0}.cookie-bar--bottom-left{left:.9375rem}.cookie-bar--bottom-right{right:.9375rem}.cookie-bar--bottom-left,.cookie-bar--bottom-right{bottom:.9375rem}@media (min-width:48rem){.cookie-bar--bottom-left,.cookie-bar--bottom-right{width:22.5rem}}@media (min-width:48rem){.cookie-bar--bottom-left .cookie-bar__buttons,.cookie-bar--bottom-left .cookie-bar__inner,.cookie-bar--bottom-right .cookie-bar__buttons,.cookie-bar--bottom-right .cookie-bar__inner{display:block}}@media (min-width:48rem){.cookie-bar--bottom-left .cookie-bar__buttons,.cookie-bar--bottom-right .cookie-bar__buttons{margin-top:.375rem}}.cookie-bar--bottom-left .cookie-bar__inner,.cookie-bar--bottom-right .cookie-bar__inner{line-height:1.3}
/* End */


/* Start:/bitrix/templates/ftsarr/stylesheets/jquery.simple-lightbox.css?15877225452871*/

/* --------------------------------------------------------
Style Sheet for jquery.simpleLightbox()

version: 0.0.1
author: Thomas Schwarz
email: info@thomasschwarz-websolutions.de
website: https://www.thomasschwarz-websolutions.de
License: MIT
  _____ _                      ___     _                       ___  __ 
 |_   _| |_  ___ _ __  __ _ __/ __| __| |___ __ ____ _ _ _ ___/ _ \/ / 
   | | | ' \/ _ \ '  \/ _` (_-<__ \/ _| ' \ V  V / _` | '_|_ /\_, / _ \
   |_| |_||_\___/_|_|_\__,_/__/___/\__|_||_\_/\_/\__,_|_| /__| /_/\___/
----------------------------------------------------------*/

.sl-wrapper {
  background-color: rgba(0,0,0,0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 99;
}

.sl-wrapper .sl-content {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  max-width: 100%;
  width: 80vh;
  display: block;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sl-wrapper .sl-content .sl-close {
  background-image: url('data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIxMi45ODIgMjEyLjk4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEyLjk4MiAyMTIuOTgyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJDbG9zZSI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMTMxLjgwNCwxMDYuNDkxbDc1LjkzNi03NS45MzZjNi45OS02Ljk5LDYuOTktMTguMzIzLDAtMjUuMzEyICAgYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBsLTc1LjkzNyw3NS45MzdMMzAuNTU0LDUuMjQyYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBjLTYuOTg5LDYuOTktNi45ODksMTguMzIzLDAsMjUuMzEyICAgbDc1LjkzNyw3NS45MzZMNS4yNDIsMTgyLjQyN2MtNi45ODksNi45OS02Ljk4OSwxOC4zMjMsMCwyNS4zMTJjNi45OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwbDc1LjkzNy03NS45MzdsNzUuOTM3LDc1LjkzNyAgIGM2Ljk4OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwYzYuOTktNi45OSw2Ljk5LTE4LjMyMiwwLTI1LjMxMkwxMzEuODA0LDEwNi40OTF6IiBmaWxsPSIjMDAwMDAwIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 3px;
  right: 3px;
  height: 16px;
  width: 16px;
  display: block;
  cursor: pointer;
}

.sl-wrapper .sl-content img {
  height: auto;
  width: 100%;
  display: block;
}

/* End */


/* Start:/bitrix/templates/ftsarr/stylesheets/slick.css?15155017121885*/
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* End */


/* Start:/bitrix/templates/ftsarr/stylesheets/main.css?1751975827165531*/
:root {
    --color-blue: #0033A1;
    --color-red: #EB212E;
    --font-size: 1rem;
    --header-size: 80px;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: #ed1c24;
    text-decoration: none;
}

@font-face {
    font-family: "ProximaNovaExtrabold";
    src: url("/bitrix/templates/ftsarr/stylesheets/../fonts/ProximaNova/ProximaNovaExtrabold.otf");
}

@font-face {
    font-family: "ProximaNovaBold";
    src: url("/bitrix/templates/ftsarr/stylesheets/../fonts/ProximaNova/ProximaNova-Bold.otf");
}

@font-face {
    font-family: "ProximaNova";
    src: url("/bitrix/templates/ftsarr/stylesheets/../fonts/ProximaNova/ProximaNova-Reg.otf");
}


body, html {
    height: 100%;
    min-height: 100%;
    min-width: 640px;
    margin: 0 auto;
    padding: 0;
    font-family: 'ProximaNova', sans-serif;
    max-width: 1920px;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

a:focus {
    outline: none;
}

header {
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: #fff;
    max-width: 1920px;
}

header #logoblock {
    position: absolute;
    left: 100px;
    top: 15px;
    height: 50px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/logo.png) no-repeat;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #496bb2;
    padding-left: 70px;
    text-decoration: none;
    text-transform: uppercase;
    padding-top: 7px;
}

header #logoblock span {
    color: #f15158;
}

#mainmenu {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#mainmenu > ul {
    display: flex;
    height: 80px;
    max-width: 660px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0 150px 0 400px;
}

#mainmenu > ul > li {
    display: inline-block;
    padding: 0 3px;
    position: relative;
    height: 80px;
    line-height: 80px;
}

#mainmenu li a {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #375caa;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

#mainmenu li:hover > a {
    color: var(--header-button_color);
}

#mainmenu li > ul {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 80px;
    background: #fff;
    z-index: -1;
    left: -9999px;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.3);
}

#mainmenu li > ul li {
    display: block;
    text-align: left;
    padding: 10px 20px;
    line-height: normal;
    height: auto;
}

#mainmenu li:hover > ul {
    opacity: 1;
    left: 0;
    z-index: 555;
    min-width: 150px;

}

#menu-switch {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/menu.png) no-repeat;
    width: 24px;
    height: 18px;
    position: absolute;
    right: 25px;
    top: 29px;
    cursor: pointer;
}

#shop-link {
    position: absolute;
    top: 22px;
    right: 100px;
    border: 2px solid #ed1c24;
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #ed1c24;
    text-align: center;
    border-radius: 30px;
    font-family: 'ProximaNovaBold', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: none !important;
}

#sochi-link {
    position: absolute;
    top: 18px;
    right: 260px;
    width: 120px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    border: 2px solid #375caa;
    background: #375caa !important;
    text-align: center;
    border-radius: 30px;
    font-family: 'ProximaNovaBold', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

@media (max-width: 1000px) {
    #sochi-link {
        display: none !important;
    }
}

#ins-link {
    position: absolute;
    top: 22px;
    right: 100px;
    border: 2px solid #ed1c24;
    width: 130px;
    height: 30px;
    line-height: 30px;
    color: #1d1c24;
    text-align: center;
    border-radius: 30px;
    font-family: 'ProximaNovaBold', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

#ins-link:hover {
    opacity: 0.7;
}


@media (max-width: 1600px) {
    #shop-link {
        right: 80px;
    }

    #ins-link {
        right: 80px;
    }

    #accred-link {
        right: 230px;
    }

}


#shop-link:hover {
    opacity: 0.7;
}


#main-wrap {
    padding-top: 80px;
}

#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.5;
    z-index: 998;
}

#left-menu {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 290px;
    height: 100%;
    background: #ed1c24;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999;
}

#left-menu a.close {
    position: absolute;
    top: 33px;
    right: 20px;
    text-indent: -9999px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/close.png) no-repeat;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

#left-menu a.close:hover {
    opacity: 0.8;
}

#mobile-menu {
    display: none;
}

#left-menu form,
#mobile-menu form {
    display: flex;
    flex-wrap: nowrap;
    width: 200px;
}

#mobile-menu form,
#mobile-menu input[type=text] {
    width: 100%;
    height: 94px;
}

#left-menu input,
#mobile-menu input {
    background: #f14950;
    border: none;
    height: 44px;
}

#left-menu input[type=text],
#mobile-menu input[type=text] {
    padding-left: 20px;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #fff;
    outline: 0;
}

#mobile-menu input[type=text] {
    font-size: 30px;
}

#left-menu input::-webkit-input-placeholder,
#mobile-menu input::-webkit-input-placeholder {
    color: #eee !important;
}

#left-menu input:-moz-placeholder,
#mobile-menu input:-moz-placeholder {
    color: #eee !important;
}

#left-menu input::-moz-placeholder,
#mobile-menu input::-moz-placeholder {
    color: #eee !important;
}

#left-menu input:-ms-input-placeholder,
#mobile-menu input:-ms-input-placeholder {
    color: #eee !important;
}

#left-menu input[type=submit],
#mobile-menu input[type=submit] {
    background: #f14950 url(/bitrix/templates/ftsarr/stylesheets/../images/search.png) no-repeat center center;
    text-indent: -9999px;
    min-width: 30px;
    height: 46px;
    outline: 0;
    cursor: pointer;
}

#mobile-menu input[type=submit] {
    height: 96px;
    width: 120px;
    background: #f14950 url(/bitrix/templates/ftsarr/stylesheets/../images/search-m.png) no-repeat right 50px center;
}

#left-menu ul {
    margin-top: 30px;
}

#mobile-menu ul {
    padding: 30px 40px;
}

#left-menu ul li,
#mobile-menu ul li {
    line-height: 20px;
    margin: 15px 0;

}

#mobile-menu ul li {
    margin: 30px 0;
}

#left-menu ul li a,
#mobile-menu ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "ProximaNovaBold";
    text-decoration: none;
}

#left-menu ul li a:hover,
#mobile-menu ul li a:hover {
    opacity: 0.8;
}

#mobile-menu ul li a {
    font-size: 26px;
}

#mobile-menu ul li ul {
    padding: 0px 30px;
}

.left-hassub {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/right.png) no-repeat right center;
    cursor: pointer;
}

#mobile-menu .left-hassub {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/right-m.png) no-repeat right center;
}

.left-hassub > div {
    display: none;
    position: fixed;
    right: 0;
    top: 66px;
    width: 290px;
    height: 100%;
    background: #ed1c24;
    z-index: 999;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

#mobile-menu .left-hassub > div {
    width: 100%;
    top: 80px;
    left: 0;
}

#mobile-menu .left-hassub > div ul {
    padding-top: 15px;
    margin-top: 0;
}

.left-hassub > div ul {
    margin-top: 0;
}

.close-sub {
    display: block;
    position: absolute;
    left: 20px;
    top: 30px;
    width: 10px;
    height: 16px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/left.png) no-repeat right center;

}

#mobile-menu .close-sub {
    width: 19px;
    height: 33px;
    top: 35px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/left-m.png) no-repeat right center;
}

hr {
    display: block;
    border: none;
    border-bottom: 1px solid #fff;
    height: 1px;
    opacity: 0.7;
}

#teaser-wrap {
    height: calc(100vh - 80px);
    width: 100%;
    cursor: pointer;
}

#mobile-teaser-wrap {
    height: calc(100vh - 150px);
    width: 100%;
}

footer {
    height: auto;
    background: #375caa;
    position: relative;
    padding-bottom: 50px;
}

footer #partners-wrap {
    height: auto;
    padding: 15px 0;
    background: #fff;
}

footer #partners {
    height: 80px;
    background: #fff;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

#partners li {
    width: auto;
    height: auto;
    text-align: center;
}


.footer-3columns {
    margin: 30px auto 0 auto;
    max-width: 960px;
    color: #fff;
    font-size: 14px;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.footer-3columns .footer-column {
    width: 30%;
}

.footer-3columns .footer-column p {
    font-size: 12px;
    color: #7ca1f0;
    font-family: "ProximaNovaBold";
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-3columns .footer-column ul li {
    height: 32px;
}

.footer-3columns .footer-column ul.footer-menu li {
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    font-family: "ProximaNovaBold";
    letter-spacing: 1px;
}

.footer-3columns .footer-column ul.footer-sm a {
    display: inline-block;
    font-size: 12px;
    color: #fff;
    font-family: "ProximaNovaBold";
    padding-left: 35px;
    height: 20px;
    line-height: 20px;
    margin-left: 70px;
    display: inline-block;
}

.footer-3columns .footer-column ul.footer-sm a.fb {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/fbicon.png) no-repeat 6% 50%;
}

.footer-3columns .footer-column ul.footer-sm a.tw {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/twicon.png) no-repeat left;
}

.footer-3columns .footer-column ul.footer-sm a.vk {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/vkicon.png) no-repeat left;
}

.footer-3columns .footer-column ul.footer-sm a.yt {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/yticon.png) no-repeat left;
}

.footer-3columns .footer-column ul.footer-sm a.in {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/inicon.png) no-repeat left;
}

.footer-3columns .footer-column ul.footer-sm a.tg {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/telegram.png) no-repeat left;
    background-size: 17px;
}

.footer-3columns .footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

footer .disclaimer {
    display: block;
    margin: 30px auto 0 auto;
    font-size: 14px;
    color: #fff;
    max-width: 960px;
    position: relative;
}

.footer-3columns .footer-column:nth-child(3) {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    position: relative;
}

.footer-3columns .footer-column:nth-child(3) p {
    width: 260px;
    text-align: right;
}

.footer-3columns .footer-column form {
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.footer-3columns .footer-column form input[type=text],
.footer-3columns .footer-column form input[type=email] {
    background: #5f7dbb;
    border: none;
    padding: 11px 20px;
    font-size: 12px;
    color: #fff;
    width: 190px;
    font-family: "ProximaNovaBold";
    text-transform: uppercase;
}

.footer-3columns input::-webkit-input-placeholder {
    color: #8fa4d0 !important;
}

.footer-3columns input:-moz-placeholder {
    color: #8fa4d0 !important;
}

.footer-3columns input::-moz-placeholder {
    color: #8fa4d0 !important;
}

.footer-3columns input:-ms-input-placeholder {
    color: #8fa4d0 !important;
}

.footer-3columns .footer-column ul li a:hover {
    text-decoration: underline !important;
}

#idea-l {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/idea-l.png) transparent;
    color: #4c4c4c;
    display: block;
    font-family: "Arial", "Helvetica", sans-serif;
    font-size: 8px;
    font-weight: bold;
    line-height: 10px;
    letter-spacing: 1px;
    text-transform: none;
    height: 26px;
    overflow: hidden;
    padding: 6px 5px 0px 35px;
    text-decoration: none;
    width: 80px;
    position: absolute;
    right: 0;
    top: 0;
}

.footer-sm-mob,
.footer-menu-mobile {
    display: none;
}

#menu-switch-mob {
    display: none;
}


#mobile-menu {
    display: none;
    position: fixed;
    right: 0;
    top: 80px;
    width: 100%;
    height: calc(100% - 80px);
    background: #ed1c24;
    z-index: 999;
    overflow-y: auto;
    padding: 40px 25px;
    box-sizing: border-box;
}


@media (max-width: 1366px) {
    header #logoblock {
        left: 20px;
    }

    #menu-switch {
        right: 20px;
    }
}

@media (max-width: 1550px) {
    .footer-column:nth-child(1),
    .footer-column:nth-child(2) {
        display: none;
    }

    .footer-3columns .footer-column:nth-child(3) {
        display: block;
        width: 100% !important;
    }

    .footer-3columns .footer-column:nth-child(3) p {
        text-align: left;
        font-size: 20px;
        width: auto !important;
    }

    footer {
        height: auto;
        padding-bottom: 50px;
    }

    .footer-3columns {
        padding: 0px 25px;
    }

    footer .disclaimer {
        padding: 0 25px;
        font-size: 16px;
        line-height: 2em;
        color: #fefefe;
    }

    #idea-l {
        background: url(/bitrix/templates/ftsarr/stylesheets/../images/ideal-mob.png) no-repeat;
        background-size: contain;
        width: 125px;
        height: 30px;
        text-indent: -9999px;
        position: relative;
        left: 0;
        top: 0;
        margin-top: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    #idea-l br {
        display: none;
    }

    footer input[type=submit] {
        display: block;
        cursor: pointer;
        background: #00a2ff;
        color: #fff;
        border: none;
        padding: 20px;
        font-size: 25px;
        height: 100%;
    }

    footer input[type=text] {
        width: 100% !important;
        font-size: 20px !important;
    }

    .footer-menu-mobile {
        display: block;
        margin-top: 50px;
    }

    .footer-menu.footer-menu2 {
        display: none;
    }

    .footer-menu-mobile li {
        display: block;
        text-align: center;
        text-transform: uppercase;
        font-size: 20px;
        font-family: "ProximaNovaBold";
        margin-bottom: 20px;
    }

    .footer-sm-mob {
        display: flex;
        height: 50px;
        justify-content: space-around;
        align-items: center;
        margin-top: 50px;
    }

    .footer-sm-mob li {
        width: auto;
        height: auto !important;
        display: block !important;
    }

    footer #partners-wrap {
        height: auto;
    }

    footer #partners {
        height: auto;
        padding: 30px 0;
    }

    footer #partners li {
        margin: 10px;
        /*width: 170px;*/
    }

    #overlay {
        top: 80px;
    }

}


@media (max-width: 640px) {
    header #logoblock {
        font-size: 20px;
        padding-top: 0;
        line-height: 1em;
    }

    .footer-3columns .footer-column:nth-child(3) p {
        font-size: 30px !important;
    }

    footer .disclaimer {
        font-size: 12px !important;
        line-height: 2em;

    }

    footer input[type=text] {
        font-size: 24px !important;
    }

    .social-block p {
        font-size: 20px !important;
    }

    .news-list ul li a h3 {
        font-size: 20px !important;
    }

    a.download-details {
        line-height: 40px !important;
        height: 40px !important;
    }

    .top-news .compet-name {
        padding-right: 100px;
    }

    ul.persons li {
        width: 48% !important;
    }

    .white-content .subsection-switch {
        float: left !important;
        margin-bottom: 25px;
    }

    .white-content .subsection-switch + h2 {
        clear: both;
    }

    .contact-items {
        display: block !important;
    }

    .contact-items li {
        margin-bottom: 30px;
        width: 100% !important;
    }

    .contact-items p {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}


#main-wrap,
#main-wrap1 {
    flex: 1;
}


#main-wrap.dance-wrap {
    background: #1b7fdb url(/bitrix/templates/ftsarr/stylesheets/../images/dance-bg.png) no-repeat;
    background-attachment: fixed;
    background-position: top;

}

.content-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0 20px 0;
}

.news-list {
    background: #fff;
    padding: 20px 20px;
    margin-bottom: 20px;
}

.news-list h2 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 20px;

}

.news-list h2::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ed1c24;
    margin-top: -4px;
}

.news-list .top-news {
    position: relative;
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    max-height: 500px;
    width: 100%;
}

.news-list .top-news img,
.news-list ul a img {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    box-sizing: border-box;
    object-fit: cover;
}

@media (max-width: 720px) {
    .news-list ul a img {
        height: auto;
        max-height: 245px;
    }

}


.news-list .top-news img {
    height: 100%;
}

.news-list ul a img {
    border: none;
}

.news-list .top-news > p,
.news-list ul a p {
    position: absolute;
    left: 0px;
    top: 0px;
    display: inline-block;
    padding: 10px;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #fff;
}

.news-list .top-news > p {
    top: 1px;
    left: 1px;
}

.news-list .gc-wrap .top-news > p {
    top: 0px;
    left: 0px;
}

.arr-news {
    background: #ed1c24;
}

.dance-news {
    background: #6257a5;
}

.bdance-news {
    background: #00a2ff;
}

.general-news {
    background: #e09a14;
}


.gc-wrap img {
    max-width: 100%;
}

.news-list > ul {
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-list > ul > li {
    margin-top: 10px;
    width: calc(50% - 5px);
    width: -moz-calc(50% - 5px);
    width: -webkit-calc(50% - 5px);
    flex: none;
    min-height: 245px;
}

@media (max-width: 720px) {
    .news-list > ul > li {
        width: 100%;
    }
}

/*
.news-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}
.news-list li {
	flex: 1 1 47%;
	margin: 10px;
}
*/

.news-list ul li a {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 245px;
}

.news-list .top-news > div,
.news-list ul li a > div {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 5));
    color: #fff;
    box-sizing: border-box;
    padding: 40px 20px 15px 20px;
}

.news-list ul li a h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 5));
    color: #fff;
    box-sizing: border-box;
    padding: 40px 20px 20px 20px;
    font-family: "ProximaNovaBold";
    font-size: 16px;
    min-height: 100px;
    z-index: 2;
}

.news-list ul li a:hover h3 {
    text-decoration: underline;
}

.news-list .top-news > div h3 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.news-list .top-news:hover > div h3 {
    text-decoration: underline;
}

.news-list .top-news > div h4 {
    font-size: 16px;
}

.banner1000 img {
    max-width: 100%;
}

.banners-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0px;
}

@media (max-width: 960px) {
    .banners-block {
        margin: 20px 0;
    }
}

.banners-block .banner320 {
    margin: 10px;
}

.social-block {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/social-bg.jpg) no-repeat;
    min-height: 136px;
    background-size: cover;
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-block p {
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 15px
}

.social-block ul {
    text-align: center;
}

.social-block ul li {
    display: inline-block;
    width: 46px;
    height: 46px;
    border-radius: 5px;
    background: #ed1c24;
    margin: 7px;
    vertical-align: middle;
}

.social-block ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.social-block ul li a {
    line-height: 46px;
    text-align: center;
}

.social-block ul li a img {
    vertical-align: middle;
}

.red-button,
#bsubcronshopopen {
    display: inline-block;
    background: #ed1c24;
    color: #fff;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    padding: 17px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.more-news {
    display: block;
    width: 200px;
    margin: 40px auto;
}

#mainmenu > ul {
    margin: 0;
    max-width: 760px;
    padding-left: 550px;
    padding-right: 400px;
}


@media (max-width: 1600px) {
    #mainmenu > ul {
        padding-left: 425px;
    }

    header #logoblock {
        left: 20px;
    }

    #menu-switch {
        right: 20px;
    }

    #mainmenu > ul {
        padding-left: clamp(303px, calc(50% - 380px), 425px);
        padding-right: clamp(335px, calc(50% - 380px), 400px);
    }
}


.white-content {
    background: #fff;
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    color: #333333;
}

.white-content > h2,
.white-content > div h2 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    line-height: 36px;
    color: #333333;
    margin-bottom: 40px;
}

.white-content > h2::before,
.doccard h4::before,
.white-content > div h2::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ed1c24;
    margin-top: -4px;
}

.white-content > h3 {
    text-align: center;
    font-family: "ProximaNovaBold";
    font-size: 30px;
    line-height: 32px;
    color: #363636;
    margin: 40px 0;

}

.contact-items {
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    margin: 80px 0 50px;
}

.contact-items li {
    vertical-align: top;
    text-align: center;
    width: 25%;
}

@media (max-width: 900px) {
    .contact-items li {
        width: 30%;
    }
}

.contact-items li span {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: #ed1c24;
    margin: 0 auto 20px;
}

.contact-items li:last-child span {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-phone.png) no-repeat center;
}

.contact-items li:first-child span {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-map.png) no-repeat center;
}

.contact-items li:nth-child(2) span {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-mail.png) no-repeat center;
}

.contact-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: #ed1c24;
}

.contact-icon.phone {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-phone.png) no-repeat center;
}

.contact-icon.map {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-map.png) no-repeat center;
}

.contact-icon.mail {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-mail.png) no-repeat center;
}


.contact-items li p {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

.contact-items .contact-item *, .contact-items li * {
    font-size: 1rem !important;
    line-height: 1.625 !important;
}

.contact-items li a {
    font-family: "ProximaNovaBold";
    text-transform: uppercase;
    color: #ed1c24;
    text-decoration: none;
}

@media screen and (min-width: 741px) {
    #header #menu-switch-mob {
        display: none !important;
    }
}

@media screen and (max-width: 740px) {

    header#header {
        --header-elem_size: 7.8125vw;
        --header_size: 12.5vw;
        height: var(--header_size);
    }

    header#header:has(>.header-right) {
        --header-elem_size: 40px;
        --header_size: 80px;
    }

    header .nav-row--flex#mainmenu {
        height: var(--header_size);
        align-items: stretch;
    }

    #header .header__logo #logoblock {
        width: var(--header-elem_size);
        height: var(--header-elem_size);
    }

    .nav-row--flex .logo_event {
        height: var(--header-elem_size);
    }

    .nav-row--flex .logo_event img.img--logo_event {
        height: 10vw;
    }

    header #menu-switch-mob {
        top: auto !important;
        height: var(--header_size) !important;
    }


    .contact-items {
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
        gap: 4rem;
    }

    .contact-items > li, .contact-items > .contact-item, .contact-items > * {
        width: auto;
        min-width: auto;
        max-width: 100%;
        flex-basis: auto;
    }

    .contact-items .contact-item *, .contact-items li * {
        font-size: 2.5rem !important;
    }

    .contact-items .contact-item .contact__bg, .contact-items li span {
        display: block;
        width: 5rem;
        height: 5rem;
        border-radius: 5px;
        background-color: #ed1c24;
        margin: 0 auto 20px;
        background-size: 2.5rem !important;
    }

    .contact-items ~ .red-button.center-red-button {
        width: auto;
        height: auto;
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 1rem 2rem;
        border-radius: .5rem;
    }

}

.contact-items li a:hover {
    text-decoration: underline;
}

.contact-items li a.show-on-map {
    font-size: 12px;
}


.red-button.center-red-button {
    display: block;
    margin: 0 auto;
    padding: 0;
    height: 50px;
    line-height: 50px;
    width: 250px;
    margin-bottom: 50px;
}

.red-button:hover {
    opacity: 0.7;
}

.red-button.disabled {
    opacity: 0.5;
}

a.download-details {
    display: inline-block;
    float: right;
    padding-right: 30px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/icon-download.png) no-repeat right center;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ed1c24;
}

a.download-details:hover {
    text-decoration: underline;
}

.bank-details {
    margin-bottom: 10px;
}

.bank-details li {
    padding: 20px 0;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    text-transform: uppercase;
    color: #363636;
    border-top: #cfcfcf 1px solid;
}

.bank-details li:last-child {
    border-bottom: #cfcfcf 1px solid;
}

.popup {
    background-color: #FFF;
    position: absolute;
    z-index: 1000;
    border-radius: 10px;
    text-align: center;
    left: 50%;
}


.map-wrap {
    height: 500px;
}

#feedback-popup {
    top: 30%;
    padding: 20px 50px 20px;
    width: 500px;
    margin-left: -350px;
}

#okpopup,
#voteokpopup,
#votenotokpopup {
    top: 30%;
    padding: 66px 100px 50px;
    width: 500px;
    margin-left: -350px;
}

#voteokpopup h3,
#votenotokpopup h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

#feedback-popup .red-button,
#feedback-form .red-button {
    display: block;
    margin: 20px auto 0 auto;
}

.popup .close-popup {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 26px;
    height: 26px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/closebutton.png) no-repeat;
    text-indent: -10000px;
}

.popup .red-button.center-red-button {
    margin-bottom: 0;
}

.sendmessage div,
#feedback-form form > div {
    border-bottom: #9a9a9a 1px solid;
    text-align: left;
    padding: 10px 0 10px 40px;
}

.msg-name {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/msg-name.png) no-repeat left;
}

.msg-mail {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/msg-mail.png) no-repeat left;
}

.msg-question {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/msg-question.png) no-repeat top 27px left;
}


::-webkit-input-placeholder {
    color: #363636;
}

:-moz-placeholder {
    color: #363636;
}

::-moz-placeholder {
    color: #363636;
}

:-ms-input-placeholder {
    color: #363636;
}

::-webkit-textarea-placeholder {
    color: #363636;
}

:-ms-textarea-placeholder {
    color: #363636;
}

::-moz-textarea-placeholder {
    color: #363636;
}

:-moz-textarea-placeholder {
    color: #363636;
}

::textarea-placeholder {
    color: #363636;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.sendmessage div input,
.sendmessage div textarea,
#feedback-form form div input,
#feedback-form form div textarea {
    font-family: "ProximaNova";
    font-size: 16px;
    color: #363636;
    outline: none;
    border: 0;
    padding: 0;
    vertical-align: middle;
    white-space: normal;
    background: none;
    height: 50px;
}

.sendmessage div input,
#feedback-form form div input {
    line-height: 50px;
}

.sendmessage div textarea,
#feedback-form form div textarea {
    width: 100%;
    resize: none;
    height: 100px;
    margin-top: 16px;
}

.sendmessage div.msg-captcha {
    padding: 0;
    border-bottom: none;
    margin-bottom: 40px;
}

.sendmessage div.msg-captcha label {
    display: block;
    color: #363636;
    font-size: 14px;
    margin: 20px 0 5px;
}

.sendmessage div.msg-captcha input {
    display: inline-block;
    vertical-align: top;
    width: 45%;
    height: 40px;
    border: #9a9a9a 1px solid;
    margin-right: 10%;
    background-color: #f2f2f2;
    padding-left: 20px;
}

.sendmessage div.msg-captcha span {
    display: inline-block;
    vertical-align: top;
    width: 45%;
    height: 40px;
    margin-left: -7px;
}

.sendmessage div.msg-captcha img {
    max-height: 100%;
    max-width: 100%;
}

#feedback-popup > h3,
#feedback-form > h3 {
    font-family: "ProximaNovaBold";
    color: #363636;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

#map-popup > h3 {
    font-family: "ProximaNovaBold";
    color: #363636;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
    margin-top: -25px;
    line-height: 1.3em;
}


#feedback-popup > h3:first-of-type,
#feedback-form > h3:first-of-type {
    font-size: 36px;
    text-transform: uppercase;
}

#feedback-popup > h3:last-of-type,
#feedback-form > h3:last-of-type {
    text-transform: none;
    font-size: 22px;
    margin-bottom: 30px;
}

#president h4 {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    text-transform: uppercase;
}

#president > div {
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #dbdbdb;
    padding: 20px 0 20px 34px;
}

#president > div:last-child {
    margin-bottom: 30px;
}

#president .photo {
    width: 170px;
    height: 185px;
    background: #d0d0d0;
    border-radius: 10px;
    float: left;
    margin-right: 20px;
}

#president span {
    display: block;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    text-transform: uppercase;
}

#president > div:first-of-type span {
    margin-bottom: 30px;
}

#president > div:last-of-type span {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    width: 290px;
    margin-left: 170px;
}

#president p:last-of-type,
#president > div:last-of-type a {
    display: block;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 5px;
}

#president > div:last-of-type a:hover {
    text-decoration: underline;
}

#president p:first-of-type {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2em;
    color: #333;

}

#president > div:last-of-type p:first-of-type {
    /*	font-size: 14px; */
}


#structure {
    background: url(/bitrix/templates/ftsarr/images/structure.jpg) no-repeat top 33px left;
    width: 960px;
    height: 1475px;
    position: relative;
    margin-top: 20px;
}

#structure-mobile {
    display: none;
}

@media (max-width: 960px) {
    #structure {
        display: none;
    }

    #structure-mobile {
        display: block;
        padding-top: 50px;
    }

}

#structure h2 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    text-transform: uppercase;
    position: absolute;
    top: 27px;
    left: 210px;
    color: #ed1c24;
}

#structure-top-row {
    padding-top: 124px;
    padding-left: 30px;
    height: 216px;
    margin-bottom: 53px;

}

#structure-top-row > div {
    display: inline-flex;
    align-items: center;
    float: left;
    width: 172px;
    height: 84px;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    text-transform: uppercase;
    justify-content: center;
    text-align: center;
    margin-right: 20px;
}

#structure-top-row > div:nth-child(1) {
    margin-right: 177px;
}

#structure-top-row > div:nth-child(5) {
    margin-top: 50px;
    margin-left: 350px;
}

.structure-row {
    padding-left: 6px;
    height: 70px;
    margin-bottom: 40px;
}

.structure-row > div {
    position: relative;
    display: inline-flex;
    align-items: center;
    float: left;
    width: 220px;
    height: 70px;
    color: #333333;
    font-family: "ProximaNovaBold";
    font-size: 13px;
    text-transform: uppercase;
    justify-content: center;
    text-align: center;
    margin-right: 20px;
}

.structure-row > div.column-1-more {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/structure-more1.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-row > div.column-2-more {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/structure-more2.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-row > div.column-3-more {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/structure-more3.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-row > div.column-4-more {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/structure-more4.png) no-repeat right bottom;
    cursor: pointer;
}


#structure-top-row > div:last-child,
.structure-row > div:last-child {
    margin-right: 0;
}

.white-content .subsection-switch {
    height: 36px;
    line-height: 36px;
    border-radius: 7px;
    background: #dbdbdb;
    float: right;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    text-transform: uppercase;
}

.white-content .subsection-switch a {
    display: inline-block;
    padding: 0 20px;
    color: #333333;
    text-decoration: none;
    border-radius: 5px;
    margin-right: -4px;
}

.white-content .subsection-switch a.active {
    background: #ed1c24;
    color: #fff;
}

.white-content .subsection-switch a:not(.active):hover {
    opacity: 0.7;
}

.white-content .subsection-switch.members-switch a:first-child {
    background: #dbdbdb url(/bitrix/templates/ftsarr/stylesheets/../images/list.png) no-repeat right 25px center;
    padding-right: 60px;
}

.white-content .subsection-switch.members-switch a:first-child.active {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/list.png) no-repeat right 25px center;
}

.white-content .subsection-switch.members-switch a {
    background: #dbdbdb url(/bitrix/templates/ftsarr/stylesheets/../images/map.png) no-repeat right 25px center;
    padding-right: 60px;
}

.white-content .subsection-switch.members-switch a:last-child.active {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/map.png) no-repeat right 25px center;
    padding-right: 60px;
}

.white-content .subsection-switch.members-switch a:not(.active):hover {
    opacity: 0.7;
}

.structure-popup {
    position: absolute;
    left: 0;
    top: 0px;
    width: 220px;
    background: #00a2ff;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    z-index: 1;
    text-align: left;
}

.structure-row div:hover .structure-popup {
    opacity: 1;
}

.structure-popup h3 {
    font-family: "ProximaNovaBold";
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.structure-popup p {
    font-family: "ProximaNova";
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: none;
}

.structure-popup a {
    font-family: "ProximaNovaBold";
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding-right: 20px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/goto.png) no-repeat right center;
    background-size: 14px;
    display: inline-block;
    margin-left: 50px;
}

hr {
    display: block;
    height: 0;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 30px;
}

ul.persons {
    margin-left: 34px;
}

ul.persons li {
    display: inline-flex;
    align-items: flex-start;
    width: 48%;
    text-transform: uppercase;
    margin-bottom: 30px;
    vertical-align: top;
    padding-right: 10px;
    box-sizing: border-box;
}

ul.persons li p {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;

}

ul.persons li a {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #ed1c24;
    text-decoration: none;
}

ul.persons li a:hover {
    text-decoration: underline;
}

ul.persons li span {
    display: block;
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}


#about .about-links {
    float: right;
    margin-bottom: 20px;
}

#about > img {
    margin-left: 30px;
    margin-bottom: 20px;
}

#about .about-links li {
    margin-bottom: 20px;
    width: 400px;
}

#about .about-links li a {
    font-family: "ProximaNovaBold";
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    display: block;
    line-height: 20px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/download.png) no-repeat left center;
    color: #ea212d;
    padding-left: 30px;
}

#about .about-links li a:hover {
    text-decoration: underline;
}

.grey-block {
    background: #f8f8f8;
    clear: both;
    margin-bottom: 20px;
}

.grey-block > div {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
}

.grey-block .about-left {
    padding: 10px 10px 10px 40px;
    font-size: 16px;
    color: #ed1c23;
    font-family: "ProximaNovaBold";
    line-height: 1.2em;
    text-transform: uppercase;
}

.grey-block .about-right {
    padding: 10px 20px 10px 10px;
    font-size: 24px;
    color: #333;
    font-family: "ProximaNovaBold";
    line-height: 1.2em;
    text-transform: uppercase;
}

#about p {
    margin: 30px 40px;
    line-height: 1.2em;
    font-size: 16px;
}

#about h2:not(:first-child) {
    margin-top: 35px;
    margin-bottom: 20px;
}

#about h2 + p {
    margin-top: 20px;
}

.about-list {
    padding-left: 40px;
}

.about-list li {
    display: inline-block;
    box-sizing: border-box;
    width: 30%;
    padding-left: 30px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/check.png) no-repeat left center;
    font-size: 16px;
    color: #333;
    font-family: "ProximaNovaBold";
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

#about .about-list li:nth-child(2),
#about .about-list li:nth-child(5) {
    width: 39%;
}


@media (max-width: 960px) {
    #about > img {
        display: block;
        margin: 20px auto;
    }

    #about .about-links {
        float: none;
    }

    #about .grey-block > div {
        box-sizing: border-box;
        display: block;
        width: 100%;
        padding: 20px !important;
    }

    #about .about-list li {
        display: block;
        width: 100% !important;
    }
}

#docstable {
    width: 100%;
    table-layout: fixed;
    border-top: 1px solid #dadada;
}

#docstable td,
#docstable th {
    border-bottom: 1px solid #dadada;
    padding: 20px;
    font-family: "ProximaNovaBold";
    text-transform: uppercase;
    font-size: 12px;
}

#docstable th {
    color: #666;
    padding-top: 30px;
}

#docstable td {
    color: #000;
}

#docstable td:first-child,
#docstable th:first-child {
    width: 61%;
    text-align: left;
}

#docstable td + td,
#docstable th + th {
    width: 13%;
    text-align: center;
    padding: 20px 5px
}

#docstable a {
    color: #cb2228;
    text-decoration: none;
    font-size: 12px;
    font-family: "ProximaNovaBold";
    text-transform: uppercase;
}

#docstable a:hover {
    text-decoration: underline;
}

.docnav div.modern-page-navigation {
    float: right;
    margin-top: 4px;
}

#docs-menu {
    border-top: 1px solid #dadada;
}


#docs-menu > ul {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
}

#docs-menu > ul > li {
    display: inline-block;
    padding: 0 3px;
    position: relative;
}

#docs-menu li a {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #363636;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 50px;
}

#docs-menu li:hover > a {
    color: #ed1c24;
}

#docs-menu li > ul {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 50px;
    background: #fff;
    z-index: -1;
    left: -9999px;
    padding: 20px;
    border: 1px solid #dadada;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

#docs-menu li > ul li {
    display: block;
    line-height: normal;
    height: auto;
}

#docs-menu li > ul li a {
    font-size: 12px;
    line-height: 30px;
}

#docs-menu li:hover > ul {
    opacity: 1;
    left: 0;
    z-index: 555;
}

#docs-menu li:last-child:hover > ul {
    left: auto;
    right: 0px;
}

#filters-switch {
    display: block;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/filters-switch.png) no-repeat;
    width: 36px;
    height: 36px;
    text-indent: -9999px;
    cursor: pointer;
    float: right;
    margin-left: 10px;
    margin-top: -5px;
}

#filters-switch:hover {
    opacity: 0.7;
}

#filters-switch.opened {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/filtericon-opened.png) no-repeat;
}

#doc-filters {
    border-top: 1px solid #dadada;
}

#doc-filters h3 {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    color: #363636;
    text-transform: uppercase;
    margin: 20px 0 10px 0;
    line-height: 48px;
}

#doc-filters h3 .red-button {
    float: right;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
}

#doc-filters p {
    display: inline-block;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #363636;
    text-transform: uppercase;
    margin-right: 20px;
}

#doc-filters .docname {
    width: 240px;
    margin-right: 25px;
}

#doc-filters.orgs-filter {
    padding-bottom: 30px;
}

#doc-filters.orgs-filter select {
    margin-bottom: 20px;
    width: 240px;
    font-size: 16px;
}

@media (max-width: 960px) {
    #doc-filters p {
        display: block;
        margin-bottom: 20px;
    }

    #doc-filters [type="checkbox"] + label {
        display: block;
        margin-left: 0;
        margin-bottom: 10px;
    }
}

.content-wrap input[type=text],
.content-wrap input[type=password],
#promo-popup input[type=text] {
    height: 36px;
    line-height: 36px;
    border: none;
    border-radius: 5px;
    background: #d9d9d9;
    padding-left: 15px;
    font-size: 16px;
    color: #393939;
    font-family: "ProximaNovaBold";
    outline: none !important;
    margin-bottom: 20px;
}

.content-wrap select {
    font-family: "ProximaNovaBold";
    border: none;
    border-radius: 5px;
    color: #393939;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    padding: 0 30px 0 20px;
    background: #d9d9d9 url("/bitrix/templates/ftsarr/stylesheets/../images/select-arrow.png") no-repeat right 10px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none !important;
    cursor: pointer;
    outline: none;
}

input.search {
    width: 210px;
    margin-bottom: 0 !important;
    height: 34px !important;
}

input.search + input {
    display: inline-block;
    height: 36px;
    width: 38px;
    background: #d9d9d9 url("/bitrix/templates/ftsarr/stylesheets/../images/search-red.png") no-repeat center center !important;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    margin-left: -18px;
    text-indent: -9999px;
    border: none;
    vertical-align: top;
    cursor: pointer;
    outline: none !important;
}


[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    /*	margin-left: 30px; */
    font-size: 16px;
    display: inline-block;
}

/* checkbox aspect  */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: none;
    background: #d9d9d9;
    border-radius: 2px;
}


[type="checkbox"]:checked + label:before {
    background: #cb2228;
}


/* checked mark aspect */
[type="checkbox"]:not(:checked) ~ label:after,
[type="checkbox"]:checked ~ label:after {
    content: '✓';
    position: absolute;
    top: 0.3em;
    left: .4em;
    font-size: 16px;
    line-height: 0.8;
    color: #ed1c24;
    transition: all .2s;
}

[type="checkbox"]:checked + label:after {
    color: #fff;
}


/* checked mark aspect changes  */
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}

[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}


.white-content h2 form {
    display: inline-block;
    vertical-align: middle;
    margin-left: 30px;
    margin-top: -5px;
}

.white-content h2 select {
    float: right;
    margin-top: -5px;
}

img.calendar-icon {
    display: inline-block;
    background: #d9d9d9 url(/bitrix/templates/ftsarr/stylesheets/../images/calendar.png) no-repeat scroll center center;
    text-indent: -10000px;
    padding: 19px;
    width: 0;
    height: 0;
    border: none;
    margin: 0;
    margin-left: -5px;
    vertical-align: top;
    cursor: pointer;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 10px;
}

.date-interval-hellip {
    display: inline-block;
    line-height: 36px;
    height: 36px;
    font-size: 12px;
    color: #393939;
    font-family: "ProximaNovaBold";
    background: #d9d9d9;
    padding: 1px 0 1px 5px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    vertical-align: top;
}

.date-interval-hellip + input {
    border-radius: 0 !important;
}

.docnav {
    margin-top: 20px;
}

.modern-page-title {
    display: none;
}

.modern-page-navigation {
    text-align: right;
    font-family: "ProximaNovaBold";
}

.modern-page-navigation a {
    color: #cb2228;
}

.docfiltersubmit {
    margin-top: 30px;
    margin-bottom: 20px;
    cursor: pointer;
}

.go-back {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/back.png) no-repeat left center;
    line-height: 16px;
    padding-left: 27px;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

.go-back:hover {
    text-decoration: underline;
}

.doccard h2,
.doccard h4 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    margin: 20px 0 15px 0;
    line-height: 1.2em;
}

.doccard h3 {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #ed1c24;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.doccard h4 {
    text-transform: uppercase;
}

.doccard h4 span {
    color: #ed1c24;
}

.doccard ul:not(.ya-share2__list) {
    margin-left: 30px;
    border-bottom: 1px solid #d0d0d0;
}

.doccard ul:not(.ya-share2__list) li {
    border-top: 1px solid #d0d0d0;
    padding: 10px 0;
    font-family: "ProximaNovaBold";
    font-size: 12px;
}

.fileformat {
    display: inline-block;
    height: 30px;
    width: 22px;
    vertical-align: middle;
    margin-right: 20px;
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-other.png") no-repeat;
}

.fileformat.pdf {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-pdf.png") no-repeat;
}

.fileformat.doc,
.fileformat.docx {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-doc.png") no-repeat;
}

.fileformat.xls {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-xls.png") no-repeat;
}

.fileformat.ppt {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-ppt.png") no-repeat;
}

.fileformat.zip {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-zip.png") no-repeat;
}

.fileformat.rar {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-rar.png") no-repeat;
}

.fileformat.jpg {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-jpg.png") no-repeat;
}

.fileformat.txt {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-txt.png") no-repeat;
}

.fileformat.png {
    background: url("/bitrix/templates/ftsarr/stylesheets/../images/file-png.png") no-repeat;
}

.doccard ul:not(.ya-share2__list) li a {
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #333333;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/download.png) no-repeat right 20px center;
    padding-right: 40px;
}

.doccard ul:not(.ya-share2__list) li a:hover {
    text-decoration: underline;
}

.doccard li a q {
    color: #ee1c24;
}

#download-all {
    float: right;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/download.png) no-repeat right 20px center;
    padding-right: 55px;
    color: #ed1c24;
    font-size: 12px;
    cursor: pointer;
}

#download-all:hover {
    text-decoration: underline;
}

.orgslist {
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
    padding: 30px 0 0 0;
}

.orgslist li {
    position: relative;
    margin-bottom: 35px;
    display: inline-block;
    width: 47%;
    margin-right: 50px;
    vertical-align: top;
}

.orgslist li:nth-child(2n) {
    margin-right: 0;
}

.orgslist li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
}

.orgslist li > div {
    margin-left: 70px;
}

.orgslist .orgname {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.5em;

}

.orgslist .org-sport {
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.orgslist hr {
    margin: 10px 0;
}

.orgslist .presidentname {
    display: block;
    font-size: 16px;
    color: #333333;
    margin-bottom: 5px;
}

.orgslist a {
    display: block;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-decoration: none;
}

.orgslist a:hover {
    text-decoration: underline;
}

#orgs-map {
    border-top: 1px solid #dadada;
    padding-bottom: 20px;
}


.white-button {
    display: inline-block;
    background: #fff;
    color: #1b33a9;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    padding: 17px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
}

.white-button:hover {
    opacity: 0.7;
}


.map-content .org-name {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1.5em;
}

.map-content hr {
    margin: 10px 0;
}

.map-content p {
    margin-bottom: 5px;
}

.map-content a {
    display: block;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}

div.modern-page-navigation a:hover {
    text-decoration: underline;
}

.modern-page-navigation {
    margin-top: 10px;
}

.open-more {
    display: block;
    width: 200px;
    margin: 30px auto;
}

h2.without-redt::before {
    display: none !important;
}


.bx-breadcrumb {
    margin: 10px 0
}

.bx-breadcrumb i {
    color: #b5bdc2;
    line-height: 13px;
    font-size: 12px;
    vertical-align: middle;
    margin-right: 5px
}

.bx-breadcrumb .bx-breadcrumb-item {
    float: left;
    margin-bottom: 10px;
    white-space: nowrap;
    line-height: 13px;
    vertical-align: middle;
    margin-right: 10px
}

.bx-breadcrumb .bx-breadcrumb-item span {
    font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 13px;
    white-space: normal
}

.bx-breadcrumb .bx-breadcrumb-item a {
    border-bottom: 0
}

.card-wrap .breadcrumbs {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    display: inline-block;
}

.breadcrumbs a {
    display: inline-block;
    color: #e20613;
    padding: 0 15px 0 14px;
    border-right: #e20613 1px solid;
}

.breadcrumbs a:hover {
    text-decoration: none;
}

.breadcrumbs a:first-child {
    padding-left: 0;
}

.breadcrumbs span {
    display: inline-block;
    color: #999999;
    padding-left: 14px;
}

.breadcrumbs {
    width: calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: -webkit-calc(100% - 250px);
    width: -o-calc(100% - 250px);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    display: inline-block;
}

.breadcrumbs .bx-breadcrumb .bx-breadcrumb-item i {
    display: none;
}

.breadcrumbs .bx-breadcrumb .bx-breadcrumb-item span {
    display: inline-block;
    padding-left: 0 !important;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumbs a {
    display: inline-block;
    color: #e20613;
    padding: 0 15px 0 14px;
    border-right: #e20613 1px solid;
}

.breadcrumbs .bx-breadcrumb .bx-breadcrumb-item a span {
    color: #e20613;
    text-decoration: underline;
}

.breadcrumbs .bx-breadcrumb .bx-breadcrumb-item a:hover span {
    color: #e20613;
    text-decoration: none;
}

.breadcrumbs .bx-breadcrumb .bx-breadcrumb-item {
    margin-right: 0;
}

.breadcrumbs .bx-breadcrumb .bx-breadcrumb-item > span {
    width: 250px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-left: 14px;
}

.header-sm {
    display: none !important;
}

.white-content > div > div.search-form {
    display: none;
}

.promo-world-content .white-button {
    display: none;
}


.white-content > .partners-page > h2 {
    margin-bottom: 30px;
}

.partners-list li {
    background-color: #f8f8f8;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    height: 100px;
    margin-bottom: 10px;
}

.partners-list li div {
    width: 50%;
    text-align: center;
}

.partners-list li div a {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    height: 20px;
    line-height: 21px;
    color: #ed1c24;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/next-arrow.png) no-repeat right;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 25px;
}


#event-map-popup {
    display: none;
    position: fixed;
    top: 200px;
    width: 90%;
    left: 5%;
    padding: 60px 20px 20px 20px;
    box-sizing: border-box;
}

.top-news .compet-name {
    font-family: "ProximaNovaBold";
}

.top-news:hover .compet-name {
    text-decoration: underline;
}

/*
#partners li:last-child {
width: 125px;
}
*/

.doccard .user-content ul:not(.ya-share2__list) {
    margin-left: 40px;
    border-bottom: none;
}

.doccard .user-content ul:not(.ya-share2__list) li {
    border-top: none;
    padding: 5px 0;
    font-family: "ProximaNova";
    font-size: 16px;
}


/* styles for wysywig content*/
.user-content li {
    display: list-item
}

.user-content head {
    display: none
}

.user-content table {
    display: table
}

.user-content tr {
    display: table-row
}

.user-content thead {
    display: table-header-group
}

.user-content tbody {
    display: table-row-group
}

.user-content tfoot {
    display: table-footer-group
}

.user-content col {
    display: table-column
}

.user-content colgroup {
    display: table-column-group
}

.user-content td, th {
    display: table-cell
}

.user-content caption {
    display: table-caption
}

.user-content th {
    font-weight: bolder;
    text-align: center
}

.user-content caption {
    text-align: center
}

.user-content body {
    margin: 8px
}

.user-content h1 {
    font-size: 2em;
    margin: .67em 0
}

.user-content h2 {
    font-size: 1.5em;
    margin: .75em 0
}

.user-content h3 {
    font-size: 1.17em;
    margin: .83em 0
}

.user-content h4, .user-content p,
.user-content blockquote, .user-content ul,
.user-content fieldset, .user-content form,
.user-content ol, .user-content dl, .user-content dir,
.user-content menu {
    margin: 1.12em 0
}

.user-content h5 {
    font-size: .83em;
    margin: 1.5em 0
}

.user-content h6 {
    font-size: .75em;
    margin: 1.67em 0
}

.user-content h1, .user-content h2, .user-content h3, .user-content h4,
.user-content h5, .user-content h6, .user-content b,
.user-content strong {
    font-weight: bolder
}

.user-content blockquote {
    margin-left: 40px;
    margin-right: 40px
}

.user-content i, .user-content cite, .user-content em,
.user-content var, .user-content address {
    font-style: italic
}

.user-content pre .user-content, tt, .user-content code,
.user-content kbd, .user-content samp {
    font-family: monospace
}

.user-content pre {
    white-space: pre
}

.user-content button, .user-content textarea,
.user-content input, .user-content select {
    display: inline-block
}

.user-content big {
    font-size: 1.17em
}

.user-content small, .user-content sub, .user-content sup {
    font-size: .83em
}

.user-content sub {
    vertical-align: sub
}

.user-content sup {
    vertical-align: super
}

.user-content table {
    border-spacing: 2px;
}

.user-content thead, .user-content tbody,
.user-content tfoot {
    vertical-align: middle
}

.user-content td, .user-content th, .user-content tr {
    vertical-align: inherit;
    border: 1px solid #000;
    padding: 2px;
}

.user-content s, .user-content strike, .user-content del {
    text-decoration: line-through
}

.user-content hr {
    border: 1px inset
}

.user-content ol, .user-content ul, .user-content dir,
.user-content menu, .user-content dd {
    margin-left: 40px
}

.user-content ol li {
    list-style-type: decimal
}

.user-content ul li {
    list-style-type: disc
}

.user-content ol ul, .user-content ul ol,
.user-content ul ul, .user-content ol ol {
    margin-top: 0;
    margin-bottom: 0
}

.user-content u, .user-content ins {
    text-decoration: underline
}

.user-content br:before {
    content: "\A";
    white-space: pre-line
}

.user-content center {
    text-align: center
}

.user-content :link, :visited {
    text-decoration: underline
}

.user-content :focus {
    outline: thin dotted invert
}


.ui-icon-closethick {
    width: 16px;
    height: 16px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/closebutton.png) no-repeat !important;
    background-size: 16px !important;
}

.ui-dialog .ui-dialog-titlebar-close {
    right: 20px;
    top: 20px;
    width: 16px;
    height: 16px;
    border: none;
    background: none;
    padding: 0;
    outline: none;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
    opacity: 0.7;
}

.ui-draggable .ui-dialog-titlebar {
    background: none;
    border: none;
    color: #333333;
    font-family: "ProximaNovaBold";
    font-size: 18px;
    text-align: center;
    padding: 8px 40px;
    text-transform: uppercase;
}

.ui-widget.ui-widget-content {
    border: none;
    border-radius: 20px;
}

.ui-dialog .ui-dialog-content {
    padding: 30px;
}

.map-popup li {
    font-family: "ProximaNovaBold";
    border-bottom: 1px solid #999999;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.map-popup li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;

}

.map-popup li h4 {
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.map-popup li span.orgsite {
    margin-top: 15px;
    color: #999;
    display: block;
    font-size: 12px;
}

.map-popup li span.orgsite span {
    color: #000;
}

.map-popup li span a {
    color: #e20613;
}

.map-popup li span a:hover {
    text-decoration: none;
}


.new-members-wrap #doc-filters h3 {
    margin-bottom: 30px;
}

.abclist {
    margin-bottom: 20px;
}

.abclist input[type="radio"] {
    display: none;
}

.abclist label {
    display: inline-block;
    color: #ed1c24;
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    height: 30px;
    line-height: 32px;
    width: 30px;
    text-align: center;
    border-radius: 15px;
    background-color: #f8f8f8;
    margin-right: 6px;
    margin-bottom: 10px;
    cursor: pointer;
}

.abclist input[type="radio"]:checked + label,
.abclist input[type="radio"]:hover + label {
    color: #fff;
    background-color: #ed1c24;
}

.members-list > li {
    margin-bottom: 2px;
    background-color: #f8f8f8;
    padding: 0;
    font-family: "ProximaNovaBold";
    font-size: 12px;
}

.members-list > li > a {
    padding: 20px 40px 10px 10px;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #000;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/next-arrow.png) no-repeat right 20px center;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 640px) {
    .members-list > li > a {
        font-size: 22px;
    }

    [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
        font-size: 22px;
    }

    .members-list a > div, .members-list a p {
        max-width: 80%;
    }

}


.members-list > li > a span {
    color: #ed1c24;
    padding-left: 5px;
}

.members-list > li > a.opened {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/down-arrow.png) no-repeat right 20px center;
}

.members-list a > div,
.members-list a p {
    display: inline-block;
    vertical-align: middle;
}

.member-image-wrap {
    width: 85px;
    text-align: center;
}

.member-image-wrap img {
    max-width: 50px;
    max-height: 80px;
}

.members-div {
    padding: 0 20px 30px 99px;
}

.members-div-inner + .members-div-inner {
    margin-top: 30px;
}

.members-div-inner .orgname {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.5em;
}

.members-div-inner .org-sport {
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.members-div-inner .presidentname {
    font-family: "ProximaNova";
    display: block;
    font-size: 16px;
    color: #333333;
    margin-bottom: 8px;
}

.members-div-inner .presidentname span {
    font-family: "ProximaNovaBold";
}

.members-div-inner a {
    display: block;
    color: #ed1c24;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-decoration: underline;
}

.members-div-inner a:hover {
    text-decoration: none;
}

.letter-div {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 20px;
    background-color: #000;
    margin: 20px 0;
}

.members-list-wrap {
    margin-bottom: 40px;
}

.abclist > div {
    display: none;
}

.g-recaptcha {
    padding-left: 0 !important;
    text-align: center !important;
}

.g-recaptcha div {
    margin: 0 auto;
    border: none;
    padding: 0;
}


[id^="wait_comp"] {
    width: 90px;
    height: 90px;
    background-color: rgba(204, 204, 204, 0.8) !important;
    border: none !important;
    border-radius: 20px;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 12px !important;
    background-image: url("/bitrix/templates/ftsarr/images/loader.gif") !important;
    background-position: -105px -120px !important;
    background-size: 300px !important;
    box-sizing: border-box;
    padding: 65px 0 0 0 !important;
    position: fixed !important;
    left: 50% !important;
}

#mobile-menu hr {
    margin-bottom: 0;
    margin-top: 0;
}

#button-up {
    display: block;
    width: 60px;
    height: 60px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/up.png) no-repeat;
    position: fixed;
    right: 20px;
    bottom: 14px;
    z-index: 100;
    cursor: pointer;
}

#button-up:hover {
    opacity: 0.7;
}

.new-docslist-wrap #doc-filters a.red-button {
    float: right;
    padding: 5px 30px;
}

.new-docslist-wrap .docfiltersubmit {
    width: 255px;
}

.new-docslist-wrap .two-columns-div {
    display: flex;
    border-top: 1px solid #dbdbdb;
    padding-top: 20px;
}

.new-docslist-wrap .left-column {
    width: 256px;
}

.new-docslist-wrap .right-column {
    width: calc(100% - 256px);
    width: -moz-calc(100% - 256px);
    width: -webkit-calc(100% - 256px);
    width: -o-calc(100% - 256px);
}

#docstable1 {
    width: 100%;
    margin-left: 15px;
    width: calc(100% - 15px);
    width: -moz-calc(100% - 15px);
    width: -webkit-calc(100% - 15px);
    width: -o-calc(100% - 15px);
}

#docstable1 td {
    border-bottom: 1px solid #dbdbdb;
    padding: 10px 0;
    font-family: "ProximaNovaBold";
    color: #333333;
    font-size: 13px;
    vertical-align: middle;
    line-height: 15px;
}

#docstable1 td span {
    text-transform: none;
    font-family: "ProximaNova";
    font-weight: 300;
}

#docstable1 tr td:first-child {
    padding-right: 2%;
}

#docstable1 tr td:last-child {
    width: 110px;
}

@media (max-width: 960px) {
    #docstable1 tr td:last-child {
        width: auto;
    }
}

#docstable1 td a {
    color: #333;
    text-decoration: none;
}

#docstable1 td a:hover {
    color: #ed1c24;
}

#docs-menu1 > ul {
    display: block;
    width: 256px;
}

#docs-menu1 {
    background: #f8f8f8;
    border-top: none;
    height: 100%;
    position: relative;
}

#docs-menu1 > ul > li {
    display: block;
    border-bottom: 1px solid #dbdbdb;
    background-color: #f8f8f8;
}

#docs-menu1 li.hassubmenu > a {
    /*	background: url(/bitrix/templates/ftsarr/stylesheets/../images/menu-arrow.png) no-repeat 93% 50%;*/
}

#docs-menu1 li.hassubmenu-level2 > a {
    /*	background: url(/bitrix/templates/ftsarr/stylesheets/../images/next-arrow.png) no-repeat 90% 43%;*/
}

#docs-menu1 > ul > li:last-child {
    border-bottom: none;
}

#docs-menu1 > ul > li > a {
    display: block;
    padding: 15px 40px 15px 25px;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #363636;
    text-decoration: none;
    text-transform: uppercase;
}

#docs-menu1 > ul > li ul {
    display: none;
}

#docs-menu1 > ul > li.menu-opened {
    border-bottom: none;
}

#docs-menu1 > ul > li.menu-opened > a {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/menu-arrow1.png) no-repeat 20px 50%;
    color: #ed1c24;
    text-align: center;
    border-bottom: 1px solid #dbdbdb;
}

#docs-menu1 > ul > li > ul > li.menu-opened {
    border-bottom: 1px solid #dbdbdb;
    position: absolute;
    top: 5px;
}

#docs-menu1 > ul > li > ul > li.menu-opened > a {
    background: #f8f8f8 url(/bitrix/templates/ftsarr/stylesheets/../images/previous-arrow.png) no-repeat 20px 47%;
    color: #ed1c24;
    padding-left: 40px;
}

#docs-menu1 > ul > li.menu-opened ul {
    width: 256px;
}

#docs-menu1 > ul > li.menu-opened ul,
#docs-menu1 > ul > li.menu-opened ul li {
    width: 256px;
}

#docs-menu1 ul li ul li a {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #303030;
    text-decoration: none;
    text-transform: uppercase;
    padding: 15px 20px;
    line-height: 20px;
    display: block;
}

#docs-menu1 li.hassubmenu-level2.menu-opened ul {
    background: #f8f8f8;
    position: absolute;
    top: 55px;
    padding-top: 8px;
}

#docs-menu1 li.hassubmenu-level2.menu-opened ul li a {
    padding-left: 40px;
}


#docs-menu1 ul > li.active > ul {
    display: block;
}

#docs-menu1 li:not(.active) {
    background-color: #f8f8f8;
}

#docs-menu1 li.active,
#docs-menu1 li:hover,
#docs-menu1 li.current {
    background-color: #d9d9d9;
}

#docs-menu1 ul li.hassubmenu li a {
    margin-left: 15px;
}

.searchsort {
    margin-left: 30px;
    margin-top: 20px;
}

.searchsort .selectsort {
    float: left;
}

.searchsort .modern-page-navigation {
    float: right;
    margin-top: 0;
    clear: none;
}

.search-page > h3 {
    font-family: "ProximaNovaBold";
    font-size: 20px;
    margin-left: 30px;
}

.search-page > h3 .modern-page-navigation {
    font-size: 16px;
    float: right;
    margin-top: 0;
    padding-top: 0;
}

.search-page > p {
    margin-left: 30px;
}

.fed-filters-left {
    display: inline-block;
    width: 290px;
    vertical-align: top;
}

.fed-filters-right {
    display: inline-block;
    margin-left: 65px;
    width: 600px;
    vertical-align: top;
}

.fed-filters-left label,
.fed-filters-right label {
    display: block;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    margin-bottom: 20px;

}

.fed-filters-left q input {
    padding-left: 0 !important;
    width: 60px;
}

.fed-filters-right .docfiltersubmit {
    float: right;
    margin-top: -30px;
    width: 200px;
    margin-bottom: 0;
    padding: 15px 0;
    text-align: center;
}

.fed-filters-right [type="checkbox"]:not(:checked) + label, .fed-filters-right [type="checkbox"]:checked + label {
    margin-left: 0;
    font-family: "ProximaNova";
    display: inline-block;
}

@media (max-width: 1024px) {
    .fed-filters-left,
    .fed-filters-right {
        display: block;
        width: auto;
        margin-left: 0;
    }

    .fed-filters-right .docfiltersubmit {
        float: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.paging {
    text-align: center;
}

.paging .modern-page-navigation {
    display: inline-block;
    background: #fff;
    text-align: center;
}

.paging .modern-page-navigation a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: none;
    background: #e7e7e7;
    line-height: 36px;
    text-align: center;
    padding: 0;
    margin: 0 7px;
    color: #333333;
}

.paging .modern-page-navigation a:hover {
    background: #e20613;
    color: #fff;
    text-decoration: none;

}

.paging .modern-page-navigation span {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: none;
    background: #e20613;
    color: #fff;
    line-height: 36px;
    text-align: center;
    padding: 0 !important;
    margin: 0 7px;
}

.paging .modern-page-navigation .modern-page-title {
    display: none;
}

.paging div.modern-page-navigation a.modern-page-first, .paging div.modern-page-navigation span.modern-page-first {
    padding: 0;
}

.paging .modern-page-navigation .modern-page-previous {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/prev.png) no-repeat center;
    text-indent: -9999px;
    border: none;
}

.paging .modern-page-navigation .modern-page-previous:hover {
    opacity: 0.7;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/prev.png) no-repeat center;
}

.paging .modern-page-navigation .modern-page-next {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/next.png) no-repeat center;
    text-indent: -9999px;
}

.paging .modern-page-navigation .modern-page-next:hover {
    opacity: 0.7;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/next.png) no-repeat center;
}

.paging .modern-page-navigation .modern-page-all {
    width: 70px;
    background: #e20613;
    color: #fff;
    text-transform: uppercase;

}

.paging .modern-page-navigation .modern-page-all:hover {
    opacity: 0.7;
}

.search-page p a {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #ed1c24;
    text-decoration: none;
}

.search-page p a:hover {
    text-decoration: underline;
}


.top-banner img {
    max-width: 100%;
    height: auto;
}

.banners-block noindex {
    margin: 10px;
}


.user-content iframe {
    max-width: 100%;
}

.tags a {
    color: #e20613;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    border: 2px solid #e20613;
    padding: 0 15px;
    height: 22px;
    line-height: 22px;
    border-radius: 11px;
    margin-right: 6px;
}

.tags + ul {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .card-wrap .breadcrumbs {
        width: 100%;
    }
}

.subscribe [type="checkbox"]:not(:checked) + label, .subscribe [type="checkbox"]:checked + label {
    margin-left: 0;
    margin-bottom: 10px;
}

.subscribe input[type=text], .subscribe input[type=password], #subscribe-popup input[type=text] {
    padding: 7px !important;
    vertical-align: top;
}

.subscribe p label {
    line-height: 50px;
    font-family: "ProximaNovaBold";
    font-size: 16px;
    text-transform: uppercase;
    margin-right: 5px;
    display: inline-block;
    width: 75px;
}

.subscribe .data-table {
    margin-bottom: 15px;
}

.subscribe td {
    vertical-align: top;
}

.footer-subscribe-button {
    font-family: "ProximaNovaBold";
    cursor: pointer;
    background: #00a2ff;
    color: #fff;
    border: none;
    font-size: 14px;
    height: 37px;
    width: auto;
    padding: 0 10px;
    border-radius: 0;
}


#promo-popup h1 {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    margin-bottom: 10px;
}

#promo-popup input[type=text] {
    width: 275px;
}

#promo-popup #bsubcronshopopen {
    padding: 10px 20px;
}

#promo-popup span {
    display: block;
    font-family: "ProximaNovaBold";
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
}

#promo-popup .white-content {
    font-family: 'ProximaNova', sans-serif;
    line-height: 2em;
}


.ui-dialog .ui-dialog-content.structure-popup-content {
    padding: 20px 30px 30px 30px;
}

.structure-popup-content h2 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    line-height: 35px;
}

.committee-list li {
    border-bottom: #999999 1px solid;
    padding: 10px 0;
    font-size: 14px;
    color: #333333;
    font-family: "ProximaNovaBold";
}

.committee-list li:last-child {
    border-bottom: none;
}

.committee-list li h5 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.committee-list li p {
    margin-bottom: 10px;
    font-family: "ProximaNova";
}

.committee-list li span {
    display: block;
    margin-bottom: 10px;
}

.committee-list li a {
    display: block;
    text-transform: uppercase;
    color: #ed1c24;
}

.structure-popup-content a.red-button {
    width: 140px;
    color: #fff;
    margin: 20px auto 0;
    display: block;
}

.social-block ul li a:hover {
    opacity: 0.7;
}

@media (max-width: 960px) {
    .white-content > h2.with-search {
        height: 80px;
        position: relative;
    }

    .white-content h2.with-search form {
        position: absolute;
        display: block;
        margin-top: 35px;
        margin-left: 0;
        width: 100%;
    }

    .white-content h2.with-search form input.search {
        width: 200px;
    }
}

.search-res-wrap .with-search {
    margin: 20px 0;
}

.search-options {
    display: inline-block;
    float: right;
}

.white-content h2 .search-options select {
    float: none;
    margin-top: 0;
    display: inline-block;
    vertical-align: top;
    padding: 1px 30px 1px 20px;
    box-sizing: content-box;
    width: 150px;
}

.search-options select:first-child {
    margin-right: 10px;
}

.search-res-wrap .white-content h2 form {
    margin-top: 0px;
    width: 100%;
    max-width: 801px;
}


@media (max-width: 1024px) {
    .search-res-wrap .white-content > h2.with-search {
        height: auto;
    }

    .search-res-wrap .white-content h2 form {
        margin-top: 20px;
        margin-left: 0;
        position: relative;
        display: block;
        width: 100%;
        max-width: none;
    }

    .search-options {
        display: inline-block;
    }

    .search-res-wrap .white-content h2.with-search form input.search,
    .white-content h2 .search-options select {
        font-size: 14px;
    }
}

@media (max-width: 850px) {
    .search-res-wrap .white-content h2 form {
        width: 100% !important;
    }

    .search-res-wrap .white-content h2.with-search form input.search {
        width: calc(100% - 50px);
        width: -moz-calc(100% - 50px);
        width: -webkit-calc(100% - 50px);
        width: -o-calc(100% - 50px);
    }

    .search-options {
        display: block;
        float: none;
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .white-content h2 .search-options select {
        float: none;
        margin-top: 0;
        display: inline-block;
        vertical-align: top;
        padding: 1px 30px 1px 20px;
        box-sizing: content-box;
        width: calc(49.8% - 57px);
        width: -webkit-calc(49.8% - 57px);
    }
}

@media (max-width: 600px) {
    .white-content h2 .search-options select {
        width: calc(100% - 50px);
        width: -webkit-calc(100% - 50px);
        margin: 0;
    }

    .white-content h2 .search-options select + select {
        margin-top: 20px;
    }

    .search-res-wrap .white-content h2.with-search form input.search,
    .white-content h2 .search-options select {
        font-size: 16px;
    }
}

.search-results-list li {
    display: block;
    padding: 20px 0;
    border-top: #dadada 1px solid;
}


.search-results-list li a {
    text-decoration: none;
    position: relative;
}


.search-results-list li a:hover {
    opacity: 0.7;
}

.search-results-list li img {
    width: 288px;
    height: 150px;
}

.search-results-list li img,
.search-results-list li .sr-content {
    display: inline-block;
    vertical-align: top;
}

.search-results-list li .sr-content {
    margin-left: 15px;
    width: calc(100% - 328px);
    width: -webkit-calc(100% - 328px);
}


.sr-info, .sr-location {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "ProximaNovaBold";
}

.sr-info {
    color: #ed1c24;
}

.sr-location {
    margin-top: 10px;
    color: #8098e5;
    padding-left: 30px;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/sr-onmap.png) no-repeat left;
    height: 19px;
    line-height: 19px;
}

.sr-content h6 {
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "ProximaNovaBold";
    line-height: 24px;
    color: #000;
}

.sr-content p {
    font-size: 16px;
    color: #333;
    line-height: 24px;
    max-height: 72px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sr-photo-overlay,
.sr-video-overlay {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 104px;
    top: 35px;
}

.sr-photo-overlay {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/sr-photo-overlay.png) no-repeat center;
}

.sr-video-overlay {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/sr-video-overlay.png) no-repeat center;
}

.sr-news-overlay {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/sr-news-overlay.png) no-repeat center;
}

.sr-events-overlay {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/sr-events-overlay.png) no-repeat center;
}

.sr-docs-overlay {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/sr-docs-overlay.png) no-repeat center;
}

.sr-news-overlay,
.sr-events-overlay,
.sr-docs-overlay {
    display: none;
}

.sr-photo-overlay span {
    position: absolute;
    top: 57px;
    left: 33px;
    font-size: 14px;
    font-family: "ProximaNovaBold";
    color: #fff;
}

.social-block + .white-content .search-results-list li:first-child {
    padding-top: 0;
    border-top: none;
}

@media (max-width: 900px) {
    .search-results-list li img {
        display: none;
    }

    .sr-photo-overlay,
    .sr-video-overlay,
    .sr-news-overlay,
    .sr-docs-overlay,
    .sr-events-overlay {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        top: 0;
        left: 0;
        height: 80px;
        width: 80px;
    }

    .search-results-list li .sr-content {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - 105px);
        width: -webkit-calc(100% - 105px);
    }
}

.white-content {
    background: #fff;
    padding: 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    color: #333333;
    box-shadow: 0px 0px 34.2px 3.8px rgba(0, 0, 0, 0.3);
}

.white-content > h2,
.white-content > div > h2 {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    line-height: 24px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.white-content > h2::before,
.doccard h4::before,
.white-content > div > h2::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #ed1c24;
    margin-top: -4px;
}

.white-content > h3 {
    text-align: center;
    font-family: "ProximaNovaBold";
    font-size: 30px;
    line-height: 32px;
    color: #363636;
    margin: 40px 0;

}


#promo-popup {
    text-transform: none;
}

#promo-popup p {
    text-align: center;
    margin: 10px 0;
}

#promo-popup p a {
    color: #ED1C24;
    text-decoration: none;
}

#promo-popup img {
    display: block;
    margin: 30px auto;
    cursor: pointer;
}

#promo-popup input[type=text] {
    height: 46px;
    line-height: 46px;
    border: none;
    border-radius: 5px;
    background: #d9d9d9;
    padding-left: 15px;
    font-size: 14px;
    color: #000;
    font-family: "ProximaNovaBold";
    outline: none !important;
    margin-bottom: 20px;
}

#promo-popup h1 {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}

#promo-popup input[type=text] {
    width: 400px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    margin-bottom: 50px;
}

#promo-popup #bsubcronshopopen {
    width: 180px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: "ProximaNovaBold";
    display: block;
    margin: 0 auto;
}

#promo-popup #bsubcronshopopen:hover {
    opacity: 0.7;
}

#promo-popup span {
    display: block;
    font-family: "ProximaNovaBold";
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
}


.subscribe-pages label {
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 18px;
    text-transform: uppercase;
    color: #333333;
    display: block;
    margin-bottom: 25px;
    margin-top: 30px;
}

.starrequired {
    color: #ED1C24;
}

.subscribe-pages input[type=text] {
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    width: 400px;
    margin-bottom: 15px;
    font-size: 14px;
    background-color: #F8F8F8;
}

.subscribe-pages p {
    line-height: 22px;
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
}

.subscribe-pages a {
    color: #ED1C24;
}

.subscribe-pages input.red-button {
    margin-bottom: 30px;
    width: 200px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
}

.subscribe-pages input[type=checkbox] + label {
    font-family: "ProximaNova";
    line-height: normal;
    font-size: 16px;
    color: #333333;
    text-transform: none;
    font-weight: normal;
    margin: 0 0 15px 0;
}

.subscribe-pages .sub-format label {
    display: inline-block;
    font-family: "ProximaNova";
    line-height: normal;
    font-size: 16px;
    color: #333333;
    text-transform: none;
    font-weight: normal;
    margin: 0 0 15px 0;
}

.sub-table {
    width: 400px;
    margin-bottom: 35px;
}

.sub-table td {
    border-bottom: 1px solid #999999;
    height: 60px;
    vertical-align: middle;
}

.sub-table td + td {
    text-align: right;
}

#sub-msg .notetext {
    color: #000;
}


.banner-page h2 {
    margin-top: 15px;
}

.banner-page h5 {
    font-family: "ProximaNovaBold";
    font-size: 18px;
    margin: 40px 0 20px 0;
    text-transform: uppercase;

}

.banner-page p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.banner-page p a {
    text-decoration: none;
    color: #333;
}

.banner-page form {
    width: 100%;
}

.banner-page form input[type=text],
.banner-page form select {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
    height: 38px;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    background: #f8f8f8;
}

.banner-page form select {
    background: #f8f8f8 url("/bitrix/templates/ftsarr/stylesheets/../images/select-arrow.png") no-repeat right 10px center;
}

.banner-page fieldset {
    position: relative;
    max-width: 380px;
}

.ad-places-list {
    position: absolute;
    top: 58px;
    left: 400px;
    color: #ee3645;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "ProximaNovaBold";
    display: block;
    white-space: nowrap;
}

.ad-place-comment {
    color: #999999;
    margin-bottom: 15px;
    display: block;
}

@media (max-width: 700px) {
    .ad-places-list {
        position: relative;
        left: 0;
        top: 0;
    }
}

.banner-page .date-interval-hellip {
    width: 150px;
    background: #f8f8f8;
    font-family: "ProximaNovaBold";
    font-size: 14px;
}

.banner-page img.calendar-icon {
    background-color: #f8f8f8;
}

.banner-page q input[type=text] {
    width: calc(100% - 202px);
}

.sfi-wrapper {
    position: relative;
}

.sfi-wrapper .sfi-trigger {
    float: left;
    display: inline-block;
    border: 2px solid #ed1c24;
    color: #ee3645;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    padding: 9px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.sfi-wrapper .sfi-filename {
    position: absolute;
    left: 180px;
    top: 10px;
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#disclaimer {
    color: #999999;
    line-height: 1.5em;
    margin-bottom: 15px;
    margin-top: 20px;

}

.banner-page textarea,
textarea {
    resize: none;
    background: #f8f8f8;
    border: none;
    width: 380px;
    height: 110px;
    font-family: "ProximaNovaBold";
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
    box-sizing: border-box;
}

.order-banner-list span {
    color: #ee3645;
    font-family: "ProximaNovaBold";
    margin-right: 10px;
}

.banner-page label {
    font-size: 16px;
    font-family: "ProximaNovaBold";
    margin: 20px 0 10px 0;
    display: block;
    text-transform: uppercase;

}

.banner-page select {
    padding-left: 10px;
}

.banner-page input[id^='form_date'] {
    width: calc(100% - 38px) !important;
}

.banner-page .calendar-icon {
    margin-right: 0;
}

.starrequired {
    margin-left: 3px;
}

.banner-page .g-recaptcha div {
    margin: 0;
}

.banner-page .sfi-trigger {
    margin-bottom: 20px;
}

/* SMI */
#smi h2 + p span {
    color: #ED1C24;
}

#smi h2 + p a {
    color: #ED1C24;
    text-decoration: none;
}

#smi h2 + p a:hover {
    text-decoration: underline;
}

#smi-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

#smi-steps li {
    font-family: "ProximaNova";
    line-height: normal;
    font-size: 48px;
    text-align: center;
    text-transform: uppercase;
    color: #999999;
    width: 25%;
    border-bottom: 4px solid #F2F2F2;
}

#smi-steps li span {
    display: block;
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 15px;
}

#smi-steps li.done {
    border-color: #ED1C24;
    color: #ED1C24;
}

#smi-steps li.done span {
    color: #333;
}


.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 30px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
    background-color: #ED1C24;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

#smi h3 {
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 18px;
    text-transform: uppercase;
    color: #333333;
    margin: 65px 0 25px 0;
    position: relative;
}

#smi h3 .required {
    position: absolute;
    top: -5px;
    padding-left: 3px;
}

#smi input[type=text] {
    width: 100%;
    box-sizing: border-box;
    height: 46px;
    line-height: 46px;
    background: #F8F8F8;
}

.required {
    color: #ED1C24;
}

#smi-step1 {
    max-width: 484px;
    margin: 0 auto;
}

.radio-with-text {
    margin-top: -15px;
}

.radio-with-text .radio-container {
    display: inline-block;
    margin-right: 20px;
}

#smi .radio-with-text input[type=text] {
    width: 350px;
    margin-bottom: 40px;
}

#smi .red-button {
    width: 180px;
    box-sizing: border-box;
    border: 2px solid;
    border-color: transparent;
    height: 46px;
    line-height: 46px;
    padding: 0;
}

#smi .red-button.transperent {
    background-color: transparent;
    color: #ED1C24;
    border: 2px solid #ED1C24;
}

#smi-step2,
#smi-step3,
#smi-step4 {
    max-width: 400px;
    margin: 0 auto;
}

#smi-step4 .g-recaptcha {
    margin-bottom: 35px;
}

#photoimg-error {
    margin-top: 0;
}

.form-group {
    position: relative;
}

.form-group .palceholder {
    position: absolute;
    top: 14px;
    left: 20px;
    color: #B1B1B1;
    display: none;
    cursor: text;
}

.form-group label {
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    cursor: text;
}

.form-group .star {
    color: #ED1C24;
}

.buttons-block {
    display: flex;
    justify-content: space-between;
}

p.form-note {
    line-height: 20px;
    font-size: 14px;
    color: #333333;
    margin-bottom: 30px;
}

.radio-line h4 {
    display: inline-block;
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    position: relative;
    margin-right: 50px;
}

.radio-line h4 .required {
    position: absolute;
    padding-left: 3px;
    top: -8px;
    font-size: 24px;
}

.radio-line label {
    display: inline-block;
    margin-right: 30px;
}

.passport-series {
    display: inline-block;
    width: 148px;
    margin-right: 13px;
}

.passport-number {
    display: inline-block;
    width: 232px;
    vertical-align: top;
}

#smi-photo-container {
    position: relative;
    margin-bottom: 35px;
    margin-top: 25px;
}

#smi-photo-container h4 {
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    position: relative;
    margin-bottom: 20px;
}

#smi-photo-container h4 .required {
    position: absolute;
    padding-left: 3px;
    top: -8px;
    font-size: 24px;
}

#smi-photo {
    display: flex;
    align-items: center;
    width: 100px;
    min-height: 100px;
    background: #F8F8F8;
    border-radius: 5px;
    overflow: hidden;
}

#smi-photo img {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

#smi-photo-input {
    position: absolute;
    left: 120px;
    top: 50px;
}

#smi-photo-input .sfi-wrapper .sfi-trigger {
    color: #fff;
    background: #ED1C24;
}

#smi-photo-input .sfi-wrapper .sfi-trigger:hover {
    opacity: 0.7;
}

#smi-photo-input .sfi-wrapper .sfi-filename {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 10px;
    width: 280px;
}

#smi-done h3 {
    margin-top: 175px;
    text-align: center;
    margin-bottom: 50px;
}

#smi-done-links {
    width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 175px;
}

#smi-done-links a {
    font-family: "ProximaNovaBold";
    line-height: normal;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #ED1C24;
    text-decoration: none;
    cursor: pointer;
}

#smi-done-links a:hover {
    text-decoration: underline;
}

#smi-done-links a:first-child {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/arrow-red-left.png) no-repeat left center;
    padding-left: 36px;
}

#smi-done-links a:last-child {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/arrow-red-right.png) no-repeat right center;
    padding-right: 36px;
}

#smi input[type="text"].error,
#smi input[type="text"].error1 {
    border: 1px solid #ED1C24;
}

label.error {
    display: block;
    font-family: "ProximaNova";
    line-height: 22px;
    font-size: 16px;
    color: #ED1C24;
    text-transform: none;
    margin-bottom: 10px;
    margin-top: -15px;
    text-size-adjust: none;
}

#anothersmitype + label.error {
    margin-left: 112px;
    margin-top: -35px;
}

#test {
    display: none;
}


.social-block + div + div #rsslink {
    display: none;
}

.new-docslist-wrap .breadcrumbs {
    width: 100%;
}

@media (min-width: 1921px) {
    .main-wrap {
        background-size: cover !important;
    }
}


.paging .modern-page-navigation a.modern-page-pagen {
    width: auto;
    padding: 0 10px;
}


#gallery {
    margin-top: 20px;
}


#accred {
    max-width: 600px !important;
}

#accred h2 {
    line-height: 50px;
    margin-bottom: 75px;
    margin-top: 105px;
}

#accred form {
    margin-bottom: 57px;
}

#accred form > div {
    display: flex;
}

#accred p.noteform {
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    color: #8C8C8C;
    margin-bottom: 26px;
}

#accred p.note {
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    color: #8C8C8C;
}

#accred p.warning {
    font-family: 'Formular', sans-serif;
    font-size: 16px;
    color: #D9226A;
    margin-bottom: 50px;
}

#accred input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    border: 1px solid #BDBDBD;
    padding: 10px 30px;
    font-family: 'Formular', sans-serif;
    font-size: 16px;
}

#accred textarea {
    width: 100%;
    height: 100px;
    line-height: 20px;
    margin-bottom: 20px;
    border: 1px solid #BDBDBD;
    padding: 10px 30px;
    font-family: 'Formular', sans-serif;
    font-size: 16px;
}

#accred #days {
    margin-bottom: 55px;
    padding-top: 30px;
    display: block;
}

#accred #days h3 {
    margin-bottom: 20px;
}

#accred #days > div {
    display: flex;
    padding-top: 10px;
}

#accred #days > div span {
    width: 58px;
    height: 58px;
    position: relative;
    margin-right: 12px;
}

#accred #days > div span label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #BDBDBD;
    border-radius: 50%;
    padding-left: 0px;
}

#accred #days > div span input {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    display: block;
    opacity: 0;
    margin: 0;
}

#accred #days > div span input:checked + label {
    background: #F2C94C;
    border-color: #F2C94C;
}

#accred .summa h3 {
    margin-bottom: 53px;
}

#accred .btn.btn-gold {
    width: 180px;
}

#accred [type="checkbox"]:not(:checked) + label::before, #accred [type="checkbox"]:checked + label::before {
    display: none;
}

#accred [type="checkbox"]:not(:checked) + label::after, #accred [type="checkbox"]:checked + label::after {
    display: none;
}


.exercise p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    text-align: justify;
}


.exercise .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    font-family: "ProximaNova";
    text-transform: none;
    line-height: 25px;
}

/* Hide the browser's default checkbox */
.exercise .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.exercise .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px !important;
    width: 25px !important;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.exercise .container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.exercise .container input:checked ~ .checkmark {
    background-color: #ed1c24;
}

/* Create the checkmark/indicator (hidden when not checked) */
.exercise .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.exercise .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.exercise .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.exercise .vote-items-list {
    margin: 30px 0;
}

.exercise font.errortext,
.exercise .vote-note-note {
    font-size: 22px;
    margin: 30px 0;
    display: block;

}


.exercise img {
    display: block;
    width: 200px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
}

#accred .chk {
    margin-bottom: 55px;
    padding-top: 30px;
    display: block;
}

#accred .chk h3 {
    margin-bottom: 20px;
}

#accred .chk > div {
    display: flex;
    padding-top: 10px;
}

#accred .chk > div span {
    width: 58px;
    height: 58px;
    position: relative;
    margin-right: 12px;
}

#accred .chk > div span label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #BDBDBD;
    border-radius: 50%;
    padding-left: 0px;
}

#accred .chk > div span input {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    display: block;
    opacity: 0;
    margin: 0;
}

#accred .chk > div span input:checked + label {
    background: #F2C94C;
    border-color: #F2C94C;
}


.refund-text {
    margin: 20px 0;
}

.refund-text h3 {
    font-family: "ProximaNovaBold";
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

.refund-text p {
    font-size: 18px;
    margin: 10px 0;
}

.refund-text ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.refund-text ol li {
    font-size: 18px;
    margin-bottom: 10px 0;
}

.refund-text a {
    text-decoration: none;
}

.refund-text a:hover {
    text-decoration: underline;
}

.live-list {
    font-size: 20px;
}

.live-list h3 a {
    text-decoration: none;
    color: #000;
}

.live-list #fpvideo {
    margin: 40px auto;
}

.live-list #fpvideo, .live-dialog #fpvideo {
    width: 100% !important;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.live-list #fpvideo iframe, .live-dialog #fpvideo iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.ui-autocomplete {
    z-index: 9999 !important;
    transition: none;
}

.ui-menu .ui-menu-item {
    transition: none;
}


.live-news-list .live-item {
    width: 30%;
    cursor: pointer;
    margin-bottom: 30px;
}

.live-news-list .live-cover {
    background-size: cover !important;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.live-news-list .live-item:hover img {
    opacity: 0.7;
}

.live-dialog h3 {
    font-size: 20px;
    font-weight: bold;
    margin-top: -20px;
    margin-bottom: 20px;
}

.live-news-list .live-item p {
    font-size: 16px;
}

.live-news-list.related-carousel .slick-slide img {
    width: auto;
}

.live-news-list.related-carousel .slick-next {
    right: 20px;
}

.live-news-list.related-carousel .slick-prev {
    right: 75px;
}


@media (max-width: 1023px) {
    .live-news-list {
        flex-direction: column;
    }

    .live-news-list .live-item {
        width: 100%;
        height: 300px;
    }

    .live-news-list .live-cover {
        height: 300px;
    }
}


.bugitable {
    margin: 20px 30px 10px 30px;
    border-collapse: collapse;
    border-spacing: 0;
}

.bugitable thead tr th,
.bugitable tbody tr td {
    font-family: "ProximaNovaBold";
    font-size: 12px;
    text-transform: uppercase;
    color: #c9c9c9;
    border-top: #d0d0d0 1px solid;
    vertical-align: middle;
    padding: 12px 0;
    min-height: 26px;
    line-height: 15px;
    text-align: center;
}

.bugitable thead tr th {
    color: #c9c9c9;
}

.bugitable tbody tr td {
    color: #333;
}

.bugitable thead tr th:first-child,
.bugitable tbody tr td:first-child {
    text-align: left;
    width: 40%;
}


.committees-table {
    width: 100%;
}

.committees-table td {
    width: auto !important;
    text-align: left !important;
}

.committees-table td:last-child {
    text-align: right !important;
}

.committees-table a {
    color: #ee3645;
    text-decoration: none;
}

.committees-table a:hover {
    text-decoration: underline;
}

.ratings-div.grey-bkg-div {
    padding: 20px;
}

.committees-table p strong {
    font-size: 12px;
    font-family: "ProximaNova";
    color: #999999;
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}


.white-content .grey-red-list > li {
    margin-bottom: 2px;
    background-color: #f8f8f8;
    padding: 0;
    font-family: "ProximaNovaBold";
    font-size: 12px;
}

.white-content .grey-red-list > li > a {
    padding: 20px 40px 20px 20px;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #ed1c24;
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/next-arrow.png) no-repeat right 20px center;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
}

.white-content .grey-red-list > li > a.opened {
    background: url(/bitrix/templates/ftsarr/stylesheets/../images/down-arrow.png) no-repeat right 20px center;
}

.white-content .grey-red-list > li > a.nomembers {
    background: none !important;
    cursor: default;
}

.grey-bkg-div .bugitable {
    margin: 20px 0 10px 0;
    width: 100%;
}


#logoblock::after {
    display: block;
    width: 50px;
    height: 50px;
    content: "";
    position: absolute;
    background-size: cover;
    right: -60px;
    top: 0;
}


.ui-button {
    border: none !important;
    background: none !important;
}


.contact-items .contact-item .contact__bg {
    background: #ed1c24 url(/bitrix/templates/ftsarr/stylesheets/../images/icon-map.svg) no-repeat center;
    background-color: rgb(237, 28, 36);
    background-size: 50%;
}

.contact-items .contact-item.contact-item_mail .contact__bg {
    background-image: url(/bitrix/templates/ftsarr/stylesheets/../images/icon-mail.svg);
}

.contact-items .contact-item.contact-item_tg .contact__bg {
    background-image: url(/bitrix/templates/ftsarr/stylesheets/../images/icon-phone.svg);
}

.contact-items .contact-item.contact-item_phone .contact__bg {
    background-image: url(/bitrix/templates/ftsarr/stylesheets/../images/icon-phone.svg);
}


@media (max-width: 1000px) {
    #roc-link,
    #fdsarrshop {
        display: none !important;
    }
}


@media (min-width: 1001px) and (max-width: 1080px) {
    header #ins-link {
        right: min(68px, calc(10vw - 28px));
    }

    header #fdsarrshop {
        right: min(132px, calc(15vw - 6px));
    }

    body header #mainmenu > ul {
        padding-left: min(120px, calc(15vw - 17px));
        padding-right: min(301px, 32.8vw);
    }
}


#roc-link {
    display: none !important;
}


#footer-fullpage-wrap #partners li {
    margin: 0 20px;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-family: 'ProximaNova', sans-serif !important;
}

.ui-datepicker .ui-datepicker-title select {
    padding-left: 10px !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    cursor: pointer;
    top: 1px !important;
}


.title.title--casual {
    font-family: "ProximaNovaBold";
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 1em;
}

.title.title--casual.content_title {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.title.title--casual::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 1em;
    width: 0;
    height: 0;
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-left: .6em solid #ed1c24;
    margin-top: -.2em;
}

.title.content_subtitle {
    margin: 1.5rem 0 1.25rem 0;
    font-size: 1.5rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}


.row--nav_togglers {
    --toggler_bg-color: #0033A1;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    column-gap: 2px;
    height: 100%;
    white-space: nowrap;
    overflow: visible;
    border: none;
    padding: 0;
}

.content__txt, .content__lists {
    --toggler_bg-color: #EB212E;
}


.row--nav_togglers.nav-row_second {
    --toggler_bg-color: inherit;
    margin-bottom: 2.5rem;
}

.togglers_active .toggler__item:not(.active-toggler) {
    cursor: pointer;
    opacity: 1;
}

.toggler_btn.toggler__item {
    position: relative;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1rem;

}

.toggler_btn.toggler__item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: auto;
    right: auto;
    box-shadow: 2px 0 0 0 var(--toggler_bg-color), inset 0 -2px 0 0 var(--toggler_bg-color);
    transform: skew(-14deg, 0deg);
    border: none;
    background: #F8F8F8;
    transition: all 0.3s ease-in-out 0s;
    z-index: 0;
}


.toggler_btn.toggler__item.active-toggler .title {
    color: #fff;
}

.toggler_btn.toggler__item.active-toggler::before {
    box-shadow: -2px 0 0 0 var(--toggler_bg-color), inset 0 -400px 0 0 var(--toggler_bg-color);
}


.wrapper--title_uppercase .title {
    text-transform: uppercase;
}

.toggler__item.toggler_btn .title {
    line-height: 1.5;
    z-index: 1;
}

.togglers_none .toggler__item.toggler_btn .title {
    opacity: 0.75;
}

.togglers_none .toggler__item.toggler_btn.active-toggler .title {
    opacity: 1;
}

.txt_w7 {
    font-weight: 700 !important;
}

.txt_gray {
    color: #999999 !important;

}

#page-content .content__form {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    --form-field_width: min(100%, 480px);
}

.content__form .form__field {
    background: transparent !important;
}

#page-content .content__form .form__field {
    box-sizing: border-box;
    width: var(--form-field_width);
    height: auto !important;
    min-height: 50px;
    line-height: 36px;
    border-radius: 5px;
    border: solid 1px #393939 !important;
    padding: 6px 15px;
    font-size: 1rem;
    color: #393939;
    font-family: "ProximaNovaBold";
    outline-color: #333333;
    margin-bottom: 1.25rem;
}

.content__form .form-field__divider {
    line-height: 1;
    box-sizing: border-box;
    margin-bottom: 1.25rem;
    width: var(--form-field_width);
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--form-field_width);
    gap: 6px;
}


.alert-popup {
    display: none;
}

.alert-popup.active {
    flex: 0 1 100%;
    display: flex;
    align-items: center;
    position: relative;
    right: -14px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 2px 1px #999999;
}

.alert-popup.alert_after.active {
    width: calc(var(--form-field_width) - 17px);
    box-sizing: border-box;
    right: -8px;
    margin-bottom: 1rem;
}


.alert-popup.active::before {
    content: '!';
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff9900;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin-right: 2rem;
    padding: 2px;
}

.content__form .form__field::placeholder {
    color: #999999;
}

.content__form .form__btn {
    box-sizing: border-box;
    width: var(--form-field_width);
    height: auto !important;
    min-height: 50px;
    line-height: 36px;
    border-radius: 5px;
    padding: 6px 15px;
}

.content__form select.form__field {
    background: url(/bitrix/templates/ftsarr/images/down-red-fed.png) no-repeat right 6px center !important;
}

.content__form input.form__field:focus-visible {
    outline: -webkit-focus-ring-color auto 1px !important;
}

.content__form .form__disclamer {
    box-sizing: border-box;
    width: var(--form-field_width);
    margin: 0.75rem 0 2rem 0;
    padding: 0 15px;
}

.form__disclamer .link.link--casual {
    display: inline;
}

.content__form .form__disclamer input {
    margin-left: 0 !important;
    margin-right: .5rem !important;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    height: 1em;
    width: 1em;
    font-size: 1rem;
    border-radius: 5px;
    overflow: hidden;
    transform: translateY(.125em);
}

.content__txt, .content__lists {
    margin: 4rem 0 2rem;
}

.toggler__item .title {
    white-space: normal;
}

.wrapper_img.wrapper_img--top {
    display: flex;
    justify-content: center;
    margin-top: -80px;
    margin-bottom: 40px;
    padding-top: min(30vw, 580px);
    position: static;
}

.wrapper_img.wrapper_img--top img.topimg {
    position: absolute;
    top: 80px;
    width: 100%;
    max-width: 1920px;
    height: min(30vw, 580px);
}

input[id*="sf_RUB_ID_"] {
    visibility: collapse;
}

@media screen and (max-width: 1000px) {
    .wrapper_img.wrapper_img--top {
        margin-bottom: -20px;
    }
}

.toggle-block .toggle-item,
.toggle-block .toggle-list_empty {
    display: none;
}

.toggle-block .toggle-item.active-list {
    display: block;
}

.toggle-block .toggle-item.active-list:not(:has(>*)) ~ .toggle-list_empty {
    display: block;
}

.toggle-list_empty {
    text-align: center;
    font-size: 1em;
    padding: 1rem 0;
}

.wrapper--content .content__stages {
    margin-bottom: 2.5rem;
}

.wrapper--content.text-block > p {
    margin: 30px 40px;
    line-height: 1.2;
}

.wrapper--content.text-block > p:last-child {
    margin-bottom: 0;
}

.news-list > .title:has(+ul) {
    display: none;
}

.news-list > .title:has(+ul>li) {
    display: block;
}


.content__text .text {
    font-size: 1rem;
    line-height: 1.2;
    text-align: justify;
}

.content__text .text.txt_indent {
    text-indent: 2rem;
}

.content__text .text.text__block {
    margin: 1.25rem 0;
}

.content__text .title {
    font-weight: 700;
    margin: 1rem 0;
}

.txt_center {
    text-align: center !important;
}

ul.u-list.u-list--default {
    list-style: square;
    list-style-position: inside;
    margin-left: 2rem;
}

.o-list.o-list--default {
    list-style: decimal;
    list-style-position: inside;
}

.o-list .ol-item + .ol-item {
    margin-top: .5rem;
}

.o-list .ol-item::before {
    content: '';
    margin-left: .5rem;

}

.link.link--casual {
    font-family: "ProximaNovaBold";
    /*text-transform: uppercase;*/
    font-size: inherit;
    text-decoration: none;
    display: block;
    line-height: 1.25rem;
    color: #ea212d;
}

.link.link--casual:hover {
    text-decoration: underline;
}

.list.list--dl {
    display: grid;
    grid-auto-columns: minmax(min-content, 400px) minmax(max-content, 100px);
    gap: 0 2.5rem;
}

.content__text .text.list.list--dl {
    margin-left: 2rem;
}

.list--dl .list-item__dt {
    grid-column-end: 1;
    display: list-item;
    list-style: square;
    list-style-position: inside;
}

.list--dl .list-item__dd {
    grid-column-end: 2;
    font-weight: 700;
}

.title.title--casual.txt_center::before {
    display: none;
}


.input-wrapper {
    position: relative;
}

.input-wrapper input.wrapper_input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.input-wrapper input.wrapper_input[type="file"] {
    cursor: copy;
}

.input-wrapper input.wrapper_input[value*=""] {
    opacity: .5;
}

.wrapper--content b, .wrapper--content strong {
    font-weight: 700;
}


select.form__field option {
    color: #393939 !important;
}

select.form__field option:disabled {
    color: #999999 !important;
}

.content-wrap .wrapper_img.wrapper_img--top ~ .msg {
    background: #fff;
    padding: 2.5rem 1.25rem;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

@media screen and (max-width: 800px) {
    .list.list--dl {
        grid-auto-columns: auto;
    }

}

.toggler__item.toggler_btn.swiper-slide {
    height: auto;
}

#page-content .row--nav_togglers {
    align-items: stretch;
}

@media screen and (max-width: 720px) {

    #page-content .row--nav_togglers {
        /*justify-content: stretch;*/
        overflow: scroll;
        padding-left: 0;
        font-size: 1.5rem;
        width: 100%;
    }

    #page-content article.content__stages.togglers_none.row--nav_togglers {
        padding-left: 20px;
    }

    .toggler__item.toggler_btn.swiper-slide {
        height: auto;
    }


    #page-content .content__form {
        --form-field_width: 100%;
        font-size: 1.5rem;
    }

    html:has( #page-content) {
        font-size: 125%;
    }


    .list--dl .list-item__dd {
        white-space: nowrap;
        grid-column-end: 1;
        font-weight: 700;
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1em;
    }

    .content__stages .toggler_btn.toggler__item {
        box-sizing: border-box;
        padding: .75rem 0;
        flex: 0 0 calc(25% - 10px);
        max-width: calc(25% - 10px);
    }

    #page-content .content__togglers .toggler_btn.toggler__item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    #page-content .content__stages .toggler_btn.toggler__item {
        flex-basis: 80% !important;
        max-width: 80% !important;
    }

    .content__stages .toggler__item.toggler_btn h3.title {
        padding-left: 1rem;
    }

    .content__stages .toggler__item.toggler_btn time.title {
        padding-right: 1rem;
    }

    #page-content .content__form .form__field {
        min-height: 4rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
    }

    #page-content .content__form .form__disclamer {
        box-sizing: border-box;
        width: var(--form-field_width);
        margin: 0.75rem 0 2rem 0;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .content__form .form__disclamer input {
        font-size: 1.5rem;
    }

    #page-content .content__form .form__btn {
        box-sizing: border-box;
        width: var(--form-field_width);
        height: auto !important;
        min-height: 4rem;
        line-height: 36px;
        border-radius: 5px;
        padding: 6px 15px;
        font-size: 1.5rem;
    }

    #page-content .content__form .form-field__divider {
        font-size: 1.5rem;
    }

    #page-content .title.title--casual.content_title {
        font-size: min(40px, 2rem);

    }


    #page-content .title.title--casual {
        font-size: min(32px, 2rem);
    }

    #page-content .content__form .title.title--casual {
        font-size: min(40px, 2rem);
    }


    .content__text .text__block.title .link.link--casual {
        font-size: .8rem;
    }

    .content-wrap .wrapper_img.wrapper_img--top ~ .msg {
        padding-top: 5rem;
        padding-bottom: 5rem;
        font-size: 2.5rem;
    }

    .content__togglers .toggler_btn.toggler__item {
        box-sizing: border-box;
    }

    .content__togglers .toggler_btn.toggler__item.active-toggler {
        z-index: 99;
        order: -100;
    }

    .content__togglers:not(.togglers-active) .toggler_btn.toggler__item:not(.active-toggler) {
        position: absolute;
        top: 0;
        opacity: 0;
    }


    .content__togglers .toggler_btn.toggler__item::before {
        transform: none;
        box-shadow: inset 0 0 0 6px #0033A1;
        border-radius: 40px;
    }

    .content__togglers .toggler_btn.toggler__item.active-toggler::before {
        box-shadow: inset 0 0 0 6px var(--toggler_bg-color);
    }

    .content__togglers .toggler_btn.toggler__item.active-toggler .title {
        color: #333333;
    }

    #page-content .content__togglers.togglers_active.row--nav_togglers.nav-row_second {
        flex-direction: column;
        gap: 20px;

    }

}

/*!!!!!!!!!!!!!*/
.arr-body .box--submenu > #ins-link {
    position: relative;
    top: auto !important;
    right: auto !important;
}

.arr-body .box--submenu > .box__submenu {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 100%;
    background: #fff;
    z-index: -1;
    left: -9999px;
    box-shadow: 8px 13px 31px -4px rgba(0, 0, 0, 0.75);
    min-width: auto;
    transform: translateY(0);
}

.arr-body .box--submenu:hover > .box__submenu {
    opacity: 1;
    left: auto;
    right: 0;
    z-index: 555;
    transition: opacity 0.3s ease-in-out;
}

.arr-body .box--submenu:hover > .box__submenu > .submenu__item {
    display: block;
    text-align: left;
    padding: 10px;
    line-height: normal;
    height: auto;
}


.arr-body .box--submenu > .box__submenu > .submenu__item > .submenu__link {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #375caa;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition-duration: .3s;
}

.arr-body .box--submenu:hover > .box__submenu > .submenu__item:hover .submenu__link {
    color: #ed1c24;
}

@media screen and (max-width: 1600px) {
    .arr-body .box--submenu {
        right: 80px;
    }
}


.header__logo {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

header .nav-row--flex#mainmenu :is(ul, #tickets_new, #refund__link, #fdsarrshop, #pay-menu-button) {
    font-size: clamp(11px, calc(1.5vw - 12px), 14px) !important;
}

#header .header__logo #logoblock {
    position: relative;
    left: auto;
    top: auto;
    padding-top: 0;
    height: 50px;
    padding-right: 0;
}

a.logo_event {
    height: 50px;
    display: flex;
    align-items: center;
}

img.img--logo_event {
    height: clamp(54px, 10vw, 64px);
}


@media screen and (max-width: 1760px) and (min-width: 1351px) {
    header .nav-row--flex#mainmenu :is(#tickets_new, #refund__link, #fdsarrshop, #pay-menu-button) {
        font-size: clamp(11px, calc(1.5vw - 12px), 14px) !important;
    }
}

@media screen and (max-width: 1440px) {
    header .nav-row--flex#mainmenu .header__logo ~ a#fdsarrshop {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        padding-bottom: 0;
        line-height: 1;
    }

    header .nav-row--flex#mainmenu .header__logo ~ a#fdsarrshop > span {
        line-height: 1.25;
    }
}

@media screen and (max-width: 1350px) {

    header#header:has(>#mainmenu>.header__logo) {
        display: flex;
        align-items: center;
    }

    .header__logo {
        gap: 10px;
    }

    .arr-body header .header__logo #logoblock {
        height: auto;
        padding-right: 0;
    }
}

@media screen and (max-width: 400px) {
    .header__logo {
        --logo-size: clamp(40px, calc(15vw - 10px), 50px);
    }
}

@media screen and (max-width: 360px) {
    .header__logo {
        gap: 0;
    }
}


header .nav-row--flex#mainmenu {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    font-size: 10px;
    padding: 0 8em 0 5em;
    gap: 2em;
}

header .nav-row--flex#mainmenu > ul {
    padding: 0 !important;
}

header .nav-row--flex#mainmenu > .header__buttons-list {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 20px;
}


@media (min-width: 1721px) {
    header .nav-row--flex#mainmenu .shorh-title {
        display: none;
    }
}

@media (min-width: 1241px) {
    header .nav-row--flex#mainmenu > *,
    header .nav-row--flex#mainmenu > .header__buttons-list > * {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        font-size: 1rem;
    }

    header .nav-row--flex#mainmenu #logoblock {
        font-size: min(1vw, 1rem) !important;
    }

    header .nav-row--flex#mainmenu > ul {
        padding: 0;
        max-width: 100%;
        flex: 1 1 auto;
        justify-content: center;
        gap: max(1%, 10px);
    }

    header .nav-row--flex#mainmenu a#ins-link {
        order: 9;
        flex: 0 0 36px;
    }


    header .nav-row--flex#mainmenu div#refund__btn {
        order: 7;
    }

    header .nav-row--flex#mainmenu a#fdsarrshop {
        order: 8;
    }

    header .nav-row--flex#mainmenu div#menu-switch {
        order: 10;
    }

    header .nav-row--flex#mainmenu .button--blue .short-title {
        display: none;
    }

}

@media (min-width: 1350px) and (max-width: 1860px) {

    header .nav-row--flex#mainmenu {
        padding-right: 7em;
    }
}

@media (min-width: 1350px) and (max-width: 1776px) {
    header .nav-row--flex#mainmenu {
        padding-left: 2.5em;
        font-size: clamp(6px, calc(1vw - 7px), 10px);
        padding-right: max(60px, 7em);
    }

    header .nav-row--flex#mainmenu > * {
        font-size: 1em !important;
    }

    header .nav-row--flex#mainmenu .button--blue .short-title {
        display: inline;
    }

    header .nav-row--flex#mainmenu .button--blue .full-title {
        display: none;
    }

    header .nav-row--flex#mainmenu a#fdsarrshop,
    header .nav-row--flex#mainmenu .button__link {
        font-size: clamp(11px, calc(1.5vw - 12px), 14px) !important;
    }

    header .nav-row--flex#mainmenu > ul > li > a {
        font-size: clamp(11px, calc(1.5vw - 12px), 14px) !important;
    }

    header .nav-row--flex#mainmenu a#fdsarrshop {
        min-width: 10em;
        width: auto;
    }
}


@media screen and (max-width: 1240px) {
    header .nav-row--flex#mainmenu {
        display: flex;
        box-shadow: none;
        align-items: center;
    }

    header .nav-row--flex#mainmenu > ul > li {
        display: none;
    }


    header .nav-row--flex#mainmenu > .header__buttons-list *:not(#logoblock),
    header .nav-row--flex#mainmenu > ul ~ *:not(#logoblock) {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 0 !important;
    }

    header .nav-row--flex#mainmenu > .box--submenu {
        padding-right: 1rem;
    }

    header .nav-row--flex#mainmenu > #logoblock {
        font-size: 1rem !important;
    }

}

@media (min-width: 701px) and (max-width: 1300px) {
    #mainmenu.nav-row--flex * {
        font-size: max(calc(5vw - 51px), 11px) !important;
    }
}

.box--submenu, .arr-body .box--submenu {
    height: auto;
}


@media screen and (min-width: 961px) {
    .content__togglers.togglers_stage_0 .toggler_btn.toggler__item {
        cursor: default !important;
        --toggler_bg-color: #EB212E !important;
    }

    .content__togglers .toggler_btn.toggler__item .title {
        color: #fff;
    }

    .content__togglers .toggler_btn.toggler__item::before {
        box-shadow: -2px 0 0 0 #fff, inset 0 -400px 0 0 var(--toggler_bg-color);
    }


    .content__togglers ~ .toggle-block {
        display: flex;
        justify-content: stretch;
        align-items: stretch;
        gap: 0;

    }

    .togglers_stage_0.content__togglers ~ .toggle-block .toggle-item {
        display: block;
        flex: 0 0 33.3333333%;
        width: 33.3333333%;
        min-width: 33.3333333%;
        max-width: 33.3333333%;
        box-sizing: border-box;
        padding-right: 1.25rem;

    }

}

.togglers_stage_0.content__togglers ~ .toggle-block .toggle-item .list-item.ol-item {
    line-height: 1.5;
}

.togglers_stage_0.content__togglers ~ .toggle-block .toggle-item .list-item.ol-item + .list-item.ol-item {
    margin-top: 14px;
}


.form__field + .field__disclamer {
    box-sizing: border-box;
    display: block;
    width: var(--form-field_width);
    margin-top: -.75rem;
    margin-bottom: 1.25rem;
    padding-left: 16px;
    font-size: .875em;
    line-height: 1.25;
}

.form-field_wrapper {
    width: var(--form-field_width);
    position: relative;
}

.form-field_wrapper .field__close {
    position: absolute;
    width: max(20px, 1rem);
    height: max(20px, 1rem);
    top: 5px;
    right: 5px;
    z-index: 10000;
    display: none;
    cursor: pointer;
}

.form-field_wrapper.value-no-empty .field__close {
    display: block;
}

.form-field_wrapper .field__close::before, .form-field_wrapper .field__close::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    top: 0;
    left: calc(50% - 1px);
    background: #333333;
    transform-origin: center;
}

.form-field_wrapper .field__close::before {
    transform: rotate(45deg);
}

.form-field_wrapper .field__close::after {
    transform: rotate(-45deg);
}

#header {
    --header-button_color: #ed1c24;
}

#header #mainmenu .button--header {
    box-sizing: border-box;
    border: 2px solid var(--header-button_color) !important;
    width: auto;
    flex-basis: auto;
    height: 40px;
    line-height: 1;
    color: var(--header-button_color);
    text-align: center;
    border-radius: 30px;
    font-family: 'ProximaNovaBold', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    padding: 0 10px;
    background-color: transparent !important;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: .3s !important;
}

#header #mainmenu .button--header:hover {
    background-color: var(--header-button_color) !important;
    color: #fff;
}

.cntnr--btn {
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-basis: auto;
    width: auto;
    min-width: auto;
    max-width: 100%;
}

.cntnr--btn.btn-cntnr__pink {
    flex-basis: auto;
    min-width: auto;
    max-width: 100%;
    background-color: transparent !important;
    padding: 0;
}

#ins-link {
    border-color: var(--header-button_color) !important;
    color: var(--header-button_color) !important;
}

header #menu-switch-mob {
    background: none !important;
    --menu-switch-mob-height: 40px;
    --menu-switch-mob_el-h: calc(var(--menu-switch-mob-height) / 5);
    --menu-switch-mob_el-br: calc(var(--menu-switch-mob_el-h) / 2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: var(--menu-switch-mob_el-h);
}

header #menu-switch-mob::before, header #menu-switch-mob::after {
    content: '';
}

header #menu-switch-mob span,
header #menu-switch-mob::before,
header #menu-switch-mob::after {
    display: block;
    background: var(--header-button_color);
    height: var(--menu-switch-mob_el-h);
    flex: 0 0 var(--menu-switch-mob_el-h);
    border-radius: var(--menu-switch-mob_el-br);
}


.vote-form .content__togglers ~ .toggle-block .toggle-item {
    display: none;
}

.vote-form .content__togglers ~ .toggle-block .toggle-item.active-list {
    display: block;
    width: 100%;
    flex: 100%;
    min-width: 100%;
    max-width: 100%;
    position: relative;
}

.vote-form .toggle-item.active-list .vote-items-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 40px 20px;
    --vote-item_order: 0;

}

.vote-form .toggle-item.active-list .vote-items-list .vote-item-vote {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    overflow: hidden;
    order: var(--vote-item_order);
}

.vote-form .toggle-item.active-list .vote-items-list .vote-item-vote video {
    width: 100%;
}

.content__togglers.toogles--default {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem;
}


.content__togglers.toogles--default .toggler_btn.toggler__item {
    padding: 0;
}

.content__togglers.toogles--default .toggler_btn.toggler__item::before {
    display: none;
}

.content__togglers.toogles--default .toggler_btn.toggler__item .title {
    min-width: 66%;
    font-style: normal;
    font-weight: 900;
    font-size: calc(2rem - 2px);
    line-height: calc(2.4em - 2px);
    color: #363636;
    margin: 0;
    border-bottom: 4px solid transparent;
}

.content__togglers.toogles--default .toggler_btn.toggler__item .title:hover,
.content__togglers.toogles--default .toggler_btn.toggler__item.active-toggler .title {
    color: var(--toggler_bg-color);
    border-bottom: 4px solid var(--toggler_bg-color);
}


.vote-items-list .vote-item-vote .vote__box {
    position: relative;
    --vote_size: 25px;
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5em;
}

.vote-items-list .vote-item-vote:is(.place_runner-up, .place_winner) .vote__box {
    flex-direction: column;
    justify-content: space-between;
}


.vote__box .vb__label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75em;
    cursor: pointer;
    font-size: var(--vote_size);
}

.vote__box input.vb__checkbox {
    appearance: none;
    margin: 0;
    position: absolute;
}

.vote__box .checkmark.vb__checkmark {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: var(--vote_size);
    height: var(--vote_size);
    background-color: #eee;
}

.vote__box .vb__label:hover .vb__checkmark {
    background-color: #ddd;
}

.vote__box .vb__label:has(>input.vb__checkbox:checked) {
    cursor: default;
}

.vote__box .vb__label input.vb__checkbox:checked ~ .vb__checkmark {
    background-color: #ed1c24;
}

.vote__box input.vb__checkbox:checked ~ .vb__checkmark::after {
    content: '';
    display: block;
    position: absolute;
    font-size: var(--vote_size);
    left: .36em;
    top: .2em;
    width: .2em;
    height: .4em;
    border: solid white;
    border-width: 0 .12em .12em 0;
    transform: rotate(45deg);
}


.vote__box .vote__video {
    position: relative;
}

.vote__box .vt-vd__box {
    display: flex !important;
    padding: 0 !important;
    aspect-ratio: 3 / 2;
}

.vote__box .vt-vd__box::before,
.vote__box .vt-vd__box::after {
    display: none !important;
}

.vote__box .vt-vd__activator {
    appearance: none;
    margin: 0;
    position: absolute !important;
}

.vote__box .vt-vd__video {
    display: block;
    pointer-events: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vote__box a.vt-vd__video {
    pointer-events: auto;
}


.vote__box .vt-vd__video::-webkit-media-controls-panel {
    opacity: 0;

}

.vote__box .vt-vd__activator:not(:checked) ~ .vt-vd__box .vt-vd__video::-webkit-media-controls-panel {
    display: none;
}


.swiper--content__stages {
    z-index: 0;
}

@media screen and (min-width: 321px) {
    .vote__box .vt-vd__activator:checked ~ .vt-vd__box {
        position: fixed;
        z-index: 100;
        aspect-ratio: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #0008;
        cursor: zoom-out;
        bottom: 0;
        left: 0;
        width: max(720px, 100vw);
        height: calc(100dvh - var(--header-size));
        max-height: calc(100dvh - var(--header-size));
    }

    .vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__video {
        pointer-events: initial;
        cursor: default;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: calc(100dvh - var(--header-size) - 80px) !important;
        object-fit: contain;
    }

    .vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__wrapper {
        width: auto;
        max-height: 100%;
        max-width: 90%;
        position: relative;
        padding: 40px;
    }

    .vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__close {
        display: block;
        position: absolute;
        height: 30px;
        width: 30px;
        background-image: url('data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDIxMi45ODIgMjEyLjk4MiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEyLjk4MiAyMTIuOTgyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjE2cHgiIGhlaWdodD0iMTZweCI+CjxnIGlkPSJDbG9zZSI+Cgk8cGF0aCBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7IiBkPSJNMTMxLjgwNCwxMDYuNDkxbDc1LjkzNi03NS45MzZjNi45OS02Ljk5LDYuOTktMTguMzIzLDAtMjUuMzEyICAgYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBsLTc1LjkzNyw3NS45MzdMMzAuNTU0LDUuMjQyYy02Ljk5LTYuOTktMTguMzIyLTYuOTktMjUuMzEyLDBjLTYuOTg5LDYuOTktNi45ODksMTguMzIzLDAsMjUuMzEyICAgbDc1LjkzNyw3NS45MzZMNS4yNDIsMTgyLjQyN2MtNi45ODksNi45OS02Ljk4OSwxOC4zMjMsMCwyNS4zMTJjNi45OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwbDc1LjkzNy03NS45MzdsNzUuOTM3LDc1LjkzNyAgIGM2Ljk4OSw2Ljk5LDE4LjMyMiw2Ljk5LDI1LjMxMiwwYzYuOTktNi45OSw2Ljk5LTE4LjMyMiwwLTI1LjMxMkwxMzEuODA0LDEwNi40OTF6IiBmaWxsPSIjMDAwMDAwIi8+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==');
        background-size: cover;
        background-repeat: no-repeat;
        top: 3px;
        right: 3px;
        cursor: pointer;
        filter: invert(1);
    }

    .vote__box label.vt-vd__label {
        position: absolute;
        inset: 0;
    }

    .vote__box .vt-vd__activator:checked ~ .vt-vd__box > label.vt-vd__label {
        cursor: zoom-out;
    }

}

.vote__box label.vt-vd__label {
    cursor: pointer;
}

.vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__video::-webkit-media-controls-panel {
    opacity: 1;

}

.vote__box .vb__txt {
    font-size: .8em;
}

.vote__box .vb__txt .vb-t__default,
.vote__box input.vb__checkbox:checked ~ .vb__txt .vb-t__checked {
    display: inline;
}

.vote__box .vb__txt .vb-t__checked,
.vote__box input.vb__checkbox:checked ~ .vb__txt .vb-t__default {
    display: none;
}

.vote__box .vt-vd__poster-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-color: #0004;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(.8 * var(--vote_size));
    z-index: 1001;
}

.vote__box .vt-vd__poster-wrapper::after {
    content: '';
    position: absolute;
    width: 2.5em;
    height: 2.5em;
    border-radius: 1.25em;
    border: .1em solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vote__box .vt-vd__poster {
    position: relative;
    box-sizing: border-box;
    border-left: .1em solid #fff;
    height: 1em;
    width: calc(0.866025em + 0px);
    left: .1em;
    overflow: hidden;
    border-radius: .05em;

}

.vote__box .vt-vd__poster::before,
.vote__box .vt-vd__poster::after {
    content: '';
    width: 1em;
    height: .1em;
    background: #fff;
    transform-origin: center left;
    position: absolute;
    left: -.1em;
}

.vote__box .vt-vd__poster::before {
    top: -.05em;
    transform: rotate(30deg);
    border-radius: .25em .25em 0 0;
}

.vote__box .vt-vd__poster::after {
    bottom: -.05em;
    transform: rotate(-30deg);
    border-radius: 0 0 .25em .25em;
}

.nav-row_second .toggler__item.toggler_btn.active-toggler {
    --toggler_bg-color: #0033A1;
}


.vt-vd__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}


.vt-vd__close {
    display: none;
}

.wrapper--content.content--vote {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}


.wrapper--content.content--vote .title.title--casual {
    margin-bottom: 1.25rem;
}

.wrapper--content.content--vote.vote_result .title.title--casual {
    margin-bottom: 2.5rem;
    margin-top: 5rem;
}

.wrapper--content.content--vote .content__text {
    order: 1;
}

.wrapper--content.content--vote .content__text.title.accordion_btn {
    margin-top: 2.5rem;
}

.wrapper_lists.toggle-block.vote-items-list {
}

.wrapper--content.content--vote .content__txt,
.wrapper--content.content--vote .content__lists {
    margin: 2.5rem 0 5rem;
}

.wrapper--content.content--vote.vote_result > .content__lists {
    margin-bottom: .5rem;
}

.wrapper--content.content--vote.vote_result > .content__lists .vote__nav-links {
    margin-bottom: 3.25rem;
}

.vote-shield.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vote-shield {
    display: none;
    position: fixed;
    inset: 0;
    background: #0008;
}

.content__txt .vote-wrapper__list,
.content__lists .vote-wrapper__list {
    margin-bottom: 2.5rem;
    z-index: 0;
    position: relative;
}

.content__lists .vote-form .vote-wrapper__list {
    margin-bottom: 3.25rem;
}

.content__txt :is(#okpopup, #voteokpopup, #votenotokpopup),
.content__lists :is(#okpopup, #voteokpopup, #votenotokpopup) {
    position: fixed;
    top: 30dvh;

}

.accordion_btn:has(input.ac-btn__checkbox) {
    position: relative;
    cursor: pointer;
}

.accordion_btn:has(input.ac-btn__checkbox:not(:checked)) ~ .accordion_box {
    display: none;
}

.wrapper--content.content--vote .title.title--casual.accordion_btn {
    margin-bottom: 2.5rem;
}

.wrapper--content.content--vote.vote_result .title.title--casual.accordion_btn {
    margin-top: 0;
    margin-bottom: 0;
}

.accordion_btn .ac-btn__wrapper:has(>input.ac-btn__checkbox) {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
}

.title.accordion_btn .ac-btn__wrapper:has(>input.ac-btn__checkbox) {
    padding-left: 1.6em;

}

.accordion_btn .ac-btn__wrapper:has(>input.ac-btn__checkbox)::after {
    content: '';
    position: relative;
    right: .5em;
    width: .5em;
    border-style: solid;
    height: .5em;
    border-width: 0 3px 3px 0;
    transform-origin: center;
    transform: rotate(45deg);
    top: .3em;
}

.accordion_btn .ac-btn__wrapper:has(>input.ac-btn__checkbox:checked)::after {
    transform: rotate(225deg);
    top: .6em;
}

.accordion_btn .ac-btn__wrapper input.ac-btn__checkbox {
    appearance: none;
    margin: 0;
}


.title.title--info {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    font-size: clamp(10px, 1vw, .75rem);
    margin-bottom: 2.5rem;
}

.title--info .title__part {
    font-size: 2em;
    line-height: 1.5;
    text-align: center;
}

.title--info .title__part.part__top {
    margin-bottom: .5rem;
    font-weight: 700;
}

.title--info .title__part + .title--info .title__part {
    margin-top: 2.5rem;
}

.title__part.box.title--timer {
    margin-top: 1.25em;
    margin-bottom: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vote-form .toggle-item.active-list .vote-items-list .vote-item-vote {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
}

.vote-item-vote .vote__box {
    width: 100%;
    height: auto;
    justify-content: flex-end;
}


@media screen and (max-width: 1000px) {
    .vote-form .toggle-item.active-list .vote-items-list .vote-item-vote {
        flex-basis: calc(50% - 10px);
    }
}

@media screen and (max-width: 720px) {


    .vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__video {
        pointer-events: auto;
    }

    .vote__box .vt-vd__activator:checked ~ .vt-vd__poster-wrapper {
        display: none;
    }

    .vote__box .vt-vd__label {
        position: absolute;
        inset: 0;
    }

    .vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__label {
        inset: auto;
    }

    .title.title--info {
        font-size: clamp(8px, 3vw, 16px);
    }

    .title--info .title__part {
        width: 100%;
    }

}

.vote__box .vt-vd__activator:checked ~ .vt-vd__box .vt-vd__poster-wrapper {
    display: none;
}

.content.content--result {
    background: #fff;
    border-radius: 0;
    padding: min(10vh, 5rem) min(5vw, 2.5rem);
}

.content-wrap:has(>.content.content--result.result--str) {

}

.content.content--result.result--str {
    border-radius: 10px;
    font-size: 2.5rem;
    text-align: center;
    margin: max(5rem, 10vh) 40px;
}


@media screen and (min-width: 1001px) {
    .vote-form .toggle-item.active-list .vote-items-list {
        column-gap: 25px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .vote-form .toggle-item.active-list .vote-items-list .vote-item-vote {
        flex-basis: calc((100% - 50px) / 3);
    }
}

@media screen and (max-width: 720px) {

}

.vote-wrapper__list:has(.vb__checkbox:checked) ~ .vote-form-box-buttons.vote-vote-footer.vote__submit .vote-form-box-button {
    border-radius: 5px;
    overflow: hidden;
}

.vote__box .vb__link-box a {
    position: absolute;
    inset: 0;
    z-index: 1000;
}


.flex-block {
    display: flex;
    position: relative;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    --flex-gap: 1.25rem;
    gap: var(--flex-gap);
    box-sizing: border-box;

}

.flex-block .flex__item {
    flex: 0 0 auto;
    box-sizing: border-box;
    position: relative;
}

.flex-block.flex--3 .flex__item {
    flex-basis: calc((100% - 2 * var(--flex-gap)) / 3);
    width: calc((100% - 2 * var(--flex-gap)) / 3);
    max-width: calc((100% - 2 * var(--flex-gap)) / 3);
}

@media screen and (min-width: 1001px) {
    .flex-block.flex--3 {
        padding-left: 5px;
        padding-right: 5px;
        --flex-gap: 25px;
    }
}

@media screen and (max-width: 640px) {
    .flex-block.flex--3 .flex__item {
        flex-basis: 100%;
    }
}

.grid-block {
    display: grid;
    position: relative;
    --grid-gap: 1.25rem;
    gap: var(--grid-gap);
    box-sizing: border-box;

}

.grid-block .grid__item {
    box-sizing: border-box;
    position: relative;
}

.grid-block.grid--3 .grid__item {

}

@media screen and (min-width: 1001px) {
    .grid-block.grid--3 {
        padding-left: 5px;
        padding-right: 5px;
        --grid-gap: 25px;
    }

    .vote__nav-links .grid-block.grid--3 {
        grid-template-areas: "d-s p-s s-s"
                             "d-t p-t s-t";
        grid-auto-columns: calc((100% - 2 * var(--grid-gap)) / 3);
    }
}


.vote__nav-links * {
    box-sizing: border-box;
    position: relative;
}


#dance-treners {
    grid-area: d-t;
    background: #fff;
    border: solid 1px;
}

#dance-sportsmens {
    grid-area: d-s;
    background: #fff;
    border: solid 1px;
}

#poem-treners {
    grid-area: p-t;
    background: var(--color-blue);
    color: #fff;
}

#poem-sportsmens {
    grid-area: p-s;
    background: var(--color-blue);
    color: #fff;
}

#song-treners {
    grid-area: s-t;
    background: var(--color-red);
    color: #fff;
}

#song-sportsmens {
    grid-area: s-s;
    background: var(--color-red);
    color: #fff;
}

.vote__nav-links .nav-link .link.link--wrapper {
    display: flex;
    flex-direction: column;
    --gap: 25px;
    justify-content: space-between;
    color: inherit;
    width: 100%;
    max-width: 100%;
    text-decoration: none;
    height: auto;
    padding: var(--gap) 1.25rem;
    text-align: center;
    gap: var(--gap);
    font-size: 1.5rem;
    line-height: 1.25;
}

.vote__nav-links .title {
    font-size: 22px;
}

.vote__nav-links .subtitle {
    text-transform: uppercase;
    font-size: 22px;
}


@media screen and (max-width: 640px) {
    .grid-block.grid-3 .grid__item {
        flex-basis: 100%;
    }
}


.vote__nav-links .nav-link {
    display: flex;
    aspect-ratio: 3 / 2;
}

.wrapper--content.content--vote.vote_main .title.title--casual {
    margin-bottom: 2.5rem;
}


.vote__box .vb__label .video-id {
    margin-right: .5em;
}

.vote__box img.vb__link-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vote-form-box-buttons.vote-vote-footer {
    width: 100%;
    display: flex;
    justify-content: center;
}


.vote-form-box-buttons.vote-vote-footer.vote__submit {
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    margin: 0;
    background: transparent;
    opacity: 1;
    transition-duration: .5s;
    width: 100%;


}

.vote-form-box-buttons.vote-vote-footer.vote__submit .submit__wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    max-width: 1920px;
    background: #ffffff;
    padding: 1.25rem;
    box-shadow: 0px 1px 3px;
    box-sizing: border-box;

}


.vote-form-box-buttons.vote-vote-footer.vote__submit:not(.active) {
    transform: translateY(100%);
}

.vote-form-box-buttons.vote-vote-footer.vote__submit:hover {
    opacity: 1;
}


@media screen and (max-width: 1000px) {
    .grid-block.grid--3 {
        grid-auto-columns: calc((100% - var(--grid-gap)) / 2);
    }

    .vote__nav-links .grid-block.grid--3 {
        grid-template-areas: "d-s d-t"
                             "p-s p-t"
                             "s-s s-t";
        --grid-gap: 20px;
    }

    .vote__nav-links .nav-link .link.link--wrapper {
        --gap: 1em;
        font-size: 4vw;
    }

    .vote__nav-links .title, .vote__nav-links .subtitle {
        font-size: .875em;
    }
}

@media screen and (max-width: 720px) {
    :root {
        --font-size: max(12px, 4vw);
    }

    .vote__box .vb__label {
        font-size: 4vw;
        --vote_size: 6vw;
    }

    .vote__box .vb__label .video-id {
        display: none;
    }

    .content--vote .vb__txt {
        font-size: var(--vote_size);
    }

    .vote__nav-links .title, .vote__nav-links .subtitle {
        font-size: .75em;
    }

    .vote-form-box-buttons.vote-vote-footer .red-button {
        font-size: var(--font-size);
    }


}


.wrappper--link_back .link_back {
    display: flex;
    color: #fff;
    text-decoration: none;
    background: var(--color-red);
    padding: .5em 1em;
    font-size: var(--font-size);
    border-radius: .25em;
    text-transform: uppercase;
    gap: .5em;
    align-items: center;
}

.wrappper--link_back {
    display: flex;
    /*margin: 1.25rem 0;*/
}

.wrappper--link_back .link_back::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-right: .6em solid #ffffff;
    margin-top: 0;
}

.vote-form .toggle-item.active-list .vote-items-list > .vb__checkbox {
    display: none;
}

.content--vote .vb__txt,
.content--vote .red-button {
    font-size: var(--font-size);
}

.vote-form .toggle-item .vote-items-list .vote-item-vote {
    z-index: 0;
}

.content--vote .vb__txt,
.content--vote .desibled .red-button {
    font-size: var(--font-size);
}

.content--vote .desibled .red-button {
    background: #cacaca;
    pointer-events: none;
}


.vote-form .toggle-item.active-list .vote-items-list .vote-item-vote:has(.vt-vd__activator:checked) {
    z-index: 101;
}

@media screen and (max-width: 960px) {
    .content__togglers .toggler_btn.toggler__item.active-toggler .title::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        margin-right: 1em;
        width: 0;
        height: 0;
        border-left: .4em solid transparent;
        border-right: .4em solid transparent;
        border-top: .6em solid var(--color-blue);
        margin-top: -.2em;
        position: absolute;
        right: -15px;
        top: 50%;
    }

}

@media screen and (max-width: 720px) {

    .vote-form .toggle-item.active-list .vote-items-list .vote-item-vote video {
        aspect-ratio: 3 / 2 !important;
        height: calc((100vw - 60px) / 3) !important;
    }


}

.vote-wrapper__list .vote-items-list::before {
    content: '';
    position: relative;
    width: 100%;
    border-top: solid 1px;
}

.vote-wrapper__list .vote-items-list .vote-item-vote.place_winner,
.vote-wrapper__list .vote-items-list .vote-item-vote.place_runner-up {
    flex-basis: var(--place-size);
    width: var(--place-size);
    min-width: var(--place-size);
    max-width: var(--place-size);
    justify-content: space-between;
    --place-size: unset;

}

.vote-wrapper__list .vote-items-list .vote-item-vote.place_winner {
    --place-size: 100%;
    order: -2 !important;
}

.vote-wrapper__list .vote-items-list .vote-item-vote.place_runner-up {
    --place-size: calc((100% - 25px) / 2);
    order: -1 !important;
}

.place_winner .title.title--place,
.place_runner-up .title.title--place {
    text-align: center;
    font-size: 1.5em;
}

.title.title--place {
    font-size: 1.25em;
    line-height: 1.25;
    margin-bottom: 0;

}

.txt_block {
    display: block;
    margin-bottom: .5em;
    text-transform: uppercase;
}

.txt_monolit {
    display: inline-block !important;
}

.txt_uc {
    text-transform: uppercase;
}


@media screen  and (max-width: 720px) {

    .place_winner .title.title--place {
        font-size: 2.25em;
    }

    .place_runner-up .title.title--place {
        font-size: 2em;
    }

    .title.title--place {
        font-size: 1.75em;
    }

    #page-content .title.title--casual.accordion_btn {
        font-size: min(36px, 2rem);
    }

}

.vote_result {
    font-size: 1rem;
}

.vote_result .box_text {
    font-size: 1.5em;
    margin: 2.5rem 0;
}

.vote_result .box_text.subtitle {
    font-size: 1.25rem;
    text-align: center;
    text-transform: uppercase;
}

.vote-item-vote.place_winner + .vote-item-vote {
    margin-top: 2.5rem;
}

.card.card_member {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

/* Страница Новости */
.arr-body .news-list .top-news > p, 
.arr-body .news-list ul a p {
    text-transform: uppercase;
}

.news-list h2.big-h2,
.content-block h2.big-h2 {
	margin-top: 20px;
	font-size: 40px;    
	line-height: 40px;
}

.news-list h2.big-h2::before,
.content-block h2.big-h2::before {
    display: none;
}

.main-wrap .news-list {
/*	box-shadow: 0px 0px 34.2px 3.8px rgba(0, 0, 0, 0.3); */
margin-top: 20px;
}

.main-wrap .news-list:has( > ul) {
	display: none;
}
.main-wrap .news-list:has( > ul > li) {
	display: block;
}

.main-wrap  .news-list .last-hdr {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    line-height: 24px;
    color: #333333;
    margin: 40px 0 10px;
}

.main-wrap  .news-list .last-hdr {
    font-family: "ProximaNovaBold";
    font-size: 24px;
    line-height: 24px;
    color: #333333;
    margin: 40px 0 10px;
}

.news-list ul a p.comp-in-name {
line-height: 1.2em;
    top: 80px;
	bottom: 0;
    left: 10px;
	background: url(/bitrix/templates/ftsarr/stylesheets/../images/car-events-arrow.png) no-repeat bottom right;
	padding-bottom: 56px;
	z-index: 2;
    text-transform: none;
    font-size: 20px;
   	font-family: "ProximaNova";
display: flex;
align-items: center;
}

.news-list ul a:hover p.comp-in-name {
text-decoration: underline;
}

@media (max-width: 1100px) {
	.comp-in-date span {
		font-size: 36px;	
	}
	.news-list ul a p.comp-in-name {
		font-size: 24px;
	}
}

@media (max-width: 900px) {
	.comp-in-date span {
		font-size: 24px;	
	}
	.news-list ul a p.comp-in-name {
		top: 60px;
		font-size: 18px;
	}
}

@media (max-width: 703px) {
	.comp-in-date span {
		font-size: 48px;	
	}
	.news-list ul a p.comp-in-name {
		top: 200px;
		font-size: 20px;
	}
}

.news-list ul li .li-wrap {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.news-list ul .li-wrap img {
    width: 100%;
}

.arr-body .news-list ul .li-wrap p {
    text-transform: uppercase;
}

.news-list ul .li-wrap p {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    padding: 10px;
    font-family: "ProximaNovaBold";
    font-size: 12px;
    color: #fff;
}

.news-list ul li .li-wrap h3 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
    color: #fff;
    box-sizing: border-box;
    padding: 40px 20px 20px 20px;
    font-family: "ProximaNovaBold";
    font-size: 16px;
	line-height: 20px;
}

#gallery-carousel .news-list .slick-slide .top-news > div h3 {
    margin-bottom: 0;
}

.doccard.card-wrap h4,
.white-content.news-list h2 {
    margin-top: 30px;
}

.main-wrap .news-list, .news-list * {
	position: relative;
}
ul.photovideo-list > li, .news-list > ul > li  {
	position: relative;
	overflow: hidden;
	min-height: auto;
}
.news-list > ul > li {
	flex: 0 1 auto;
}

@media (max-width: 720px) {
	ul.photovideo-list > li {
		position: relative;
		overflow: hidden;
		min-height: auto;
	}
	.news-list ul.photovideo-list li .li-wrap {
		padding-top: 51.57895%;
		height: 0;
	}
	ul.photovideo-list li a {
		position: absolute;
		top: 0;
		left: 0;
	}
	ul.photovideo-list li a, ul.photovideo-list a img {
		max-height: 100%;
	}
	.news-list > ul > li:has( > a) {
		min-height: auto;
		max-height: 100%;
		height: auto;
	}
	.news-list > ul > li  > a  {
		position: relative;
		overflow: hidden;
		height: 0;
		min-height: auto;
		max-height: 100%;
		padding-top: 51.57895%;
	}
	.news-list > ul > li > a > img {
		position: absolute;
		top: 0;
		left: 0;
		max-height: 100%;
	}
	.news-list > ul > li > a > img {
			max-height: 100%;
	}
	.news-list ul a img {
		max-height: 100%;
	}
}

.main-wrap .content-wrap .news-list:has( > ul), .main-wrap .content-wrap .news-list:has( > ul.photovideo-list), .main-wrap .content-wrap .news-list:has( > ul.--photovideo-list){
	margin-top: 0;
}


.news-list ul li a {
	max-height: 100%;
}

.content-wrap.education h2 ~ .tab-content .news-list > h2 {
	display: none;
}

.user-content img {
  max-width: 100%;
  height: auto;
}

/* End */


/* Start:/bitrix/components/ideal/form.result.new/templates/feedback/style.css?1513749771666*/
table.form-table
{
	width:100%;
	background-color:white;
	border-collapse:collapse;
	font-size:100%;
	font-weight:normal;
	line-height:160%;
}

table.form-table th, table.form-table td
{
	border:1px solid #ADC3D5;
	padding: 5px 5px;
	vertical-align:top;
}

table.form-table th
{
	background-image:url(/bitrix/components/ideal/form.result.new/templates/feedback/images/table_head.gif);
	background-repeat:repeat-x;
	text-align: left;
	color:#25639A;
}


table.form-table td
{
	padding: 15px 5px;
}

.form-required 
{
	color: red;
}

.error-fld {
	display: block;
	float: left;
	height: 13px;
	width: 15px;
	background-repeat: no-repeat;
	background-image: url(/bitrix/components/ideal/form.result.new/templates/feedback/images/icon_warn.gif);
}
/* End */


/* Start:/bitrix/templates/ftsarr/template_styles.css?174422758916270*/
div.modern-page-navigation {
    clear: both;
}


.newsheader .subscribe {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
}

.subscribe h4 {
    font-family: "AzoftSansBold";
    font-size: 30px;
    color: #010864;
    margin-bottom: 25px;
}

.subscribe h5 {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #010864;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.subscribe input[type=text],
.subscribe input[type=password],
#subscribe-popup input[type=text] {
    background: #e5e5e5;
    border: 1px solid #d7d6d6;
    padding: 15px;
    margin-bottom: 20px;
    margin-right: 10px;
    width: 370px;
}

.subscribe ::-webkit-input-placeholder {
    color: #000066;
}

.subscribe :-moz-placeholder {
    color: #000066;
}

.subscribe ::-moz-placeholder {
    color: #000066;
}

.subscribe :-ms-input-placeholder {
    color: #000066;
}

#subscribe-popup ::-webkit-input-placeholder {
    color: #000066;
}

#subscribe-popup :-moz-placeholder {
    color: #000066;
}

#subscribe-popup ::-moz-placeholder {
    color: #000066;
}

#subscribe-popup :-ms-input-placeholder {
    color: #000066;
}


.subscribe input[type=submit],
.subscribe input[type=reset],
#subscribe-popup input[type=submit] {
    width: auto;
    color: #fff;
    background: #fb4b4e;
    text-transform: uppercase;
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 15px 50px;
    margin-right: 10px;
    cursor: pointer;
}

.subscribe input[type=submit]:hover,
.subscribe input[type=reset]:hover,
#subscribe-popup input[type=submit]:hover {
    opacity: 0.7;
}

.subscribe p {
    font-size: 16px;
    color: #000066;
    margin-bottom: 20px;
}

.subscribe td {
    font-size: 16px;
    color: #000066;
}

.subscribe td + td {
    padding-left: 30px;
}

#subscribe-popup {
    text-align: center;
    width: 500px;
    margin-left: -350px;
    top: 40%;
}

#subscribe-popup p {
    text-align: center;
    color: #2f2e70;
    font-size: 16px;
    margin-bottom: 20px;
}

#subscribe-popup input[type=checkbox] {
    display: none;
}

#subscribe-popup form {
    display: block !important;
}

#subscribe-popup .sub-buttons {
    width: 400px;
    margin: 20px auto;
}

#subscribe-popup .sub-buttons a {
    display: block;
    width: 191px;
    height: 44px;
    line-height: 44px;
    border: 2px solid #352c6c;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 10px;
    cursor: pointer;
    float: left;
}

#subscribe-popup .sub-buttons input {
    width: 195px;
    margin-right: 0;
    float: left;
}

#subscribe-popup input[type=text] {
    margin: 0;
    width: 370px;
}

.new-docslist-wrap .breadcrumbs {
    width: 100%;
}


.fp-tablecell {
    vertical-align: top;
}


span.date-interval-hellip + input {
    font-size: 11px;
}


#vk_community_messages {
    z-index: 100 !important;
}


#legend {
    position: absolute;
    bottom: 40px;
    background: #fff;
    width: 500px;
    left: 50%;
    margin-left: -250px;
    z-index: 555;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}


#legend p {
    display: inline-block;
}

#legend span {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    border-radius: 10px;
    margin-right: 5px;

}


@media (min-width: 1000px) {
    #mobile-menu {
        display: none !important;
    }

    #shop-link {
        display: block;
    }

    #ins-link {
        display: block;
    }

    #accred-link {
        display: block;
    }

    header #mainmenu {
        display: block;
    }

    #menu-switch {
        display: block;
    }

    #header #menu-switch-mob {
        display: none !important;
    }

    body header #logoblock {
        padding-right: 70px;
        text-align: center;
        z-index: 1;
        background: url(/bitrix/templates/ftsarr/images/logo-header.svg) no-repeat;
        background-size: contain;
        height: 50px;
        width: 244px;
        padding-top: 0;
        padding-left: 0;
    }


}

@media (max-width: 1200px) {
    body header #logoblock {
        width: 50px;
        padding: 0;
        padding-right: 70px;
        text-align: center;
        z-index: 1;
        background: url(/bitrix/templates/ftsarr/images/logo-mob.svg) no-repeat;
        background-size: contain;
        height: 50px;
    }

    body header #mainmenu > ul {
        padding-left: 145px;
    }
}


@media (max-width: 1000px) {
    body header {
        position: fixed;
        z-index: 100;
        width: 100%;
        background: #fff;
        top: 0;
    }

    #shop-link {
        display: none;
    }

    #ins-link {
        display: none;
    }

    #accred-link {
        display: none;
    }

    #main-wrap {
        margin-top: 0px;
    }

    header #mainmenu {
        display: none;
    }

    #menu-switch {
        display: none;
    }

    header #menu-switch-mob {
        display: flex;
        width: 60px;
        height: 40px;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
    }

    #left-menu {
        display: none;
    }

    header #menu-switch-mob {
        z-index: 2;
    }

}


.subscribe-pages .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    font-family: "ProximaNova";
    text-transform: none;
    line-height: 25px;
}

/* Hide the browser's default checkbox */
.subscribe-pages .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.subscribe-pages .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px !important;
    width: 25px !important;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.subscribe-pages .container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.subscribe-pages .container input:checked ~ .checkmark {
    background-color: #ed1c24;
}

/* Create the checkmark/indicator (hidden when not checked) */
.subscribe-pages .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.subscribe-pages .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.subscribe-pages .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


#ins-link {
    background: url(/bitrix/templates/ftsarr/images/insurance.svg) no-repeat center;
    width: 36px !important;
    height: 36px !important;
    text-indent: -9999px;
    top: 18px !important;
}


.white-content .subsection-switch.tshirt-switch {
    float: none;
    display: flex;
    width: 100%;
}

.white-content .subsection-switch.tshirt-switch a {
    padding: 0 10px;
    text-align: center;
    flex-grow: 1;

}

.white-content .subsection-switch.tshirt-switch a:hover {
    background: #ed1c24;
    color: #fff;
}

#tshirt .tshirt-content {
    padding-top: 20px;
}

#tshirt .tshirt-content p {
    margin: 20px 0px;
    line-height: 1.2em;
    font-size: 16px;
}

#tshirt .tshirt-content b,
#tshirt .tshirt-content strong {
    font-family: "ProximaNovaBold";
}


#tshirt .tshirt-content li {
    padding-left: 25px;
    background: url(/bitrix/templates/arr/images/reddotbullet.png) no-repeat 0 4px;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    margin-top: 10px;
}

#tshirt .tshirt-content a {
    font-family: "ProximaNovaBold";
    font-size: 14px;
    color: #e20613;
    text-transform: uppercase;
}

#tshirt .tshirt-content a:hover {
    text-decoration: none;
}

#tshirt .tshirt-content strong {
    font-family: "ProximaNovaBold";
}

#tshirt .tshirt-content h2 {
    margin-top: 40px;
}

#tshirt div.news-list img.preview_picture {
    width: 200px;
    height: 250px;
    margin-right: 15px;
    object-fit: cover;
}

#tshirt div.news-list p.news-item {
    overflow: hidden;
    margin-bottom: 15px;
}

#tshirt div.news-list p.news-item b {
    display: block;
    font-family: "ProximaNovaBold";
    font-size: 20px;
    margin-bottom: 10px;
}

#tshirt .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    font-family: "ProximaNova";
    text-transform: none;
    line-height: 25px;
}


/* Hide the browser's default checkbox */
#tshirt .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
#tshirt .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px !important;
    width: 25px !important;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
#tshirt .container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
#tshirt .container input:checked ~ .checkmark {
    background-color: #ed1c24;
}

/* Create the checkmark/indicator (hidden when not checked) */
#tshirt .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
#tshirt .container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
#tshirt .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#tshirt .vote-items-list {
    margin: 30px 0;
}

#tshirt font.errortext,
#tshirt .vote-note-note {
    font-size: 22px;
    margin: 30px 0;
    display: block;

}


#tshirt .vote-items-list img {
    display: block;
    width: 200px;
    height: 250px;
    object-fit: cover;
    margin-bottom: 30px;
}

#tshirt .news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#tshirt .news-list .news-item {
    width: 48%;
    margin-bottom: 40px !important;
}

@media (max-width: 1000px) {
    #tshirt .news-list .news-item {
        width: 100%;
    }
}

#thsirt-vote ol.vote-answers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#thsirt-vote ol.vote-answers-list li {
    width: 280px;
    margin-bottom: 30px;
}

#thsirt-vote ol.vote-answers-list li img {
    margin-left: -35px;
    margin-top: 20px;
    width: 280px;
    height: 280px;
    object-fit: cover;
}

body .sl-wrapper .sl-content {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}

body .sl-wrapper .sl-content img {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    object-fit: cover;
}


.structure-column {
    display: flex;
    flex-direction: column;
}

.structure-column > div {
    width: 220px;
    height: 70px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);

    position: relative;
    display: inline-flex;
    align-items: center;
    float: left;
    color: #333333;
    font-family: "ProximaNovaBold";
    font-size: 13px;
    text-transform: uppercase;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

#structure-columns {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding-right: 20px;
}

.structure-column:nth-of-type(1) > div {
    border-bottom: 2px solid #e09a14;
}

.structure-column:nth-of-type(2) > div {
    border-bottom: 2px solid #6257a5;
}

.structure-column:nth-of-type(3) > div {
    border-bottom: 2px solid #ed1c21;
}

.structure-column:nth-of-type(4) > div {
    border-bottom: 2px solid #00a2ff;
}

.structure-column:nth-of-type(1) > div.column-more {
    background: url(/bitrix/templates/ftsarr/images/structure-more1.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-column:nth-of-type(2) > div.column-more {
    background: url(/bitrix/templates/ftsarr/images/structure-more2.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-column:nth-of-type(3) > div.column-more {
    background: url(/bitrix/templates/ftsarr/images/structure-more3.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-column:nth-of-type(4) > div.column-more {
    background: url(/bitrix/templates/ftsarr/images/structure-more4.png) no-repeat right bottom;
    cursor: pointer;
}

.structure-column > div::after {
    display: block;
    content: "";
    position: absolute;
    top: 70px;
    width: 2px;
    height: 40px;
    background: #999999;
    left: 115px;
}

.structure-column > div:last-child::after {
    display: none;
}

/* From ftsarr/header.php*/
#tickets > div {
    border: 2px solid #ed1c24;
    background: #ed1c24 !important;
    width: 100px !important;
    height: 40px !important;
    line-height: 30px !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 16px !important;
    padding-top: 2px !important;
    white-space: normal !important;
}

#tickets-mob > li > div {
    font-size: 30px !important;
    font-weight: bold !important;
    padding: 0 !important;
}

#sochiopenbutton > div {
    border: 2px solid #375caa;
    background: #375caa !important;
    width: 100px !important;
    height: 40px !important;
    line-height: 30px !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 16px !important;
    padding-top: 2px !important;
    white-space: normal !important;
}

#sochiopenbutton-mob > li > div {
    font-size: 30px !important;
    font-weight: bold !important;
    padding: 0 !important;
}

iframe .show-descr::after {
    display: inline-block;
    content: '\e034';
}

.buy-tickets-page-box .header-contaner .avatar-buy-event {
    border-radius: 0 !important;
}

@media (max-width: 1000px) {
    #tickets {
        display: none;
    }

    #sochi-link {
        right: 100px;
    }
}


#tickets > div {
    border: 2px solid #ed1c24;
    background: #ed1c24 !important;
    width: 100px !important;
    height: 40px !important;
    line-height: 30px !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 30px !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 16px !important;
    padding-top: 2px !important;
    white-space: normal !important;
}

#tickets > div a {
    color: #fff;
    text-decoration: none;
    background: none !important;
}

#tickets-mob > li > div {
    font-size: 30px !important;
    font-weight: bold !important;
    padding: 0 !important;
}

iframe .show-descr::after {
    display: inline-block;
    content: '\e034';
}

.buy-tickets-page-box .header-contaner .avatar-buy-event {
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    #tickets {
        display: none !important;
    }
}


.presidium li:first-child {
    width: 100%;
}

@media (max-width: 800px) {
    ul.persons li {
        width: 100% !important;
    }
}
/* End */
/* /bitrix/templates/ftsarr/stylesheets/accordion-slider.min.css?15155017203394 */
/* /bitrix/templates/ftsarr/stylesheets/animate.css?151550172023848 */
/* /bitrix/templates/ftsarr/stylesheets/jquery.cookieBar.min.css?15523068063560 */
/* /bitrix/templates/ftsarr/stylesheets/jquery.simple-lightbox.css?15877225452871 */
/* /bitrix/templates/ftsarr/stylesheets/slick.css?15155017121885 */
/* /bitrix/templates/ftsarr/stylesheets/main.css?1751975827165531 */
/* /bitrix/components/ideal/form.result.new/templates/feedback/style.css?1513749771666 */
/* /bitrix/templates/ftsarr/template_styles.css?174422758916270 */
