/*!
 * # Semantic UI 2.2.12 - Transition
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */


/*******************************
          Transitions
*******************************/


.transition {
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}


/*******************************
            States
*******************************/


/* Animating */


.animating.transition {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  visibility: visible !important;
}


/* Loading */


.loading.transition {
  position: absolute;
  top: -99999px;
  left: -99999px;
}


/* Hidden */


.hidden.transition {
  display: none;
  visibility: hidden;
}


/* Visible */


.visible.transition {
  display: block !important;
  visibility: visible !important;
  
/*  backface-visibility: @backfaceVisibility;
  transform: @use3DAcceleration;*/
}


/* Disabled */


.disabled.transition {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}


/*******************************
          Variations
*******************************/


.looping.transition {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}


/*******************************
          Transitions
*******************************/


/*
  Some transitions adapted from Animate CSS
  https://github.com/daneden/animate.css

  Additional transitions adapted from Glide
  by Nick Pettit - https://github.com/nickpettit/glide
*/


/*--------------
     Browse
---------------*/


.transition.browse {
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}


.transition.browse.in {
  -webkit-animation-name: browseIn;
          animation-name: browseIn;
}


.transition.browse.out,
.transition.browse.left.out {
  -webkit-animation-name: browseOutLeft;
          animation-name: browseOutLeft;
}


.transition.browse.right.out {
  -webkit-animation-name: browseOutRight;
          animation-name: browseOutRight;
}


/* In */


@-webkit-keyframes browseIn {
  0% {
    -webkit-transform: scale(0.8) translateZ(0px);
            transform: scale(0.8) translateZ(0px);
    z-index: -1;
  }
  10% {
    -webkit-transform: scale(0.8) translateZ(0px);
            transform: scale(0.8) translateZ(0px);
    z-index: -1;
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1.05) translateZ(0px);
            transform: scale(1.05) translateZ(0px);
    opacity: 1;
    z-index: 999;
  }
  100% {
    -webkit-transform: scale(1) translateZ(0px);
            transform: scale(1) translateZ(0px);
    z-index: 999;
  }
}


@keyframes browseIn {
  0% {
    -webkit-transform: scale(0.8) translateZ(0px);
            transform: scale(0.8) translateZ(0px);
    z-index: -1;
  }
  10% {
    -webkit-transform: scale(0.8) translateZ(0px);
            transform: scale(0.8) translateZ(0px);
    z-index: -1;
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1.05) translateZ(0px);
            transform: scale(1.05) translateZ(0px);
    opacity: 1;
    z-index: 999;
  }
  100% {
    -webkit-transform: scale(1) translateZ(0px);
            transform: scale(1) translateZ(0px);
    z-index: 999;
  }
}


/* Out */


@-webkit-keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg);
  }
  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
            transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    z-index: -1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0;
  }
}


@keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg);
  }
  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
            transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    z-index: -1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0;
  }
}


@-webkit-keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg);
  }
  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
            transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    z-index: 1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0;
  }
}


@keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg);
  }
  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
            transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    z-index: 1;
    -webkit-transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
            transform: translateX(0%) rotateY(0deg) rotateX(0deg) translateZ(-10px);
    opacity: 0;
  }
}


/*--------------
     Drop
---------------*/


.drop.transition {
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
  -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
          animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
}


.drop.transition.in {
  -webkit-animation-name: dropIn;
          animation-name: dropIn;
}


.drop.transition.out {
  -webkit-animation-name: dropOut;
          animation-name: dropOut;
}


/* Drop */


@-webkit-keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@-webkit-keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}


@keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}


/*--------------
      Fade
---------------*/


.transition.fade.in {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}


.transition[class*="fade up"].in {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}


.transition[class*="fade down"].in {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}


.transition[class*="fade left"].in {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}


.transition[class*="fade right"].in {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}


.transition.fade.out {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}


.transition[class*="fade up"].out {
  -webkit-animation-name: fadeOutUp;
          animation-name: fadeOutUp;
}


.transition[class*="fade down"].out {
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}


.transition[class*="fade left"].out {
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
}


.transition[class*="fade right"].out {
  -webkit-animation-name: fadeOutRight;
          animation-name: fadeOutRight;
}


/* In */


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}


@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}


@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}


@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}


@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}


/* Out */


@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}


@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}


@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}


@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}


@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}


@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}


@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
}


@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
}


/*--------------
     Flips
---------------*/


.flip.transition.in,
.flip.transition.out {
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
}


.horizontal.flip.transition.in {
  -webkit-animation-name: horizontalFlipIn;
          animation-name: horizontalFlipIn;
}


.horizontal.flip.transition.out {
  -webkit-animation-name: horizontalFlipOut;
          animation-name: horizontalFlipOut;
}


.vertical.flip.transition.in {
  -webkit-animation-name: verticalFlipIn;
          animation-name: verticalFlipIn;
}


.vertical.flip.transition.out {
  -webkit-animation-name: verticalFlipOut;
          animation-name: verticalFlipOut;
}


/* In */


@-webkit-keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
            transform: perspective(2000px) rotateY(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
            transform: perspective(2000px) rotateY(0deg);
    opacity: 1;
  }
}


@keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
            transform: perspective(2000px) rotateY(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
            transform: perspective(2000px) rotateY(0deg);
    opacity: 1;
  }
}


@-webkit-keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
            transform: perspective(2000px) rotateX(0deg);
    opacity: 1;
  }
}


@keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
            transform: perspective(2000px) rotateX(0deg);
    opacity: 1;
  }
}


/* Out */


@-webkit-keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
            transform: perspective(2000px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
            transform: perspective(2000px) rotateY(90deg);
    opacity: 0;
  }
}


@keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0deg);
            transform: perspective(2000px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
            transform: perspective(2000px) rotateY(90deg);
    opacity: 0;
  }
}


@-webkit-keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
            transform: perspective(2000px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }
}


@keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0deg);
            transform: perspective(2000px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
  }
}


/*--------------
      Scale
---------------*/


.scale.transition.in {
  -webkit-animation-name: scaleIn;
          animation-name: scaleIn;
}


.scale.transition.out {
  -webkit-animation-name: scaleOut;
          animation-name: scaleOut;
}


@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


/* Out */


@-webkit-keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}


@keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}


/*--------------
      Fly
---------------*/


/* Inward */


.transition.fly {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}


.transition.fly.in {
  -webkit-animation-name: flyIn;
          animation-name: flyIn;
}


.transition[class*="fly up"].in {
  -webkit-animation-name: flyInUp;
          animation-name: flyInUp;
}


.transition[class*="fly down"].in {
  -webkit-animation-name: flyInDown;
          animation-name: flyInDown;
}


.transition[class*="fly left"].in {
  -webkit-animation-name: flyInLeft;
          animation-name: flyInLeft;
}


.transition[class*="fly right"].in {
  -webkit-animation-name: flyInRight;
          animation-name: flyInRight;
}


/* Outward */


.transition.fly.out {
  -webkit-animation-name: flyOut;
          animation-name: flyOut;
}


.transition[class*="fly up"].out {
  -webkit-animation-name: flyOutUp;
          animation-name: flyOutUp;
}


.transition[class*="fly down"].out {
  -webkit-animation-name: flyOutDown;
          animation-name: flyOutDown;
}


.transition[class*="fly left"].out {
  -webkit-animation-name: flyOutLeft;
          animation-name: flyOutLeft;
}


.transition[class*="fly right"].out {
  -webkit-animation-name: flyOutRight;
          animation-name: flyOutRight;
}


/* In */


@-webkit-keyframes flyIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


@keyframes flyIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


@-webkit-keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1500px, 0);
            transform: translate3d(0, 1500px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}


@keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1500px, 0);
            transform: translate3d(0, 1500px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}


@-webkit-keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -1500px, 0);
            transform: translate3d(0, -1500px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}


@keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -1500px, 0);
            transform: translate3d(0, -1500px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}


@-webkit-keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px, 0, 0);
            transform: translate3d(1500px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}


@keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px, 0, 0);
            transform: translate3d(1500px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}


@-webkit-keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px, 0, 0);
            transform: translate3d(-1500px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}


@keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px, 0, 0);
            transform: translate3d(-1500px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}


/* Out */


@-webkit-keyframes flyOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}


@keyframes flyOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
}


@-webkit-keyframes flyOutUp {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}


@keyframes flyOutUp {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}


@-webkit-keyframes flyOutDown {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}


@keyframes flyOutDown {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}


@-webkit-keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}


@keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}


@-webkit-keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}


@keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}


/*--------------
     Slide
---------------*/


.transition.slide.in,
.transition[class*="slide down"].in {
  -webkit-animation-name: slideInY;
          animation-name: slideInY;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}


.transition[class*="slide up"].in {
  -webkit-animation-name: slideInY;
          animation-name: slideInY;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}


.transition[class*="slide left"].in {
  -webkit-animation-name: slideInX;
          animation-name: slideInX;
  -webkit-transform-origin: center right;
          transform-origin: center right;
}


.transition[class*="slide right"].in {
  -webkit-animation-name: slideInX;
          animation-name: slideInX;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}


.transition.slide.out,
.transition[class*="slide down"].out {
  -webkit-animation-name: slideOutY;
          animation-name: slideOutY;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}


.transition[class*="slide up"].out {
  -webkit-animation-name: slideOutY;
          animation-name: slideOutY;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}


.transition[class*="slide left"].out {
  -webkit-animation-name: slideOutX;
          animation-name: slideOutX;
  -webkit-transform-origin: center right;
          transform-origin: center right;
}


.transition[class*="slide right"].out {
  -webkit-animation-name: slideOutX;
          animation-name: slideOutX;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}


/* In */


@-webkit-keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}


@keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}


@-webkit-keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}


@keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}


/* Out */


@-webkit-keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}


@keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}


@-webkit-keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}


@keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}


/*--------------
     Swing
---------------*/


.transition.swing {
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
}


.transition[class*="swing down"].in {
  -webkit-animation-name: swingInX;
          animation-name: swingInX;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}


.transition[class*="swing up"].in {
  -webkit-animation-name: swingInX;
          animation-name: swingInX;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}


.transition[class*="swing left"].in {
  -webkit-animation-name: swingInY;
          animation-name: swingInY;
  -webkit-transform-origin: center right;
          transform-origin: center right;
}


.transition[class*="swing right"].in {
  -webkit-animation-name: swingInY;
          animation-name: swingInY;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}


.transition.swing.out,
.transition[class*="swing down"].out {
  -webkit-animation-name: swingOutX;
          animation-name: swingOutX;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}


.transition[class*="swing up"].out {
  -webkit-animation-name: swingOutX;
          animation-name: swingOutX;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}


.transition[class*="swing left"].out {
  -webkit-animation-name: swingOutY;
          animation-name: swingOutY;
  -webkit-transform-origin: center right;
          transform-origin: center right;
}


.transition[class*="swing right"].out {
  -webkit-animation-name: swingOutY;
          animation-name: swingOutY;
  -webkit-transform-origin: center left;
          transform-origin: center left;
}


/* In */


@-webkit-keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
            transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }
  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
            transform: perspective(1000px) rotateX(15deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
            transform: perspective(1000px) rotateX(-7.5deg);
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
  }
}


@keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
            transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }
  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
            transform: perspective(1000px) rotateX(15deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
            transform: perspective(1000px) rotateX(-7.5deg);
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
  }
}


@-webkit-keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
            transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
            transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
            transform: perspective(1000px) rotateY(-17.5deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
            transform: perspective(1000px) rotateY(7.5deg);
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
  }
}


@keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
            transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
            transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
            transform: perspective(1000px) rotateY(-17.5deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
            transform: perspective(1000px) rotateY(7.5deg);
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
  }
}


/* Out */


@-webkit-keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
  }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
            transform: perspective(1000px) rotateX(-7.5deg);
  }
  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
            transform: perspective(1000px) rotateX(17.5deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
            transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}


@keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
  }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
            transform: perspective(1000px) rotateX(-7.5deg);
  }
  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
            transform: perspective(1000px) rotateX(17.5deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
            transform: perspective(1000px) rotateX(-30deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}


@-webkit-keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
  }
  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
            transform: perspective(1000px) rotateY(7.5deg);
  }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
            transform: perspective(1000px) rotateY(-10deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
            transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
            transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
}


@keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
  }
  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
            transform: perspective(1000px) rotateY(7.5deg);
  }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
            transform: perspective(1000px) rotateY(-10deg);
  }
  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
            transform: perspective(1000px) rotateY(30deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
            transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
  }
}


/*******************************
       Static Animations
*******************************/


/*--------------
    Emphasis
---------------*/


.flash.transition {
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-animation-name: flash;
          animation-name: flash;
}


.shake.transition {
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-animation-name: shake;
          animation-name: shake;
}


.bounce.transition {
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-animation-name: bounce;
          animation-name: bounce;
}


.tada.transition {
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-animation-name: tada;
          animation-name: tada;
}


.pulse.transition {
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
  -webkit-animation-name: pulse;
          animation-name: pulse;
}


.jiggle.transition {
  -webkit-animation-duration: 750ms;
          animation-duration: 750ms;
  -webkit-animation-name: jiggle;
          animation-name: jiggle;
}


/* Flash */


@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}


@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}


/* Shake */


@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}


@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}


/* Bounce */


@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}


@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}


/* Tada */


@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}


@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}


/* Pulse */


@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}


@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}


/* Rubberband */


@-webkit-keyframes jiggle {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


@keyframes jiggle {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}


/*******************************
         Site Overrides
*******************************/

/*!
 * # Semantic UI 2.2.12 - Dropdown
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */


/*******************************
            Dropdown
*******************************/


.ui.dropdown {
  cursor: pointer;
  position: relative;
  display: inline-block;
  outline: none;
  text-align: left;
  transition: box-shadow 0.1s ease, width 0.1s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/*******************************
            Content
*******************************/


/*--------------
      Menu
---------------*/


.ui.dropdown .menu {
  cursor: auto;
  position: absolute;
  display: none;
  outline: none;
  top: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0em;
  padding: 0em 0em;
  background: #FFFFFF;
  font-size: 1em;
  text-shadow: none;
  text-align: left;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
  border: 1px solid rgba(34, 36, 38, .15);
  border-radius: 0.28571429rem;
  transition: opacity 0.1s ease;
  z-index: 11;
  will-change: transform, opacity;
}


.ui.dropdown .menu > * {
  white-space: nowrap;
}


/*--------------
  Hidden Input
---------------*/


.ui.dropdown > input:not(.search):first-child,
.ui.dropdown > select {
  display: none !important;
}


/*--------------
 Dropdown Icon
---------------*/


.ui.dropdown > .dropdown.icon {
  position: relative;
  width: auto;
  font-size: 0.85714286em;
  margin: 0em 0em 0em 1em;
}


.ui.dropdown .menu > .item .dropdown.icon {
  width: auto;
  float: right;
  margin: 0em 0em 0em 1em;
}


.ui.dropdown .menu > .item .dropdown.icon + .text {
  margin-right: 1em;
}


/*--------------
      Text
---------------*/


.ui.dropdown > .text {
  display: inline-block;
  transition: none;
}


/*--------------
    Menu Item
---------------*/


.ui.dropdown .menu > .item {
  position: relative;
  cursor: pointer;
  display: block;
  border: none;
  height: auto;
  text-align: left;
  border-top: none;
  line-height: 1em;
  color: rgba(0, 0, 0, .87);
  padding: 12.571px 18.285px !important;
  padding: 0.78571429rem 1.14285714rem !important;
  font-size: 16px;
  font-size: 1rem;
  text-transform: none;
  font-weight: normal;
  box-shadow: none;
  -webkit-touch-callout: none;
}


.ui.dropdown .menu > .item:first-child {
  border-top-width: 0px;
}


/*--------------
  Floated Content
---------------*/


.ui.dropdown > .text > [class*="right floated"],
.ui.dropdown .menu .item > [class*="right floated"] {
  float: right !important;
  margin-right: 0em !important;
  margin-left: 1em !important;
}


.ui.dropdown > .text > [class*="left floated"],
.ui.dropdown .menu .item > [class*="left floated"] {
  float: left !important;
  margin-left: 0em !important;
  margin-right: 1em !important;
}


.ui.dropdown .menu .item > .icon.floated,
.ui.dropdown .menu .item > .flag.floated,
.ui.dropdown .menu .item > .image.floated,
.ui.dropdown .menu .item > img.floated {
  margin-top: 0em;
}


/*--------------
  Menu Divider
---------------*/


.ui.dropdown .menu > .header {
  margin: 16px 0px 12px;
  margin: 1rem 0rem 0.75rem;
  padding: 0em 18.285px;
  padding: 0em 1.14285714rem;
  color: rgba(0, 0, 0, .85);
  font-size: 0.78571429em;
  font-weight: bold;
  text-transform: uppercase;
}


.ui.dropdown .menu > .divider {
  border-top: 1px solid rgba(34, 36, 38, .1);
  height: 0em;
  margin: 0.5em 0em;
}


.ui.dropdown .menu > .input {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 18.285px 12.571px;
  margin: 1.14285714rem 0.78571429rem;
  min-width: 160px;
  min-width: 10rem;
}


.ui.dropdown .menu > .header + .input {
  margin-top: 0em;
}


.ui.dropdown .menu > .input:not(.transparent) input {
  padding: 0.5em 1em;
}


.ui.dropdown .menu > .input:not(.transparent) .button,
.ui.dropdown .menu > .input:not(.transparent) .icon,
.ui.dropdown .menu > .input:not(.transparent) .label {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}


/*-----------------
  Item Description
-------------------*/


.ui.dropdown > .text > .description,
.ui.dropdown .menu > .item > .description {
  float: right;
  margin: 0em 0em 0em 1em;
  color: rgba(0, 0, 0, .4);
}


/*-----------------
       Message
-------------------*/


.ui.dropdown .menu > .message {
  padding: 12.571px 18.285px;
  padding: 0.78571429rem 1.14285714rem;
  font-weight: normal;
}


.ui.dropdown .menu > .message:not(.ui) {
  color: rgba(0, 0, 0, .4);
}


/*--------------
    Sub Menu
---------------*/


.ui.dropdown .menu .menu {
  top: 0% !important;
  left: 100%;
  right: auto;
  margin: 0em 0em 0em -0.5em !important;
  border-radius: 0.28571429rem !important;
  z-index: 21 !important;
}


/* Hide Arrow */


.ui.dropdown .menu .menu:after {
  display: none;
}


/*--------------
   Sub Elements
---------------*/


/* Icons / Flags / Labels / Image */


.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image {
  margin-top: 0em;
}


.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  margin-top: 0em;
}


.ui.dropdown > .text > .icon,
.ui.dropdown > .text > .label,
.ui.dropdown > .text > .flag,
.ui.dropdown > .text > img,
.ui.dropdown > .text > .image,
.ui.dropdown .menu > .item > .icon,
.ui.dropdown .menu > .item > .label,
.ui.dropdown .menu > .item > .flag,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  margin-left: 0em;
  float: none;
  margin-right: 12.571px;
  margin-right: 0.78571429rem;
}


/*--------------
     Image
---------------*/


.ui.dropdown > .text > img,
.ui.dropdown > .text > .image,
.ui.dropdown .menu > .item > .image,
.ui.dropdown .menu > .item > img {
  display: inline-block;
  vertical-align: top;
  width: auto;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  max-height: 2em;
}


/*******************************
            Coupling
*******************************/


/*--------------
      Menu
---------------*/


/* Remove Menu Item Divider */


.ui.dropdown .ui.menu > .item:before,
.ui.menu .ui.dropdown .menu > .item:before {
  display: none;
}


/* Prevent Menu Item Border */


.ui.menu .ui.dropdown .menu .active.item {
  border-left: none;
}


/* Automatically float dropdown menu right on last menu item */


.ui.menu .right.menu .dropdown:last-child .menu,
.ui.menu .right.dropdown.item .menu,
.ui.buttons > .ui.dropdown:last-child .menu {
  left: auto;
  right: 0em;
}


/*--------------
      Label
---------------*/


/* Dropdown Menu */


.ui.label.dropdown .menu {
  min-width: 100%;
}


/*--------------
     Button
---------------*/


/* No Margin On Icon Button */


.ui.dropdown.icon.button > .dropdown.icon {
  margin: 0em;
}


.ui.button.dropdown .menu {
  min-width: 100%;
}


/*******************************
              Types
*******************************/


/*--------------
    Selection
---------------*/


/* Displays like a select box */


.ui.selection.dropdown {
  cursor: pointer;
  word-wrap: break-word;
  line-height: 1em;
  white-space: normal;
  outline: 0;
  -webkit-transform: rotateZ(0deg);
          transform: rotateZ(0deg);
  min-width: 14em;
  min-height: 2.71428571em;
  background: #FFFFFF;
  display: inline-block;
  padding: 0.78571429em 2.1em 0.78571429em 1em;
  color: rgba(0, 0, 0, .87);
  box-shadow: none;
  border: 1px solid rgba(34, 36, 38, .15);
  border-radius: 0.28571429rem;
  transition: box-shadow 0.1s ease, width 0.1s ease;
}


.ui.selection.dropdown.visible,
.ui.selection.dropdown.active {
  z-index: 10;
}


select.ui.dropdown {
  height: 38px;
  padding: 0.5em;
  border: 1px solid rgba(34, 36, 38, .15);
  visibility: visible;
}


.ui.selection.dropdown > .search.icon,
.ui.selection.dropdown > .delete.icon,
.ui.selection.dropdown > .dropdown.icon {
  cursor: pointer;
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1.21428571em;
  top: 0.78571429em;
  right: 1em;
  z-index: 3;
  margin: -0.78571429em;
  padding: 0.91666667em;
  opacity: 0.8;
  transition: opacity 0.1s ease;
}


/* Compact */


.ui.compact.selection.dropdown {
  min-width: 0px;
}


/*  Selection Menu */


.ui.selection.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  border-top-width: 0px !important;
  width: auto;
  outline: none;
  margin: 0px -1px;
  min-width: calc(100% +  2px );
  width: calc(100% +  2px );
  border-radius: 0em 0em 0.28571429rem 0.28571429rem;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
  transition: opacity 0.1s ease;
}


.ui.selection.dropdown .menu:after,
.ui.selection.dropdown .menu:before {
  display: none;
}


/*--------------
    Message
---------------*/


.ui.selection.dropdown .menu > .message {
  padding: 12.571px 18.285px;
  padding: 0.78571429rem 1.14285714rem;
}


@media only screen and (max-width: 767px) {
  .ui.selection.dropdown .menu {
    max-height: 8.01428571rem;
  }
}


@media only screen and (min-width: 768px) {
  .ui.selection.dropdown .menu {
    max-height: 10.68571429rem;
  }
}


@media only screen and (min-width: 992px) {
  .ui.selection.dropdown .menu {
    max-height: 16.02857143rem;
  }
}


@media only screen and (min-width: 1920px) {
  .ui.selection.dropdown .menu {
    max-height: 21.37142857rem;
  }
}


/* Menu Item */


.ui.selection.dropdown .menu > .item {
  border-top: 1px solid #FAFAFA;
  padding: 12.571px 18.285px !important;
  padding: 0.78571429rem 1.14285714rem !important;
  white-space: normal;
  word-wrap: normal;
}


/* User Item */


.ui.selection.dropdown .menu > .hidden.addition.item {
  display: none;
}


/* Hover */


.ui.selection.dropdown:hover {
  border-color: rgba(34, 36, 38, .35);
  box-shadow: none;
}


/* Active */


.ui.selection.active.dropdown {
  border-color: #96C8DA;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
}


.ui.selection.active.dropdown .menu {
  border-color: #96C8DA;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
}


/* Focus */


.ui.selection.dropdown:focus {
  border-color: #96C8DA;
  box-shadow: none;
}


.ui.selection.dropdown:focus .menu {
  border-color: #96C8DA;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
}


/* Visible */


.ui.selection.visible.dropdown > .text:not(.default) {
  font-weight: normal;
  color: rgba(0, 0, 0, .8);
}


/* Visible Hover */


.ui.selection.active.dropdown:hover {
  border-color: #96C8DA;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
}


.ui.selection.active.dropdown:hover .menu {
  border-color: #96C8DA;
  box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, .15);
}


/* Dropdown Icon */


.ui.active.selection.dropdown > .dropdown.icon,
.ui.visible.selection.dropdown > .dropdown.icon {
  opacity: 1;
  z-index: 3;
}


/* Connecting Border */


.ui.active.selection.dropdown {
  border-bottom-left-radius: 0em !important;
  border-bottom-right-radius: 0em !important;
}


/* Empty Connecting Border */


.ui.active.empty.selection.dropdown {
  border-radius: 0.28571429rem !important;
  box-shadow: none !important;
}


.ui.active.empty.selection.dropdown .menu {
  border: none !important;
  box-shadow: none !important;
}


/*--------------
   Searchable
---------------*/


/* Search Selection */


.ui.search.dropdown {
  min-width: '';
}


/* Search Dropdown */


.ui.search.dropdown > input.search {
  background: none transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: text;
  top: 0em;
  left: 1px;
  width: 100%;
  outline: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  padding: inherit;
}


/* Text Layering */


.ui.search.dropdown > input.search {
  position: absolute;
  z-index: 2;
}


.ui.search.dropdown > .text {
  cursor: text;
  position: relative;
  left: 1px;
  z-index: 3;
}


/* Search Selection */


.ui.search.selection.dropdown > input.search {
  line-height: 1.21428571em;
  padding: 0.67857143em 2.1em 0.67857143em 1em;
}


/* Used to size multi select input to character width */


.ui.search.selection.dropdown > span.sizer {
  line-height: 1.21428571em;
  padding: 0.67857143em 2.1em 0.67857143em 1em;
  display: none;
  white-space: pre;
}


/* Active/Visible Search */


.ui.search.dropdown.active > input.search,
.ui.search.dropdown.visible > input.search {
  cursor: auto;
}


.ui.search.dropdown.active > .text,
.ui.search.dropdown.visible > .text {
  pointer-events: none;
}


/* Filtered Text */


.ui.active.search.dropdown input.search:focus + .text .icon,
.ui.active.search.dropdown input.search:focus + .text .flag {
  opacity: 0.45;
}


.ui.active.search.dropdown input.search:focus + .text {
  color: rgba(115, 115, 115, .87) !important;
}


/* Search Menu */


.ui.search.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
}


@media only screen and (max-width: 767px) {
  .ui.search.dropdown .menu {
    max-height: 8.01428571rem;
  }
}


@media only screen and (min-width: 768px) {
  .ui.search.dropdown .menu {
    max-height: 10.68571429rem;
  }
}


@media only screen and (min-width: 992px) {
  .ui.search.dropdown .menu {
    max-height: 16.02857143rem;
  }
}


@media only screen and (min-width: 1920px) {
  .ui.search.dropdown .menu {
    max-height: 21.37142857rem;
  }
}


/*--------------
    Multiple
---------------*/


/* Multiple Selection */


.ui.multiple.dropdown {
  padding: 0.22619048em 2.1em 0.22619048em 0.35714286em;
}


.ui.multiple.dropdown .menu {
  cursor: auto;
}


/* Multiple Search Selection */


.ui.multiple.search.dropdown,
.ui.multiple.search.dropdown > input.search {
  cursor: text;
}


/* Selection Label */


.ui.multiple.dropdown > .label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  font-size: 1em;
  padding: 0.35714286em 0.78571429em;
  margin: 2.285px 4.571px 2.285px 0em;
  margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em;
  box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, .15) inset;
}


/* Dropdown Icon */


.ui.multiple.dropdown .dropdown.icon {
  margin: '';
  padding: '';
}


/* Text */


.ui.multiple.dropdown > .text {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  line-height: 1.21428571em;
}


.ui.multiple.dropdown > .label ~ input.search {
  margin-left: 0.14285714em !important;
}


.ui.multiple.dropdown > .label ~ .text {
  display: none;
}


/*-----------------
  Multiple Search
-----------------*/


/* Prompt Text */


.ui.multiple.search.dropdown > .text {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: inherit;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  line-height: 1.21428571em;
}


.ui.multiple.search.dropdown > .label ~ .text {
  display: none;
}


/* Search */


.ui.multiple.search.dropdown > input.search {
  position: static;
  padding: 0;
  max-width: 100%;
  margin: 0.45238095em 0em 0.45238095em 0.64285714em;
  width: 2.2em;
  line-height: 1.21428571em;
}


/*--------------
     Inline
---------------*/


.ui.inline.dropdown {
  cursor: pointer;
  display: inline-block;
  color: inherit;
}


.ui.inline.dropdown .dropdown.icon {
  margin: 0em 0.5em 0em 0.21428571em;
  vertical-align: baseline;
}


.ui.inline.dropdown > .text {
  font-weight: bold;
}


.ui.inline.dropdown .menu {
  cursor: auto;
  margin-top: 0.21428571em;
  border-radius: 0.28571429rem;
}


/*******************************
            States
*******************************/


/*--------------------
        Active
----------------------*/


/* Menu Item Active */


.ui.dropdown .menu .active.item {
  background: transparent;
  font-weight: bold;
  color: rgba(0, 0, 0, .95);
  box-shadow: none;
  z-index: 12;
}


/*--------------------
        Hover
----------------------*/


/* Menu Item Hover */


.ui.dropdown .menu > .item:hover {
  background: rgba(0, 0, 0, .05);
  color: rgba(0, 0, 0, .95);
  z-index: 13;
}


/*--------------------
       Loading
---------------------*/


.ui.loading.dropdown > i.icon {
  height: 1em !important;
}


.ui.loading.selection.dropdown > i.icon {
  padding: 1.5em 1.28571429em !important;
}


.ui.loading.dropdown > i.icon:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  border-radius: 500rem;
  border: 0.2em solid rgba(0, 0, 0, .1);
}


.ui.loading.dropdown > i.icon:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  box-shadow: 0px 0px 0px 1px transparent;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  -webkit-animation: dropdown-spin 0.6s linear;
          animation: dropdown-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #767676 transparent transparent;
  border-style: solid;
  border-width: 0.2em;
}


/* Coupling */


.ui.loading.dropdown.button > i.icon:before,
.ui.loading.dropdown.button > i.icon:after {
  display: none;
}


@-webkit-keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


@keyframes dropdown-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


/*--------------------
     Default Text
----------------------*/


.ui.dropdown:not(.button) > .default.text,
.ui.default.dropdown:not(.button) > .text {
  color: rgba(191, 191, 191, .87);
}


.ui.dropdown:not(.button) > input:focus ~ .default.text,
.ui.default.dropdown:not(.button) > input:focus ~ .text {
  color: rgba(115, 115, 115, .87);
}


/*--------------------
        Loading
----------------------*/


.ui.loading.dropdown > .text {
  transition: none;
}


/* Used To Check Position */


.ui.dropdown .loading.menu {
  display: block;
  visibility: hidden;
  z-index: -1;
}


.ui.dropdown > .loading.menu {
  left: 0px !important;
  right: auto !important;
}


.ui.dropdown > .menu .loading.menu {
  left: 100% !important;
  right: auto !important;
}


/*--------------------
    Keyboard Select
----------------------*/


/* Selected Item */


.ui.dropdown.selected,
.ui.dropdown .menu .selected.item {
  background: rgba(0, 0, 0, .03);
  color: rgba(0, 0, 0, .95);
}


/*--------------------
    Search Filtered
----------------------*/


/* Filtered Item */


.ui.dropdown > .filtered.text {
  visibility: hidden;
}


.ui.dropdown .filtered.item {
  display: none !important;
}


/*--------------------
        Error
----------------------*/


.ui.dropdown.error,
.ui.dropdown.error > .text,
.ui.dropdown.error > .default.text {
  color: #9F3A38;
}


.ui.selection.dropdown.error {
  background: #FFF6F6;
  border-color: #E0B4B4;
}


.ui.selection.dropdown.error:hover {
  border-color: #E0B4B4;
}


.ui.dropdown.error > .menu,
.ui.dropdown.error > .menu .menu {
  border-color: #E0B4B4;
}


.ui.dropdown.error > .menu > .item {
  color: #9F3A38;
}


.ui.multiple.selection.error.dropdown > .label {
  border-color: #E0B4B4;
}


/* Item Hover */


.ui.dropdown.error > .menu > .item:hover {
  background-color: #FFF2F2;
}


/* Item Active */


.ui.dropdown.error > .menu .active.item {
  background-color: #FDCFCF;
}


/*--------------------
        Disabled
----------------------*/


/* Disabled */


.ui.disabled.dropdown,
.ui.dropdown .menu > .disabled.item {
  cursor: default;
  pointer-events: none;
  opacity: 0.45;
}


/*******************************
           Variations
*******************************/


/*--------------
    Direction
---------------*/


/* Flyout Direction */


.ui.dropdown .menu {
  left: 0px;
}


/* Default Side (Right) */


.ui.dropdown .right.menu > .menu,
.ui.dropdown .menu .right.menu {
  left: 100% !important;
  right: auto !important;
  border-radius: 0.28571429rem !important;
}


/* Leftward Opening Menu */


.ui.dropdown > .left.menu {
  left: auto !important;
  right: 0px !important;
}


.ui.dropdown > .left.menu .menu,
.ui.dropdown .menu .left.menu {
  left: auto;
  right: 100%;
  margin: 0em -0.5em 0em 0em !important;
  border-radius: 0.28571429rem !important;
}


.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0em 0em 0em 0em;
}


.ui.dropdown .item .left.dropdown.icon,
.ui.dropdown .left.menu .item .dropdown.icon {
  width: auto;
  float: left;
  margin: 0em 0em 0em 0em;
}


.ui.dropdown .item .left.dropdown.icon + .text,
.ui.dropdown .left.menu .item .dropdown.icon + .text {
  margin-left: 1em;
  margin-right: 0em;
}


/*--------------
     Upward
---------------*/


/* Upward Main Menu */


.ui.upward.dropdown > .menu {
  top: auto;
  bottom: 100%;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .08);
  border-radius: 0.28571429rem 0.28571429rem 0em 0em;
}


/* Upward Sub Menu */


.ui.dropdown .upward.menu {
  top: auto !important;
  bottom: 0 !important;
}


/* Active Upward */


.ui.simple.upward.active.dropdown,
.ui.simple.upward.dropdown:hover {
  border-radius: 0.28571429rem 0.28571429rem 0em 0em !important;
}


.ui.upward.dropdown.button:not(.pointing):not(.floating).active {
  border-radius: 0.28571429rem 0.28571429rem 0em 0em;
}


/* Selection */


.ui.upward.selection.dropdown .menu {
  border-top-width: 1px !important;
  border-bottom-width: 0px !important;
  box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, .08);
}


.ui.upward.selection.dropdown:hover {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, .05);
}


/* Active Upward */


.ui.active.upward.selection.dropdown {
  border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
}


/* Visible Upward */


.ui.upward.selection.dropdown.visible {
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .08);
  border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
}


/* Visible Hover Upward */


.ui.upward.active.selection.dropdown:hover {
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .05);
}


.ui.upward.active.selection.dropdown:hover .menu {
  box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, .08);
}


/*--------------
     Simple
---------------*/


/*  Selection Menu */


.ui.scrolling.dropdown .menu,
.ui.dropdown .scrolling.menu {
  overflow-x: hidden;
  overflow-y: auto;
}


.ui.scrolling.dropdown .menu {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  min-width: 100% !important;
  width: auto !important;
}


.ui.dropdown .scrolling.menu {
  position: static;
  overflow-y: auto;
  border: none;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  min-width: 100% !important;
  width: auto !important;
  border-top: 1px solid rgba(34, 36, 38, .15);
}


.ui.scrolling.dropdown .menu .item.item.item,
.ui.dropdown .scrolling.menu > .item.item.item {
  border-top: none;
}


.ui.scrolling.dropdown .menu .item:first-child,
.ui.dropdown .scrolling.menu .item:first-child {
  border-top: none;
}


.ui.dropdown > .animating.menu .scrolling.menu,
.ui.dropdown > .visible.menu .scrolling.menu {
  display: block;
}


/* Scrollbar in IE */


@media all and (-ms-high-contrast: none) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    min-width: calc(100% -  17px );
  }
}


@media only screen and (max-width: 767px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 10.28571429rem;
  }
}


@media only screen and (min-width: 768px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 15.42857143rem;
  }
}


@media only screen and (min-width: 992px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 20.57142857rem;
  }
}


@media only screen and (min-width: 1920px) {
  .ui.scrolling.dropdown .menu,
  .ui.dropdown .scrolling.menu {
    max-height: 20.57142857rem;
  }
}


/*--------------
     Simple
---------------*/


/* Displays without javascript */


.ui.simple.dropdown .menu:before,
.ui.simple.dropdown .menu:after {
  display: none;
}


.ui.simple.dropdown .menu {
  position: absolute;
  display: block;
  overflow: hidden;
  top: -9999px !important;
  opacity: 0;
  width: 0;
  height: 0;
  transition: opacity 0.1s ease;
}


.ui.simple.active.dropdown,
.ui.simple.dropdown:hover {
  border-bottom-left-radius: 0em !important;
  border-bottom-right-radius: 0em !important;
}


.ui.simple.active.dropdown > .menu,
.ui.simple.dropdown:hover > .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 100% !important;
  opacity: 1;
}


.ui.simple.dropdown > .menu > .item:active > .menu,
.ui.simple.dropdown:hover > .menu > .item:hover > .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 0% !important;
  left: 100% !important;
  opacity: 1;
}


.ui.simple.disabled.dropdown:hover .menu {
  display: none;
  height: 0px;
  width: 0px;
  overflow: hidden;
}


/* Visible */


.ui.simple.visible.dropdown > .menu {
  display: block;
}


/*--------------
      Fluid
---------------*/


.ui.fluid.dropdown {
  display: block;
  width: 100%;
  min-width: 0em;
}


.ui.fluid.dropdown > .dropdown.icon {
  float: right;
}


/*--------------
    Floating
---------------*/


.ui.floating.dropdown .menu {
  left: 0;
  right: auto;
  box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, .12), 0px 2px 10px 0px rgba(34, 36, 38, .15) !important;
  border-radius: 0.28571429rem !important;
}


.ui.floating.dropdown > .menu {
  margin-top: 0.5em !important;
  border-radius: 0.28571429rem !important;
}


/*--------------
     Pointing
---------------*/


.ui.pointing.dropdown > .menu {
  top: 100%;
  margin-top: 12.571px;
  margin-top: 0.78571429rem;
  border-radius: 0.28571429rem;
}


.ui.pointing.dropdown > .menu:after {
  display: block;
  position: absolute;
  pointer-events: none;
  content: '';
  visibility: visible;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, .15);
  background: #FFFFFF;
  z-index: 2;
}


.ui.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: 50%;
  margin: 0em 0em 0em -0.25em;
}


/* Top Left Pointing */


.ui.top.left.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 1em 0em 0em;
}


.ui.top.left.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 1em 0em 0em;
}


.ui.top.left.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: 1em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}


/* Top Right Pointing */


.ui.top.right.pointing.dropdown > .menu {
  top: 100%;
  bottom: auto;
  right: 0%;
  left: auto;
  margin: 1em 0em 0em;
}


.ui.top.pointing.dropdown > .left.menu:after,
.ui.top.right.pointing.dropdown > .menu:after {
  top: -0.25em;
  left: auto !important;
  right: 1em !important;
  margin: 0em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}


/* Left Pointing */


.ui.left.pointing.dropdown > .menu {
  top: 0%;
  left: 100%;
  right: auto;
  margin: 0em 0em 0em 1em;
}


.ui.left.pointing.dropdown > .menu:after {
  top: 1em;
  left: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}


.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu {
  left: auto !important;
  right: 100% !important;
  margin: 0em 1em 0em 0em;
}


.ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after {
  top: 1em;
  left: auto;
  right: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}


/* Right Pointing */


.ui.right.pointing.dropdown > .menu {
  top: 0%;
  left: auto;
  right: 100%;
  margin: 0em 1em 0em 0em;
}


.ui.right.pointing.dropdown > .menu:after {
  top: 1em;
  left: auto;
  right: -0.25em;
  margin: 0em 0em 0em 0em;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}


/* Bottom Pointing */


.ui.bottom.pointing.dropdown > .menu {
  top: auto;
  bottom: 100%;
  left: 0%;
  right: auto;
  margin: 0em 0em 1em;
}


.ui.bottom.pointing.dropdown > .menu:after {
  top: auto;
  bottom: -0.25em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}


/* Reverse Sub-Menu Direction */


.ui.bottom.pointing.dropdown > .menu .menu {
  top: auto !important;
  bottom: 0px !important;
}


/* Bottom Left */


.ui.bottom.left.pointing.dropdown > .menu {
  left: 0%;
  right: auto;
}


.ui.bottom.left.pointing.dropdown > .menu:after {
  left: 1em;
  right: auto;
}


/* Bottom Right */


.ui.bottom.right.pointing.dropdown > .menu {
  right: 0%;
  left: auto;
}


.ui.bottom.right.pointing.dropdown > .menu:after {
  left: auto;
  right: 1em;
}


/* Upward pointing */


.ui.pointing.upward.dropdown .menu,
.ui.top.pointing.upward.dropdown .menu {
  top: auto !important;
  bottom: 100% !important;
  margin: 0em 0em 12.571px;
  margin: 0em 0em 0.78571429rem;
  border-radius: 0.28571429rem;
}


.ui.pointing.upward.dropdown .menu:after,
.ui.top.pointing.upward.dropdown .menu:after {
  top: 100% !important;
  bottom: auto !important;
  box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, .15);
  margin: -0.25em 0em 0em;
}


/* Right Pointing Upward */


.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 1em 0em 0em;
}


.ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 0em 1em 0em;
  box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, .15);
}


/* Left Pointing Upward */


.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 0em 0em 1em;
}


.ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
  top: auto !important;
  bottom: 0 !important;
  margin: 0em 0em 1em 0em;
  box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, .15);
}


/*******************************
         Theme Overrides
*******************************/


/* Dropdown Carets */


@font-face {
  font-family: 'Dropdown';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
  font-weight: normal;
  font-style: normal;
}


.ui.dropdown > .dropdown.icon {
  font-family: 'Dropdown';
  line-height: 1;
  height: 1em;
  width: 1.23em;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  font-weight: normal;
  font-style: normal;
  text-align: center;
}


.ui.dropdown > .dropdown.icon {
  width: auto;
}


.ui.dropdown > .dropdown.icon:before {
  content: '\F0D7';
}


/* Sub Menu */


.ui.dropdown .menu .item .dropdown.icon:before {
  content: '\F0DA' ;
}


.ui.dropdown .item .left.dropdown.icon:before,
.ui.dropdown .left.menu .item .dropdown.icon:before {
  content: "\F0D9" ;
}


/* Vertical Menu Dropdown */


.ui.vertical.menu .dropdown.item > .dropdown.icon:before {
  content: "\F0DA" ;
}


/* Icons for Reference
.dropdown.down.icon {
  content: "\f0d7";
}
.dropdown.up.icon {
  content: "\f0d8";
}
.dropdown.left.icon {
  content: "\f0d9";
}
.dropdown.icon.icon {
  content: "\f0da";
}
*/


/*******************************
        User Overrides
*******************************/

/* perfect-scrollbar v0.7.1 */
.ps {
  -ms-touch-action: auto;
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none; }
@supports (-ms-overflow-style: none) {
    .ps {
      overflow: auto !important; } }
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps {
      overflow: auto !important; } }
.ps.ps--active-x > .ps__scrollbar-x-rail,
  .ps.ps--active-y > .ps__scrollbar-y-rail {
    display: block;
    background-color: transparent; }
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9; }
.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
      background-color: #999;
      height: 11px; }
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
    background-color: #eee;
    opacity: 0.9; }
.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
      background-color: #999;
      width: 11px; }
.ps > .ps__scrollbar-x-rail {
    display: none;
    position: absolute;
    /* please don't change 'position' */
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    bottom: 0px;
    /* there must be 'bottom' for ps__scrollbar-x-rail */
    height: 15px; }
.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
      position: absolute;
      /* please don't change 'position' */
      background-color: #aaa;
      border-radius: 6px;
      transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
      bottom: 2px;
      /* there must be 'bottom' for ps__scrollbar-x */
      height: 6px; }
.ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x, .ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x {
      height: 11px; }
.ps > .ps__scrollbar-y-rail {
    display: none;
    position: absolute;
    /* please don't change 'position' */
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    right: 0;
    /* there must be 'right' for ps__scrollbar-y-rail */
    width: 15px; }
.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
      position: absolute;
      /* please don't change 'position' */
      background-color: #aaa;
      border-radius: 6px;
      transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
      right: 2px;
      /* there must be 'right' for ps__scrollbar-y */
      width: 6px; }
.ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y {
      width: 11px; }
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9; }
.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
      background-color: #999;
      height: 11px; }
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
    background-color: #eee;
    opacity: 0.9; }
.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
      background-color: #999;
      width: 11px; }
.ps:hover > .ps__scrollbar-x-rail,
  .ps:hover > .ps__scrollbar-y-rail {
    opacity: 0.6; }
.ps:hover > .ps__scrollbar-x-rail:hover {
    background-color: #eee;
    opacity: 0.9; }
.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
      background-color: #999; }
.ps:hover > .ps__scrollbar-y-rail:hover {
    background-color: #eee;
    opacity: 0.9; }
.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
      background-color: #999; }
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    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);
            transform: translate3d(0, 0, 0);
}
.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.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;
}
/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */

/**
 * Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* MEDIA QUERIES */

/*=================*/

:root {
  /*--primary-font: 'pt_sansregular';
  --primary-font-bold: 'pt_sansbold';
  --secondary-font: 'open_sansregular';
  --secondary-font-bold: 'open_sansbold';
  --primary-font: 'LatoWeb', Arial, Helvetica, sans-serif;
  --primary-font-bold: 'LatoWeb', Arial, Helvetica, sans-serif;*/
}

/*!
 * # Semantic UI 2.2.10 - Grid
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */

/*******************************
            Standard
*******************************/

.ui.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0em;
}

/*----------------------
      Remove Gutters
-----------------------*/

.ui.grid {
  margin-top: -16px;
  margin-top: -1rem;
  margin-bottom: -16px;
  margin-bottom: -1rem;
  margin-left: -16px;
  margin-left: -1rem;
  margin-right: -16px;
  margin-right: -1rem;
}

.ui.relaxed.grid {
  margin-left: -24px;
  margin-left: -1.5rem;
  margin-right: -24px;
  margin-right: -1.5rem;
}

.ui[class*="very relaxed"].grid {
  margin-left: -40px;
  margin-left: -2.5rem;
  margin-right: -40px;
  margin-right: -2.5rem;
}

/* Preserve Rows Spacing on Consecutive Grids */

.ui.grid + .grid {
  margin-top: 16px;
  margin-top: 1rem;
}

/*-------------------
       Columns
--------------------*/

/* Standard 16 column */

.ui.grid > .column:not(.row),
.ui.grid > .row > .column {
  position: relative;
  display: inline-block;
  width: 6.25%;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  vertical-align: top;
}

.ui.grid > * {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

/*-------------------
        Rows
--------------------*/

.ui.grid > .row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: inherit;
      -ms-flex-pack: inherit;
          justify-content: inherit;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100% !important;
  padding: 0px;
  padding: 0rem;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

/*-------------------
       Columns
--------------------*/

/* Vertical padding when no rows */

.ui.grid > .column:not(.row) {
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.ui.grid > .row > .column {
  margin-top: 0em;
  margin-bottom: 0em;
}

/*-------------------
      Content
--------------------*/

.ui.grid > .row > img,
.ui.grid > .row > .column > img {
  max-width: 100%;
}

/*-------------------
    Loose Coupling
--------------------*/

/* Collapse Margin on Consecutive Grid */

.ui.grid > .ui.grid:first-child {
  margin-top: 0em;
}

.ui.grid > .ui.grid:last-child {
  margin-bottom: 0em;
}

/* Segment inside Aligned Grid */

.ui.grid .aligned.row > .column > .segment:not(.compact):not(.attached),
.ui.aligned.grid .column > .segment:not(.compact):not(.attached) {
  width: 100%;
}

/* Align Dividers with Gutter */

.ui.grid .row + .ui.divider {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 16px 16px;
  margin: 1rem 1rem;
}

.ui.grid .column + .ui.vertical.divider {
  height: calc(50% -  1rem );
}

/* Remove Border on Last Horizontal Segment */

.ui.grid > .row > .column:last-child > .horizontal.segment,
.ui.grid > .column:last-child > .horizontal.segment {
  box-shadow: none;
}

/*******************************
           Variations
*******************************/

/*-----------------------
       Page Grid
-------------------------*/

@media only screen and (max-width: 767px) {
  .ui.page.grid {
    width: auto;
    padding-left: 0em;
    padding-right: 0em;
    margin-left: 0em;
    margin-right: 0em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ui.page.grid {
    width: auto;
    margin-left: 0em;
    margin-right: 0em;
    padding-left: 2em;
    padding-right: 2em;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ui.page.grid {
    width: auto;
    margin-left: 0em;
    margin-right: 0em;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .ui.page.grid {
    width: auto;
    margin-left: 0em;
    margin-right: 0em;
    padding-left: 15%;
    padding-right: 15%;
  }
}

@media only screen and (min-width: 1920px) {
  .ui.page.grid {
    width: auto;
    margin-left: 0em;
    margin-right: 0em;
    padding-left: 23%;
    padding-right: 23%;
  }
}

/*-------------------
     Column Count
--------------------*/

/* Assume full width with one column */

.ui.grid > .column:only-child,
.ui.grid > .row > .column:only-child {
  width: 100%;
}

/* Grid Based */

.ui[class*="one column"].grid > .row > .column,
.ui[class*="one column"].grid > .column:not(.row) {
  width: 100%;
}

.ui[class*="two column"].grid > .row > .column,
.ui[class*="two column"].grid > .column:not(.row) {
  width: 50%;
}

.ui[class*="three column"].grid > .row > .column,
.ui[class*="three column"].grid > .column:not(.row) {
  width: 33.33333333%;
}

.ui[class*="four column"].grid > .row > .column,
.ui[class*="four column"].grid > .column:not(.row) {
  width: 25%;
}

.ui[class*="five column"].grid > .row > .column,
.ui[class*="five column"].grid > .column:not(.row) {
  width: 20%;
}

.ui[class*="six column"].grid > .row > .column,
.ui[class*="six column"].grid > .column:not(.row) {
  width: 16.66666667%;
}

.ui[class*="seven column"].grid > .row > .column,
.ui[class*="seven column"].grid > .column:not(.row) {
  width: 14.28571429%;
}

.ui[class*="eight column"].grid > .row > .column,
.ui[class*="eight column"].grid > .column:not(.row) {
  width: 12.5%;
}

.ui[class*="nine column"].grid > .row > .column,
.ui[class*="nine column"].grid > .column:not(.row) {
  width: 11.11111111%;
}

.ui[class*="ten column"].grid > .row > .column,
.ui[class*="ten column"].grid > .column:not(.row) {
  width: 10%;
}

.ui[class*="eleven column"].grid > .row > .column,
.ui[class*="eleven column"].grid > .column:not(.row) {
  width: 9.09090909%;
}

.ui[class*="twelve column"].grid > .row > .column,
.ui[class*="twelve column"].grid > .column:not(.row) {
  width: 8.33333333%;
}

.ui[class*="thirteen column"].grid > .row > .column,
.ui[class*="thirteen column"].grid > .column:not(.row) {
  width: 7.69230769%;
}

.ui[class*="fourteen column"].grid > .row > .column,
.ui[class*="fourteen column"].grid > .column:not(.row) {
  width: 7.14285714%;
}

.ui[class*="fifteen column"].grid > .row > .column,
.ui[class*="fifteen column"].grid > .column:not(.row) {
  width: 6.66666667%;
}

.ui[class*="sixteen column"].grid > .row > .column,
.ui[class*="sixteen column"].grid > .column:not(.row) {
  width: 6.25%;
}

/* Row Based Overrides */

.ui.grid > [class*="one column"].row > .column {
  width: 100% !important;
}

.ui.grid > [class*="two column"].row > .column {
  width: 50% !important;
}

.ui.grid > [class*="three column"].row > .column {
  width: 33.33333333% !important;
}

.ui.grid > [class*="four column"].row > .column {
  width: 25% !important;
}

.ui.grid > [class*="five column"].row > .column {
  width: 20% !important;
}

.ui.grid > [class*="six column"].row > .column {
  width: 16.66666667% !important;
}

.ui.grid > [class*="seven column"].row > .column {
  width: 14.28571429% !important;
}

.ui.grid > [class*="eight column"].row > .column {
  width: 12.5% !important;
}

.ui.grid > [class*="nine column"].row > .column {
  width: 11.11111111% !important;
}

.ui.grid > [class*="ten column"].row > .column {
  width: 10% !important;
}

.ui.grid > [class*="eleven column"].row > .column {
  width: 9.09090909% !important;
}

.ui.grid > [class*="twelve column"].row > .column {
  width: 8.33333333% !important;
}

.ui.grid > [class*="thirteen column"].row > .column {
  width: 7.69230769% !important;
}

.ui.grid > [class*="fourteen column"].row > .column {
  width: 7.14285714% !important;
}

.ui.grid > [class*="fifteen column"].row > .column {
  width: 6.66666667% !important;
}

.ui.grid > [class*="sixteen column"].row > .column {
  width: 6.25% !important;
}

/* Celled Page */

.ui.celled.page.grid {
  box-shadow: none;
}

/*-------------------
    Column Width
--------------------*/

/* Sizing Combinations */

.ui.grid > .row > [class*="one wide"].column,
.ui.grid > .column.row > [class*="one wide"].column,
.ui.grid > [class*="one wide"].column,
.ui.column.grid > [class*="one wide"].column {
  width: 6.25% !important;
}

.ui.grid > .row > [class*="two wide"].column,
.ui.grid > .column.row > [class*="two wide"].column,
.ui.grid > [class*="two wide"].column,
.ui.column.grid > [class*="two wide"].column {
  width: 12.5% !important;
}

.ui.grid > .row > [class*="three wide"].column,
.ui.grid > .column.row > [class*="three wide"].column,
.ui.grid > [class*="three wide"].column,
.ui.column.grid > [class*="three wide"].column {
  width: 18.75% !important;
}

.ui.grid > .row > [class*="four wide"].column,
.ui.grid > .column.row > [class*="four wide"].column,
.ui.grid > [class*="four wide"].column,
.ui.column.grid > [class*="four wide"].column {
  width: 25% !important;
}

.ui.grid > .row > [class*="five wide"].column,
.ui.grid > .column.row > [class*="five wide"].column,
.ui.grid > [class*="five wide"].column,
.ui.column.grid > [class*="five wide"].column {
  width: 31.25% !important;
}

.ui.grid > .row > [class*="six wide"].column,
.ui.grid > .column.row > [class*="six wide"].column,
.ui.grid > [class*="six wide"].column,
.ui.column.grid > [class*="six wide"].column {
  width: 37.5% !important;
}

.ui.grid > .row > [class*="seven wide"].column,
.ui.grid > .column.row > [class*="seven wide"].column,
.ui.grid > [class*="seven wide"].column,
.ui.column.grid > [class*="seven wide"].column {
  width: 43.75% !important;
}

.ui.grid > .row > [class*="eight wide"].column,
.ui.grid > .column.row > [class*="eight wide"].column,
.ui.grid > [class*="eight wide"].column,
.ui.column.grid > [class*="eight wide"].column {
  width: 50% !important;
}

.ui.grid > .row > [class*="nine wide"].column,
.ui.grid > .column.row > [class*="nine wide"].column,
.ui.grid > [class*="nine wide"].column,
.ui.column.grid > [class*="nine wide"].column {
  width: 56.25% !important;
}

.ui.grid > .row > [class*="ten wide"].column,
.ui.grid > .column.row > [class*="ten wide"].column,
.ui.grid > [class*="ten wide"].column,
.ui.column.grid > [class*="ten wide"].column {
  width: 62.5% !important;
}

.ui.grid > .row > [class*="eleven wide"].column,
.ui.grid > .column.row > [class*="eleven wide"].column,
.ui.grid > [class*="eleven wide"].column,
.ui.column.grid > [class*="eleven wide"].column {
  width: 68.75% !important;
}

.ui.grid > .row > [class*="twelve wide"].column,
.ui.grid > .column.row > [class*="twelve wide"].column,
.ui.grid > [class*="twelve wide"].column,
.ui.column.grid > [class*="twelve wide"].column {
  width: 75% !important;
}

.ui.grid > .row > [class*="thirteen wide"].column,
.ui.grid > .column.row > [class*="thirteen wide"].column,
.ui.grid > [class*="thirteen wide"].column,
.ui.column.grid > [class*="thirteen wide"].column {
  width: 81.25% !important;
}

.ui.grid > .row > [class*="fourteen wide"].column,
.ui.grid > .column.row > [class*="fourteen wide"].column,
.ui.grid > [class*="fourteen wide"].column,
.ui.column.grid > [class*="fourteen wide"].column {
  width: 87.5% !important;
}

.ui.grid > .row > [class*="fifteen wide"].column,
.ui.grid > .column.row > [class*="fifteen wide"].column,
.ui.grid > [class*="fifteen wide"].column,
.ui.column.grid > [class*="fifteen wide"].column {
  width: 93.75% !important;
}

.ui.grid > .row > [class*="sixteen wide"].column,
.ui.grid > .column.row > [class*="sixteen wide"].column,
.ui.grid > [class*="sixteen wide"].column,
.ui.column.grid > [class*="sixteen wide"].column {
  width: 100% !important;
}

/*----------------------
    Width per Device
-----------------------*/

/* Mobile Sizing Combinations */

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .ui.grid > .row > [class*="one wide mobile"].column,
  .ui.grid > .column.row > [class*="one wide mobile"].column,
  .ui.grid > [class*="one wide mobile"].column,
  .ui.column.grid > [class*="one wide mobile"].column {
    width: 6.25% !important;
  }
  .ui.grid > .row > [class*="two wide mobile"].column,
  .ui.grid > .column.row > [class*="two wide mobile"].column,
  .ui.grid > [class*="two wide mobile"].column,
  .ui.column.grid > [class*="two wide mobile"].column {
    width: 12.5% !important;
  }
  .ui.grid > .row > [class*="three wide mobile"].column,
  .ui.grid > .column.row > [class*="three wide mobile"].column,
  .ui.grid > [class*="three wide mobile"].column,
  .ui.column.grid > [class*="three wide mobile"].column {
    width: 18.75% !important;
  }
  .ui.grid > .row > [class*="four wide mobile"].column,
  .ui.grid > .column.row > [class*="four wide mobile"].column,
  .ui.grid > [class*="four wide mobile"].column,
  .ui.column.grid > [class*="four wide mobile"].column {
    width: 25% !important;
  }
  .ui.grid > .row > [class*="five wide mobile"].column,
  .ui.grid > .column.row > [class*="five wide mobile"].column,
  .ui.grid > [class*="five wide mobile"].column,
  .ui.column.grid > [class*="five wide mobile"].column {
    width: 31.25% !important;
  }
  .ui.grid > .row > [class*="six wide mobile"].column,
  .ui.grid > .column.row > [class*="six wide mobile"].column,
  .ui.grid > [class*="six wide mobile"].column,
  .ui.column.grid > [class*="six wide mobile"].column {
    width: 37.5% !important;
  }
  .ui.grid > .row > [class*="seven wide mobile"].column,
  .ui.grid > .column.row > [class*="seven wide mobile"].column,
  .ui.grid > [class*="seven wide mobile"].column,
  .ui.column.grid > [class*="seven wide mobile"].column {
    width: 43.75% !important;
  }
  .ui.grid > .row > [class*="eight wide mobile"].column,
  .ui.grid > .column.row > [class*="eight wide mobile"].column,
  .ui.grid > [class*="eight wide mobile"].column,
  .ui.column.grid > [class*="eight wide mobile"].column {
    width: 50% !important;
  }
  .ui.grid > .row > [class*="nine wide mobile"].column,
  .ui.grid > .column.row > [class*="nine wide mobile"].column,
  .ui.grid > [class*="nine wide mobile"].column,
  .ui.column.grid > [class*="nine wide mobile"].column {
    width: 56.25% !important;
  }
  .ui.grid > .row > [class*="ten wide mobile"].column,
  .ui.grid > .column.row > [class*="ten wide mobile"].column,
  .ui.grid > [class*="ten wide mobile"].column,
  .ui.column.grid > [class*="ten wide mobile"].column {
    width: 62.5% !important;
  }
  .ui.grid > .row > [class*="eleven wide mobile"].column,
  .ui.grid > .column.row > [class*="eleven wide mobile"].column,
  .ui.grid > [class*="eleven wide mobile"].column,
  .ui.column.grid > [class*="eleven wide mobile"].column {
    width: 68.75% !important;
  }
  .ui.grid > .row > [class*="twelve wide mobile"].column,
  .ui.grid > .column.row > [class*="twelve wide mobile"].column,
  .ui.grid > [class*="twelve wide mobile"].column,
  .ui.column.grid > [class*="twelve wide mobile"].column {
    width: 75% !important;
  }
  .ui.grid > .row > [class*="thirteen wide mobile"].column,
  .ui.grid > .column.row > [class*="thirteen wide mobile"].column,
  .ui.grid > [class*="thirteen wide mobile"].column,
  .ui.column.grid > [class*="thirteen wide mobile"].column {
    width: 81.25% !important;
  }
  .ui.grid > .row > [class*="fourteen wide mobile"].column,
  .ui.grid > .column.row > [class*="fourteen wide mobile"].column,
  .ui.grid > [class*="fourteen wide mobile"].column,
  .ui.column.grid > [class*="fourteen wide mobile"].column {
    width: 87.5% !important;
  }
  .ui.grid > .row > [class*="fifteen wide mobile"].column,
  .ui.grid > .column.row > [class*="fifteen wide mobile"].column,
  .ui.grid > [class*="fifteen wide mobile"].column,
  .ui.column.grid > [class*="fifteen wide mobile"].column {
    width: 93.75% !important;
  }
  .ui.grid > .row > [class*="sixteen wide mobile"].column,
  .ui.grid > .column.row > [class*="sixteen wide mobile"].column,
  .ui.grid > [class*="sixteen wide mobile"].column,
  .ui.column.grid > [class*="sixteen wide mobile"].column {
    width: 100% !important;
  }
}

/* Tablet Sizing Combinations */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ui.grid > .row > [class*="one wide tablet"].column,
  .ui.grid > .column.row > [class*="one wide tablet"].column,
  .ui.grid > [class*="one wide tablet"].column,
  .ui.column.grid > [class*="one wide tablet"].column {
    width: 6.25% !important;
  }
  .ui.grid > .row > [class*="two wide tablet"].column,
  .ui.grid > .column.row > [class*="two wide tablet"].column,
  .ui.grid > [class*="two wide tablet"].column,
  .ui.column.grid > [class*="two wide tablet"].column {
    width: 12.5% !important;
  }
  .ui.grid > .row > [class*="three wide tablet"].column,
  .ui.grid > .column.row > [class*="three wide tablet"].column,
  .ui.grid > [class*="three wide tablet"].column,
  .ui.column.grid > [class*="three wide tablet"].column {
    width: 18.75% !important;
  }
  .ui.grid > .row > [class*="four wide tablet"].column,
  .ui.grid > .column.row > [class*="four wide tablet"].column,
  .ui.grid > [class*="four wide tablet"].column,
  .ui.column.grid > [class*="four wide tablet"].column {
    width: 25% !important;
  }
  .ui.grid > .row > [class*="five wide tablet"].column,
  .ui.grid > .column.row > [class*="five wide tablet"].column,
  .ui.grid > [class*="five wide tablet"].column,
  .ui.column.grid > [class*="five wide tablet"].column {
    width: 31.25% !important;
  }
  .ui.grid > .row > [class*="six wide tablet"].column,
  .ui.grid > .column.row > [class*="six wide tablet"].column,
  .ui.grid > [class*="six wide tablet"].column,
  .ui.column.grid > [class*="six wide tablet"].column {
    width: 37.5% !important;
  }
  .ui.grid > .row > [class*="seven wide tablet"].column,
  .ui.grid > .column.row > [class*="seven wide tablet"].column,
  .ui.grid > [class*="seven wide tablet"].column,
  .ui.column.grid > [class*="seven wide tablet"].column {
    width: 43.75% !important;
  }
  .ui.grid > .row > [class*="eight wide tablet"].column,
  .ui.grid > .column.row > [class*="eight wide tablet"].column,
  .ui.grid > [class*="eight wide tablet"].column,
  .ui.column.grid > [class*="eight wide tablet"].column {
    width: 50% !important;
  }
  .ui.grid > .row > [class*="nine wide tablet"].column,
  .ui.grid > .column.row > [class*="nine wide tablet"].column,
  .ui.grid > [class*="nine wide tablet"].column,
  .ui.column.grid > [class*="nine wide tablet"].column {
    width: 56.25% !important;
  }
  .ui.grid > .row > [class*="ten wide tablet"].column,
  .ui.grid > .column.row > [class*="ten wide tablet"].column,
  .ui.grid > [class*="ten wide tablet"].column,
  .ui.column.grid > [class*="ten wide tablet"].column {
    width: 62.5% !important;
  }
  .ui.grid > .row > [class*="eleven wide tablet"].column,
  .ui.grid > .column.row > [class*="eleven wide tablet"].column,
  .ui.grid > [class*="eleven wide tablet"].column,
  .ui.column.grid > [class*="eleven wide tablet"].column {
    width: 68.75% !important;
  }
  .ui.grid > .row > [class*="twelve wide tablet"].column,
  .ui.grid > .column.row > [class*="twelve wide tablet"].column,
  .ui.grid > [class*="twelve wide tablet"].column,
  .ui.column.grid > [class*="twelve wide tablet"].column {
    width: 75% !important;
  }
  .ui.grid > .row > [class*="thirteen wide tablet"].column,
  .ui.grid > .column.row > [class*="thirteen wide tablet"].column,
  .ui.grid > [class*="thirteen wide tablet"].column,
  .ui.column.grid > [class*="thirteen wide tablet"].column {
    width: 81.25% !important;
  }
  .ui.grid > .row > [class*="fourteen wide tablet"].column,
  .ui.grid > .column.row > [class*="fourteen wide tablet"].column,
  .ui.grid > [class*="fourteen wide tablet"].column,
  .ui.column.grid > [class*="fourteen wide tablet"].column {
    width: 87.5% !important;
  }
  .ui.grid > .row > [class*="fifteen wide tablet"].column,
  .ui.grid > .column.row > [class*="fifteen wide tablet"].column,
  .ui.grid > [class*="fifteen wide tablet"].column,
  .ui.column.grid > [class*="fifteen wide tablet"].column {
    width: 93.75% !important;
  }
  .ui.grid > .row > [class*="sixteen wide tablet"].column,
  .ui.grid > .column.row > [class*="sixteen wide tablet"].column,
  .ui.grid > [class*="sixteen wide tablet"].column,
  .ui.column.grid > [class*="sixteen wide tablet"].column {
    width: 100% !important;
  }
}

/* Computer/Desktop Sizing Combinations */

@media only screen and (min-width: 992px) {
  .ui.grid > .row > [class*="one wide computer"].column,
  .ui.grid > .column.row > [class*="one wide computer"].column,
  .ui.grid > [class*="one wide computer"].column,
  .ui.column.grid > [class*="one wide computer"].column {
    width: 6.25% !important;
  }
  .ui.grid > .row > [class*="two wide computer"].column,
  .ui.grid > .column.row > [class*="two wide computer"].column,
  .ui.grid > [class*="two wide computer"].column,
  .ui.column.grid > [class*="two wide computer"].column {
    width: 12.5% !important;
  }
  .ui.grid > .row > [class*="three wide computer"].column,
  .ui.grid > .column.row > [class*="three wide computer"].column,
  .ui.grid > [class*="three wide computer"].column,
  .ui.column.grid > [class*="three wide computer"].column {
    width: 18.75% !important;
  }
  .ui.grid > .row > [class*="four wide computer"].column,
  .ui.grid > .column.row > [class*="four wide computer"].column,
  .ui.grid > [class*="four wide computer"].column,
  .ui.column.grid > [class*="four wide computer"].column {
    width: 25% !important;
  }
  .ui.grid > .row > [class*="five wide computer"].column,
  .ui.grid > .column.row > [class*="five wide computer"].column,
  .ui.grid > [class*="five wide computer"].column,
  .ui.column.grid > [class*="five wide computer"].column {
    width: 31.25% !important;
  }
  .ui.grid > .row > [class*="six wide computer"].column,
  .ui.grid > .column.row > [class*="six wide computer"].column,
  .ui.grid > [class*="six wide computer"].column,
  .ui.column.grid > [class*="six wide computer"].column {
    width: 37.5% !important;
  }
  .ui.grid > .row > [class*="seven wide computer"].column,
  .ui.grid > .column.row > [class*="seven wide computer"].column,
  .ui.grid > [class*="seven wide computer"].column,
  .ui.column.grid > [class*="seven wide computer"].column {
    width: 43.75% !important;
  }
  .ui.grid > .row > [class*="eight wide computer"].column,
  .ui.grid > .column.row > [class*="eight wide computer"].column,
  .ui.grid > [class*="eight wide computer"].column,
  .ui.column.grid > [class*="eight wide computer"].column {
    width: 50% !important;
  }
  .ui.grid > .row > [class*="nine wide computer"].column,
  .ui.grid > .column.row > [class*="nine wide computer"].column,
  .ui.grid > [class*="nine wide computer"].column,
  .ui.column.grid > [class*="nine wide computer"].column {
    width: 56.25% !important;
  }
  .ui.grid > .row > [class*="ten wide computer"].column,
  .ui.grid > .column.row > [class*="ten wide computer"].column,
  .ui.grid > [class*="ten wide computer"].column,
  .ui.column.grid > [class*="ten wide computer"].column {
    width: 62.5% !important;
  }
  .ui.grid > .row > [class*="eleven wide computer"].column,
  .ui.grid > .column.row > [class*="eleven wide computer"].column,
  .ui.grid > [class*="eleven wide computer"].column,
  .ui.column.grid > [class*="eleven wide computer"].column {
    width: 68.75% !important;
  }
  .ui.grid > .row > [class*="twelve wide computer"].column,
  .ui.grid > .column.row > [class*="twelve wide computer"].column,
  .ui.grid > [class*="twelve wide computer"].column,
  .ui.column.grid > [class*="twelve wide computer"].column {
    width: 75% !important;
  }
  .ui.grid > .row > [class*="thirteen wide computer"].column,
  .ui.grid > .column.row > [class*="thirteen wide computer"].column,
  .ui.grid > [class*="thirteen wide computer"].column,
  .ui.column.grid > [class*="thirteen wide computer"].column {
    width: 81.25% !important;
  }
  .ui.grid > .row > [class*="fourteen wide computer"].column,
  .ui.grid > .column.row > [class*="fourteen wide computer"].column,
  .ui.grid > [class*="fourteen wide computer"].column,
  .ui.column.grid > [class*="fourteen wide computer"].column {
    width: 87.5% !important;
  }
  .ui.grid > .row > [class*="fifteen wide computer"].column,
  .ui.grid > .column.row > [class*="fifteen wide computer"].column,
  .ui.grid > [class*="fifteen wide computer"].column,
  .ui.column.grid > [class*="fifteen wide computer"].column {
    width: 93.75% !important;
  }
  .ui.grid > .row > [class*="sixteen wide computer"].column,
  .ui.grid > .column.row > [class*="sixteen wide computer"].column,
  .ui.grid > [class*="sixteen wide computer"].column,
  .ui.column.grid > [class*="sixteen wide computer"].column {
    width: 100% !important;
  }
}

/* Large Monitor Sizing Combinations */

@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .ui.grid > .row > [class*="one wide large screen"].column,
  .ui.grid > .column.row > [class*="one wide large screen"].column,
  .ui.grid > [class*="one wide large screen"].column,
  .ui.column.grid > [class*="one wide large screen"].column {
    width: 6.25% !important;
  }
  .ui.grid > .row > [class*="two wide large screen"].column,
  .ui.grid > .column.row > [class*="two wide large screen"].column,
  .ui.grid > [class*="two wide large screen"].column,
  .ui.column.grid > [class*="two wide large screen"].column {
    width: 12.5% !important;
  }
  .ui.grid > .row > [class*="three wide large screen"].column,
  .ui.grid > .column.row > [class*="three wide large screen"].column,
  .ui.grid > [class*="three wide large screen"].column,
  .ui.column.grid > [class*="three wide large screen"].column {
    width: 18.75% !important;
  }
  .ui.grid > .row > [class*="four wide large screen"].column,
  .ui.grid > .column.row > [class*="four wide large screen"].column,
  .ui.grid > [class*="four wide large screen"].column,
  .ui.column.grid > [class*="four wide large screen"].column {
    width: 25% !important;
  }
  .ui.grid > .row > [class*="five wide large screen"].column,
  .ui.grid > .column.row > [class*="five wide large screen"].column,
  .ui.grid > [class*="five wide large screen"].column,
  .ui.column.grid > [class*="five wide large screen"].column {
    width: 31.25% !important;
  }
  .ui.grid > .row > [class*="six wide large screen"].column,
  .ui.grid > .column.row > [class*="six wide large screen"].column,
  .ui.grid > [class*="six wide large screen"].column,
  .ui.column.grid > [class*="six wide large screen"].column {
    width: 37.5% !important;
  }
  .ui.grid > .row > [class*="seven wide large screen"].column,
  .ui.grid > .column.row > [class*="seven wide large screen"].column,
  .ui.grid > [class*="seven wide large screen"].column,
  .ui.column.grid > [class*="seven wide large screen"].column {
    width: 43.75% !important;
  }
  .ui.grid > .row > [class*="eight wide large screen"].column,
  .ui.grid > .column.row > [class*="eight wide large screen"].column,
  .ui.grid > [class*="eight wide large screen"].column,
  .ui.column.grid > [class*="eight wide large screen"].column {
    width: 50% !important;
  }
  .ui.grid > .row > [class*="nine wide large screen"].column,
  .ui.grid > .column.row > [class*="nine wide large screen"].column,
  .ui.grid > [class*="nine wide large screen"].column,
  .ui.column.grid > [class*="nine wide large screen"].column {
    width: 56.25% !important;
  }
  .ui.grid > .row > [class*="ten wide large screen"].column,
  .ui.grid > .column.row > [class*="ten wide large screen"].column,
  .ui.grid > [class*="ten wide large screen"].column,
  .ui.column.grid > [class*="ten wide large screen"].column {
    width: 62.5% !important;
  }
  .ui.grid > .row > [class*="eleven wide large screen"].column,
  .ui.grid > .column.row > [class*="eleven wide large screen"].column,
  .ui.grid > [class*="eleven wide large screen"].column,
  .ui.column.grid > [class*="eleven wide large screen"].column {
    width: 68.75% !important;
  }
  .ui.grid > .row > [class*="twelve wide large screen"].column,
  .ui.grid > .column.row > [class*="twelve wide large screen"].column,
  .ui.grid > [class*="twelve wide large screen"].column,
  .ui.column.grid > [class*="twelve wide large screen"].column {
    width: 75% !important;
  }
  .ui.grid > .row > [class*="thirteen wide large screen"].column,
  .ui.grid > .column.row > [class*="thirteen wide large screen"].column,
  .ui.grid > [class*="thirteen wide large screen"].column,
  .ui.column.grid > [class*="thirteen wide large screen"].column {
    width: 81.25% !important;
  }
  .ui.grid > .row > [class*="fourteen wide large screen"].column,
  .ui.grid > .column.row > [class*="fourteen wide large screen"].column,
  .ui.grid > [class*="fourteen wide large screen"].column,
  .ui.column.grid > [class*="fourteen wide large screen"].column {
    width: 87.5% !important;
  }
  .ui.grid > .row > [class*="fifteen wide large screen"].column,
  .ui.grid > .column.row > [class*="fifteen wide large screen"].column,
  .ui.grid > [class*="fifteen wide large screen"].column,
  .ui.column.grid > [class*="fifteen wide large screen"].column {
    width: 93.75% !important;
  }
  .ui.grid > .row > [class*="sixteen wide large screen"].column,
  .ui.grid > .column.row > [class*="sixteen wide large screen"].column,
  .ui.grid > [class*="sixteen wide large screen"].column,
  .ui.column.grid > [class*="sixteen wide large screen"].column {
    width: 100% !important;
  }
}

/* Widescreen Sizing Combinations */

@media only screen and (min-width: 1920px) {
  .ui.grid > .row > [class*="one wide widescreen"].column,
  .ui.grid > .column.row > [class*="one wide widescreen"].column,
  .ui.grid > [class*="one wide widescreen"].column,
  .ui.column.grid > [class*="one wide widescreen"].column {
    width: 6.25% !important;
  }
  .ui.grid > .row > [class*="two wide widescreen"].column,
  .ui.grid > .column.row > [class*="two wide widescreen"].column,
  .ui.grid > [class*="two wide widescreen"].column,
  .ui.column.grid > [class*="two wide widescreen"].column {
    width: 12.5% !important;
  }
  .ui.grid > .row > [class*="three wide widescreen"].column,
  .ui.grid > .column.row > [class*="three wide widescreen"].column,
  .ui.grid > [class*="three wide widescreen"].column,
  .ui.column.grid > [class*="three wide widescreen"].column {
    width: 18.75% !important;
  }
  .ui.grid > .row > [class*="four wide widescreen"].column,
  .ui.grid > .column.row > [class*="four wide widescreen"].column,
  .ui.grid > [class*="four wide widescreen"].column,
  .ui.column.grid > [class*="four wide widescreen"].column {
    width: 25% !important;
  }
  .ui.grid > .row > [class*="five wide widescreen"].column,
  .ui.grid > .column.row > [class*="five wide widescreen"].column,
  .ui.grid > [class*="five wide widescreen"].column,
  .ui.column.grid > [class*="five wide widescreen"].column {
    width: 31.25% !important;
  }
  .ui.grid > .row > [class*="six wide widescreen"].column,
  .ui.grid > .column.row > [class*="six wide widescreen"].column,
  .ui.grid > [class*="six wide widescreen"].column,
  .ui.column.grid > [class*="six wide widescreen"].column {
    width: 37.5% !important;
  }
  .ui.grid > .row > [class*="seven wide widescreen"].column,
  .ui.grid > .column.row > [class*="seven wide widescreen"].column,
  .ui.grid > [class*="seven wide widescreen"].column,
  .ui.column.grid > [class*="seven wide widescreen"].column {
    width: 43.75% !important;
  }
  .ui.grid > .row > [class*="eight wide widescreen"].column,
  .ui.grid > .column.row > [class*="eight wide widescreen"].column,
  .ui.grid > [class*="eight wide widescreen"].column,
  .ui.column.grid > [class*="eight wide widescreen"].column {
    width: 50% !important;
  }
  .ui.grid > .row > [class*="nine wide widescreen"].column,
  .ui.grid > .column.row > [class*="nine wide widescreen"].column,
  .ui.grid > [class*="nine wide widescreen"].column,
  .ui.column.grid > [class*="nine wide widescreen"].column {
    width: 56.25% !important;
  }
  .ui.grid > .row > [class*="ten wide widescreen"].column,
  .ui.grid > .column.row > [class*="ten wide widescreen"].column,
  .ui.grid > [class*="ten wide widescreen"].column,
  .ui.column.grid > [class*="ten wide widescreen"].column {
    width: 62.5% !important;
  }
  .ui.grid > .row > [class*="eleven wide widescreen"].column,
  .ui.grid > .column.row > [class*="eleven wide widescreen"].column,
  .ui.grid > [class*="eleven wide widescreen"].column,
  .ui.column.grid > [class*="eleven wide widescreen"].column {
    width: 68.75% !important;
  }
  .ui.grid > .row > [class*="twelve wide widescreen"].column,
  .ui.grid > .column.row > [class*="twelve wide widescreen"].column,
  .ui.grid > [class*="twelve wide widescreen"].column,
  .ui.column.grid > [class*="twelve wide widescreen"].column {
    width: 75% !important;
  }
  .ui.grid > .row > [class*="thirteen wide widescreen"].column,
  .ui.grid > .column.row > [class*="thirteen wide widescreen"].column,
  .ui.grid > [class*="thirteen wide widescreen"].column,
  .ui.column.grid > [class*="thirteen wide widescreen"].column {
    width: 81.25% !important;
  }
  .ui.grid > .row > [class*="fourteen wide widescreen"].column,
  .ui.grid > .column.row > [class*="fourteen wide widescreen"].column,
  .ui.grid > [class*="fourteen wide widescreen"].column,
  .ui.column.grid > [class*="fourteen wide widescreen"].column {
    width: 87.5% !important;
  }
  .ui.grid > .row > [class*="fifteen wide widescreen"].column,
  .ui.grid > .column.row > [class*="fifteen wide widescreen"].column,
  .ui.grid > [class*="fifteen wide widescreen"].column,
  .ui.column.grid > [class*="fifteen wide widescreen"].column {
    width: 93.75% !important;
  }
  .ui.grid > .row > [class*="sixteen wide widescreen"].column,
  .ui.grid > .column.row > [class*="sixteen wide widescreen"].column,
  .ui.grid > [class*="sixteen wide widescreen"].column,
  .ui.column.grid > [class*="sixteen wide widescreen"].column {
    width: 100% !important;
  }
}

/*----------------------
        Centered
-----------------------*/

.ui.centered.grid,
.ui.centered.grid > .row,
.ui.grid > .centered.row {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ui.centered.grid > .column:not(.aligned):not(.justified):not(.row),
.ui.centered.grid > .row > .column:not(.aligned):not(.justified),
.ui.grid .centered.row > .column:not(.aligned):not(.justified) {
  text-align: left;
}

.ui.grid > .centered.column,
.ui.grid > .row > .centered.column {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*----------------------
        Relaxed
-----------------------*/

.ui.relaxed.grid > .column:not(.row),
.ui.relaxed.grid > .row > .column,
.ui.grid > .relaxed.row > .column {
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}

.ui[class*="very relaxed"].grid > .column:not(.row),
.ui[class*="very relaxed"].grid > .row > .column,
.ui.grid > [class*="very relaxed"].row > .column {
  padding-left: 40px;
  padding-left: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}

/* Coupling with UI Divider */

.ui.relaxed.grid .row + .ui.divider,
.ui.grid .relaxed.row + .ui.divider {
  margin-left: 24px;
  margin-left: 1.5rem;
  margin-right: 24px;
  margin-right: 1.5rem;
}

.ui[class*="very relaxed"].grid .row + .ui.divider,
.ui.grid [class*="very relaxed"].row + .ui.divider {
  margin-left: 40px;
  margin-left: 2.5rem;
  margin-right: 40px;
  margin-right: 2.5rem;
}

/*----------------------
        Padded
-----------------------*/

.ui.padded.grid:not(.vertically):not(.horizontally) {
  margin: 0em !important;
}

[class*="horizontally padded"].ui.grid {
  margin-left: 0em !important;
  margin-right: 0em !important;
}

[class*="vertically padded"].ui.grid {
  margin-top: 0em !important;
  margin-bottom: 0em !important;
}

/*----------------------
       "Floated"
-----------------------*/

.ui.grid [class*="left floated"].column {
  margin-right: auto;
}

.ui.grid [class*="right floated"].column {
  margin-left: auto;
}

/*----------------------
        Divided
-----------------------*/

.ui.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
.ui.divided.grid:not([class*="vertically divided"]) > .row > .column {
  box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, .15);
}

/* Swap from padding to margin on columns to have dividers align */

.ui[class*="vertically divided"].grid > .column:not(.row),
.ui[class*="vertically divided"].grid > .row > .column {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding-top: 0px;
  padding-top: 0rem;
  padding-bottom: 0px;
  padding-bottom: 0rem;
}

.ui[class*="vertically divided"].grid > .row {
  margin-top: 0em;
  margin-bottom: 0em;
}

/* No divider on first column on row */

.ui.divided.grid:not([class*="vertically divided"]) > .column:first-child,
.ui.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
  box-shadow: none;
}

/* No space on top of first row */

.ui[class*="vertically divided"].grid > .row:first-child > .column {
  margin-top: 0em;
}

/* Divided Row */

.ui.grid > .divided.row > .column {
  box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, .15);
}

.ui.grid > .divided.row > .column:first-child {
  box-shadow: none;
}

/* Vertically Divided */

.ui[class*="vertically divided"].grid > .row {
  position: relative;
}

.ui[class*="vertically divided"].grid > .row:before {
  position: absolute;
  content: "";
  top: 0em;
  left: 0px;
  width: calc(100% -  2rem );
  height: 1px;
  margin: 0% 16px;
  margin: 0% 1rem;
  box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, .15);
}

/* Padded Horizontally Divided */

[class*="horizontally padded"].ui.divided.grid,
.ui.padded.divided.grid:not(.vertically):not(.horizontally) {
  width: 100%;
}

/* First Row Vertically Divided */

.ui[class*="vertically divided"].grid > .row:first-child:before {
  box-shadow: none;
}

/* Inverted Divided */

.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row),
.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column {
  box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, .1);
}

.ui.inverted.divided.grid:not([class*="vertically divided"]) > .column:not(.row):first-child,
.ui.inverted.divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
  box-shadow: none;
}

.ui.inverted[class*="vertically divided"].grid > .row:before {
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, .1);
}

/* Relaxed */

.ui.relaxed[class*="vertically divided"].grid > .row:before {
  margin-left: 24px;
  margin-left: 1.5rem;
  margin-right: 24px;
  margin-right: 1.5rem;
  width: calc(100% -  3rem );
}

.ui[class*="very relaxed"][class*="vertically divided"].grid > .row:before {
  margin-left: 80px;
  margin-left: 5rem;
  margin-right: 80px;
  margin-right: 5rem;
  width: calc(100% -  5rem );
}

/*----------------------
         Celled
-----------------------*/

.ui.celled.grid {
  width: 100%;
  margin: 1em 0em;
  box-shadow: 0px 0px 0px 1px #D4D4D5;
}

.ui.celled.grid > .row {
  width: 100% !important;
  margin: 0em;
  padding: 0em;
  box-shadow: 0px -1px 0px 0px #D4D4D5;
}

.ui.celled.grid > .column:not(.row),
.ui.celled.grid > .row > .column {
  box-shadow: -1px 0px 0px 0px #D4D4D5;
}

.ui.celled.grid > .column:first-child,
.ui.celled.grid > .row > .column:first-child {
  box-shadow: none;
}

.ui.celled.grid > .column:not(.row),
.ui.celled.grid > .row > .column {
  padding: 1em;
}

.ui.relaxed.celled.grid > .column:not(.row),
.ui.relaxed.celled.grid > .row > .column {
  padding: 1.5em;
}

.ui[class*="very relaxed"].celled.grid > .column:not(.row),
.ui[class*="very relaxed"].celled.grid > .row > .column {
  padding: 2em;
}

/* Internally Celled */

.ui[class*="internally celled"].grid {
  box-shadow: none;
  margin: 0em;
}

.ui[class*="internally celled"].grid > .row:first-child {
  box-shadow: none;
}

.ui[class*="internally celled"].grid > .row > .column:first-child {
  box-shadow: none;
}

/*----------------------
   Vertically Aligned
-----------------------*/

/* Top Aligned */

.ui[class*="top aligned"].grid > .column:not(.row),
.ui[class*="top aligned"].grid > .row > .column,
.ui.grid > [class*="top aligned"].row > .column,
.ui.grid > [class*="top aligned"].column:not(.row),
.ui.grid > .row > [class*="top aligned"].column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  vertical-align: top;
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important;
}

/* Middle Aligned */

.ui[class*="middle aligned"].grid > .column:not(.row),
.ui[class*="middle aligned"].grid > .row > .column,
.ui.grid > [class*="middle aligned"].row > .column,
.ui.grid > [class*="middle aligned"].column:not(.row),
.ui.grid > .row > [class*="middle aligned"].column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  vertical-align: middle;
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
          -ms-grid-row-align: center !important;
      align-self: center !important;
}

/* Bottom Aligned */

.ui[class*="bottom aligned"].grid > .column:not(.row),
.ui[class*="bottom aligned"].grid > .row > .column,
.ui.grid > [class*="bottom aligned"].row > .column,
.ui.grid > [class*="bottom aligned"].column:not(.row),
.ui.grid > .row > [class*="bottom aligned"].column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  vertical-align: bottom;
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important;
}

/* Stretched */

.ui.stretched.grid > .row > .column,
.ui.stretched.grid > .column,
.ui.grid > .stretched.row > .column,
.ui.grid > .stretched.column:not(.row),
.ui.grid > .row > .stretched.column {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ui.stretched.grid > .row > .column > *,
.ui.stretched.grid > .column > *,
.ui.grid > .stretched.row > .column > *,
.ui.grid > .stretched.column:not(.row) > *,
.ui.grid > .row > .stretched.column > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/*----------------------
  Horizontally Centered
-----------------------*/

/* Left Aligned */

.ui[class*="left aligned"].grid > .column,
.ui[class*="left aligned"].grid > .row > .column,
.ui.grid > [class*="left aligned"].row > .column,
.ui.grid > [class*="left aligned"].column.column,
.ui.grid > .row > [class*="left aligned"].column.column {
  text-align: left;
  -webkit-align-self: inherit;
      -ms-flex-item-align: inherit;
          -ms-grid-row-align: inherit;
      align-self: inherit;
}

/* Center Aligned */

.ui[class*="center aligned"].grid > .column,
.ui[class*="center aligned"].grid > .row > .column,
.ui.grid > [class*="center aligned"].row > .column,
.ui.grid > [class*="center aligned"].column.column,
.ui.grid > .row > [class*="center aligned"].column.column {
  text-align: center;
  -webkit-align-self: inherit;
      -ms-flex-item-align: inherit;
          -ms-grid-row-align: inherit;
      align-self: inherit;
}

.ui[class*="center aligned"].grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Right Aligned */

.ui[class*="right aligned"].grid > .column,
.ui[class*="right aligned"].grid > .row > .column,
.ui.grid > [class*="right aligned"].row > .column,
.ui.grid > [class*="right aligned"].column.column,
.ui.grid > .row > [class*="right aligned"].column.column {
  text-align: right;
  -webkit-align-self: inherit;
      -ms-flex-item-align: inherit;
          -ms-grid-row-align: inherit;
      align-self: inherit;
}

/* Justified */

.ui.justified.grid > .column,
.ui.justified.grid > .row > .column,
.ui.grid > .justified.row > .column,
.ui.grid > .justified.column.column,
.ui.grid > .row > .justified.column.column {
  text-align: justify;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

/*----------------------
         Colored
-----------------------*/

.ui.grid > .row > .red.column,
.ui.grid > .row > .orange.column,
.ui.grid > .row > .yellow.column,
.ui.grid > .row > .olive.column,
.ui.grid > .row > .green.column,
.ui.grid > .row > .teal.column,
.ui.grid > .row > .blue.column,
.ui.grid > .row > .violet.column,
.ui.grid > .row > .purple.column,
.ui.grid > .row > .pink.column,
.ui.grid > .row > .brown.column,
.ui.grid > .row > .grey.column,
.ui.grid > .row > .black.column {
  margin-top: -16px;
  margin-top: -1rem;
  margin-bottom: -16px;
  margin-bottom: -1rem;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

/* Red */

.ui.grid > .red.row,
.ui.grid > .red.column,
.ui.grid > .row > .red.column {
  background-color: #DB2828 !important;
  color: #FFFFFF;
}

/* Orange */

.ui.grid > .orange.row,
.ui.grid > .orange.column,
.ui.grid > .row > .orange.column {
  background-color: #F2711C !important;
  color: #FFFFFF;
}

/* Yellow */

.ui.grid > .yellow.row,
.ui.grid > .yellow.column,
.ui.grid > .row > .yellow.column {
  background-color: #FBBD08 !important;
  color: #FFFFFF;
}

/* Olive */

.ui.grid > .olive.row,
.ui.grid > .olive.column,
.ui.grid > .row > .olive.column {
  background-color: #B5CC18 !important;
  color: #FFFFFF;
}

/* Green */

.ui.grid > .green.row,
.ui.grid > .green.column,
.ui.grid > .row > .green.column {
  background-color: #21BA45 !important;
  color: #FFFFFF;
}

/* Teal */

.ui.grid > .teal.row,
.ui.grid > .teal.column,
.ui.grid > .row > .teal.column {
  background-color: #00B5AD !important;
  color: #FFFFFF;
}

/* Blue */

.ui.grid > .blue.row,
.ui.grid > .blue.column,
.ui.grid > .row > .blue.column {
  background-color: #2185D0 !important;
  color: #FFFFFF;
}

/* Violet */

.ui.grid > .violet.row,
.ui.grid > .violet.column,
.ui.grid > .row > .violet.column {
  background-color: #6435C9 !important;
  color: #FFFFFF;
}

/* Purple */

.ui.grid > .purple.row,
.ui.grid > .purple.column,
.ui.grid > .row > .purple.column {
  background-color: #A333C8 !important;
  color: #FFFFFF;
}

/* Pink */

.ui.grid > .pink.row,
.ui.grid > .pink.column,
.ui.grid > .row > .pink.column {
  background-color: #E03997 !important;
  color: #FFFFFF;
}

/* Brown */

.ui.grid > .brown.row,
.ui.grid > .brown.column,
.ui.grid > .row > .brown.column {
  background-color: #A5673F !important;
  color: #FFFFFF;
}

/* Grey */

.ui.grid > .grey.row,
.ui.grid > .grey.column,
.ui.grid > .row > .grey.column {
  background-color: #767676 !important;
  color: #FFFFFF;
}

/* Black */

.ui.grid > .black.row,
.ui.grid > .black.column,
.ui.grid > .row > .black.column {
  background-color: #1B1C1D !important;
  color: #FFFFFF;
}

/*----------------------
      Equal Width
-----------------------*/

.ui[class*="equal width"].grid > .column:not(.row),
.ui[class*="equal width"].grid > .row > .column,
.ui.grid > [class*="equal width"].row > .column {
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.ui[class*="equal width"].grid > .wide.column,
.ui[class*="equal width"].grid > .row > .wide.column,
.ui.grid > [class*="equal width"].row > .wide.column {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

/*----------------------
        Reverse
-----------------------*/

/* Mobile */

@media only screen and (max-width: 767px) {
  .ui[class*="mobile reversed"].grid,
  .ui[class*="mobile reversed"].grid > .row,
  .ui.grid > [class*="mobile reversed"].row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .ui[class*="mobile vertically reversed"].grid,
  .ui.stackable[class*="mobile reversed"] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  
/* Divided Reversed */
  .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
  .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
    box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, .15);
  }
  .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
  .ui[class*="mobile reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
    box-shadow: none;
  }
  
/* Vertically Divided Reversed */
  .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:first-child:before {
    box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, .15);
  }
  .ui.grid[class*="vertically divided"][class*="mobile vertically reversed"] > .row:last-child:before {
    box-shadow: none;
  }
  
/* Celled Reversed */
  .ui[class*="mobile reversed"].celled.grid > .row > .column:first-child {
    box-shadow: -1px 0px 0px 0px #D4D4D5;
  }
  .ui[class*="mobile reversed"].celled.grid > .row > .column:last-child {
    box-shadow: none;
  }
}

/* Tablet */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ui[class*="tablet reversed"].grid,
  .ui[class*="tablet reversed"].grid > .row,
  .ui.grid > [class*="tablet reversed"].row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .ui[class*="tablet vertically reversed"].grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  
/* Divided Reversed */
  .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
  .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
    box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, .15);
  }
  .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
  .ui[class*="tablet reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
    box-shadow: none;
  }
  
/* Vertically Divided Reversed */
  .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:first-child:before {
    box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, .15);
  }
  .ui.grid[class*="vertically divided"][class*="tablet vertically reversed"] > .row:last-child:before {
    box-shadow: none;
  }
  
/* Celled Reversed */
  .ui[class*="tablet reversed"].celled.grid > .row > .column:first-child {
    box-shadow: -1px 0px 0px 0px #D4D4D5;
  }
  .ui[class*="tablet reversed"].celled.grid > .row > .column:last-child {
    box-shadow: none;
  }
}

/* Computer */

@media only screen and (min-width: 992px) {
  .ui[class*="computer reversed"].grid,
  .ui[class*="computer reversed"].grid > .row,
  .ui.grid > [class*="computer reversed"].row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .ui[class*="computer vertically reversed"].grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  
/* Divided Reversed */
  .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:first-child,
  .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:first-child {
    box-shadow: -1px 0px 0px 0px rgba(34, 36, 38, .15);
  }
  .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .column:last-child,
  .ui[class*="computer reversed"].divided.grid:not([class*="vertically divided"]) > .row > .column:last-child {
    box-shadow: none;
  }
  
/* Vertically Divided Reversed */
  .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:first-child:before {
    box-shadow: 0px -1px 0px 0px rgba(34, 36, 38, .15);
  }
  .ui.grid[class*="vertically divided"][class*="computer vertically reversed"] > .row:last-child:before {
    box-shadow: none;
  }
  
/* Celled Reversed */
  .ui[class*="computer reversed"].celled.grid > .row > .column:first-child {
    box-shadow: -1px 0px 0px 0px #D4D4D5;
  }
  .ui[class*="computer reversed"].celled.grid > .row > .column:last-child {
    box-shadow: none;
  }
}

/*-------------------
      Doubling
--------------------*/

/* Tablet Only */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ui.doubling.grid {
    width: auto;
  }
  .ui.grid > .doubling.row,
  .ui.doubling.grid > .row {
    margin: 0em !important;
    padding: 0em !important;
  }
  .ui.grid > .doubling.row > .column,
  .ui.doubling.grid > .row > .column {
    display: inline-block !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    box-shadow: none !important;
    margin: 0em;
  }
  .ui[class*="two column"].doubling.grid > .row > .column,
  .ui[class*="two column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="two column"].doubling.row.row > .column {
    width: 100% !important;
  }
  .ui[class*="three column"].doubling.grid > .row > .column,
  .ui[class*="three column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="three column"].doubling.row.row > .column {
    width: 50% !important;
  }
  .ui[class*="four column"].doubling.grid > .row > .column,
  .ui[class*="four column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="four column"].doubling.row.row > .column {
    width: 50% !important;
  }
  .ui[class*="five column"].doubling.grid > .row > .column,
  .ui[class*="five column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="five column"].doubling.row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="six column"].doubling.grid > .row > .column,
  .ui[class*="six column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="six column"].doubling.row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="seven column"].doubling.grid > .row > .column,
  .ui[class*="seven column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="seven column"].doubling.row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="eight column"].doubling.grid > .row > .column,
  .ui[class*="eight column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="eight column"].doubling.row.row > .column {
    width: 25% !important;
  }
  .ui[class*="nine column"].doubling.grid > .row > .column,
  .ui[class*="nine column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="nine column"].doubling.row.row > .column {
    width: 25% !important;
  }
  .ui[class*="ten column"].doubling.grid > .row > .column,
  .ui[class*="ten column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="ten column"].doubling.row.row > .column {
    width: 20% !important;
  }
  .ui[class*="eleven column"].doubling.grid > .row > .column,
  .ui[class*="eleven column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="eleven column"].doubling.row.row > .column {
    width: 20% !important;
  }
  .ui[class*="twelve column"].doubling.grid > .row > .column,
  .ui[class*="twelve column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="twelve column"].doubling.row.row > .column {
    width: 16.66666667% !important;
  }
  .ui[class*="thirteen column"].doubling.grid > .row > .column,
  .ui[class*="thirteen column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="thirteen column"].doubling.row.row > .column {
    width: 16.66666667% !important;
  }
  .ui[class*="fourteen column"].doubling.grid > .row > .column,
  .ui[class*="fourteen column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="fourteen column"].doubling.row.row > .column {
    width: 14.28571429% !important;
  }
  .ui[class*="fifteen column"].doubling.grid > .row > .column,
  .ui[class*="fifteen column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="fifteen column"].doubling.row.row > .column {
    width: 14.28571429% !important;
  }
  .ui[class*="sixteen column"].doubling.grid > .row > .column,
  .ui[class*="sixteen column"].doubling.grid > .column:not(.row),
  .ui.grid > [class*="sixteen column"].doubling.row.row > .column {
    width: 12.5% !important;
  }
}

/* Mobile Only */

@media only screen and (max-width: 767px) {
  .ui.grid > .doubling.row,
  .ui.doubling.grid > .row {
    margin: 0em !important;
    padding: 0em !important;
  }
  .ui.grid > .doubling.row > .column,
  .ui.doubling.grid > .row > .column {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    margin: 0em !important;
    box-shadow: none !important;
  }
  .ui[class*="two column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="two column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="two column"].doubling:not(.stackable).row.row > .column {
    width: 100% !important;
  }
  .ui[class*="three column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="three column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="three column"].doubling:not(.stackable).row.row > .column {
    width: 50% !important;
  }
  .ui[class*="four column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="four column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="four column"].doubling:not(.stackable).row.row > .column {
    width: 50% !important;
  }
  .ui[class*="five column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="five column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="five column"].doubling:not(.stackable).row.row > .column {
    width: 50% !important;
  }
  .ui[class*="six column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="six column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="six column"].doubling:not(.stackable).row.row > .column {
    width: 50% !important;
  }
  .ui[class*="seven column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="seven column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="seven column"].doubling:not(.stackable).row.row > .column {
    width: 50% !important;
  }
  .ui[class*="eight column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="eight column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="eight column"].doubling:not(.stackable).row.row > .column {
    width: 50% !important;
  }
  .ui[class*="nine column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="nine column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="nine column"].doubling:not(.stackable).row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="ten column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="ten column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="ten column"].doubling:not(.stackable).row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="eleven column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="eleven column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="eleven column"].doubling:not(.stackable).row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="twelve column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="twelve column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="twelve column"].doubling:not(.stackable).row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="thirteen column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="thirteen column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="thirteen column"].doubling:not(.stackable).row.row > .column {
    width: 33.33333333% !important;
  }
  .ui[class*="fourteen column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="fourteen column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="fourteen column"].doubling:not(.stackable).row.row > .column {
    width: 25% !important;
  }
  .ui[class*="fifteen column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="fifteen column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="fifteen column"].doubling:not(.stackable).row.row > .column {
    width: 25% !important;
  }
  .ui[class*="sixteen column"].doubling:not(.stackable).grid > .row > .column,
  .ui[class*="sixteen column"].doubling:not(.stackable).grid > .column:not(.row),
  .ui.grid > [class*="sixteen column"].doubling:not(.stackable).row.row > .column {
    width: 25% !important;
  }
}

/*-------------------
      Stackable
--------------------*/

@media only screen and (max-width: 767px) {
  .ui.stackable.grid {
    width: auto;
    margin-left: 0em !important;
    margin-right: 0em !important;
  }
  .ui.stackable.grid > .row > .wide.column,
  .ui.stackable.grid > .wide.column,
  .ui.stackable.grid > .column.grid > .column,
  .ui.stackable.grid > .column.row > .column,
  .ui.stackable.grid > .row > .column,
  .ui.stackable.grid > .column:not(.row),
  .ui.grid > .stackable.stackable.row > .column {
    width: 100% !important;
    margin: 0em 0em !important;
    box-shadow: none !important;
    padding: 1rem 1rem !important;
  }
  .ui.stackable.grid:not(.vertically) > .row {
    margin: 0em;
    padding: 0em;
  }
  
/* Coupling */
  .ui.container > .ui.stackable.grid > .column,
  .ui.container > .ui.stackable.grid > .row > .column {
    padding-left: 0em !important;
    padding-right: 0em !important;
  }
  
/* Don't pad inside segment or nested grid */
  .ui.grid .ui.stackable.grid,
  .ui.segment:not(.vertical) .ui.stackable.page.grid {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }
  
/* Divided Stackable */
  .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  .ui.stackable.divided.grid > .column:not(.row):first-child,
  .ui.stackable.celled.grid > .column:not(.row):first-child {
    border-top: none !important;
  }
  .ui.inverted.stackable.celled.grid > .column:not(.row),
  .ui.inverted.stackable.divided.grid > .column:not(.row),
  .ui.inverted.stackable.celled.grid > .row > .column,
  .ui.inverted.stackable.divided.grid > .row > .column {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
  .ui.stackable.celled.grid > .column:not(.row),
  .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
  .ui.stackable.celled.grid > .row > .column,
  .ui.stackable.divided:not(.vertically).grid > .row > .column {
    border-top: 1px solid rgba(34, 36, 38, .15);
    box-shadow: none !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .ui.stackable.celled.grid > .row {
    box-shadow: none !important;
  }
  .ui.stackable.divided:not(.vertically).grid > .column:not(.row),
  .ui.stackable.divided:not(.vertically).grid > .row > .column {
    padding-left: 0em !important;
    padding-right: 0em !important;
  }
}

/*----------------------
     Only (Device)
-----------------------*/

/* These include arbitrary class repetitions for forced specificity */

/* Mobile Only Hide */

@media only screen and (max-width: 767px) {
  .ui[class*="tablet only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="tablet only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="tablet only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.mobile) {
    display: none !important;
  }
  .ui[class*="computer only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="computer only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="computer only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.mobile) {
    display: none !important;
  }
  .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
    display: none !important;
  }
  .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
    display: none !important;
  }
}

/* Tablet Only Hide */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ui[class*="mobile only"].grid.grid.grid:not(.tablet),
  .ui.grid.grid.grid > [class*="mobile only"].row:not(.tablet),
  .ui.grid.grid.grid > [class*="mobile only"].column:not(.tablet),
  .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.tablet) {
    display: none !important;
  }
  .ui[class*="computer only"].grid.grid.grid:not(.tablet),
  .ui.grid.grid.grid > [class*="computer only"].row:not(.tablet),
  .ui.grid.grid.grid > [class*="computer only"].column:not(.tablet),
  .ui.grid.grid.grid > .row > [class*="computer only"].column:not(.tablet) {
    display: none !important;
  }
  .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
    display: none !important;
  }
  .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
    display: none !important;
  }
}

/* Computer Only Hide */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
    display: none !important;
  }
  .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
    display: none !important;
  }
  .ui[class*="large screen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="large screen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="large screen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="large screen only"].column:not(.mobile) {
    display: none !important;
  }
  .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
    display: none !important;
  }
}

/* Large Screen Only Hide */

@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
    display: none !important;
  }
  .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
    display: none !important;
  }
  .ui[class*="widescreen only"].grid.grid.grid:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].row:not(.mobile),
  .ui.grid.grid.grid > [class*="widescreen only"].column:not(.mobile),
  .ui.grid.grid.grid > .row > [class*="widescreen only"].column:not(.mobile) {
    display: none !important;
  }
}

/* Widescreen Only Hide */

@media only screen and (min-width: 1920px) {
  .ui[class*="mobile only"].grid.grid.grid:not(.computer),
  .ui.grid.grid.grid > [class*="mobile only"].row:not(.computer),
  .ui.grid.grid.grid > [class*="mobile only"].column:not(.computer),
  .ui.grid.grid.grid > .row > [class*="mobile only"].column:not(.computer) {
    display: none !important;
  }
  .ui[class*="tablet only"].grid.grid.grid:not(.computer),
  .ui.grid.grid.grid > [class*="tablet only"].row:not(.computer),
  .ui.grid.grid.grid > [class*="tablet only"].column:not(.computer),
  .ui.grid.grid.grid > .row > [class*="tablet only"].column:not(.computer) {
    display: none !important;
  }
}

/*******************************
         Theme Overrides
*******************************/

/*******************************
         Site Overrides
*******************************/

.news-namespace {
}

.news-namespace .cs-article {
  background-color: #fff;
  margin: 15px 0;
}

.news-namespace .cs-article .article__title {
  font-size: 36px;
  line-height: 1;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  margin: 39px 0 25px;
}

.news-namespace .cs-article .article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .article__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.news-namespace .cs-article .article__meta .article__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .article__meta .article__stats {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news-namespace .cs-article .article__meta .article__views {
  margin-left: 20px;
}

.news-namespace .cs-article .article__meta .article__share {
  margin-left: 39px;
}

.news-namespace .cs-article .article__meta .article__share li:not(:first-child) {
  margin-left: 10px;
}

.news-namespace .cs-article .article__meta .article__share a {
  color: #fff;
  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;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.news-namespace .cs-article .article__meta .article__share a.telegram {
  color: #60a9df;
  font-size: 32px;
  font-size: 2rem;
}

.news-namespace .cs-article .article__meta .meta__date {
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .article__meta .meta__date {
    margin-right: 30px;
  }
}

.news-namespace .cs-article .article__meta .meta__views {
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .article__meta .meta__views {
    margin-left: 30px;
  }
}

.news-namespace .cs-article .cs-flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .cs-flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news-namespace .cs-article .article__post {
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .article__post {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 15px;
  }
}

.news-namespace .cs-article .article__post.post {
  max-width: 843px;
  line-height: 1.444;
  font-size: 18px;
  font-size: 1.125rem;
}

.news-namespace .cs-article .article__post.post .post__image {
  position: relative;
  margin-bottom: 50px;
  text-align: left;
}

.news-namespace .cs-article .article__post.post .post__image .post__image_author {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #FFF !important;
  font-size: 15px;
  font-weight: normal;
}

.news-namespace .cs-article .article__sidebar {
}

@media only screen and (min-width: 1px) {

  .news-namespace .cs-article .article__sidebar {
    width: 406px;
  }
}

.news-namespace .cs-article .article__sidebar .interesting {
  background-color: #eef1f9;
  padding: 27px;
  margin-bottom: 15px;
}

.news-namespace .cs-article .article__sidebar .interesting .inter__title {
  margin: 0 0 20px;
  font-size: 25.6px;
  font-size: 1.6rem;
}

.news-namespace .cs-article .article__sidebar .interesting .inter-news-list li {
  margin: 0 0 22px;
}

.news-namespace .cs-article .article__sidebar .interesting .inter-news-list p:first-child {
  margin: 0 4px 4px 0px;
  display: inline-block;
}

.news-namespace .cs-article .article__sidebar .advert {
  border: 1px solid #e0e4ee;
  padding: 33px 0;
}

.news-namespace .cs-article .meta--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  margin-top: 20px;
}

.news-namespace .cs-article .meta--bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-namespace .cs-article .meta--bottom .meta__tags {
  margin: 0;
  font-size: 16px;
}

.news-namespace .cs-article .meta--bottom .meta__tags li:not(:last-child) {
  margin-right: 8px;
}

.news-namespace .cs-article .meta--bottom .meta__tags a:before {
  content: '#';
}

.news-namespace .cs-article .meta--bottom .right {
  margin-left: auto;
}

.news-namespace .cs-article .meta--bottom #st-2 {
  width: auto;
}

.news-namespace .cs-article .meta--bottom #st-2 .st-btn {
  height: 20px;
  line-height: 20px;
  vertical-align: bottom;
  border-radius: 5px;
  padding: 0 4px;
}

.news-namespace .cs-article .meta--bottom #st-2 .st-btn > svg {
  top: 4px;
  width: 12px;
  height: 12px;
}

.news-namespace .not-main-content {
  background-color: #eef1f9;
  margin: 15px 0 0;
}

.news-namespace .not-main-content .flex-block {
  margin: 15px 0;
}

.news-namespace .not-main-content .flex-block .item {
  max-width: 100%;
  margin-bottom: 15px;
}

@media only screen and (min-width: 1px) {

  .news-namespace .not-main-content {
}

  .news-namespace .not-main-content .flex-block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .news-namespace .not-main-content .flex-block .item {
    width: 406px;
    min-height: 465px;
    margin-bottom: 0;
  }
}

.article__post__body {

}

.article__post__body > img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e4ee;
}

.article__post__body > p > img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e0e4ee;
}

.article__post__body blockquote {
  display: block;
  border: 1px solid #eef1f9;
  padding: 40px 32px 40px 50px;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  line-height: 1.444;
  margin: 30px 0;
  position: relative;
}

.article__post__body blockquote:before {
  position: absolute;
  left: 26px;
  top: 46px;
  content: ' ';
  display: block;
  background-image: url(./ddb97d08eb7ed9f044636af93e424962.png);
  background-repeat: no-repeat;
  width: 19px;
  height: 15px;
}

.article__post__body strong {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Open Sans", Arial;
}

.article__post__body b {
  font-weight: 700;
  font-family: "Open Sans", Arial;
}

.article__post__body img.center {
  display: block;
  margin: 15px auto;
}

.article__post__body img.right {
  margin: 15px 0 15px auto;
  display: block;
}

.article__post__body img.left {
  display: block;
  margin: 15px 0;
}

.article__post__body > ul {
  padding-left: 40px;
  list-style: none;
}

.article__post__body > ul li {
  position: relative;
}

.article__post__body > ul li:before {
  position: absolute;
  top: 2px;
  left: -28px;
  content: '';
  background-image: url(./1c1e4b6b0732adeec82bd43c0d8395d5.png);
  width: 16px;
  height: 16px;
}

.article__post__body > ul li:not(:first-child) {
  margin-top: 15px;
}

.article__post__body .last-article-element {
  position: relative;
}

.article__post__body .last-article-element:after {
  content: '';
  margin-left: 6px;
  display: inline-block;
  background-image: url(./1febfb784f970cff9a8a4491ee3e39fa.png);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left top;
  width: 15px;
  vertical-align: text-bottom;
  height: 18px;
}

.article__post__body > h3 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.385;
}

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, .9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\D7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

body {
  min-width: 1250px;
}

img {
  max-width: 100%;
}

.wrapper-light {
  background-color: #fff!important;
}

.cs-header .nav-menu a.active {
  color: #d83236;
  position: relative;
}

.cs-header .nav-menu a.active:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 20px 14px;
  border-color: transparent transparent #eef1f9 transparent;
  position: absolute;
  bottom: -32px;
  left: 50%;
  margin-left: -16px;
}

.header__secondary {
  background-color: #eef1f9;
  position: relative;
  margin-top: -5px;
  padding: 0 19px;
}

.header__secondary .item {
  color: #35363d;
  font-size: 14px;
  display: inline-block;
  margin-right: 25px;
  line-height: 50px;
}

.header__secondary .item.active {
  color: #d83236;
}

.b-category-page {
  margin-top: 15px;
}

.b-card-height {
  height: 465px!important;
  overflow: hidden;
}

.b-card-height img.img-responsive {
  width: 100%;
  height: 100%; 
  -o-object-fit: cover; 
     object-fit: cover;
  overflow: hidden;
}

.b-news-list-container {
  position: relative;
}

.b-news-list-container:after {
  content: '';
  display: table;
  clear: both;
}

.b-news-list {
  margin-top: 30px;
  padding: 0;
  width: 66.3%;
  float: left;
}

.b-sidebar {
  margin-top: 15px;
  float: right;
  width: 32.6%;
}

.b-news-list__item {
  padding-bottom: 28px;
  border-bottom: solid 1px #e0e4ee; 
}

.b-news-list__item:not(:first-child) {
  margin-top: 30px;
}

.b-news-list__item:after {
  content: '';
  display: table;
  width: 0;
  height: 0;
  clear: both;
}

.b-news-list__item .item-img {
  display: block;
  width: 300px;
  height: 170px;
  overflow: hidden;
  float: left;
  text-align: center;
}

.b-news-list__item .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.b-news-list__item .item-img.card__icon img {
  width: 120px!important;
  height: 120px!important;
  margin-top: 25px;
}

.b-news-list__item .item-img + .item-content {
  padding-left: 315px;
}

.b-news-list__item .item-tags {
  font-size: 14px;
  line-height: 1;
  max-height: 16px;
  max-height: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #a2a6b0;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.b-news-list__item .item-tags a {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}

.b-news-list__item .item-tags a:hover {
  opacity: .65;
}

.b-news-list__item .item-tags .category {
  color: #d83236;
}

.b-news-list__item .item-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.4em;
}

.b-news-list__item .item-text {
  margin-top: 6px;
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5em;
}

.b-news-list__item .item-date {
  color: #a2a6b0;
  font-size: 14px;
  line-height: 12px;
  display: block;
  /*margin-top: 14px;*/
}

.b-news-list__item .item-date span {
  margin-right: 20px;
  vertical-align: middle;
  display: inline-block;
}

.b-news-list__item .item-date i.fa:before {
  color: #c3c6ce!important;
}

.b-news-list__item .news-list-banner {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 124px;
}

.b-news-list__item .news-list-banner img {
  width: 100%!important;
  height: 100%!important;
  -o-object-fit: cover;
     object-fit: cover;
}

.b-news-list__pagination {
  text-align: center;
  display: block;
  color: #35363d;
  font-size: 18px;
  margin-top: 26px;
  margin-bottom: 25px;
}

.b-news-list__pagination a, 
.b-news-list__pagination span {
  display: inline-block;
  padding: 0 5px;
  margin: 0 6px;
}

.b-news-list__pagination a.active {
  color: #d83236;
  font-size: 20px;
  font-weight: bold;
}

.b-sidebar__item {
  margin-bottom: 15px;
}

.b-sidebar__item.dark {
  background: #eef1f9;
}

.b-sidebar .sidebar-news {
  padding: 10px 30px 20px;
  color: #35363d;
}

.b-sidebar .sidebar-news .title {
  font-size: 26px;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 21px;
}

.b-sidebar .sidebar-news .list-item {
  margin-bottom: 25px;
}

.b-sidebar .sidebar-news .list-date {
  font-size: 14px;
  color: #a2a6b0;
  display: inline;
}

.b-sidebar .sidebar-news .list-link {
  font-size: 14px;
  display: inline;
  margin-top: 4px;
  line-height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.3em;
}

.b-sidebar-banner {
  display: block;
  width: 100%;
  border: solid 1px #e0e4ee;
  text-align: center;
  padding: 32px;
}

.b-sidebar-banner img {
  width: 240px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.b-section.dark {
  background-color: #eef1f9; 
}

.b-section {
  padding: 15px 0;
}

.b-section-title {
  font-size: 26px;
  font-weight: bold;
  margin-top: 10px;
}

.b-card-list {
  margin-right: -15px;
}

.b-card-list:after {
  content: '';
  display: table;
  clear: both;
}

.b-card-list .list-item {
  float: left;
  padding-right: 15px;
  width: 33.3333%;
  position: relative;
  height: 100%;
}

.card__description--bordered {
  border: solid 1px #e0e4ee;
  border-top: none;
}

.card .card__description--bordered .card__text {
  margin-top: 9px;
}

.b-search-form {
  font-size: 16px;
  color: #35363d;
  padding: 26px 11px;
}

.b-search-input.full-width {
  width: 100%;
}

.b-search-input {
  font-size: 46px;
  font-weight: bold;
  background: no-repeat;
  outline: none;
  box-shadow: none;
  border: none;
  border-bottom: solid 1px #c3c6ce;
  width: 1045px;
  height: 50px;
  margin-top: 6px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #35363d!important;
}

.b-search-button {
  display: inline-block;
  border: none;
  outline: none;
  box-shadow: none;
  background: #a2a6b0;
  color: #fff;
  font-size: 16px;
  padding: 10px 38px;
  float: right;
  margin-top: 16px;
  cursor: pointer;
}

.b-search-button:hover {
  opacity: .65;
}

.b-search-filters {
  margin-top: 24px;
}

.b-search-filters > span {
  display: inline-block;
  margin-right: 37px;
}

.b-search-filters > span > a {
  display: inline-block;
  margin-left: 10px;
}

.b-search-filters > span > a.active {
  font-weight: bold;
}

.b-search-filters > span > .dropdown {
  margin-left: 10px;
}

.b-search-filters > span > .dropdown .text {
  font-weight: bold;
}

.b-search-filters .ui.dropdown .menu > .item {
  width: 100%;
}

.b-search-filters .ui.dropdown .menu {
  margin-top: 5px;
}

.b-search-filters .date {
  position: relative;
  margin-right: 0;
}

.b-search-filters .date input {
  border: none;
  /*border-bottom: 1px solid #c3c6ce;*/
  display: inline-block;
  color: #35363d;
  font-size: 16px;
  line-height: 18px;
  background: rgba(0, 0, 0, 0);
  width: 100px;
  position: relative;
  outline: none;
  cursor: pointer;
}

.b-search-filters .date:before {
  position: absolute;
  content: '';
  left: -20px;
  width: 16px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1wcmVmaXg9ImZhciIgZGF0YS1pY29uPSJjYWxlbmRhci1hbHQiIGNsYXNzPSJzdmctaW5saW5lLS1mYSBmYS1jYWxlbmRhci1hbHQgZmEtdy0xNCIgcm9sZT0iaW1nIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xNDggMjg4aC00MGMtNi42IDAtMTItNS40LTEyLTEydi00MGMwLTYuNiA1LjQtMTIgMTItMTJoNDBjNi42IDAgMTIgNS40IDEyIDEydjQwYzAgNi42LTUuNCAxMi0xMiAxMnptMTA4LTEydi00MGMwLTYuNi01LjQtMTItMTItMTJoLTQwYy02LjYgMC0xMiA1LjQtMTIgMTJ2NDBjMCA2LjYgNS40IDEyIDEyIDEyaDQwYzYuNiAwIDEyLTUuNCAxMi0xMnptOTYgMHYtNDBjMC02LjYtNS40LTEyLTEyLTEyaC00MGMtNi42IDAtMTIgNS40LTEyIDEydjQwYzAgNi42IDUuNCAxMiAxMiAxMmg0MGM2LjYgMCAxMi01LjQgMTItMTJ6bS05NiA5NnYtNDBjMC02LjYtNS40LTEyLTEyLTEyaC00MGMtNi42IDAtMTIgNS40LTEyIDEydjQwYzAgNi42IDUuNCAxMiAxMiAxMmg0MGM2LjYgMCAxMi01LjQgMTItMTJ6bS05NiAwdi00MGMwLTYuNi01LjQtMTItMTItMTJoLTQwYy02LjYgMC0xMiA1LjQtMTIgMTJ2NDBjMCA2LjYgNS40IDEyIDEyIDEyaDQwYzYuNiAwIDEyLTUuNCAxMi0xMnptMTkyIDB2LTQwYzAtNi42LTUuNC0xMi0xMi0xMmgtNDBjLTYuNiAwLTEyIDUuNC0xMiAxMnY0MGMwIDYuNiA1LjQgMTIgMTIgMTJoNDBjNi42IDAgMTItNS40IDEyLTEyem05Ni0yNjB2MzUyYzAgMjYuNS0yMS41IDQ4LTQ4IDQ4SDQ4Yy0yNi41IDAtNDgtMjEuNS00OC00OFYxMTJjMC0yNi41IDIxLjUtNDggNDgtNDhoNDhWMTJjMC02LjYgNS40LTEyIDEyLTEyaDQwYzYuNiAwIDEyIDUuNCAxMiAxMnY1MmgxMjhWMTJjMC02LjYgNS40LTEyIDEyLTEyaDQwYzYuNiAwIDEyIDUuNCAxMiAxMnY1Mmg0OGMyNi41IDAgNDggMjEuNSA0OCA0OHptLTQ4IDM0NlYxNjBINDh2Mjk4YzAgMy4zIDIuNyA2IDYgNmgzNDBjMy4zIDAgNi0yLjcgNi02eiI+PC9wYXRoPjwvc3ZnPg==);
  background-position: center;
  background-size: contain;
}

.remodal-overlay {
  background: transparent;
}

.remodal {
  box-shadow: 0px 0px 48px -5px rgba(0, 0, 0, .54);
  text-align: left;
  padding: 20px 28px;
  color: #35363d;
}

.remodal-close {
  background: url(./3fb9f9731e8d9797be26fdd8f5771b79.png) no-repeat center;
  background-size: 19px;
}

.remodal-close:before {
  display: none;
}

.remodal-close {
  top: 16px;
  left: auto;
  right: 20px;
}

.remodal-title {
  margin-top: 0;
  font-size: 26px;
}

.remodal .row:before,
.remodal .row:after {
  content: '';
  clear: both;
  width: 0;
  height: 0;
  display: block;
}

.remodal .row {
  margin-left: -8px;
  margin-right: -8px;
}

.remodal .row .half {
  width: 50%;
  float: left;
  padding-left: 8px;
  padding-right: 8px;
}

.custom-form .input-block {
  margin-bottom: 20px;
}

.custom-form .input-block label {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.custom-form .input-block label .input-counter {
  color: #a2a6b0;
  float: right;
  display: inline-block;
  font-size: 14px;
}

.custom-form .input-block input,
.custom-form .input-block textarea {
  display: block;
  width: 100%;
  height: 40px;
  outline: none;
  box-shadow: none;
  border: solid 1px #c3c6ce;
  border-radius: 0;
  padding: 8px;
  font-size: 16px;
  color: #35363d;
}

.custom-form .input-block textarea {
  min-height: 120px;
  font-family: "Open Sans", arial;
  line-height: 1.2;
}

.remodal .custom-form button.basic {
  display: block;
  width: 100%;
}

.custom-form .ui.dropdown {
  display: block;
  width: 100%;
  height: 38px;
  border: solid 1px #c3c6ce;
  font-size: 16px;
  padding: 8px;
  padding-right: 30px;
  color: #35363d;
  position: relative;
}

.custom-form .ui.dropdown .text {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 100%;
  white-space: nowrap;
}

.custom-form .ui.dropdown .icon {
  position: absolute;
  right: 14px;
  top: 11px;
}

.custom-form .ui.dropdown .menu {
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  margin-top: 5px;
  top: 100%;
  left: 0;
}

.ui.dropdown .menu > .item {
  white-space: normal;
  white-space: initial;
}

.b-error-text {
  display: inline-block;
  width: 470px;
  font-size: 18px;
}

.b-error-text h1 {
  font-size: 80px;
  font-weight: normal;
  margin: 0;
}

.b-error-text h2 {
  margin: 0;
  font-size: 26px;
  font-weight: bold;
}

.b-error-text .search-input {
  width: 100%;
  display: block;
  height: 43px;
  border: solid 1px #a2a6b0;
  outline: none;
  padding-left: 10px;
  padding-right: 45px;
  font-size: 18px;
  margin-top: 40px;
}

.b-error-text .search-input-icon {
  position: absolute;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 0;
  height: 43px;
  width: 43px;
  font-weight: normal;
  color: #a2a6b0
}

.b-error-text form {
  position: relative;
}

.b-error-img {
  display: inline-block;
  width: 740px;
  float: right;
}

.b-error-page {
  padding-top: 60px;
  padding-bottom: 20px;
}

.b-error-page:after {
  content: '';
  clear: both;
  display: block;
}

.icon-list {
  color: #c3c6ce;
}

.icon-list i {
  margin-left: 0!important;
}

.card .icon-list {
  margin-left: 10px;
}

.news-card--desk .icon-list {
  margin-left: 15px;
}

.icon-list span {
  margin-right: 10px!important;
}

.icon-list span:last-child {
  margin-right: 0!important;
}

.icon-list .icon-volume,
.icon-list .icon-stat {
  display: inline-block;
  vertical-align: top;
}

.icon-list .icon-stat:before {
  content: '';
  display: inline-block; 
  width: 14px;
  height: 14px;
  background: url(./3d799e77f372652057e33298c2ae4ef8.png) no-repeat center;
  background-size: contain;
}

.icon-list .icon-volume:before {
  content: '';
  display: inline-block; 
  width: 18px;
  height: 14px;
  background: url(./582b461725cbae7a173ef42e7662075e.png) no-repeat center;
  background-size: contain;
}

.icon-list .icon-red {
  color: #fff;
  background: #d83236;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  vertical-align: top;
  padding: 0 5px; 
  font-family: "Open Sans", arial;
  font-style: normal;
}

.post img {
  height: auto!important;
}

.news-namespace .not-main-content {
  padding: 15px 0;
}

.news-namespace .not-main-content .news-list-banner img {
  width: 100%;
  height: 186px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-search {
  position: relative;
}

button.header-search__btn {
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  width: 30px;
  height: 30px;
  font-size: 20px;
  text-align: right;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.header-search__input {
  position: absolute;
  right: 0;
  top: 0;
  height: 34px;
  width: 855px;
  background: #eef1f9;
  border: none;
  outline: none;
  border-bottom: solid 1px #3b3c43;
  font-size: 16px;
  display: none;
}

.wrapper-light .header-search__input {
  background: #fff;
}

.header-search.active .header-search__input {
  display: block;
}

.header-search.active .header-search__btn {
  background: url(./b5c6345d6aa68b9fb7260b0d550e52ce.png) no-repeat center right;
}

.header-search.active .header-search__btn i {
  display: none;
}

.cs-header .header__right button.basic {
  margin-right: 0!important;
}

.slick-slider .slick-slide {
  display: block!important;
  text-align: center;
  height: 545px;
}

.slick-slide img {
  display: inline-block!important;
  max-height: 100%!important;
  max-width: 100%!important;
  width: auto;
  height: 545px !important;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.news-card--desk {
  font-size: 14px;
}

.news-card--desk .icon-red,
.card__timestamp .icon-red {
  margin-top: 1px;
}

.img--carousel-desc {
  font-size: 16px;
  padding-bottom: 12px!important;
  display: block!important;
}

.img--carousel-desc:after {
  content: '';
  display: block;
  clear: both;
}

.img--carousel-desc .current-slide-show {
  float: right;
  display: block;
}

.post .slick-slider {
  margin-bottom: 12px;
}

.post .photo-desc {
  margin-bottom: 4px;
}

.thx-text {
  text-align: center;
  font-size: 20px;
  padding: 40px 0 30px;
}

.thx-text p {
  margin: 10px 0;
}

.article__post__body a,
a.red,
.item-text a,
.text-strong a,
.post__image a {
  color: #d83236;
}

.article__post__body a {text-decoration: underline;}

.cs-content .news-namespace .cs-article .article__title {
  margin-top: 34px;
}

.cs-content .news-namespace .cs-article .article__post.post .post__image {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.article__post  p {
  margin-top: 0;
}

.card .card__tags {
  max-height: 18px;
}

.styled-img {
  text-align: center;
  border: solid 1px #e0e4ee;
  margin: 24px 0;
}

.styled-img img,
.styled-img a {
  display: block;
  margin: auto;
}

.styled-img p {
  margin: 0;
}

.card .card__picture img {
  background-color: transparent!important;
}

.card__icon img {
  -o-object-fit: contain!important;
     object-fit: contain!important;
}

.card .card__picture.card__icon img {
  height: 120px!important;
  width: 120px!important;
}

.cs-content .card .card__text,
#wrapper .card .card__text {
  max-height: 70px;
  -webkit-line-clamp: 3;
  line-height: 21px;
  font-size: 18px;
  letter-spacing: -1px;
}

.card.card--news .card__news__container {
  padding-right: 15px;
}

.cs-content .card .card__description .card__timestamp {
  /*padding-top: 16px;*/
  margin-top: 0;
  display: block;
}

.cs-content .card__description a:hover {
  opacity: .85;
}

.cs-content .card .card__text {
  transition: opacity .1s;
}

.cs-content .image-news-card:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.article__post.post .post__image iframe {
  border: none;
}

.article__post.post .post__image .post__image_author {
  text-align: left;
}

.slick-slider {
  overflow: hidden;
}

.cs-content .slick-slider .slick-arrow.slick-next {
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  transition: all .3s;
}

.slick-slider:hover .slick-arrow.slick-next {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.cs-content .slick-slider .slick-arrow.slick-prev {
  transition: all .3s;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}

.slick-slider:hover .slick-arrow.slick-prev {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.cs-top__bottom .right li:first-child i.icon-whatsapp {
  margin-right: 12px;
  margin-top: 2px;
}

.call-us {
  text-align: right;
  padding-top: 13px;
  margin-bottom: -26px;
}

.weather-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
  opacity: .3;
}

#wrapper .cs-top .cs-top__bottom .center i.fa {
  font-size: 16px;
  font-size: 1rem;
}

.cs-header .nav-menu ul li {
  font-size: 16px;
  font-weight: bold;
}

.card .card__text,
#wrapper .card.card--news .card__title {
  font-weight: bold;
  font-size: 18px;
}

#wrapper .card .card__tags,
#wrapper .card .card__description .card__timestamp,
#wrapper .card__news__timestamp,
#wrapper .desc__tag {
  font-size: 14px;
}

#wrapper .news-card--desk .desc__title {
  font-weight: bold;
  font-size: 28px;
}

.foot-nav {
  font-weight: bold;
}

.cs-footer .gray-text {
  font-size: 14px;
}

#wrapper .news-namespace .cs-article .article__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
}

#wrapper .article__post.post {
  font-size: 18px;
  line-height: 26px;
}

#wrapper .b-section-title {
  font-size: 24px;
  font-weight: bold;
}

.search-tag {
  font-weight: bold;
  font-size: 46px;
  padding: 26px 30px;
  background-color: #eef1f9;
}

#wrapper .inter-news-list li a {
  font-size: 14px;
  line-height: 18px;
}

.card--news .show-all {
  transition: none!important;
  text-align: center;
  padding-top: 20px;
}

.card--news .basic {
  padding: 10px 20px;
  background-color: #d83236;
  color: #fff;
  border: none;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
  transition: none!important;
}

.card--news .ps .icon-list {
  display: inline-block;
  margin-left: 10px;
  color: #c4c6ce;
}

.card--news .ps .icon-list span:not(:last-child) {
  margin-right: 3px!important
}

.article__title .icon-list {
  font-size: 80%;
  line-height: 80%;
  vertical-align: middle;
  display: inline-block;
  margin-left: 10px;
}

.cs-content .news-card--desk {
  box-shadow: inset 0px -200px 170px -103px rgba(0, 0, 0, .9);
  padding: 60px 30px 30px;
}

.nav-menu.hidden {
  opacity: 0;
  visibility: hidden;
}

.card.card--news .card__news,
.b-sidebar .sidebar-news .list-link,
#wrapper .inter-news-list li a {
  font-size: 16px;
  letter-spacing: 1.3;
}

#st-2 {
  position: relative;
  top: -4px;
  width: 200px;
  z-index: 1!important;
}

.cs-content  .two.column.row > .column:first-child .news-card--desk {
  right: 15px;
}

.online-cast {
  position: relative;
}

.online-cast__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 21px;
  font-size: 18px;
  font-weight: bold;
  padding: 6px 12px;
  color: #fff;
  background: rgba(0, 0, 0, .8);
  z-index: 99;
}

.cs-content  .two.column.row > .column:first-child .online-cast__title {
  right: 15px;
}

.pickmeup{background:#000;border-radius:.4em;box-sizing:content-box;display:inline-block;position:absolute;-ms-touch-action:manipulation;touch-action:manipulation}

.pickmeup *{box-sizing:border-box}

.pickmeup.pmu-flat{position:relative}

.pickmeup.pmu-hidden{display:none}

.pickmeup .pmu-instance{display:inline-block;height:13.8em;padding:.5em;text-align:center;width:15em}

.pickmeup .pmu-instance .pmu-button{color:#333;cursor:pointer;outline:none;text-decoration:none}

.pickmeup .pmu-instance .pmu-today{background:#17384d;color:#88c5eb}

.pickmeup .pmu-instance .pmu-button:hover{background:transparent;color:#88c5eb}

.pickmeup .pmu-instance .pmu-not-in-month{color:#aaa}

.pickmeup .pmu-instance .pmu-disabled,.pickmeup .pmu-instance .pmu-disabled:hover{color:#333;cursor:default}

.pickmeup .pmu-instance .pmu-selected{background:#136a9f;color:#333}

.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected{background:#17384d}

.pickmeup .pmu-instance nav{color:#333;display:-ms-flexbox;display:-webkit-box;display:flex;line-height:2em}

.pickmeup .pmu-instance nav *:first-child :hover{color:#88c5eb}

.pickmeup .pmu-instance nav .pmu-prev,.pickmeup .pmu-instance nav .pmu-next{display:none;height:2em;width:1em}

.pickmeup .pmu-instance nav .pmu-month{width:14em}

.pickmeup .pmu-instance .pmu-years *,.pickmeup .pmu-instance .pmu-months *{display:inline-block;line-height:3.6em;width:3.5em}

.pickmeup .pmu-instance .pmu-day-of-week{color:#999;cursor:default}

.pickmeup .pmu-instance .pmu-day-of-week *,.pickmeup .pmu-instance .pmu-days *{display:inline-block;line-height:1.5em;width:2em}

.pickmeup .pmu-instance .pmu-day-of-week *{line-height:1.8em}

.pickmeup .pmu-instance:first-child .pmu-prev,.pickmeup .pmu-instance:last-child .pmu-next{display:block}

.pickmeup .pmu-instance:first-child .pmu-month,.pickmeup .pmu-instance:last-child .pmu-month{width:13em}

.pickmeup .pmu-instance:first-child:last-child .pmu-month{width:12em}

.pickmeup:not(.pmu-view-days) .pmu-days,.pickmeup:not(.pmu-view-days) .pmu-day-of-week,.pickmeup:not(.pmu-view-months) .pmu-months,.pickmeup:not(.pmu-view-years) .pmu-years{display:none}

.pickmeup {background: #fff; box-shadow: 0px 0px 20px rgba(0, 0, 0, .5)}

@media screen and (max-width: 1279px) {
	body {
		min-width: 1000px;
	}

	#wrapper {
	}

	#wrapper .container {
    width: 1000px;
  }

	#wrapper .cs-header .logotype img {
    max-width: 150px;
    width: 150px;
    margin-top: -19px;
  }

	#wrapper .cs-header .nav-menu {
    margin-left: 20px;
  }

	#wrapper .cs-header .nav-menu ul li {
    font-size: 17px;
    margin-right: 20px;
  }

	#wrapper .header-search__input {
    width: 640px;
  }

	#wrapper .cs-header .header__right button.basic {
    font-size: 14px;
    padding: 8px 10px;
  }

	#wrapper .card .card__picture {
    height: 215px;
  }

	#wrapper .card {
    height: 367px;
  }

	#wrapper .card .card__description {
    padding: 15px;
  }

	#wrapper .card.card--news {
    padding: 21px 13px 10px;
  }

	#wrapper .image-news-card {
    height: 367px;
  }

	#wrapper .cs-content .main-grid .row .column:not(:last-child) {
    padding-right: 20px!important;
  }

	#wrapper .ui.grid > .row {
    padding-top: 20px;
  }

	#wrapper .cs-content .main-grid .column.row:not(:first-child) {
    margin-top: 20px;
  }

	#wrapper .cs-content .news-card--desk {
    padding: 60px 14px 16px;
  }

	#wrapper .cs-content .main-grid .row .column:not(:last-child) .news-card--desk {
    right: 20px;
  }

	#wrapper .twelwe .desc__title {
    max-width: 100%;
  }

	#wrapper .b-card-height {
    height: 373px!important;
  }

	#wrapper .b-news-list {
    margin-top: 20px;
  }

	#wrapper .b-sidebar {
    width: 32.2%;
  }

	#wrapper .b-news-list__item .item-img {
    width: 239px;
    height: 134px;
  }

	#wrapper .b-news-list__item .item-img + .item-content {
    padding-left: 255px;
  }

	#wrapper .b-news-list__item:not(:first-child) {
    margin-top: 20px;
  }

	#wrapper .b-news-list__item {
    padding-bottom: 18px;
  }

	#wrapper .b-news-list__item .item-title {
    max-height: 3.6em;
  }

	#wrapper .b-news-list__item .item-text {
    display: none;
  }

	#wrapper .b-news-list__item .news-list-banner {
    height: 100px;
  }

	#wrapper .news-namespace .cs-article .article__title {
    font-size: 36px;
    line-height: 38px;
    margin-top: 18px;
    margin-bottom: 16px;
  }

	#wrapper .news-namespace .cs-article .article__views {
    display: none;
  }

	#wrapper .news-namespace .cs-article .article__post.post {
    width: 680px;
  }

	#wrapper .news-namespace .cs-article .article__sidebar {
    width: 320px;
  }

	#wrapper .news-namespace .not-main-content .flex-block .item {
    height: auto;
    min-height: 1px;
    width: 320px;
  }

	#wrapper .news-namespace .cs-article .article__post.post .post__image .post__image_author {
    left: 8px;
    bottom: 8px;
  }

	#wrapper .b-search-input {
    width: 806px;
  }

	#wrapper .b-error-img {
    width: 490px;
  }

	#wrapper .b-error-text {
    margin-bottom: 20px;
  }

	#wrapper .card.card__banner a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px;
  }

	#wrapper .card.card__banner a img {
    max-height: 100%;
  }
	/*  #wrapper  */
}

@media screen and (max-width: 1023px) {
	body {
		min-width: 360px;
	}

	#wrapper {
	}

	#wrapper .container {
    width: 100%;
    padding: 0 8px;
  }

	#wrapper .cs-top__container {
    width: 100%!important;
  }

	#wrapper .cs-top__bottom .inline-flex.right li:not(:first-child) {
    display: none;
  }

	#wrapper .cs-top__bottom .inline-flex.right li:first-child {
    margin-right: 0;
  }

	#wrapper .cs-top__bottom .inline-flex.left li:first-child {
    display: none;
  }

	#wrapper .cs-top__bottom .inline-flex.left li {
    margin-right: 8px;
  }

	#wrapper .cs-header .nav-menu {
    display: none;
  }

	#wrapper .cs-header .header__right {
    display: none;
  }

	#wrapper .cs-header .header__grid {
    height: 72px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }

	#wrapper .cs-header .logotype img {
    margin-top: 1px;
    width: 120px;
  }

	#wrapper .cs-content .main-grid .row > .column:not(:last-child) {
    padding-right: 0!important;
  }

	#wrapper .cs-content .main-grid .row > .column {
    width: 100%!important;
    padding: 0!important;
    margin-bottom: 8px;
  }

	#wrapper .ui.grid > .row {
    padding: 0;
  }

	#wrapper .cs-content .main-grid .column.row:not(:first-child) {
    margin-top: 0;
  }

	#wrapper .cs-content .main-grid .row .column:not(:last-child) .news-card--desk {
    right: 0;
  }

	#wrapper .cs-content .main-grid .last-news-container {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    height: 484px;
  }

	#wrapper .cs-content .main-grid .last-news-container .card {
    height: 100%;
  }

	#wrapper .cs-header .nav-menu ul li, 
		#wrapper .card.card--news .card__title, 
		#wrapper .card.card--news .card__news, 
		#wrapper .b-sidebar .sidebar-news .list-link, 
		#wrapper .inter-news-list li a {
    font-size: 16px;
  }

	#wrapper .card .card__text {
    font-size: 18px;
    margin-top: 0;
  }

	#wrapper .card .card__tags,
		#wrapper .card .card__description .card__timestamp {
    font-size: 12px;
  }

	#wrapper .news-card--desk .desc__title {
    font-size: 20px;
  }

	#wrapper .news-card--desk .desc__tag,
		#wrapper .card .card__tags {
    display: none;
  }

	#wrapper .card {
    height: auto;
  }

	#wrapper .image-news-card {
    height: 193px;
    background: #000;
  }

	#wrapper .image-news-card img {
    opacity: .7;
  }

	#wrapper .cs-content .news-card--desk {
    box-shadow: none;
  }

	#wrapper .footer-logo {
    display: none;
  }

	#wrapper .cs-footer__grid > div {
    width: 100%;
  }

	#wrapper .cs-footer .cs-footer__grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: auto;
    padding: 0 15px;
  }

	#wrapper .footer__address {
    margin-top: 0;
  }

	#wrapper .call-us {
    text-align: left;
  }

	#wrapper .footer__social {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

	#wrapper .hidden-mobile {
    display: none!important;
  }

	#wrapper .visible-mobile {
    display: block!important;
  }

	#wrapper .header__secondary {
    margin-top: 6px;
    background: rgba(0, 0, 0, 0);
  }

	#wrapper .header__secondary .item {
    margin-right: 6px;
    line-height: 38px;
    font-size: 16px;
  }

	#wrapper .header__secondary .item:not(:first-child) {
    margin-left: 2px;
  }

	#wrapper .b-card-height {
    height: 194px!important;
  }

	#wrapper .news-card--desk .desc__timestamp {
    font-size: 12px;
  }

	#wrapper .b-news-list {
    width: 100%;
  }

	#wrapper .b-news-list__item .item-img {
    width: 100%;
    height: 194px;
    float: none;
    margin-bottom: 8px;
  }

	#wrapper .b-news-list__item .item-img + .item-content {
    padding-left: 0;
  }

	#wrapper .b-news-list__item .item-tags {
    max-height: none;
  }

	#wrapper .b-news-list__item .item-tags .category {
    display: none;
  }

	#wrapper .b-news-list__item .item-title {
    font-size: 18px;
  }

	#wrapper .b-news-list__item .item-date {
    font-size: 12px;
    margin-top: 8px;
  }

	#wrapper .b-news-list__item {
    padding-bottom: 16px;
  }

	#wrapper .b-news-list__item:not(:first-child) {
    margin-top: 10px;
  }

	#wrapper .b-news-list__item .news-list-banner {
    height: 64px;
  }

	#wrapper .b-sidebar {
    width: 100%;
    height: auto!important;
    float: left;
    min-height: 1px!important;
    position: relative!important;
  }

	#wrapper .b-card-list .list-item {
    width: 100%;
    margin-bottom: 20px;
  }

	#wrapper .b-card-list.b-card-height {
    height: auto!important;
  }

	#wrapper .news-namespace .cs-article .cs-flex-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: block;
  }

	#wrapper .news-namespace .cs-article .article__post.post {
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }

	#wrapper .news-namespace .cs-article .article__sidebar {
    width: 100%;
    height: auto!important;
  }

	#wrapper .news-namespace .cs-article .article__title {
    font-size: 22px;
    line-height: 1.2;
  }

	#wrapper .custom-share-style {
    display: none;
  }

	#wrapper .news-namespace .cs-article .article__meta .article__stats {
    display: none;
  }

	#wrapper .news-namespace .cs-article .article__meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 18px;
  }

	#wrapper .article__post.post {
    font-size: 18px;
    line-height: 22px;
  }

	#wrapper .article__post__body strong {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
  }

	#wrapper .article__post  p {
    margin-bottom: 16px;
  }

	#wrapper .news-namespace .cs-article .meta--bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }

	#wrapper .news-namespace .cs-article .article__post.post .post__image {
    margin-bottom: 20px;
    margin-left: -8px;
    margin-right: -8px;
  }

	#wrapper .news-namespace .cs-article .article__post.post .post__image img {
    width: 100%;
  }

	#wrapper .news-namespace .cs-article .meta--bottom ul {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 24px;
    margin-top: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

	#wrapper .news-namespace .cs-article .meta--bottom .right {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

	#wrapper .news-namespace .cs-article .meta--bottom .right > span {
    display: block;
    width: 100%;
  }

	#wrapper .news-namespace .cs-article .article__sidebar .interesting {
    margin-top: 72px;
    margin-left: -8px;
    margin-right: -8px;
    position: relative;
    padding: 8px;
  }

	#wrapper .news-namespace .cs-article .article__sidebar .interesting .inter__title {
    position: absolute;
    top: -36px;
    left: 8px;
  }

	#wrapper #st-2 {
    text-align: center;
    margin-top: 12px;
  }

	#wrapper .news-namespace .not-main-content .flex-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

	#wrapper .news-namespace .not-main-content .flex-block .item {
    width: 100%;
    margin-bottom: 20px;
  }

	#wrapper .slick-slider .slick-slide {
    height: 226px;
  }

	#wrapper .slick-slider .slick-slide img {
    height: 226px !important;
  }

	#wrapper .article__post__body blockquote {
    margin-top: 18px;
    font-size: 18px;
    line-height: 21px;
    padding: 16px 16px 16px 50px;
  }

	#wrapper .article__post__body blockquote:before {
    left: 18px;
    top: 21px;
  }

	#wrapper .article__post__body blockquote p:last-child {
    margin-bottom: 0;
  }

	#wrapper .b-search-input {
    width: 100%;
    font-size: 28px;
    float: none;
    height: 40px;
  }

	#wrapper .b-search-button {
    width: 100%;
    float: none;
  }

	#wrapper .header__secondary {
    padding: 0px;
    font-size: 20px;
  }

	#wrapper .b-search-form {
    padding: 24px 0;
  }

	#wrapper .b-search-filters > span {
    display: block;
    margin-right: 0;
  }

	#wrapper .b-search-filters > span + span {
    margin-top: 20px;
  }

	#wrapper .b-error-img {
    display: none;
  }

	#wrapper .b-error-text {
    width: 100%;
  }

	#wrapper .b-error-text h1 {
    text-align: center;
  }

	#wrapper .b-error-text h2 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 38px;
  }

	#wrapper .mobile-menu {
    display: block!important;
    position: absolute;
    left: 0;
    top: 28px;
  }

	#wrapper .mobile-menu__button {
    width: 27px;
    height: 27px;
    display: block;
  }

	#wrapper .mobile-menu__button img {
    max-width: 100%;
    max-height: 100%;
    margin-top: 5px;
  }

	#wrapper .mobile-menu__content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    padding: 18px;
    overflow: auto;
    opacity: 0;
    transition: opacity .3s;
  }

	#wrapper .mobile-menu__close {
    display: block;
    position: absolute;
    width: 19px;
    height: 19px;
    top: 20px;
    right: 20px;
  }

	#wrapper .mobile-menu__content .item-text {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
  }

	#wrapper .mobile-menu__content .sub-menu {
    padding-left: 18px;
    display: none;
  }

	#wrapper .mobile-menu__content .list-item.active .sub-menu {
    display: block!important;
  }

	#wrapper .mobile-menu__content .list-item.active .item-text {
    color: #d83236;
  }

	#wrapper .mobile-menu__content .sub-menu a {
    display: block;
    font-size: 18px;
    margin: 20px 0;
  }

	#wrapper .mobile-menu__content .list-item {
    margin-top: 30px;
  }

	#wrapper .mobile-menu__content button.basic {
    display: block;
    width: 100%;
    margin-top: 34px;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 18px;
  }

	#wrapper .cs-top .cs-top__bottom .center {
    display: none;
  }

	#wrapper .card.card--news .item:nth-child(n + 9):not(.show-all) {
    display: none!important;
  }

	#wrapper .cs-content .main-grid .last-news-container {
    height: auto!important;
  }

	#wrapper .ps__scrollbar-y-rail {
    display: none!important;
  }

	#wrapper .card.card--news .item:not(:first-child) {
    margin-top: 16px;
  }

	#wrapper .card.card--news .card__news__container {
    overflow: visible;
    height: auto!important;
    margin-bottom: 10px;
  }

	#wrapper .card--news .basic {
    display: block;
    width: 100%;
    font-size: 18px;
  }

	#wrapper .card.card--news .item.show-all {
    margin-top: 0;
  }

	#wrapper .card .card__description {
    position: relative;
  }

	#wrapper .card .card__description .card__timestamp {
    position: absolute;
    line-height: 18px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
    padding-top: 10px;
  }

	#wrapper .card .card__text {
    margin-top: 20px;
  }

	#wrapper .b-news-list__item .item-date {
    line-height: 18px;
  }

	#wrapper .mobile-menu__content .item-text:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3.5px 0 3.5px;
    border-color: #35363d transparent transparent transparent;
    vertical-align: middle;
    margin-left: 2px;
    margin-top: -3px;
  }

	#wrapper .mobile-menu__content .list-item.active .item-text:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3.5px 4px 3.5px;
    border-color: transparent transparent #d83235 transparent;
  }

	#wrapper .mobile-menu__search {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: solid 1px #525359;
    font-size: 16px;
    padding: 5px 0;
    margin-top: 30px;
    outline: none;
  }

	#wrapper .mobile-menu__social {
    margin: 28px 0;
    text-align: center;
  }

	#wrapper .mobile-menu__social li {
    display: inline-block;
    margin: 0 5px;
    margin-bottom: 10px;
  }

	#wrapper .mobile-menu__social li a {
    display: block;
    background: #c3c6ce;
    color: #fff;
    width: 44px;
    height: 44px;
    line-height: 45px;
    font-size: 24px;
  }

	#wrapper .mobile-menu__social li a:hover {
    opacity: .8;
  }

	#wrapper .footer__social a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    margin-right: 5px;
    margin-left: 5px;
  }

	#wrapper .article__post__body iframe,
		#wrapper .video-block iframe,
		#wrapper .post__image iframe {
    max-width: 100%!important;   
  }

	#wrapper .card__banner {
    height: 444px;
  }

	#wrapper.wrapper-light .cs-top {
    border-bottom: solid 1px #e0e4ee;
  }

	#wrapper .news-card--desk .desc__timestamp {
    color: #c3c6ce;
  }

	#wrapper .news-card--desk .icon-red, 
		#wrapper .card__timestamp .icon-red {
    margin-top: 0;
  }

	#wrapper .b-news-list-container h1 {
    font-size: 24px!important;
    line-height: 1.2;
  }

	#wrapper .b-news-list__item {
    border-bottom: none;
  }

	#wrapper .slick-slider .slick-arrow,
		#wrapper .post .photo-author,
		#wrapper .post .photo-desc {
    display: none!important;
  }

	#wrapper .img--carousel-desc .current-slide-show {
    float: none;
    text-align: center;
    margin-top: -10px;
  }

	#wrapper .cs-footer {
    background: #fff;
    color: #35363d;
    font-size: 16px;
  }

	#wrapper .cs-footer .gray-text {
    display: none;
  }

	#wrapper .address-line {
    font-weight: bold;
    margin: 10px 0;
  }

	#wrapper .foot {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

	#wrapper .foot-nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 18px;
    color: #d83236;
    text-transform: uppercase;
  }

	#wrapper .footer__address {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

	#wrapper .footer__address .foot__address_cite {
    line-height: 1.4;
    text-align: center;
  }

	#wrapper .footer__address .foot__address_cite a {
    text-align: center;
    width: 100%;
    display: inline-block;
  }

	#wrapper .cs-footer .copyright {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 0;
    text-align: center;
    color: #35363d !important;
  }

	#wrapper .foot-nav .inline-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -19px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

	#wrapper .cs-footer .foot-nav ul {
    margin-top: 5px;
    margin-bottom: 0;
  }

	#wrapper .foot-nav li {
    margin-left: 30px;
    margin-bottom: 10px;
  }

	#wrapper .visible-phone {
    display: block!important;
  }

	#wrapper .footer__social {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

	#wrapper .footer__social a {
    background: #a2a6b0;
  }

	#wrapper .footer__counter {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    text-align: center;
  }

	#wrapper .mobile-search {
    display: block!important;
    position: absolute;
    right: 0;
    top: 28px;
  }

	#wrapper .mobile-search__button {
    display: block;
    width: 27px;
    height: 27px;
    text-align: center;
    line-height: 27px;
    font-size: 22px;
    color: #35363d;
  }

	#wrapper .mobile-search__content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    padding: 18px;
    overflow: auto;
    opacity: 0;
    transition: opacity .3s;
  }

	#wrapper .mobile-search__close {
    display: block;
    position: absolute;
    width: 19px;
    height: 19px;
    top: 20px;
    right: 20px;
  }

	#wrapper .mobile-search__content form {
    position: relative;
  }

	#wrapper .mobile-search__content button {
    position: absolute;
    left: 0;
    bottom: 10px;
    font-size: 15px;
    color: #9e9fa4;
    background: transparent;
    border: none;
    outline: none;
    padding: 0;
  }

	#wrapper .mobile-search__search {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: solid 1px #525359;
    font-size: 16px;
    padding: 8px 0;
    padding-left: 25px;
    margin-top: 40px;
    outline: none;
  }
	/* #wrapper */

	body.menu-opened {
		overflow: hidden;
	}

	body.menu-opened .mobile-menu__content {
		display: block!important;
		opacity: 1!important;
	}

	body.search-opened .mobile-search__content {
	    display: block!important;
	    opacity: 1!important;
	}

	#st-2 .st-btn {
		width: 44px!important;
		height: 44px!important;
		border-radius: 50%;
	}

	#st-2 .st-btn > svg {
		width: 25px!important;
		height: 25px!important;
		top: 9px!important;
	}

	.mobile-hidden {
		display: none!important;
	}

	.mobile-visible {
		display: block!important;
	}

	.online-cast {
		height: 215px;
	}

	#wrapper .footer__social a {
		margin-left: -1px;
	}

}

/* End of normalize */

*, *:after, *:before {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  font-size: 14px;
  background-color: #35363d;
  padding: 0;
  margin: 0;

}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

button.basic {
  padding: 10px 20px;
  background-color: #d83236;
  color: #fff;
  border: none;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  cursor: pointer;
}

#wrapper {
  min-height: 100%;
  background-color: #eff2f9;
  overflow: hidden;
}

.gray-text {
  color: #a2a6b0;
}

.flex-center {
  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;
}

.flex-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center
}

@media only screen and (min-width: 1px) {

  .flex-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  }

.flex-right {
  margin-left: auto;
}

.scroll-container {
  position: relative;
  overflow: hidden;
}

.inline-flex {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container {
  width: 100%;
  margin: 0 auto;
  width: 1250px;
}

.container.banner__container {
}

@media only screen and (min-width: 1346px) {

  .container.banner__container {
    width: 1346px;
  }
  }

.img-responsive {
  max-width: 100%;
  height: auto;
}

/* Top section where banner located
* Classname: container section top
*/

.cs-top {
  background-color: #fff

  /*@nest & .banner {
    height: 100px;
  }*/

}

.cs-top .cs-top__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #a2a6b0;
}

@media only screen and (min-width: 1px) {

  .cs-top .cs-top__bottom {
    height: 36px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;/*grid-template-columns: repeat(3, 1fr [col-3]);
      grid-template-rows: auto;*/
  }

  .cs-top .cs-top__bottom .col-3:nth-child(2) {
    margin-left: auto;
  }

  .cs-top .cs-top__bottom .col-3:last-child {
    margin-left: auto;
  }

  .cs-top .cs-top__bottom .left li:not(last-child) {
    margin-right: 30px;
  }

  .cs-top .cs-top__bottom .left li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .cs-top .cs-top__bottom .center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #35363d;
  }

  .cs-top .cs-top__bottom .center i {
    color: #a2a6b0;
  }

  .cs-top .cs-top__bottom .right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .cs-top .cs-top__bottom .center li:not(:last-child) {
    margin-right: 20px;
  }

  .cs-top .cs-top__bottom .center i.fa {
    text-stroke: 0.6px #fff;
    -webkit-text-stroke: 0.6px #fff;
    -moz-text-stroke: 0.6px #fff;
    -ms-text-stroke: 0.6px #fff;
    font-size: 0.9rem;
  }

  .cs-top .cs-top__bottom a {
    transition: opacity 500ms ease-in;
  }

  .cs-top .cs-top__bottom a:hover {
    opacity: 0.8;
  }
}

.cs-top .cs-top__bottom ul {
  margin: 0;
}

.cs-top__bottom .center i,
.cs-top__bottom .right i {
  margin-right: 5px;
}

.cs-top__bottom .right li:not(:last-child) i {
}

@media only screen and (min-width: 1px) {

  .cs-top__bottom .right li:not(:last-child) i {
    margin-right: 15px;
  }
  }

.cs-top__bottom .right li:first-child {
  margin-right: 9.6%;
  min-width: 155px
}

@media only screen and (min-width: 1px) {

  .cs-top__bottom .right li:first-child {
    margin-right: 35px;
  }
  }

.cs-top__bottom .right li:first-child i {
  margin-right: 6px;
}

.icon-whatsapp {
  display: inline-block;
  background-image: url(./69c4fc2c6f9d4ad59ea4a1a1ee1602c3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

/*====================
*  Header
==================*/

.cs-header {
/*=============
* MENU */

  @nest .sub-menu a {
    text-transform: capitalize;

    &:hover {
      color: #d83236;
    }
  }
}

.cs-header .container {
  position: relative;
}

.cs-header .header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1px) {

  .cs-header .header__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 90px;/*grid-template-columns: 168px 2fr auto;
      grid-template-rows: auto;*/
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;/*grid-gap: 3.4%;*/
  }
}

.cs-header .logotype {
  -ms-grid-row: 1;
      grid-row-start: 1;
  text-align: center;
}

@media only screen and (min-width: 1px) {

  .cs-header .logotype {
    text-align: left;
  }
}

.cs-header .logotype img {
}

@media only screen and (min-width: 1px) {

  .cs-header .logotype img {
    margin-top: -15px;
  }
}

.cs-header .nav-menu {
}

@media only screen and (min-width: 1px) {

  .cs-header .nav-menu {
    margin-left: 5%;
  }
}

@media only screen and (min-width: 1px) {

  .cs-header .nav-menu {
    margin-left: 65px;
  }
}

.cs-header .nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

@media only screen and (min-width: 1px) {

  .cs-header .nav-menu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.cs-header .parent-menu li {
}

.cs-header .parent-menu li ul {
}

@media only screen and (min-width: 1px) {

  .cs-header .parent-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    padding: 13px 20px;
    background: #eef1f9;
    font-size: 1rem;
    z-index: 1;
    transition: visibility 0s, opacity 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cs-header .parent-menu li:hover ul {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s;
}

.cs-header .parent-menu li a.parent-link {
  position: relative;
}

.cs-header .parent-menu li a.parent-link:before {
  content: '';
  position: absolute;
  bottom: -32px;
  left: calc(50% - 15px);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid #eef1f9;
  transition: visibility 0s, opacity 0s;
  opacity: 0;
}

.cs-header .parent-menu li a.parent-link:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 0;
}

.cs-header .parent-menu li:hover a.parent-link {
}

.cs-header .parent-menu li:hover a.parent-link:before {
  opacity: 1;
}

.cs-header .parent-menu li a:hover {
  color: #d83236;
}

.cs-header .parent-menu li a.active {
  color: #d83236;
}

.cs-header .nav-menu li {
  text-align: center;
}

@media only screen and (min-width: 1px) {

  .cs-header .nav-menu li {
    text-align: left;
  }
}

.cs-header .nav-menu li:not(:last-child) {
}

@media only screen and (min-width: 1px) {

  .cs-header .nav-menu li:not(:last-child) {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 1px) {

  .cs-header .nav-menu li:not(:last-child) {
    margin-right: 33px;
  }
}

.cs-header .nav-menu a {
  color: #35363d;
}

.cs-header .header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1px) {

  .cs-header .header__right {
    margin-left: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.cs-header .header__right button.basic {
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 1px) {

  .cs-header .header__right button.basic {
    margin: 0 10px;
  }
}

.cs-header .header__right button.basic:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: .2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 10;
}

.cs-header .header__right button.basic:hover:after {
  z-index: 10;
  left: 120%;
  transition: all 1050ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (min-width: 1px) {

  .cs-header .header__right button.basic {
    margin: 0 27px 0 21px;
  }
}

.cs-header .header__right .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22.4px;
  font-size: 1.4rem;
  color: #32333b;
  transition: width 0.5s cubic-bezier(0.39, 0.58, 0.57, 1);
  width: 35px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 5px;
}

.cs-header .header__right .search:hover {
  width: 200px;
  border-color: #eee;
}

.cs-header .header__right .search input {
  border: none;
  background: transparent;
  outline: none;
  padding-left: 5px;
}

.cs-header .header__right .language-prefer {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

/*===============
* Content section
=============*/

.cs-content {

}

.cs-content .main-grid {
}

.cs-content .main-grid .column {
  padding: 0 !important;
}

.cs-content .main-grid .row {
  padding-bottom: 0 !important;
}

.cs-content .main-grid .row .column:not(:last-child) {
  padding-right: 15px !important;
}

.cs-content .main-grid .column.row:not(:first-child) {
  margin-top: 15px;
}

.cs-content .main-grid > .row:last-child {
  margin-bottom: 15px;
}

.cs-content .grid-pure-css {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css {/*margin: 0 -5px;*/
    grid-gap: 15px 0;
    -ms-grid-columns: (8.33%)[12];
        grid-template-columns: repeat(12, 8.33%);
    -ms-grid-rows: (465px)[4] 188px (465px)[3] 265px;
        grid-template-rows: repeat(4, 465px) 188px repeat(3, 465px) 265px;
  }
}

.cs-content .grid-pure-css .one {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .one {
    -ms-grid-column: 1;
        grid-column: 1;
  }
}

.cs-content .grid-pure-css .two {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .two {
    -ms-grid-column: span 2;
        grid-column: span 2;
  }
}

.cs-content .grid-pure-css .three {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .three {
    -ms-grid-column: span 3;
        grid-column: span 3;
  }
}

.cs-content .grid-pure-css .four {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .four {
    -ms-grid-column: span 4;
        grid-column: span 4;
  }
}

.cs-content .grid-pure-css .five {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .five {
    -ms-grid-column: span 5;
        grid-column: span 5;
  }
}

.cs-content .grid-pure-css .six {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .six {
    -ms-grid-column: span 6;
        grid-column: span 6;
  }
}

.cs-content .grid-pure-css .seven {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .seven {
    -ms-grid-column: span 7;
        grid-column: span 7;
  }
}

.cs-content .grid-pure-css .eight {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .eight {
    -ms-grid-column: span 8;
        grid-column: span 8;
  }
}

.cs-content .grid-pure-css .nine {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .nine {
    -ms-grid-column: span 9;
        grid-column: span 9;
  }
}

.cs-content .grid-pure-css .ten {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .ten {
    -ms-grid-column: span 10;
        grid-column: span 10;
  }
}

.cs-content .grid-pure-css .eleven {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .eleven {
    -ms-grid-column: span 11;
        grid-column: span 11;
  }
}

.cs-content .grid-pure-css .twelwe {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .twelwe {
    -ms-grid-column: span 12;
        grid-column: span 12;
  }
}

.cs-content .grid-pure-css .column {
}

@media only screen and (min-width: 1px) {

  .cs-content .grid-pure-css .column {
    padding: 0 5px;
  }
}

.card {
  background-color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 410px
}

.card .card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.card .card__description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: .7% 1.6%;
  font-size: 20px;
  font-size: 1.25rem;
}

@media only screen and (min-width: 1px) {

  .card .card__description {
    padding: 27px;
  }
}

.card .card__description .card__timestamp {
  margin-top: 0;
  margin-left: 10px;
  padding-top: 0;
  font-size: 14px;
  font-size: 0.875rem;
  color: #a2a6b0;
}

.card .card__description .card__timestamp i {
  margin-left: 9px;
}

.card .card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-size: 0.875rem;/*margin-bottom: 18px;*/
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;/*& li:first-child a {
      color: var(--red);
    }*/
}

.card .card__tags li:not(:first-child) {
  margin-left: 7px;
}

.card .card__tags li a {
  color: #a2a6b0;
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}

.card .card__tags li a:hover {
  opacity: 0.8;
}

.card .card__tags li:first-child a {
  color: #d83236;
}

.card .card__tags li:not(:first-child) a:before {
  content: '#';
}

.card .card__text {
  margin: 12px 0 0px;
  display: block;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: opacity 500ms ease-in;
  font-weight: 400;
}

.card .card__text:hover {
  opacity: 0.8;
}

.card .card__picture {
  margin: 0;
  height: 270px;
  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;
  overflow: hidden;
  opacity: 1;
  transition: opacity 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.card .card__picture:hover {/*background: repeating-linear-gradient( -45deg, transparent, transparent 25%, tomato 0, tomato 50% ), repeating-linear-gradient( 45deg, transparent, transparent 25%, dodgerblue 0, dodgerblue 50% ), wheat;*//*background-size: 10em 10em;*/
}

.card .card__picture:hover img {
  opacity: 0.8;/*background: repeating-linear-gradient( -45deg, transparent, transparent 25%, tomato 0, tomato 50% ), repeating-linear-gradient( 45deg, transparent, transparent 25%, dodgerblue 0, dodgerblue 50% ), wheat;*/
  background-size: 10em 10em;
  background-blend-mode: multiply;
}

.card .card__picture img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;/*background: repeating-linear-gradient( -45deg, transparent, transparent 25%, tomato 0, tomato 50% ), repeating-linear-gradient( 45deg, transparent, transparent 25%, dodgerblue 0, dodgerblue 50% ), wheat;*/
  background-color: #eee;
  background-size: 10em 10em;
  background-blend-mode: multiply;
}

.card.card--news {
  padding: 27px 10px 30px 34px;
  overflow: auto
}

.card.card--news .card__news__container {
}

.card.card--news .card__title {
  color: #d83236;
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 19px;
  text-transform: uppercase;
}

.card.card--news .card__news__timestamp {
  color: #a2a6b0;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 7px;
}

.card.card--news .item {
  display: block;
  transition: opacity 500ms ease-in;
}

.card.card--news .item:hover {
  opacity: 0.8;
}

.card.card--news .item:not(:first-child) {
  margin-top: 23px;
}

.card.card--news .card__news {
  margin: 0;
}

.card.card__banner {
  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;
}

.image-news-card {
  position: relative;
  height: 100%;
  width: 100%;
  display: block;
  overflow: hidden

}

@media only screen and (min-width: 1px) {

  .image-news-card {
    height: 410px;
  }
  }

.image-news-card img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-filter .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: filter .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: filter .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-news-card:hover img {/*filter: blur(3px);*/
  -webkit-transform: scale(1.05) rotateZ(-1deg);
          transform: scale(1.05) rotateZ(-1deg);
}

.news-card--desk {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 30px;
  box-shadow: inset 0px -175px 170px -103px rgba(0, 0, 0, .75);
  pointer-events: none
}

.news-card--desk .desc__title {
  font-weight: 700;
  margin: 0;
}

@media only screen and (min-width: 1px) {

  .news-card--desk .desc__title {
    font-size: 1.875rem;
    margin: 15px 0;
  }
}

.news-card--desk .desc__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 12px 0;
}

.news-card--desk .desc__tag li:not(:first-child):before {
  content: '#';
  margin-left: 5px;
}

.news-card--desk .desc__tag a {
  pointer-events: auto;
}

.news-card--desk .desc__timestamp {
  color: #a2a6b0;
}

.news-card--desk .desc__timestamp i {
  margin-left: 15px;
}

.twelwe .desc__title {
}

@media only screen and (min-width: 1px) {

  .twelwe .desc__title {
    margin: 8px 0;
    max-width: 50%;
  }
  }

/* Pre footer */

.news-pre-footer {
  height: 245px;
  margin-bottom: 15px;
}

.news-pre-footer__header {
  background-color: #003275;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 7px 15px

}

@media only screen and (min-width: 1px) {

  .news-pre-footer__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  }

.news-pre-footer__header .kz_sign {
  background-image: url(./822319499d33a5ff96cf6cfadd3bb0fd.png);
  background-size: cover;
  background-position: center;
  width: 28px;
  height: 28px;
  margin-right: 5px;
  display: block;
}

.news-pre-footer__header .kz-title {
  color: #fff;
  font-family: 'LatoWeb' Arial, Helvetica, sans-serif;
  font-size: 12.8px;
  font-size: 0.8rem;
}

@media only screen and (min-width: 1px) {

  .news-pre-footer__header .kz-title {
    margin-right: 9px;
  }
}

.news-pre-footer__header h3 {
  margin: 0;
}

.news-pre-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 auto;
  color: #95aac0;
  font-size: 19.2px;
  font-size: 1.2rem

}

.news-pre-footer__social li:not(:last-child) {
  margin-right: 15px;
}

.news-pre-footer__social li a {
  transition: opacity 500ms ease-in;
}

.news-pre-footer__social li a:hover {
  opacity: 0.8;
}

.news-pre-footer__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between
}

@media only screen and (min-width: 1px) {

  .news-pre-footer__news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  }

.news-pre-footer__news .news__title {
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 13.008px;
  font-size: 0.813rem;
  margin: 10px 0 0;
  height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-pre-footer__news .news__picture {
  overflow: hidden;
}

@media only screen and (min-width: 1px) {

  .news-pre-footer__news .news__picture {
    width: 159px;
    height: 90px;
  }
}

.news-pre-footer__news .item {
  width: 45%;
  transition: opacity 500ms ease-in;
  opacity: 1;
}

.news-pre-footer__news .item:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 1px) {

  .news-pre-footer__news .item {
    width: auto;
    width: initial;
  }
}

.news-pre-footer__news .item:not(:first-child) {
}

@media only screen and (min-width: 1px) {

  .news-pre-footer__news .item:not(:first-child) {
    margin-left: 12px;
  }
}

.pm-informer {
  min-width: 100%;
}

/*=================
* Footer
=============*/

.cs-footer {
  background-color: #fff;
  padding-bottom: 30px;
  text-align: center


}

@media only screen and (min-width: 1px) {

  .cs-footer {
    text-align: left;
  }
  }

.cs-footer .cs-footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1px) {

  .cs-footer .cs-footer__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;/*grid-template-columns: 1fr auto 0.75fr;
      grid-template-rows: auto;*/
    height: 164px;
  }

  .cs-footer .cs-footer__grid > div:nth-child(2) {
    margin-left: auto;
    margin-right: auto;
  }

  .cs-footer .cs-footer__grid > div:last-child {
    margin-left: auto;
  }
}

.cs-footer .foot {
  margin-top: 15px;
}

.cs-footer .foot-nav ul {
  margin: 11px 0;
}

.cs-footer .copyright {
  margin: 13px 0 0;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
  color: #fff
}

@media only screen and (min-width: 1px) {

  .footer__social {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  }

.footer__social:hover a:not(:hover) {
  opacity: .6;
}

.footer__social a {
  background-color: #a2a6b0;
  display: block;
  width: 30px;
  height: 30px;
  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;
  transition: opacity .5s ease-out, background-color .3s ease-in;
}

.footer__social a:hover {
  background-color: #d92f33;
}

.footer__social a:not(:first-child) {
  margin-left: 12px;
}

.footer__social + .footer__counter {
  display: block;
}

.footer__address {
  margin-top: 13px
}

.footer__address p {
  margin-bottom: 5px;
}

.footer__address .foot__address_cite {
  font-style: normal;
  line-height: 1.5;
}

.foot-nav {
  color: #35363d
}

.foot-nav .inline-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 1px) {

  .foot-nav .inline-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.foot-nav a {
  font-family: 'LatoWeb', Arial, Helvetica, sans-serif;
}

.foot-nav a:hover {
  color: #d83236;
  transition: color .5s ease-in;
}

.foot-nav li:not(:first-child){
  margin-left: 1.5%
}

@media only screen and (min-width: 1px) {

  .foot-nav li:not(:first-child) {
    margin-left: 19px;
  }
  }

.footer__counter {display: none;}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #d83236 !important;
}

.ps__scrollbar-y-rail {
  opacity: 1 !important;
}

/* Dropdown correct */

.ui.dropdown > .dropdown.icon {
  margin: 0;
}

.ui.dropdown .default.text {
  color: inherit !important;
}

.ui.dropdown .menu, .ui.dropdown .menu.transition.hidden {
  left: -16px;
  top: 26px;
}

/* Carousel styles*/

.slick-slider {
  /*display: flex;
  align-items: center;*/
  margin: 26px 0 19px

}

.slick-slider .slick-arrow {
  border: none;
  background-color: #eef1f9;
  width: 48px;
  height: 48px;
  font-size: 0;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 24px);
  z-index: 500;
  outline: none;
}

.slick-slider .slick-arrow.slick-prev {
  left: 0;
}

.slick-slider .slick-arrow.slick-prev:after {
  content: '\F104';
  font: normal normal normal 24px/1 FontAwesome;
  color: red;
}

.slick-slider .slick-arrow.slick-next {
  right: 0;
}

.slick-slider .slick-arrow.slick-next:after {
  content: '\F105';
  font: normal normal normal 24px/1 FontAwesome;
  color: red;
}

.slick-slider .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.img--carousel-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef1f9;
  margin-bottom: 29px
}

.img--carousel-desc .current-slide-show {
  margin-left: auto;
}

/* share */

.meta__share-container {
}

@media only screen and (min-width: 1px) {

  .meta__share-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 16px;
  }

  .meta__share-container .sharethis-inline-share-buttons {
    margin-left: 10px !important;
  }
 }

.custom-share-style .sharethis-inline-share-buttons .st-btn {
  border-radius: 50% !important;
}

.custom-share-style {
}

@media only screen and (min-width: 1px) {

  .custom-share-style {
    margin-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .custom-share-style .sharethis-inline-share-buttons {
    margin-left: 10px;
  }
  }

.custom-share-style .st-btn {
}

.custom-share-style .st-btn:last-child {
  margin-right: none !important;
}

/* end share */

/* Animations */

.js-scroll-anim {
  opacity: 1

  /*@media (--medium) {
    opacity: 0;
  }*/
}

.js-scroll-anim:nth-child(2n) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.js-scroll-anim:nth-child(3n) {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}

.delay_anim {
}

.delay_anim:nth-child(2n) .card {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.delay_anim:nth-child(3n) .card {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}

.revealFromDown {
  -webkit-animation: revealFromDown 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation: revealFromDown 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.mobile-visible {
  display: none;
}

@-webkit-keyframes revealFromDown {
  0% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes revealFromDown {
  0% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@supports not((-o-object-fit: cover) or (object-fit: cover)) {
  .object-fit-fallback {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
    height: 100%;
   }
}

.hide-if-empty:empty {
    margin: 0 !important;
    padding: 0 !important;
}
.audioplayer {
	height: 100px; /* 40 */
	color: #fff;
	border: none;
	position: relative;
	z-index: 1;
	background: #eef1f9;
	padding: 40px 0 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	margin: 30px 0;
}
.audioplayer:after {
	position: absolute;
    content: attr(data-title);
    color: #35363d;
    top: 30px;
    left: 30px;
}
.audioplayer-mini {
		width: 2.5em; /* 40 */
		margin: 0 auto;
	}
.audioplayer > div
	{
		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;
	}
.audioplayer-playpause
	{
		-webkit-box-ordinal-group: 1;
		    -ms-flex-order: 0;
		        order: 0;
		width: 2.5em; /* 40 */
		text-align: left;
		text-indent: -9999px;
		cursor: pointer;
		z-index: 2;
		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;
		position: relative;
	}
.audioplayer-mini .audioplayer-playpause
		{
			width: 100%;
		}
.audioplayer-playpause:hover,
		.audioplayer-playpause:focus
		{
			/*background-color: #222;*/
		}
.audioplayer-playpause a
		{
			display: block;
		}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a
		{
			width: 0;
			height: 0;
			border: 0.5em solid transparent; /* 8 */
			border-right: none;
			border-left-color: #35363d;
			content: '';
		}
.audioplayer-playing .audioplayer-playpause a
		{
			width: 0.75em; /* 12 */
			height: 0.75em; /* 12 */
			position: absolute;
			top: 50%;
			left: 50%;
			margin: -0.375em 0 0 -0.375em; /* 6 */
		}
.audioplayer-playing .audioplayer-playpause a:before,
			.audioplayer-playing .audioplayer-playpause a:after
			{
				width: 40%;
				height: 100%;
				background-color: #35363d;
				content: '';
				position: absolute;
				top: 0;
			}
.audioplayer-playing .audioplayer-playpause a:before
			{
				left: 0;
			}
.audioplayer-playing .audioplayer-playpause a:after
			{
				right: 0;
			}
.audioplayer-time
	{
		/*width: 4.375em; /* 70 */

		text-align: center;
		z-index: 2;
		top: 0;
		color: #35363d;
		font-size: 14px;
		font-size: 0.875rem;
	}
.audioplayer-time-current
		{
			-webkit-box-ordinal-group: 3;
			    -ms-flex-order: 2;
			        order: 2;
			color: #a2a6b0;
			padding-left: 10px;
		}
.audioplayer-time-current:after {
			content: '/';
			position: relative;
			top: -1px;
			padding: 0 3px;
		}
.audioplayer-time-duration
		{
			-webkit-box-ordinal-group: 4;
			    -ms-flex-order: 3;
			        order: 3;
			color: #a2a6b0;
			padding-right: 10px;
		}
.audioplayer-novolume .audioplayer-time-duration
			{
				border-right: 0;
				right: 0;
			}
.audioplayer-bar
	{
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
		height: 2px; /* 14 */
		width: 40%;
		width: 480px;
		background-color: #c3c6ce;
		cursor: pointer;
		z-index: 1;
		position: relative;
	}
.audioplayer-novolume .audioplayer-bar
		{
			/*right: 4.375em; /* 70 */
		}
.audioplayer-bar div
		{
			width: 0;
			height: 100%;
			position: absolute;
			left: 0;
			top: 0;
		}
.audioplayer-bar-loaded
		{
			background-color: #ccc;
			z-index: 1;
		}
.audioplayer-bar-played
		{
			background: #35363d;
			z-index: 2;
		}
.audioplayer-volume
	{
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
		width: 80px; /* 40 */
		text-align: left;
		text-indent: -9999px;
		z-index: 2;
		-webkit-box-pack: start !important;
		    -ms-flex-pack: start !important;
		        justify-content: flex-start !important;
	}
@media only screen and (min-width: 768px) {
		.audioplayer-volume {
			width: 180px;
		}
	}
.audioplayer-volume:hover,
		.audioplayer-volume:focus
		{
			/*background-color: #222;*/
		}
.audioplayer-volume-button
		{
			margin-left: 20px;
			width: 40px;
			height: 100%;
		}
.audioplayer-volume-button a
			{
				width: 0.313em; /* 5 */
				height: 0.375em; /* 6 */
				background-color: #35363d;
				display: block;
				position: relative;
				z-index: 1;
				top: 40%;
				left: 35%;
				cursor:pointer;
			}
.audioplayer-volume-button a:before,
				.audioplayer-volume-button a:after
				{
					content: '';
					position: absolute;
				}
.audioplayer-volume-button a:before
				{
					width: 0;
					height: 0;
					border: 0.5em solid transparent; /* 8 */
					border-left: none;
					border-right-color: #35363d;
					z-index: 2;
					top: 50%;
					right: -0.25em;
					margin-top: -0.5em; /* 8 */
				}
.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after
				{
					/* "volume" icon by Nicolas Gallagher, http://nicolasgallagher.com/pure-css-gui-icons */
					width: 0.313em; /* 5 */
					height: 0.313em; /* 5 */
					border: 0.25em double #35363d; /* 4 */
					border-width: 0.25em 0.25em 0 0; /* 4 */
					left: 0.563em; /* 9 */
					top: 0; /* 1 */ /* 15 */ /* 15 */
					border-radius: 0 0.938em 0 0; /* 15 */
					-webkit-transform: rotate( 45deg );
					transform: rotate( 45deg );
				}
.audioplayer-volume-adjust
		{
			width: 140px; /* 100 */
			cursor: default;
		}
.audioplayer-volume .audioplayer-volume-adjust
			{

			}
.audioplayer-volume-adjust > div
			{
				height: 2px;
				width: 100px;
				background-color: #c3c6ce;
				cursor: pointer;
				position: relative;
				z-index: 1;
			}
.audioplayer-volume-adjust div div
				{
					width: 100%;
					height: 100%;
					position: absolute;
					bottom: 0;
					left: 0;
					background: #35363d;
				}
.audioplayer-novolume .audioplayer-volume
		{
			display: none;
		}
/*	.audioplayer-play,
	.audioplayer-pause,
	.audioplayer-volume a
	{
		-webkit-filter: drop-shadow( 1px 1px 0 #000 );
		-moz-filter: drop-shadow( 1px 1px 0 #000 );
		-ms-filter: drop-shadow( 1px 1px 0 #000 );
		-o-filter: drop-shadow( 1px 1px 0 #000 );
		filter: drop-shadow( 1px 1px 0 #000 );
	}*/
/*	.audioplayer-bar,
	.audioplayer-bar div,
	.audioplayer-volume-adjust div
	{
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	}*/
/*	.audioplayer-bar,
	.audioplayer-volume-adjust > div
	{
		-webkit-box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
		-moz-box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
		box-shadow: -1px -1px 0 rgba( 0, 0, 0, .5 ), 1px 1px 0 rgba( 255, 255, 255, .1 );
	}
	.audioplayer-volume-adjust div div,
	.audioplayer-bar-played
	{
		-webkit-box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
		-moz-box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
		box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
	}
	.audioplayer-volume-adjust
	{
		-webkit-box-shadow: -2px -2px 2px rgba( 0, 0, 0, .15 ), 2px -2px 2px rgba( 0, 0, 0, .15 );
		-moz-box-shadow: -2px -2px 2px rgba( 0, 0, 0, .15 ), 2px -2px 2px rgba( 0, 0, 0, .15 );
		box-shadow: -2px -2px 2px rgba( 0, 0, 0, .15 ), 2px -2px 2px rgba( 0, 0, 0, .15 );
	}*/
.audioplayer *,
	.audioplayer *:before,
	.audioplayer *:after
	{
		transition: color .25s ease, background-color .25s ease, opacity .5s ease;
	}

/*# sourceMappingURL=style.css.map*/