

/* Start:/bitrix/templates/new-websib/resources/css/animate.css?174065857023848*/
@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/new-websib/resources/arctic_modal/jquery.arcticmodal-0.3.css?1740658570647*/
.arcticmodal-overlay,
.arcticmodal-container { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 1000; }
.arcticmodal-container { overflow: auto; margin: 0; padding: 0; border: 0; border-collapse: collapse; }
*:first-child+html .arcticmodal-container { height: 100% }
.arcticmodal-container_i { height: 100%; margin: 0 auto; }
.arcticmodal-container_i2 { padding: 24px; margin: 0; border: 0; vertical-align: middle; }
.arcticmodal-error { padding: 20px; border-radius: 10px; background: #000; color: #fff; }
.arcticmodal-loading { width: 80px; height: 80px; border-radius: 10px; background: #000 url(/bitrix/templates/new-websib/resources/arctic_modal/loading.gif) no-repeat 50% 50%; }
/* End */


/* Start:/bitrix/templates/new-websib/resources/arctic_modal/simple.css?1740658570410*/
.box-modal {
	position: relative;
	width: 500px;
	padding: 16px;
	background: #fff;
	color: #3c3c3c;
	font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
	box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
	border-radius: 6px;
}
.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; }
.box-modal_close:hover { color: #666; }
/* End */


/* Start:/bitrix/templates/new-websib/components/bitrix/menu/main_menu/style.css?1740658569502*/
ul.main-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
	font-family: Calibri, Verdana, sans-serif;
}

ul.main-menu li
{
	padding-top: 10px;
	padding-left: 16px;
}

ul.main-menu li a
{
	font-size:100%;
	color:#043D9D;
	text-decoration:none;
}

ul.main-menu li a:visited
{
	color:#043D9D;
}

ul.main-menu li a:hover
{
	color:#FF0000;
}

.main-menu-selected a {
	text-decoration: underline !important;
}

.menu-item-name {
	padding-left: 0 !important;
}
/* End */


/* Start:/bitrix/templates/new-websib/components/bitrix/news.list/slider_special/style.css?17406585701008*/
.slider_special_arr_text {
	text-align: center;
	vertical-align: middle;
	color: #7e7e7e;
	width: 70px;
}

.slider_special_arr_left {
	text-align: right;
	cursor: pointer;
}

.slider_special_arr_right {
	text-align: left;
	cursor: pointer;
}

.slider_special_title {
	text-align: left;
	vertical-align: middle;
	font-size: 85%;
}

.slider_special_date {
	text-align: right;
	vertical-align: middle;
	font-size: 80%;
	color: #9e9e9e;
}

.slider_special_img {
	text-align: left;
	vertical-align: middle;
	width: 55px;
}

.slider_special_empty {
	font-size: 1%;
	height: 5px;
}

.slider_special_button {
	height:35px;
	text-align:center;
	vertical-align:middle;
	cursor: pointer;
}

.slider_special_link {
	cursor:pointer;
	text-decoration: underline;
	color: #373CBB;
}

.slider_special_link:hover {
	color: #ff0000;
}

.slider_special_description {
	display: none;
	position: absolute;
	z-index: 9999;
	top: 20px;
	left: 100px;
	width: 500px;
}
/* End */


/* Start:/local/components/dlay/cookienotice/templates/.default/style.css?17406605631420*/
#dlay-cookienotice-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    z-index: 999999;
    -webkit-box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.16);
    box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.16);
    font-size: 12px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
}

#dlay-cookienotice-modal.dlay-cookienotice-load {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.dlay-cookienotice-button {
    font-size: 14px;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
}
/*
.dlay-cookienotice-button {
    background-color: transparent;
    border: 2px solid #222 !important;
    color: #222;
    border: none;
    padding: 3px 16px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
}

.dlay-cookienotice-button:hover {
    background-color: #222;
    color: #fff;
}*/

.dlay-cookienotice-link {
    text-decoration: underline;
    color: #222;
}

.dlay-cookienotice-text {
    max-width: 100%;
    margin: auto;
    width: 1050px;
}
/* End */


/* Start:/bitrix/templates/new-websib/styles.css?17406585693570*/
/* STANDART */

.cp {
    cursor: pointer;
}

.dn {
    display: none;
}

.ib {
    display: inline-block;
}

.in {
    display: inline;
}

.t {
    display: table;
}

.tc {
    display: table-cell;
}

.nb {
    border: none;
}

.pr {
    position: relative;
}

.b_aliceblue {
    background-color: aliceblue !important;
}

.redw {
    color: #b32d2d;
}

.red {
    color: red;
}

.greenr {
    color: #94b882;
}

.gray {
    color: gray;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.inline {
    display: inline;
}

.fl_right {
    float: right;
}

.fll {
    float: right;
}


.flr {
    float: right;
}

.wi {
    width: initial;
}

.bs_selected {
    background: #337ab7 !important;
    color: white !important;
}

.dashed {
    border-bottom: 1px dashed #0073AA;
    cursor: pointer;
}

.va_top {
    vertical-align: top;
}

/* STANDART END */

/* NOTIFICATION */

.alert {
    background: white;
}

.notify_suc {
    z-index: 9999;
    font-size: 1.4rem;
	display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 7px;
    border: 1px solid #87d995;
    color: #555;
    border-radius: 5px;
    padding: 20px;
}

.notify_fail {
    border: 1px solid #ffa1a1;
}

.notify_info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-minimalist {
    font-size: 1.6rem;
}

.notify-message {
    padding: 0 10px;
    max-width: 300px;
}

/* NOTIFICATION */

.cnotifyRRR {
    z-index: 9999;
    font-size: 1.4rem;
	display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 7px;
    border: 1px solid #87d995;
    color: #555;
    border-radius: 5px;
    padding: 20px;
    background: white;
}

.cnotify {
    z-index: 9999;
    font-size: 1.4rem;
	display: none;
    position: relative;
}

.cnotify > div {
    padding: 7px;
    border: 1px solid #87d995;
    color: #555;
    border-radius: 5px;
    padding: 20px;
    background: white;
    position: fixed;
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cnotify_er > div {
    border: 1px solid #ffa1a1;
}

/* NOTIFICATION */

.sites_field {width: 20px;}

.sites_bullet {
	width: 20px;
	text-align: left;
	padding-top: 3px;
}

.sites_empty {height: 20px;}

.sites_preview {
	font-size: 90%;
}

.sites_name {
	font-size: 110%;
}

.sites_subkat {
	font-size: 80%;
}

.sites_counter {
	font-size: 80%
}

.sites_section_name {
	height: 20px;
	font-size: 100%;
}

.sites_filesize {
	font-size: 80%;
}

.sites_org_name {
	font-size: 95%;
	text-align: left !important;
}
.sites_org_title {font-size: 80%;}
.sites_org_yes {font-size: 80%;}
.sites_org_no {font-size: 80%; font-weight: bold; color: #ff0000;}
.sites_tab {width: 30px;}

.sites_org_table_title {
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	height: 25px;
	background: #d9d9d9;
}

.sites_org_table_title td {vertical-align: middle;}

.sites_org_table_data {
	height: 25px;
}

.sites_org_table_data td {
	vertical-align: middle;
	text-align: center;
}

/* FZ_CHECK  /info/fz/ */

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;

    width: 50px;
    height: 50px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* FZ_CHECK END /info/fz/ */
/* End */


/* Start:/bitrix/templates/new-websib/template_styles.css?174065856912743*/
body {
	padding: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	min-width: 1057px;
	background: url('/bitrix/templates/new-websib/images/back22.png') #fff;
	font-family: Arial, sans-serif;
	font-size: 14px;
}

a {color: #043c99;}
a {color: #043c99;}

a:hover {color: red;}

img {border: 0;}

span {font-family: Arial, sans-serif;}

table, tr, td, th {
	border-style: none;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	vertical-align: top;
}

textarea {
	resize: none;
}

table {
	width: 100%;
	font-family: Arial, sans-serif;
	font-size: 14px;
}

.arcticmodal-container_i {
	width: initial;
}

.table_white {
	background-color: #ffffff;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.empty_fields {
/*	background-color: #cfcfcf; */
	background: url('/bitrix/templates/new-websib/images/back1.png') repeat-x repeat-y #cfcfcf;
}

.main_block {
	width: 1057px;
	vertical-align: top;
}

.main_fields {width: 13px;}

.main_fields_h {height: 13px;}

.left_col {
	width: 198px;
}

.right_col {
	width: 198px;
}

.footer_menu {
	min-height: 100px;
/*	background: url('/bitrix/templates/new-websib/images/footer_bg.png') repeat-y #4ca2eb; */
	background-image: linear-gradient(to right, #4BA1EA, #C0DEF8, #4BA1EA);
	background-image: -webkit-linear-gradient(0deg, #4BA1EA, #C0DEF8, #4BA1EA);
	background-image: -o-linear-gradient(0deg, #4BA1EA, #C0DEF8, #4BA1EA);
	background-image: -moz-linear-gradient(0deg, #4BA1EA, #C0DEF8, #4BA1EA);
}

.footer {
	height: 46px;
	background: url('/bitrix/templates/new-websib/images/footer_b_bg.png') no-repeat #ffffff;
	vertical-align: middle;
}

.footer-copy {
	text-align: right;
	font-size: 80%;
	padding-right: 25px;
}

.footer-counter {
	padding-left: 25px;
}

.footer_logo {
	text-align: center;
	vertical-align: top;
}

.login_link {
	font-size: 1.8rem;
	font-weight: bold;
	color: #909090;
	color: #286090;
	color: #043D9D;
}

.auth_panel {
	height: 25px;
	background: url('/bitrix/templates/new-websib/images/auth_bg.png') repeat-x #dadada;
	font-size: 80%;
	padding-right: 20px;
	padding: 3px 20px;
}

.auth_panel_text a {
	Rfont-size: 80%;
	color: #909090;
}

.auth_panel_text span {
	font-size: 80%;
	color: #4a4a4a;
}

.bottom_menu {
	font-family: Calibri, Verdana, sans-serif;
	font-size: 95%;
}

.bottom_menu_padding {
	width: 15px;
}

.mini_title_tr {height: 10px;}

.mini_title_trc {height: 20px;}

.mini_title_lt {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/mini_title_lt.png') no-repeat;
}

.mini_title_rt {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/mini_title_rt.png') no-repeat;
}

.mini_title_text {
	background: url('/bitrix/templates/new-websib/images/mini_title_text.png') repeat-x;
	font-family: Calibri, Verdana, sans-serif;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
	vertical-align: middle;
}

.mini_title_b {
	background: url('/bitrix/templates/new-websib/images/mini_title_b.png') repeat-x;
}

.mini_title_c {
	background: url('/bitrix/templates/new-websib/images/mini_title_c.png') repeat-x;
}

.text_box_l {
	background: url('/bitrix/templates/new-websib/images/text_box_l.png') repeat-y;
}

.text_box_r {
	background: url('/bitrix/templates/new-websib/images/text_box_r.png') repeat-y;
}

.text_box_lb {
	background: url('/bitrix/templates/new-websib/images/text_box_lb.png') no-repeat;
}

.text_box_rb {
	background: url('/bitrix/templates/new-websib/images/text_box_rb.png') no-repeat;
}

.text_box_cb {
	background: url('/bitrix/templates/new-websib/images/text_box_cb.png') repeat-x;
}

.text_box_empty {
	height: 15px;
}

.new-title {
	background: url('/bitrix/templates/new-websib/images/big_title_text.png') repeat-x #3B68BD;
	vertical-align: middle;
	color: #fff !important;
	font-size: 105%;
	text-align: center;
}

.new-title-mini {
	background: url('/bitrix/templates/new-websib/images/big_title_text.png') repeat-x #3B68BD;
	vertical-align: middle;
	color: #fff !important;
	font-family: Calibri, Verdana, sans-serif;
	font-weight: bold;
	text-align: center;
	padding: 10px 5px;
	line-height: 1.1;
}

.new-big-title-text {
	background: url('/bitrix/templates/new-websib/images/big_title_text.png') repeat-x #3B68BD;
	font-family: Calibri, Verdana, sans-serif;
	font-weight: bold;
	font-size: 150%;
	text-align: left;
	color: #fff !important;
	line-height: 1;
}

.new-big-title-text a {
	color: #fff;
}

.block-body {
	padding: 5px 10px;
}

.menu-body {
	padding: 0;
}

.big_title_tr {height: 10px;}

.big_title_trc {height: 49px;}

.big_title_lt {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/big_title_lt.png') no-repeat;
}

.big_title_rt {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/big_title_rt.png') no-repeat;
}

.big_title_text {
	background: url('/bitrix/templates/new-websib/images/big_title_text.png') repeat-x;
	vertical-align: middle;
	color: #ffffff;
	font-size: 105%;
}

.big_title_text table {
	font-family: Calibri, Verdana, sans-serif;
	font-weight: bold;
	font-size: 150%;
	text-align: left;
	color: #ffffff;
	vertical-align: middle;
}

.big_title_s {
	background: url('/bitrix/templates/new-websib/images/big_title_s.png') repeat-x;
}

.big_title_counter {
	text-align: center;
	background: #ffffff;
	color: #254099;
}

.big_title_find {
	width: 100px;
	text-align: center;
}

.big_title_find a {color: #ffffff}

.big_title_find a:hover {color: #ff0000}

.kat_block_tr {height: 10px;}

.kat_block_ttr {height: 39px;}

.kat_block_lt {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/kat_block_lt.png') no-repeat;
}

.kat_block_rt {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/kat_block_rt.png') no-repeat;
}

.kat_block_lb {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/kat_block_lb.png') no-repeat;
}

.kat_block_rb {
	width: 10px;
	background: url('/bitrix/templates/new-websib/images/kat_block_rb.png') no-repeat;
}

.kat_block_title {background-color: #d9d9d9;}

.kat_org_block_title {
	background: #d9d9d9;
	vertical-align: middle;
	font-weight: bold;
}

.kat_block_title a {
	color: #26417c;
	font-weight: bold;
	font-size: 98%;
}

.kat_block_count {
	background-color: #ffffff;
	color: #939393;
	text-align: center;
}

.kat_block_empty {
	font-size: 1%;
	height: 5px;
}

.kat_block_bullet {
	text-align: left;
	vertical-align: top;
	width: 20px;
	padding-top: 3px;
}

.kat_block_item {
	font-family: Calibri, Verdana, sans-serif;
	font-size:95%;
	color:#26417c;
	text-decoration:underline;
	height: 30px;
	vertical-align:top;
}

.kat_block_field {height: 10px;}

.kat_block_text, .kat_block_data {background: #efefef;}

.org-find {
	width: 210px;
}

.org-find label {
	font-size: 90%;
}

.find_block_regions_list {
	height: 200px;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #ffffff;
	font-size: 80%;
	line-height: 20px;
	border: solid 1px #c5c5c5;
}

.find_result {
	color: #7e7e7e;
	font-size: 90%;
	text-align: center;
	vertical-align: top;
	height: 30px;
}

.contacts_map {
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	font-size: 1%;
	width: 500px;
	height: 400px;
}

.contacts_operator {
	text-align: center;
	font-size: 110%;
	font-weight: bold;
}

.contacts_operator a {
	font-weight: normal;
}

.contacts_ico {
	width: 50px;
	text-align: center;
	vertical-align: middle;
}

.contacts_title {
	text-align: left;
	font-size: 110%;
	font-weight: bold;
}

.contacts_data {
	width: 50%;
	text-align: left;
	font-size: 110%;
}

.contacts_empty {height: 20px;}

.contacts_empty_small {height: 5px; font-size:1%;}

.safety_field {width: 20px;}

.safety_bullet {
	width: 20px;
	text-align: left;
	padding-top: 3px;
}

.safety_empty {height: 20px;}

.safety_preview {
	font-size: 90%;
}

.safety_name {
	font-size: 110%;
}

.safety_subkat {
	font-size: 80%;
}

.safety_counter {
	font-size: 80%
}

.safety_section_name {
	height: 30px;
	font-size: 90%;
}

.safety_filesize {
	font-size: 80%;
}

.safety_org_name {
	font-size: 95%;
	text-align: left !important;
}
.safety_org_title {font-size: 80%;}
.safety_org_yes {font-size: 80%;}
.safety_org_no {font-size: 80%; font-weight: bold; color: #ff0000;}
.safety_tab {width: 30px;}

.safety_org_table_title {
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	height: 25px;
	background: #d9d9d9;
}

.safety_org_table_title td {vertical-align: middle;}

.safety_org_table_data {
	height: 25px;
}

.safety_org_table_data td {
	vertical-align: middle;
	text-align: center;
}

.logo_side_text_1 {
	font-size: 90%;
	font-weight: bold;
	color: #043d9d;
}

.logo_side_text_2 {
	font-size: 90%;
	color: #686868;
}


.websib_inf {background-color: #f4ead6; font-size:1%;}

.websib_inf_img {
	background-color: #f4ead6;
	vertical-align: middle;
	text-align: center;
}

.websib_inf_lt {
	width: 10px;
	font-size: 1%;
	background: url('/bitrix/templates/new-websib/images/websib_inf_lt.png') no-repeat;
}

.websib_inf_rt {
	width: 10px;
	font-size: 1%;
	background: url('/bitrix/templates/new-websib/images/websib_inf_rt.png') no-repeat;
}

.websib_inf_rb {
	width: 10px;
	font-size: 1%;
	background: url('/bitrix/templates/new-websib/images/websib_inf_rb.png') no-repeat;
}

.websib_inf_lb {
	width: 10px;
	font-size: 1%;
	background: url('/bitrix/templates/new-websib/images/websib_inf_lb.png') no-repeat;
}

.websib_inf_text {
	background: #f4ead6;
	color: #6d6d6d;
	font-size: 80%;
	line-height: 1.5;
}

.websib_inf_text a {color: #6d6d6d;}

.websib_inf_text a:hover {color: #ff0000;}

.gibdd_inf_text {
	background: #f4ead6;
	color: #ff0000;
	font-size: 90%;
	line-height: 1.5;
}

.title_edu54 a {
	text-decoration: none;
}

.map-table-text {
	vertical-align: middle !important;
	font-size: 90% !important;
	padding: 10px 0 !important;
}

.map-table-button {width: 50px;}

.map-table-data {
	padding-left: 20px;
}

.map-balloon-text {
	font-size: 90% !important;
	padding: 5px 0 5px 20px !important;
}

#map_table {
	max-height: 390px;
	overflow: auto;
}

.map-table-container {
	margin-top: 10px;
}

.text-middle {vertical-align: middle !important;}

.map_objects_count {font-size: 90%; font-weight: bold;}

.map-instruction {font-size: 80%;}

.img-button:hover {
	box-shadow: 0 0 5px rgba(2,2,2,0.3);
}

.panel, .panel-heading {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
}

.panel-counter {
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	padding: 1px;
	color: #333;
	font-size: 95%;
	text-align: center;
	margin-bottom: 0;
}


/* MODERNIZE */

a {color: #4674C2;}

.Rpanel-default > .panel-heading {
	background: #ececec !important;
}
.panel-default > .panel-heading.new-big-title-text  {
	background: #45aaf2 !important;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.panel-default > .panel-heading.new-title  {
	background: #45aaf2 !important;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.panel-default > .panel-heading.new-title-mini  {
	background: #45aaf2 !important;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel, .panel-heading {

    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    Rborder-radius: 5px;

}

.panel-counter {
	border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.kat_block_bullet > img {
	position: relative;
	top: -6px;
}

.kat_block_item {
	text-decoration:none;
}

.kat_block_item a {
	text-decoration-color: red;
	color: #3c77b9;
}

.kat_block_item a:hover {
	text-decoration-color: #eb4d4b;;
	text-decoration:none;
	color: #eb4d4b;
}

/* MODERNIZE */

/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');*/

.panel-default > .panel-heading.new-big-title-text  {
	background: #45aaf2 !important;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.panel-default > .panel-heading.new-title  {
	background: #45aaf2 !important;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;

	rfont-weight: bold;
	ront-size: 1em;
	rfont-family: Open Sans;
}

.panel-default > .panel-heading.new-title-mini  {
	background: #45aaf2 !important;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel, .panel-heading {

    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    Rborder-radius: 5px;

}

.panel-counter {
	border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.kat_block_bullet > img {
	position: relative;
	top: -6px;
}

.kat_block_item {
	text-decoration:none;
}

.kat_block_item a {
	text-decoration-color: #eb4d4b;
	color: #3c77b9;
}

.kat_block_item a:hover {
	text-decoration-color: #eb4d4b;
	text-decoration:none;
	color: #eb4d4b;
}

.logol {
	text-align: left;
	display: inline-block
}

.logol:hover {
	text-decoration: none;
}
/* End */
/* /bitrix/templates/new-websib/resources/css/animate.css?174065857023848 */
/* /bitrix/templates/new-websib/resources/arctic_modal/jquery.arcticmodal-0.3.css?1740658570647 */
/* /bitrix/templates/new-websib/resources/arctic_modal/simple.css?1740658570410 */
/* /bitrix/templates/new-websib/components/bitrix/menu/main_menu/style.css?1740658569502 */
/* /bitrix/templates/new-websib/components/bitrix/news.list/slider_special/style.css?17406585701008 */
/* /local/components/dlay/cookienotice/templates/.default/style.css?17406605631420 */
/* /bitrix/templates/new-websib/styles.css?17406585693570 */
/* /bitrix/templates/new-websib/template_styles.css?174065856912743 */
