@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/*variables bootstrap*/
/* ************* END MEDIAQUERIES *************** */
/* ************* FONTS *************** */
/* ************* END FONTS *************** */
/* ************* COLORS *************** */
/* ************ END COLORS ************* */
/* iCheck plugin Square skin, black
----------------------------------- */
.icheckbox_square,
.iradio_square {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url(../assets/square.png) no-repeat;
  border: none;
  cursor: pointer;
}

.icheckbox_square {
  background-position: 0 0;
}

.icheckbox_square.hover {
  background-position: -24px 0;
}

.icheckbox_square.checked {
  background-position: -48px 0;
}

.icheckbox_square.disabled {
  background-position: -72px 0;
  cursor: default;
}

.icheckbox_square.checked.disabled {
  background-position: -96px 0;
}

.iradio_square {
  background-position: -120px 0;
}

.iradio_square.hover {
  background-position: -144px 0;
}

.iradio_square.checked {
  background-position: -168px 0;
}

.iradio_square.disabled {
  background-position: -192px 0;
  cursor: default;
}

.iradio_square.checked.disabled {
  background-position: -216px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icheckbox_square,
  .iradio_square {
    background-image: url(../assets/square@2x.png);
    -webkit-background-size: 240px 24px;
    background-size: 240px 24px;
  }
}
/*
 *
 * Main stylesheet for Switchery.
 * http://abpetkov.github.io/switchery/
 *
 */
/* Switchery defaults. */
.switchery {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  position: relative;
  vertical-align: middle;
  width: 50px;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-background-clip: content-box;
  background-clip: content-box;
}

.switchery > small {
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  height: 30px;
  position: absolute;
  top: 0;
  width: 30px;
}

/* Switchery sizes. */
.switchery-small {
  border-radius: 20px;
  height: 20px;
  width: 33px;
}

.switchery-small > small {
  height: 20px;
  width: 20px;
}

.switchery-large {
  border-radius: 40px;
  height: 40px;
  width: 66px;
}

.switchery-large > small {
  height: 40px;
  width: 40px;
}

/*
 *  Usage:
 *
      <div class="sk-rotating-plane"></div>
 *
 */
.sk-rotating-plane {
  width: 40px;
  height: 40px;
  background-color: #333;
  margin: 40px auto;
  -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
  animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes sk-rotatePlane {
  0% {
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
/*
 *  Usage:
 *
      <div class="sk-double-bounce">
        <div class="sk-child sk-double-bounce1"></div>
        <div class="sk-child sk-double-bounce2"></div>
      </div>
 *
 */
.sk-double-bounce {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 40px auto;
}

.sk-double-bounce .sk-child {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
  animation: sk-doubleBounce 2s infinite ease-in-out;
}

.sk-double-bounce .sk-double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-doubleBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-doubleBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
      <div class="sk-wave">
        <div class="sk-rect sk-rect1"></div>
        <div class="sk-rect sk-rect2"></div>
        <div class="sk-rect sk-rect3"></div>
        <div class="sk-rect sk-rect4"></div>
        <div class="sk-rect sk-rect5"></div>
      </div>
 *
 */
.sk-wave {
  margin: 40px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.sk-wave .sk-rect {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
  animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-wave .sk-rect1 {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.sk-wave .sk-rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-wave .sk-rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-wave .sk-rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-wave .sk-rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes sk-waveStretchDelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
/*
 *  Usage:
 *
      <div class="sk-wandering-cubes">
        <div class="sk-cube sk-cube1"></div>
        <div class="sk-cube sk-cube2"></div>
      </div>
 *
 */
.sk-wandering-cubes {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-wandering-cubes .sk-cube {
  background-color: #333;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
  animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both;
}

.sk-wandering-cubes .sk-cube2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-wanderingCube {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
    transform: translateX(30px) rotate(-90deg) scale(0.5);
  }
  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
    transform: translateX(30px) translateY(30px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
    transform: translateX(30px) translateY(30px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes sk-wanderingCube {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
    transform: translateX(30px) rotate(-90deg) scale(0.5);
  }
  50% {
    /* Hack to make FF rotate in the right direction */
    -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
    transform: translateX(30px) translateY(30px) rotate(-179deg);
  }
  50.1% {
    -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
    transform: translateX(30px) translateY(30px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
    transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
/*
 *  Usage:
 *
      <div class="sk-spinner sk-spinner-pulse"></div>
 *
 */
.sk-spinner-pulse {
  width: 40px;
  height: 40px;
  margin: 40px auto;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
  animation: sk-pulseScaleOut 1s infinite ease-in-out;
}

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/*
 *  Usage:
 *
      <div class="sk-chasing-dots">
        <div class="sk-child sk-dot1"></div>
        <div class="sk-child sk-dot2"></div>
      </div>
 *
 */
.sk-chasing-dots {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-chasingDotsRotate 2s infinite linear;
  animation: sk-chasingDotsRotate 2s infinite linear;
}

.sk-chasing-dots .sk-child {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-chasingDotsBounce 2s infinite ease-in-out;
  animation: sk-chasingDotsBounce 2s infinite ease-in-out;
}

.sk-chasing-dots .sk-dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes sk-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes sk-chasingDotsRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-chasingDotsBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-chasingDotsBounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
      <div class="sk-three-bounce">
        <div class="sk-child sk-bounce1"></div>
        <div class="sk-child sk-bounce2"></div>
        <div class="sk-child sk-bounce3"></div>
      </div>
 *
 */
.sk-three-bounce {
  margin: 40px auto;
  width: 80px;
  text-align: center;
}

.sk-three-bounce .sk-child {
  width: 20px;
  height: 20px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
  animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
      <div class="sk-circle">
        <div class="sk-circle1 sk-child"></div>
        <div class="sk-circle2 sk-child"></div>
        <div class="sk-circle3 sk-child"></div>
        <div class="sk-circle4 sk-child"></div>
        <div class="sk-circle5 sk-child"></div>
        <div class="sk-circle6 sk-child"></div>
        <div class="sk-circle7 sk-child"></div>
        <div class="sk-circle8 sk-child"></div>
        <div class="sk-circle9 sk-child"></div>
        <div class="sk-circle10 sk-child"></div>
        <div class="sk-circle11 sk-child"></div>
        <div class="sk-circle12 sk-child"></div>
      </div>
 *
 */
.sk-circle {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/*
 *  Usage:
 *
      <div class="sk-cube-grid">
        <div class="sk-cube sk-cube1"></div>
        <div class="sk-cube sk-cube2"></div>
        <div class="sk-cube sk-cube3"></div>
        <div class="sk-cube sk-cube4"></div>
        <div class="sk-cube sk-cube5"></div>
        <div class="sk-cube sk-cube6"></div>
        <div class="sk-cube sk-cube7"></div>
        <div class="sk-cube sk-cube8"></div>
        <div class="sk-cube sk-cube9"></div>
      </div>
 *
 */
.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 40px auto;
  /*
   * Spinner positions
   * 1 2 3
   * 4 5 6
   * 7 8 9
   */
}

.sk-cube-grid .sk-cube {
  width: 33.33%;
  height: 33.33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0.0s;
  animation-delay: 0.0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
/*
 *  Usage:
 *
      <div class="sk-fading-circle">
        <div class="sk-circle1 sk-circle"></div>
        <div class="sk-circle2 sk-circle"></div>
        <div class="sk-circle3 sk-circle"></div>
        <div class="sk-circle4 sk-circle"></div>
        <div class="sk-circle5 sk-circle"></div>
        <div class="sk-circle6 sk-circle"></div>
        <div class="sk-circle7 sk-circle"></div>
        <div class="sk-circle8 sk-circle"></div>
        <div class="sk-circle9 sk-circle"></div>
        <div class="sk-circle10 sk-circle"></div>
        <div class="sk-circle11 sk-circle"></div>
        <div class="sk-circle12 sk-circle"></div>
      </div>
 *
 */
.sk-fading-circle {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
/*
 *  Usage:
 *
      <div class="sk-folding-cube">
        <div class="sk-cube1 sk-cube"></div>
        <div class="sk-cube2 sk-cube"></div>
        <div class="sk-cube4 sk-cube"></div>
        <div class="sk-cube3 sk-cube"></div>
      </div>
 *
 */
.sk-folding-cube {
  margin: 40px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -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);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 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);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 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);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 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);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 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);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 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);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 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);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 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);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  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);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  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);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  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);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  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);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  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);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*body┬á{
	display: flex;
    flex-direction: column;
}*/
aside.nav-main {
  min-height: calc(100vh - 70px);
  -webkit-transform: translate(-240px, 0);
  -moz-transform: translate(-240px, 0);
  -ms-transform: translate(-240px, 0);
  -o-transform: translate(-240px, 0);
  transform: translate(-240px, 0);
}
@media (min-width: 576px) {
  aside.nav-main {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

aside.nav-main-open {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.paginacion {
  margin: 0 auto;
}

.nav-main {
  height: 100%;
  background-color: #ccc;
}

.nav-main-left {
  left: 0;
}

.nav-main-expanded {
  width: 240px;
}

.nav-menu-center-vertical {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.avatar {
  width: 48px;
  height: 48px;
  background-color: #666;
}

.content-header {
  padding-left: 0px;
}

.content-right.cright-expanded {
  padding-left: 0px;
}
@media (min-width: 576px) {
  .content-right.cright-expanded {
    padding-left: 240px;
  }
}

.content-right.cright-ex-open {
  -webkit-transform: translate(240px, 0);
  -moz-transform: translate(240px, 0);
  -ms-transform: translate(240px, 0);
  -o-transform: translate(240px, 0);
  transform: translate(240px, 0);
}

.content-main {
  height: 100%;
  padding-top: 80px;
  padding-bottom: 0px;
}
@media (min-width: 576px) {
  .content-main {
    padding-bottom: 60px;
  }
}

.c-scroll {
  padding-bottom: 140px;
}
@media (min-width: 576px) {
  .c-scroll {
    padding-bottom: 0px;
  }
}

.content-data {
  height: 100%;
  min-height: 100%;
  padding-bottom: 0px;
  padding-left: 0;
}
@media (min-width: 576px) {
  .content-data {
    padding-left: 25px;
    padding-bottom: 80px;
  }
}

.content-footer {
  -webkit-transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
@media (min-width: 576px) {
  .content-footer {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.modal-busqueda {
  width: 300px;
  max-height: 80%;
  opacity: 1;
  background-color: white;
  -webkit-transform: translate(-110%, -50%);
  -moz-transform: translate(-110%, -50%);
  -ms-transform: translate(-110%, -50%);
  -o-transform: translate(-110%, -50%);
  transform: translate(-110%, -50%);
}
@media (min-width: 576px) {
  .modal-busqueda {
    width: 240px;
  }
}

/*.modal-busqueda {
	width: 300px;
	height: 100%;
	bottom: 80px;
	opacity: 1;
	background-color: rgba(255,255,255,1);
	-webkit-transform: translate(-110%,0);
    -moz-transform: translate(-110%,0);
    -ms-transform: translate(-110%,0);
    -o-transform: translate(-110%,0);
   	transform: translate(-110%,0);

   	@include modular-mq(sm) {
		width: 240px;
	}
}*/
.busqueda-segundo-plano {
  opacity: .8;
  left: -100%;
}
@media (min-width: 768px) {
  .busqueda-segundo-plano {
    opacity: .9;
    left: -60px;
  }
}

.opacity-0-important {
  opacity: 0 !important;
}

.bg-login {
  background-image: -webkit-linear-gradient(#DEF8FE 0%, #73DDFE 64%, #00BFFC 100%);
  background-image: -o-linear-gradient(#DEF8FE 0%, #73DDFE 64%, #00BFFC 100%);
  background-image: linear-gradient(#DEF8FE 0%, #73DDFE 64%, #00BFFC 100%);
}

.modal-login {
  width: 300px;
}

.cinput-login {
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(32, 103, 119, 0.6);
}

.nav-link {
  color: #9B9B9B;
}
.nav-link:hover {
  color: #828282;
}
.nav-link:active, .nav-link:focus {
  color: #000;
}

.modal-global-options {
  min-width: 200px;
  background-color: #fff;
}

.modal-info {
  width: 320px;
  background-color: #fff;
}

.modal-feedback {
  min-width: 300px;
  max-width: 468px;
  background-color: #fff;
  top: -20%;
}

.modal-contenido {
  background: #fff;
  width: 90%;
  height: 90%;
}
@media (min-width: 576px) {
  .modal-contenido {
    width: 75%;
    height: 75%;
  }
}

.modal {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.cicon-w-op-menu {
  width: 22px;
}

.c-ok {
  color: #7ED321;
}

.c-err {
  color: #a94442;
}

.c-adv {
  color: #8a6d3b;
}

.modal-feedback-ok {
  background-color: #dff0d8;
  color: #3c763d;
}

.modal-feedback-err {
  background-color: #f2dede;
  color: #a94442;
}

.modal-feedback-adv {
  background-color: #FCF8E8;
  color: #8a6d3b;
}

/*//Lo deshabilitamos para chrome ya que no da problemas
_::content, _:future, .c-scroll:not(*:root) { -webkit-padding-after: 80px;  }
*/
.img-thumb-listado {
  max-width: 150px;
}

.ultima-modificacion {
  position: relative;
  transform: translate(0, 50%);
}

.notificacion {
  position: relative;
  transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
}

.eff-updown {
  height: 50px;
  /*	position: absolute;
  	top:0;
  	left: 0;
  	width: 100%;*/
  animation: 12s linear 0s normal none infinite running switchupdown;
  -webkit-animation-name: switchupdown;
  -webkit-animation-duration: 12s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: switchupdown;
  -moz-animation-duration: 12s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: switchupdown;
  -ms-animation-duration: 12s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  /*    -o-animation: 12s linear 0s normal none infinite running switchupdown;
      -ms-animation: 12s linear 0s normal none infinite running switchupdown;;
      animation: 12s linear 0s normal none infinite running switchupdown;*/
}

@keyframes switchupdown {
  0% {
    transform: translate(0, -50%);
  }
  21% {
    transform: translate(0, -50%);
  }
  42% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(0, 0);
  }
  72% {
    transform: translate(0, 0);
  }
  92% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@-moz-keyframes switchupdown {
  0% {
    -moz-transform: translate(0, -50%);
  }
  21% {
    -moz-transform: translate(0, -50%);
  }
  42% {
    -moz-transform: translate(0, -50%);
  }
  50% {
    -moz-transform: translate(0, 0);
  }
  72% {
    -moz-transform: translate(0, 0);
  }
  92% {
    -moz-transform: translate(0, 0);
  }
  100% {
    -moz-transform: translate(0, -50%);
  }
}
@-webkit-keyframes switchupdown {
  0% {
    -webkit-transform: translate(0, -50%);
  }
  21% {
    -webkit-transform: translate(0, -50%);
  }
  42% {
    -webkit-transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(0, 0);
  }
  72% {
    -webkit-transform: translate(0, 0);
  }
  92% {
    -webkit-transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -50%);
  }
}
@-ms-keyframes switchupdown {
  0% {
    -ms-transform: translate(0, -50%);
  }
  21% {
    -ms-transform: translate(0, -50%);
  }
  42% {
    -ms-transform: translate(0, -50%);
  }
  50% {
    -ms-transform: translate(0, 0);
  }
  72% {
    -ms-transform: translate(0, 0);
  }
  92% {
    -ms-transform: translate(0, 0);
  }
  100% {
    -ms-transform: translate(0, -50%);
  }
}
.cbtn-reset, .cinput-reset {
  font-size: inherit;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none !important;
  border: none;
  border-radius: 0px;
}
.cbtn-reset:focus, .cinput-reset:focus {
  outline-width: 0;
  outline: 0 none;
  outline-color: transparent;
}

.cinput-border-primary {
  border: 2px solid #e6e6e6;
}
.cinput-border-primary:focus {
  border: 2px solid #00CBFA;
}

.cinput-select {
  background-image: url("../assets/arrow_select.png");
  background-position: right 10px center;
  background-repeat: no-repeat;
}

.bg-transparent {
  background-color: transparent;
}
.bg-transparent:hover {
  background-color: none;
}

.cbtn-primary:hover {
  background-color: #00a2c7;
}
.cbtn-primary:focus, .cbtn-primary:active {
  background-color: #008dae;
}

.cbtn-primary-line {
  border: 1px solid #00CBFA;
  color: #00CBFA;
}
.cbtn-primary-line:hover {
  color: #fff;
  background-color: #00CBFA;
}
.cbtn-primary-line:focus, .cbtn-primary-line:active {
  color: #fff;
  background-color: #00a2c7;
}

.cbtn-transparent:hover {
  background-color: #e6e6e6;
}
.cbtn-transparent:focus, .cbtn-transparent:active {
  background-color: #cccccc;
}

.cbtn-block {
  padding: 0.5em 1em;
  /*	@include modular-mq(sm) {
  		padding: 0.5em 1em;
  	}*/
}

.max-w-0100 {
  max-width: 100%;
}

.bg-white-040 {
  background-color: rgba(255, 255, 255, 0.4);
}

.sortable-placeholder:hover {
  background: #fffa90;
}

.cinput-error {
  border: 2px solid red;
}

.transform-translate-050 {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.transform-translate-x-050 {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.transform-translate-y-050 {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-55 {
  top: 55px;
}

.bottom-55 {
  bottom: 55px;
}

.right-55 {
  right: 55px;
}

.left-55 {
  left: 55px;
}

.top-60 {
  top: 60px;
}

.bottom-60 {
  bottom: 60px;
}

.right-60 {
  right: 60px;
}

.left-60 {
  left: 60px;
}

.top-65 {
  top: 65px;
}

.bottom-65 {
  bottom: 65px;
}

.right-65 {
  right: 65px;
}

.left-65 {
  left: 65px;
}

.top-70 {
  top: 70px;
}

.bottom-70 {
  bottom: 70px;
}

.right-70 {
  right: 70px;
}

.left-70 {
  left: 70px;
}

.top-75 {
  top: 75px;
}

.bottom-75 {
  bottom: 75px;
}

.right-75 {
  right: 75px;
}

.left-75 {
  left: 75px;
}

.top-80 {
  top: 80px;
}

.bottom-80 {
  bottom: 80px;
}

.right-80 {
  right: 80px;
}

.left-80 {
  left: 80px;
}

.top-85 {
  top: 85px;
}

.bottom-85 {
  bottom: 85px;
}

.right-85 {
  right: 85px;
}

.left-85 {
  left: 85px;
}

.top-90 {
  top: 90px;
}

.bottom-90 {
  bottom: 90px;
}

.right-90 {
  right: 90px;
}

.left-90 {
  left: 90px;
}

.top-95 {
  top: 95px;
}

.bottom-95 {
  bottom: 95px;
}

.right-95 {
  right: 95px;
}

.left-95 {
  left: 95px;
}

.top-100 {
  top: 100px;
}

.bottom-100 {
  bottom: 100px;
}

.right-100 {
  right: 100px;
}

.left-100 {
  left: 100px;
}

.zindex-0 {
  z-index: 0;
}

.zindex-5 {
  z-index: 5;
}

.zindex-10 {
  z-index: 10;
}

.zindex-15 {
  z-index: 15;
}

.zindex-20 {
  z-index: 20;
}

.zindex-25 {
  z-index: 25;
}

.zindex-30 {
  z-index: 30;
}

.zindex-35 {
  z-index: 35;
}

.zindex-40 {
  z-index: 40;
}

.zindex-45 {
  z-index: 45;
}

.zindex-50 {
  z-index: 50;
}

.zindex-55 {
  z-index: 55;
}

.zindex-60 {
  z-index: 60;
}

.zindex-65 {
  z-index: 65;
}

.zindex-70 {
  z-index: 70;
}

.zindex-75 {
  z-index: 75;
}

.zindex-80 {
  z-index: 80;
}

.zindex-85 {
  z-index: 85;
}

.zindex-90 {
  z-index: 90;
}

.zindex-95 {
  z-index: 95;
}

.zindex-100 {
  z-index: 100;
}

.border-radius-0 {
  border-radius: 0px;
}

.border-radius-1 {
  border-radius: 1px;
}

.border-radius-2 {
  border-radius: 2px;
}

.border-radius-3 {
  border-radius: 3px;
}

.border-radius-4 {
  border-radius: 4px;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-6 {
  border-radius: 6px;
}

.border-radius-7 {
  border-radius: 7px;
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-9 {
  border-radius: 9px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-11 {
  border-radius: 11px;
}

.border-radius-12 {
  border-radius: 12px;
}

.border-radius-13 {
  border-radius: 13px;
}

.border-radius-14 {
  border-radius: 14px;
}

.border-radius-15 {
  border-radius: 15px;
}

.border-radius-16 {
  border-radius: 16px;
}

.border-radius-17 {
  border-radius: 17px;
}

.border-radius-18 {
  border-radius: 18px;
}

.border-radius-19 {
  border-radius: 19px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-21 {
  border-radius: 21px;
}

.border-radius-22 {
  border-radius: 22px;
}

.border-radius-23 {
  border-radius: 23px;
}

.border-radius-24 {
  border-radius: 24px;
}

.border-radius-25 {
  border-radius: 25px;
}

.border-radius-26 {
  border-radius: 26px;
}

.border-radius-27 {
  border-radius: 27px;
}

.border-radius-28 {
  border-radius: 28px;
}

.border-radius-29 {
  border-radius: 29px;
}

.border-radius-30 {
  border-radius: 30px;
}

.border-radius-31 {
  border-radius: 31px;
}

.border-radius-32 {
  border-radius: 32px;
}

.border-radius-33 {
  border-radius: 33px;
}

.border-radius-34 {
  border-radius: 34px;
}

.border-radius-35 {
  border-radius: 35px;
}

.border-radius-36 {
  border-radius: 36px;
}

.border-radius-37 {
  border-radius: 37px;
}

.border-radius-38 {
  border-radius: 38px;
}

.border-radius-39 {
  border-radius: 39px;
}

.border-radius-40 {
  border-radius: 40px;
}

.border-radius-41 {
  border-radius: 41px;
}

.border-radius-42 {
  border-radius: 42px;
}

.border-radius-43 {
  border-radius: 43px;
}

.border-radius-44 {
  border-radius: 44px;
}

.border-radius-45 {
  border-radius: 45px;
}

.border-radius-46 {
  border-radius: 46px;
}

.border-radius-47 {
  border-radius: 47px;
}

.border-radius-48 {
  border-radius: 48px;
}

.border-radius-49 {
  border-radius: 49px;
}

.border-radius-50 {
  border-radius: 50px;
}

.bg-c-dark-rgba-0 {
  background-color: transparent;
}

.bg-c-dark-rgba-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-c-dark-rgba-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-c-dark-rgba-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-c-dark-rgba-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-c-dark-rgba-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-c-dark-rgba-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-c-dark-rgba-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-c-dark-rgba-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-c-dark-rgba-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-c-dark-rgba-100 {
  background-color: rgba(0, 0, 0, 1.0);
}

/* ************* BORDER COLOR  1PX SOLID % *************** */
.border-1-05 {
  border: 1px solid #f2f2f2;
}

.border-t-1-05 {
  border-top: 1px solid #f2f2f2;
}

.border-b-1-05 {
  border-bottom: 1px solid #f2f2f2;
}

.border-l-1-05 {
  border-left: 1px solid #f2f2f2;
}

.border-r-1-05 {
  border-right: 1px solid #f2f2f2;
}

.border-1-010 {
  border: 1px solid #e6e6e6;
}

.border-t-1-010 {
  border-top: 1px solid #e6e6e6;
}

.border-b-1-010 {
  border-bottom: 1px solid #e6e6e6;
}

.border-l-1-010 {
  border-left: 1px solid #e6e6e6;
}

.border-r-1-010 {
  border-right: 1px solid #e6e6e6;
}

.border-1-015 {
  border: 1px solid #d9d9d9;
}

.border-t-1-015 {
  border-top: 1px solid #d9d9d9;
}

.border-b-1-015 {
  border-bottom: 1px solid #d9d9d9;
}

.border-l-1-015 {
  border-left: 1px solid #d9d9d9;
}

.border-r-1-015 {
  border-right: 1px solid #d9d9d9;
}

.border-1-020 {
  border: 1px solid #cccccc;
}

.border-t-1-020 {
  border-top: 1px solid #cccccc;
}

.border-b-1-020 {
  border-bottom: 1px solid #cccccc;
}

.border-l-1-020 {
  border-left: 1px solid #cccccc;
}

.border-r-1-020 {
  border-right: 1px solid #cccccc;
}

.border-1-025 {
  border: 1px solid #bfbfbf;
}

.border-t-1-025 {
  border-top: 1px solid #bfbfbf;
}

.border-b-1-025 {
  border-bottom: 1px solid #bfbfbf;
}

.border-l-1-025 {
  border-left: 1px solid #bfbfbf;
}

.border-r-1-025 {
  border-right: 1px solid #bfbfbf;
}

.border-1-030 {
  border: 1px solid #b3b3b3;
}

.border-t-1-030 {
  border-top: 1px solid #b3b3b3;
}

.border-b-1-030 {
  border-bottom: 1px solid #b3b3b3;
}

.border-l-1-030 {
  border-left: 1px solid #b3b3b3;
}

.border-r-1-030 {
  border-right: 1px solid #b3b3b3;
}

.border-1-035 {
  border: 1px solid #a6a6a6;
}

.border-t-1-035 {
  border-top: 1px solid #a6a6a6;
}

.border-b-1-035 {
  border-bottom: 1px solid #a6a6a6;
}

.border-l-1-035 {
  border-left: 1px solid #a6a6a6;
}

.border-r-1-035 {
  border-right: 1px solid #a6a6a6;
}

.border-1-040 {
  border: 1px solid #999999;
}

.border-t-1-040 {
  border-top: 1px solid #999999;
}

.border-b-1-040 {
  border-bottom: 1px solid #999999;
}

.border-l-1-040 {
  border-left: 1px solid #999999;
}

.border-r-1-040 {
  border-right: 1px solid #999999;
}

.border-1-045 {
  border: 1px solid #8c8c8c;
}

.border-t-1-045 {
  border-top: 1px solid #8c8c8c;
}

.border-b-1-045 {
  border-bottom: 1px solid #8c8c8c;
}

.border-l-1-045 {
  border-left: 1px solid #8c8c8c;
}

.border-r-1-045 {
  border-right: 1px solid #8c8c8c;
}

.border-1-050 {
  border: 1px solid gray;
}

.border-t-1-050 {
  border-top: 1px solid gray;
}

.border-b-1-050 {
  border-bottom: 1px solid gray;
}

.border-l-1-050 {
  border-left: 1px solid gray;
}

.border-r-1-050 {
  border-right: 1px solid gray;
}

.transition-0 {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.transition-1000 {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.transition-2000 {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.transition-3000 {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.transition-4000 {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.transition-5000 {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.transition-6000 {
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.transition-7000 {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.transition-8000 {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.transition-9000 {
  -webkit-transition: all 0.9s;
  -moz-transition: all 0.9s;
  -ms-transition: all 0.9s;
  -o-transition: all 0.9s;
  transition: all 0.9s;
}

.transition-10000 {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.max-height-05 {
  max-height: 5%;
}

.max-height-010 {
  max-height: 10%;
}

.max-height-015 {
  max-height: 15%;
}

.max-height-020 {
  max-height: 20%;
}

.max-height-025 {
  max-height: 25%;
}

.max-height-030 {
  max-height: 30%;
}

.max-height-035 {
  max-height: 35%;
}

.max-height-040 {
  max-height: 40%;
}

.max-height-045 {
  max-height: 45%;
}

.max-height-050 {
  max-height: 50%;
}

.max-height-055 {
  max-height: 55%;
}

.max-height-060 {
  max-height: 60%;
}

.max-height-065 {
  max-height: 65%;
}

.max-height-070 {
  max-height: 70%;
}

.max-height-075 {
  max-height: 75%;
}

.max-height-080 {
  max-height: 80%;
}

.max-height-085 {
  max-height: 85%;
}

.max-height-090 {
  max-height: 90%;
}

.max-height-095 {
  max-height: 95%;
}

.max-height-0100 {
  max-height: 100%;
}

.max-width-05 {
  max-width: 5%;
}

.max-width-010 {
  max-width: 10%;
}

.max-width-015 {
  max-width: 15%;
}

.max-width-020 {
  max-width: 20%;
}

.max-width-025 {
  max-width: 25%;
}

.max-width-030 {
  max-width: 30%;
}

.max-width-035 {
  max-width: 35%;
}

.max-width-040 {
  max-width: 40%;
}

.max-width-045 {
  max-width: 45%;
}

.max-width-050 {
  max-width: 50%;
}

.max-width-055 {
  max-width: 55%;
}

.max-width-060 {
  max-width: 60%;
}

.max-width-065 {
  max-width: 65%;
}

.max-width-070 {
  max-width: 70%;
}

.max-width-075 {
  max-width: 75%;
}

.max-width-080 {
  max-width: 80%;
}

.max-width-085 {
  max-width: 85%;
}

.max-width-090 {
  max-width: 90%;
}

.max-width-095 {
  max-width: 95%;
}

.max-width-0100 {
  max-width: 100%;
}

.visibility-v {
  visibility: visible;
}

.visibility-h {
  visibility: hidden;
}

.padding-resp-15 {
  padding: 7.5px;
}
@media (min-width: 0px) {
  .padding-resp-15 {
    padding: 15px;
  }
}

.padding-resp-l-15 {
  padding-left: 7.5px;
}
@media (min-width: 0px) {
  .padding-resp-l-15 {
    padding-left: 15px;
  }
}

.padding-resp-r-15 {
  padding-right: 7.5px;
}
@media (min-width: 0px) {
  .padding-resp-r-15 {
    padding-right: 15px;
  }
}

.padding-resp-t-15 {
  padding-top: 7.5px;
}
@media (min-width: 0px) {
  .padding-resp-t-15 {
    padding-top: 15px;
  }
}

.padding-resp-b-15 {
  padding-bottom: 7.5px;
}
@media (min-width: 0px) {
  .padding-resp-b-15 {
    padding-bottom: 15px;
  }
}

.padding-resp-20 {
  padding: 10px;
}
@media (min-width: 0px) {
  .padding-resp-20 {
    padding: 20px;
  }
}

.padding-resp-l-20 {
  padding-left: 10px;
}
@media (min-width: 0px) {
  .padding-resp-l-20 {
    padding-left: 20px;
  }
}

.padding-resp-r-20 {
  padding-right: 10px;
}
@media (min-width: 0px) {
  .padding-resp-r-20 {
    padding-right: 20px;
  }
}

.padding-resp-t-20 {
  padding-top: 10px;
}
@media (min-width: 0px) {
  .padding-resp-t-20 {
    padding-top: 20px;
  }
}

.padding-resp-b-20 {
  padding-bottom: 10px;
}
@media (min-width: 0px) {
  .padding-resp-b-20 {
    padding-bottom: 20px;
  }
}

.padding-resp-25 {
  padding: 12.5px;
}
@media (min-width: 0px) {
  .padding-resp-25 {
    padding: 25px;
  }
}

.padding-resp-l-25 {
  padding-left: 12.5px;
}
@media (min-width: 0px) {
  .padding-resp-l-25 {
    padding-left: 25px;
  }
}

.padding-resp-r-25 {
  padding-right: 12.5px;
}
@media (min-width: 0px) {
  .padding-resp-r-25 {
    padding-right: 25px;
  }
}

.padding-resp-t-25 {
  padding-top: 12.5px;
}
@media (min-width: 0px) {
  .padding-resp-t-25 {
    padding-top: 25px;
  }
}

.padding-resp-b-25 {
  padding-bottom: 12.5px;
}
@media (min-width: 0px) {
  .padding-resp-b-25 {
    padding-bottom: 25px;
  }
}

.padding-resp-30 {
  padding: 15px;
}
@media (min-width: 0px) {
  .padding-resp-30 {
    padding: 30px;
  }
}

.padding-resp-l-30 {
  padding-left: 15px;
}
@media (min-width: 0px) {
  .padding-resp-l-30 {
    padding-left: 30px;
  }
}

.padding-resp-r-30 {
  padding-right: 15px;
}
@media (min-width: 0px) {
  .padding-resp-r-30 {
    padding-right: 30px;
  }
}

.padding-resp-t-30 {
  padding-top: 15px;
}
@media (min-width: 0px) {
  .padding-resp-t-30 {
    padding-top: 30px;
  }
}

.padding-resp-b-30 {
  padding-bottom: 15px;
}
@media (min-width: 0px) {
  .padding-resp-b-30 {
    padding-bottom: 30px;
  }
}

.padding-resp-35 {
  padding: 17.5px;
}
@media (min-width: 0px) {
  .padding-resp-35 {
    padding: 35px;
  }
}

.padding-resp-l-35 {
  padding-left: 17.5px;
}
@media (min-width: 0px) {
  .padding-resp-l-35 {
    padding-left: 35px;
  }
}

.padding-resp-r-35 {
  padding-right: 17.5px;
}
@media (min-width: 0px) {
  .padding-resp-r-35 {
    padding-right: 35px;
  }
}

.padding-resp-t-35 {
  padding-top: 17.5px;
}
@media (min-width: 0px) {
  .padding-resp-t-35 {
    padding-top: 35px;
  }
}

.padding-resp-b-35 {
  padding-bottom: 17.5px;
}
@media (min-width: 0px) {
  .padding-resp-b-35 {
    padding-bottom: 35px;
  }
}

.width-resp-5 {
  width: 5px;
}
@media (min-width: 0px) {
  .width-resp-5 {
    width: 5px;
  }
}

.height-resp-5 {
  height: 5px;
}
@media (min-width: 0px) {
  .height-resp-5 {
    height: 5px;
  }
}

.width-resp-10 {
  width: 10px;
}
@media (min-width: 0px) {
  .width-resp-10 {
    width: 10px;
  }
}

.height-resp-10 {
  height: 10px;
}
@media (min-width: 0px) {
  .height-resp-10 {
    height: 10px;
  }
}

.width-resp-15 {
  width: 15px;
}
@media (min-width: 0px) {
  .width-resp-15 {
    width: 15px;
  }
}

.height-resp-15 {
  height: 15px;
}
@media (min-width: 0px) {
  .height-resp-15 {
    height: 15px;
  }
}

.width-resp-20 {
  width: 20px;
}
@media (min-width: 0px) {
  .width-resp-20 {
    width: 20px;
  }
}

.height-resp-20 {
  height: 20px;
}
@media (min-width: 0px) {
  .height-resp-20 {
    height: 20px;
  }
}

.width-resp-25 {
  width: 25px;
}
@media (min-width: 0px) {
  .width-resp-25 {
    width: 25px;
  }
}

.height-resp-25 {
  height: 25px;
}
@media (min-width: 0px) {
  .height-resp-25 {
    height: 25px;
  }
}

.width-resp-30 {
  width: 30px;
}
@media (min-width: 0px) {
  .width-resp-30 {
    width: 30px;
  }
}

.height-resp-30 {
  height: 30px;
}
@media (min-width: 0px) {
  .height-resp-30 {
    height: 30px;
  }
}

.width-resp-35 {
  width: 35px;
}
@media (min-width: 0px) {
  .width-resp-35 {
    width: 35px;
  }
}

.height-resp-35 {
  height: 35px;
}
@media (min-width: 0px) {
  .height-resp-35 {
    height: 35px;
  }
}

.width-resp-40 {
  width: 20px;
}
@media (min-width: 0px) {
  .width-resp-40 {
    width: 40px;
  }
}

.height-resp-40 {
  height: 20px;
}
@media (min-width: 0px) {
  .height-resp-40 {
    height: 40px;
  }
}

.width-resp-45 {
  width: 22.5px;
}
@media (min-width: 0px) {
  .width-resp-45 {
    width: 45px;
  }
}

.height-resp-45 {
  height: 22.5px;
}
@media (min-width: 0px) {
  .height-resp-45 {
    height: 45px;
  }
}

.width-resp-50 {
  width: 25px;
}
@media (min-width: 0px) {
  .width-resp-50 {
    width: 50px;
  }
}

.height-resp-50 {
  height: 25px;
}
@media (min-width: 0px) {
  .height-resp-50 {
    height: 50px;
  }
}

.width-resp-55 {
  width: 27.5px;
}
@media (min-width: 0px) {
  .width-resp-55 {
    width: 55px;
  }
}

.height-resp-55 {
  height: 27.5px;
}
@media (min-width: 0px) {
  .height-resp-55 {
    height: 55px;
  }
}

.width-resp-60 {
  width: 30px;
}
@media (min-width: 0px) {
  .width-resp-60 {
    width: 60px;
  }
}

.height-resp-60 {
  height: 30px;
}
@media (min-width: 0px) {
  .height-resp-60 {
    height: 60px;
  }
}

.width-resp-65 {
  width: 32.5px;
}
@media (min-width: 0px) {
  .width-resp-65 {
    width: 65px;
  }
}

.height-resp-65 {
  height: 32.5px;
}
@media (min-width: 0px) {
  .height-resp-65 {
    height: 65px;
  }
}

.width-resp-70 {
  width: 35px;
}
@media (min-width: 0px) {
  .width-resp-70 {
    width: 70px;
  }
}

.height-resp-70 {
  height: 35px;
}
@media (min-width: 0px) {
  .height-resp-70 {
    height: 70px;
  }
}

.width-resp-75 {
  width: 37.5px;
}
@media (min-width: 0px) {
  .width-resp-75 {
    width: 75px;
  }
}

.height-resp-75 {
  height: 37.5px;
}
@media (min-width: 0px) {
  .height-resp-75 {
    height: 75px;
  }
}

.width-resp-80 {
  width: 40px;
}
@media (min-width: 0px) {
  .width-resp-80 {
    width: 80px;
  }
}

.height-resp-80 {
  height: 40px;
}
@media (min-width: 0px) {
  .height-resp-80 {
    height: 80px;
  }
}

.width-resp-85 {
  width: 42.5px;
}
@media (min-width: 0px) {
  .width-resp-85 {
    width: 85px;
  }
}

.height-resp-85 {
  height: 42.5px;
}
@media (min-width: 0px) {
  .height-resp-85 {
    height: 85px;
  }
}

.width-resp-90 {
  width: 45px;
}
@media (min-width: 0px) {
  .width-resp-90 {
    width: 90px;
  }
}

.height-resp-90 {
  height: 45px;
}
@media (min-width: 0px) {
  .height-resp-90 {
    height: 90px;
  }
}

.width-resp-95 {
  width: 47.5px;
}
@media (min-width: 0px) {
  .width-resp-95 {
    width: 95px;
  }
}

.height-resp-95 {
  height: 47.5px;
}
@media (min-width: 0px) {
  .height-resp-95 {
    height: 95px;
  }
}

.width-resp-100 {
  width: 50px;
}
@media (min-width: 0px) {
  .width-resp-100 {
    width: 100px;
  }
}

.height-resp-100 {
  height: 50px;
}
@media (min-width: 0px) {
  .height-resp-100 {
    height: 100px;
  }
}

.display-tc-resp {
  display: block;
}
@media (min-width: 768px) {
  .display-tc-resp {
    display: table-cell;
  }
}

.margin-0-auto {
  margin: 0 auto;
}

.ellipsis {
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid::after {
  content: "";
  display: table;
  clear: both;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col-xs-1 {
  float: left;
  width: 8.33333%;
}

.col-xs-2 {
  float: left;
  width: 16.66667%;
}

.col-xs-3 {
  float: left;
  width: 25%;
}

.col-xs-4 {
  float: left;
  width: 33.33333%;
}

.col-xs-5 {
  float: left;
  width: 41.66667%;
}

.col-xs-6 {
  float: left;
  width: 50%;
}

.col-xs-7 {
  float: left;
  width: 58.33333%;
}

.col-xs-8 {
  float: left;
  width: 66.66667%;
}

.col-xs-9 {
  float: left;
  width: 75%;
}

.col-xs-10 {
  float: left;
  width: 83.33333%;
}

.col-xs-11 {
  float: left;
  width: 91.66667%;
}

.col-xs-12 {
  float: left;
  width: 100%;
}

.pull-xs-0 {
  right: auto;
}

.pull-xs-1 {
  right: 8.33333%;
}

.pull-xs-2 {
  right: 16.66667%;
}

.pull-xs-3 {
  right: 25%;
}

.pull-xs-4 {
  right: 33.33333%;
}

.pull-xs-5 {
  right: 41.66667%;
}

.pull-xs-6 {
  right: 50%;
}

.pull-xs-7 {
  right: 58.33333%;
}

.pull-xs-8 {
  right: 66.66667%;
}

.pull-xs-9 {
  right: 75%;
}

.pull-xs-10 {
  right: 83.33333%;
}

.pull-xs-11 {
  right: 91.66667%;
}

.pull-xs-12 {
  right: 100%;
}

.push-xs-0 {
  left: auto;
}

.push-xs-1 {
  left: 8.33333%;
}

.push-xs-2 {
  left: 16.66667%;
}

.push-xs-3 {
  left: 25%;
}

.push-xs-4 {
  left: 33.33333%;
}

.push-xs-5 {
  left: 41.66667%;
}

.push-xs-6 {
  left: 50%;
}

.push-xs-7 {
  left: 58.33333%;
}

.push-xs-8 {
  left: 66.66667%;
}

.push-xs-9 {
  left: 75%;
}

.push-xs-10 {
  left: 83.33333%;
}

.push-xs-11 {
  left: 91.66667%;
}

.push-xs-12 {
  left: 100%;
}

.offset-xs-1 {
  margin-left: 8.33333%;
}

.offset-xs-2 {
  margin-left: 16.66667%;
}

.offset-xs-3 {
  margin-left: 25%;
}

.offset-xs-4 {
  margin-left: 33.33333%;
}

.offset-xs-5 {
  margin-left: 41.66667%;
}

.offset-xs-6 {
  margin-left: 50%;
}

.offset-xs-7 {
  margin-left: 58.33333%;
}

.offset-xs-8 {
  margin-left: 66.66667%;
}

.offset-xs-9 {
  margin-left: 75%;
}

.offset-xs-10 {
  margin-left: 83.33333%;
}

.offset-xs-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    float: left;
    width: 8.33333%;
  }

  .col-sm-2 {
    float: left;
    width: 16.66667%;
  }

  .col-sm-3 {
    float: left;
    width: 25%;
  }

  .col-sm-4 {
    float: left;
    width: 33.33333%;
  }

  .col-sm-5 {
    float: left;
    width: 41.66667%;
  }

  .col-sm-6 {
    float: left;
    width: 50%;
  }

  .col-sm-7 {
    float: left;
    width: 58.33333%;
  }

  .col-sm-8 {
    float: left;
    width: 66.66667%;
  }

  .col-sm-9 {
    float: left;
    width: 75%;
  }

  .col-sm-10 {
    float: left;
    width: 83.33333%;
  }

  .col-sm-11 {
    float: left;
    width: 91.66667%;
  }

  .col-sm-12 {
    float: left;
    width: 100%;
  }

  .pull-sm-0 {
    right: auto;
  }

  .pull-sm-1 {
    right: 8.33333%;
  }

  .pull-sm-2 {
    right: 16.66667%;
  }

  .pull-sm-3 {
    right: 25%;
  }

  .pull-sm-4 {
    right: 33.33333%;
  }

  .pull-sm-5 {
    right: 41.66667%;
  }

  .pull-sm-6 {
    right: 50%;
  }

  .pull-sm-7 {
    right: 58.33333%;
  }

  .pull-sm-8 {
    right: 66.66667%;
  }

  .pull-sm-9 {
    right: 75%;
  }

  .pull-sm-10 {
    right: 83.33333%;
  }

  .pull-sm-11 {
    right: 91.66667%;
  }

  .pull-sm-12 {
    right: 100%;
  }

  .push-sm-0 {
    left: auto;
  }

  .push-sm-1 {
    left: 8.33333%;
  }

  .push-sm-2 {
    left: 16.66667%;
  }

  .push-sm-3 {
    left: 25%;
  }

  .push-sm-4 {
    left: 33.33333%;
  }

  .push-sm-5 {
    left: 41.66667%;
  }

  .push-sm-6 {
    left: 50%;
  }

  .push-sm-7 {
    left: 58.33333%;
  }

  .push-sm-8 {
    left: 66.66667%;
  }

  .push-sm-9 {
    left: 75%;
  }

  .push-sm-10 {
    left: 83.33333%;
  }

  .push-sm-11 {
    left: 91.66667%;
  }

  .push-sm-12 {
    left: 100%;
  }

  .offset-sm-0 {
    margin-left: 0%;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    float: left;
    width: 8.33333%;
  }

  .col-md-2 {
    float: left;
    width: 16.66667%;
  }

  .col-md-3 {
    float: left;
    width: 25%;
  }

  .col-md-4 {
    float: left;
    width: 33.33333%;
  }

  .col-md-5 {
    float: left;
    width: 41.66667%;
  }

  .col-md-6 {
    float: left;
    width: 50%;
  }

  .col-md-7 {
    float: left;
    width: 58.33333%;
  }

  .col-md-8 {
    float: left;
    width: 66.66667%;
  }

  .col-md-9 {
    float: left;
    width: 75%;
  }

  .col-md-10 {
    float: left;
    width: 83.33333%;
  }

  .col-md-11 {
    float: left;
    width: 91.66667%;
  }

  .col-md-12 {
    float: left;
    width: 100%;
  }

  .pull-md-0 {
    right: auto;
  }

  .pull-md-1 {
    right: 8.33333%;
  }

  .pull-md-2 {
    right: 16.66667%;
  }

  .pull-md-3 {
    right: 25%;
  }

  .pull-md-4 {
    right: 33.33333%;
  }

  .pull-md-5 {
    right: 41.66667%;
  }

  .pull-md-6 {
    right: 50%;
  }

  .pull-md-7 {
    right: 58.33333%;
  }

  .pull-md-8 {
    right: 66.66667%;
  }

  .pull-md-9 {
    right: 75%;
  }

  .pull-md-10 {
    right: 83.33333%;
  }

  .pull-md-11 {
    right: 91.66667%;
  }

  .pull-md-12 {
    right: 100%;
  }

  .push-md-0 {
    left: auto;
  }

  .push-md-1 {
    left: 8.33333%;
  }

  .push-md-2 {
    left: 16.66667%;
  }

  .push-md-3 {
    left: 25%;
  }

  .push-md-4 {
    left: 33.33333%;
  }

  .push-md-5 {
    left: 41.66667%;
  }

  .push-md-6 {
    left: 50%;
  }

  .push-md-7 {
    left: 58.33333%;
  }

  .push-md-8 {
    left: 66.66667%;
  }

  .push-md-9 {
    left: 75%;
  }

  .push-md-10 {
    left: 83.33333%;
  }

  .push-md-11 {
    left: 91.66667%;
  }

  .push-md-12 {
    left: 100%;
  }

  .offset-md-0 {
    margin-left: 0%;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    float: left;
    width: 8.33333%;
  }

  .col-lg-2 {
    float: left;
    width: 16.66667%;
  }

  .col-lg-3 {
    float: left;
    width: 25%;
  }

  .col-lg-4 {
    float: left;
    width: 33.33333%;
  }

  .col-lg-5 {
    float: left;
    width: 41.66667%;
  }

  .col-lg-6 {
    float: left;
    width: 50%;
  }

  .col-lg-7 {
    float: left;
    width: 58.33333%;
  }

  .col-lg-8 {
    float: left;
    width: 66.66667%;
  }

  .col-lg-9 {
    float: left;
    width: 75%;
  }

  .col-lg-10 {
    float: left;
    width: 83.33333%;
  }

  .col-lg-11 {
    float: left;
    width: 91.66667%;
  }

  .col-lg-12 {
    float: left;
    width: 100%;
  }

  .pull-lg-0 {
    right: auto;
  }

  .pull-lg-1 {
    right: 8.33333%;
  }

  .pull-lg-2 {
    right: 16.66667%;
  }

  .pull-lg-3 {
    right: 25%;
  }

  .pull-lg-4 {
    right: 33.33333%;
  }

  .pull-lg-5 {
    right: 41.66667%;
  }

  .pull-lg-6 {
    right: 50%;
  }

  .pull-lg-7 {
    right: 58.33333%;
  }

  .pull-lg-8 {
    right: 66.66667%;
  }

  .pull-lg-9 {
    right: 75%;
  }

  .pull-lg-10 {
    right: 83.33333%;
  }

  .pull-lg-11 {
    right: 91.66667%;
  }

  .pull-lg-12 {
    right: 100%;
  }

  .push-lg-0 {
    left: auto;
  }

  .push-lg-1 {
    left: 8.33333%;
  }

  .push-lg-2 {
    left: 16.66667%;
  }

  .push-lg-3 {
    left: 25%;
  }

  .push-lg-4 {
    left: 33.33333%;
  }

  .push-lg-5 {
    left: 41.66667%;
  }

  .push-lg-6 {
    left: 50%;
  }

  .push-lg-7 {
    left: 58.33333%;
  }

  .push-lg-8 {
    left: 66.66667%;
  }

  .push-lg-9 {
    left: 75%;
  }

  .push-lg-10 {
    left: 83.33333%;
  }

  .push-lg-11 {
    left: 91.66667%;
  }

  .push-lg-12 {
    left: 100%;
  }

  .offset-lg-0 {
    margin-left: 0%;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    float: left;
    width: 8.33333%;
  }

  .col-xl-2 {
    float: left;
    width: 16.66667%;
  }

  .col-xl-3 {
    float: left;
    width: 25%;
  }

  .col-xl-4 {
    float: left;
    width: 33.33333%;
  }

  .col-xl-5 {
    float: left;
    width: 41.66667%;
  }

  .col-xl-6 {
    float: left;
    width: 50%;
  }

  .col-xl-7 {
    float: left;
    width: 58.33333%;
  }

  .col-xl-8 {
    float: left;
    width: 66.66667%;
  }

  .col-xl-9 {
    float: left;
    width: 75%;
  }

  .col-xl-10 {
    float: left;
    width: 83.33333%;
  }

  .col-xl-11 {
    float: left;
    width: 91.66667%;
  }

  .col-xl-12 {
    float: left;
    width: 100%;
  }

  .pull-xl-0 {
    right: auto;
  }

  .pull-xl-1 {
    right: 8.33333%;
  }

  .pull-xl-2 {
    right: 16.66667%;
  }

  .pull-xl-3 {
    right: 25%;
  }

  .pull-xl-4 {
    right: 33.33333%;
  }

  .pull-xl-5 {
    right: 41.66667%;
  }

  .pull-xl-6 {
    right: 50%;
  }

  .pull-xl-7 {
    right: 58.33333%;
  }

  .pull-xl-8 {
    right: 66.66667%;
  }

  .pull-xl-9 {
    right: 75%;
  }

  .pull-xl-10 {
    right: 83.33333%;
  }

  .pull-xl-11 {
    right: 91.66667%;
  }

  .pull-xl-12 {
    right: 100%;
  }

  .push-xl-0 {
    left: auto;
  }

  .push-xl-1 {
    left: 8.33333%;
  }

  .push-xl-2 {
    left: 16.66667%;
  }

  .push-xl-3 {
    left: 25%;
  }

  .push-xl-4 {
    left: 33.33333%;
  }

  .push-xl-5 {
    left: 41.66667%;
  }

  .push-xl-6 {
    left: 50%;
  }

  .push-xl-7 {
    left: 58.33333%;
  }

  .push-xl-8 {
    left: 66.66667%;
  }

  .push-xl-9 {
    left: 75%;
  }

  .push-xl-10 {
    left: 83.33333%;
  }

  .push-xl-11 {
    left: 91.66667%;
  }

  .push-xl-12 {
    left: 100%;
  }

  .offset-xl-0 {
    margin-left: 0%;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.invisible {
  visibility: hidden !important;
}

.hidden-xs-up {
  display: none !important;
}

@media (max-width: 575px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important;
  }
}

.hidden-xl-down {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

/*@import "responsibe_utilities_bootstrap";*/
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@-ms-viewport {
  width: device-width;
}
html {
  font-size: 16px;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #373a3c;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

a {
  color: #00C1FE;
  text-decoration: none;
}
a:focus, a:hover {
  color: #0087b2;
  text-decoration: none;
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: none;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
}

[role="button"] {
  cursor: pointer;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

table {
  border-collapse: collapse;
  background-color: transparent;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #818a91;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: left;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
textarea {
  line-height: inherit;
}

input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
}

input[type="search"] {
  -webkit-appearance: none;
}

output {
  display: inline-block;
}

[hidden] {
  display: none !important;
}

/*reset bootstrap*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html, body {
  font-size: 18px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  height: 100%;
}

/* ************* MARGINS & POSITIONS PX *************** */
.margin-0-auto {
  margin: 0 auto;
}

.margin-0 {
  margin: 0px;
}

.margin-t-0 {
  margin-top: 0px;
}

.margin-r-0 {
  margin-right: 0px;
}

.margin-b-0 {
  margin-bottom: 0px;
}

.margin-l-0 {
  margin-left: 0px;
}

.top-0 {
  top: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.right-0 {
  right: 0px;
}

.left-0 {
  left: 0px;
}

.margin-1 {
  margin: 1px;
}

.margin-t-1 {
  margin-top: 1px;
}

.margin-r-1 {
  margin-right: 1px;
}

.margin-b-1 {
  margin-bottom: 1px;
}

.margin-l-1 {
  margin-left: 1px;
}

.top-1 {
  top: 1px;
}

.bottom-1 {
  bottom: 1px;
}

.right-1 {
  right: 1px;
}

.left-1 {
  left: 1px;
}

.margin-2 {
  margin: 2px;
}

.margin-t-2 {
  margin-top: 2px;
}

.margin-r-2 {
  margin-right: 2px;
}

.margin-b-2 {
  margin-bottom: 2px;
}

.margin-l-2 {
  margin-left: 2px;
}

.top-2 {
  top: 2px;
}

.bottom-2 {
  bottom: 2px;
}

.right-2 {
  right: 2px;
}

.left-2 {
  left: 2px;
}

.margin-3 {
  margin: 3px;
}

.margin-t-3 {
  margin-top: 3px;
}

.margin-r-3 {
  margin-right: 3px;
}

.margin-b-3 {
  margin-bottom: 3px;
}

.margin-l-3 {
  margin-left: 3px;
}

.top-3 {
  top: 3px;
}

.bottom-3 {
  bottom: 3px;
}

.right-3 {
  right: 3px;
}

.left-3 {
  left: 3px;
}

.margin-4 {
  margin: 4px;
}

.margin-t-4 {
  margin-top: 4px;
}

.margin-r-4 {
  margin-right: 4px;
}

.margin-b-4 {
  margin-bottom: 4px;
}

.margin-l-4 {
  margin-left: 4px;
}

.top-4 {
  top: 4px;
}

.bottom-4 {
  bottom: 4px;
}

.right-4 {
  right: 4px;
}

.left-4 {
  left: 4px;
}

.margin-5 {
  margin: 5px;
}

.margin-t-5 {
  margin-top: 5px;
}

.margin-r-5 {
  margin-right: 5px;
}

.margin-b-5 {
  margin-bottom: 5px;
}

.margin-l-5 {
  margin-left: 5px;
}

.top-5 {
  top: 5px;
}

.bottom-5 {
  bottom: 5px;
}

.right-5 {
  right: 5px;
}

.left-5 {
  left: 5px;
}

.margin-6 {
  margin: 6px;
}

.margin-t-6 {
  margin-top: 6px;
}

.margin-r-6 {
  margin-right: 6px;
}

.margin-b-6 {
  margin-bottom: 6px;
}

.margin-l-6 {
  margin-left: 6px;
}

.top-6 {
  top: 6px;
}

.bottom-6 {
  bottom: 6px;
}

.right-6 {
  right: 6px;
}

.left-6 {
  left: 6px;
}

.margin-7 {
  margin: 7px;
}

.margin-t-7 {
  margin-top: 7px;
}

.margin-r-7 {
  margin-right: 7px;
}

.margin-b-7 {
  margin-bottom: 7px;
}

.margin-l-7 {
  margin-left: 7px;
}

.top-7 {
  top: 7px;
}

.bottom-7 {
  bottom: 7px;
}

.right-7 {
  right: 7px;
}

.left-7 {
  left: 7px;
}

.margin-8 {
  margin: 8px;
}

.margin-t-8 {
  margin-top: 8px;
}

.margin-r-8 {
  margin-right: 8px;
}

.margin-b-8 {
  margin-bottom: 8px;
}

.margin-l-8 {
  margin-left: 8px;
}

.top-8 {
  top: 8px;
}

.bottom-8 {
  bottom: 8px;
}

.right-8 {
  right: 8px;
}

.left-8 {
  left: 8px;
}

.margin-9 {
  margin: 9px;
}

.margin-t-9 {
  margin-top: 9px;
}

.margin-r-9 {
  margin-right: 9px;
}

.margin-b-9 {
  margin-bottom: 9px;
}

.margin-l-9 {
  margin-left: 9px;
}

.top-9 {
  top: 9px;
}

.bottom-9 {
  bottom: 9px;
}

.right-9 {
  right: 9px;
}

.left-9 {
  left: 9px;
}

.margin-10 {
  margin: 10px;
}

.margin-t-10 {
  margin-top: 10px;
}

.margin-r-10 {
  margin-right: 10px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

.margin-l-10 {
  margin-left: 10px;
}

.top-10 {
  top: 10px;
}

.bottom-10 {
  bottom: 10px;
}

.right-10 {
  right: 10px;
}

.left-10 {
  left: 10px;
}

.margin-12 {
  margin: 12px;
}

.margin-t-12 {
  margin-top: 12px;
}

.margin-r-12 {
  margin-right: 12px;
}

.margin-b-12 {
  margin-bottom: 12px;
}

.margin-l-12 {
  margin-left: 12px;
}

.top-12 {
  top: 12px;
}

.bottom-12 {
  bottom: 12px;
}

.right-12 {
  right: 12px;
}

.left-12 {
  left: 12px;
}

.margin-14 {
  margin: 14px;
}

.margin-t-14 {
  margin-top: 14px;
}

.margin-r-14 {
  margin-right: 14px;
}

.margin-b-14 {
  margin-bottom: 14px;
}

.margin-l-14 {
  margin-left: 14px;
}

.top-14 {
  top: 14px;
}

.bottom-14 {
  bottom: 14px;
}

.right-14 {
  right: 14px;
}

.left-14 {
  left: 14px;
}

.margin-16 {
  margin: 16px;
}

.margin-t-16 {
  margin-top: 16px;
}

.margin-r-16 {
  margin-right: 16px;
}

.margin-b-16 {
  margin-bottom: 16px;
}

.margin-l-16 {
  margin-left: 16px;
}

.top-16 {
  top: 16px;
}

.bottom-16 {
  bottom: 16px;
}

.right-16 {
  right: 16px;
}

.left-16 {
  left: 16px;
}

.margin-18 {
  margin: 18px;
}

.margin-t-18 {
  margin-top: 18px;
}

.margin-r-18 {
  margin-right: 18px;
}

.margin-b-18 {
  margin-bottom: 18px;
}

.margin-l-18 {
  margin-left: 18px;
}

.top-18 {
  top: 18px;
}

.bottom-18 {
  bottom: 18px;
}

.right-18 {
  right: 18px;
}

.left-18 {
  left: 18px;
}

.margin-20 {
  margin: 20px;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-r-20 {
  margin-right: 20px;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.margin-l-20 {
  margin-left: 20px;
}

.top-20 {
  top: 20px;
}

.bottom-20 {
  bottom: 20px;
}

.right-20 {
  right: 20px;
}

.left-20 {
  left: 20px;
}

.margin-25 {
  margin: 25px;
}

.margin-t-25 {
  margin-top: 25px;
}

.margin-r-25 {
  margin-right: 25px;
}

.margin-b-25 {
  margin-bottom: 25px;
}

.margin-l-25 {
  margin-left: 25px;
}

.top-25 {
  top: 25px;
}

.bottom-25 {
  bottom: 25px;
}

.right-25 {
  right: 25px;
}

.left-25 {
  left: 25px;
}

.margin-30 {
  margin: 30px;
}

.margin-t-30 {
  margin-top: 30px;
}

.margin-r-30 {
  margin-right: 30px;
}

.margin-b-30 {
  margin-bottom: 30px;
}

.margin-l-30 {
  margin-left: 30px;
}

.top-30 {
  top: 30px;
}

.bottom-30 {
  bottom: 30px;
}

.right-30 {
  right: 30px;
}

.left-30 {
  left: 30px;
}

.margin-35 {
  margin: 35px;
}

.margin-t-35 {
  margin-top: 35px;
}

.margin-r-35 {
  margin-right: 35px;
}

.margin-b-35 {
  margin-bottom: 35px;
}

.margin-l-35 {
  margin-left: 35px;
}

.top-35 {
  top: 35px;
}

.bottom-35 {
  bottom: 35px;
}

.right-35 {
  right: 35px;
}

.left-35 {
  left: 35px;
}

.margin-40 {
  margin: 40px;
}

.margin-t-40 {
  margin-top: 40px;
}

.margin-r-40 {
  margin-right: 40px;
}

.margin-b-40 {
  margin-bottom: 40px;
}

.margin-l-40 {
  margin-left: 40px;
}

.top-40 {
  top: 40px;
}

.bottom-40 {
  bottom: 40px;
}

.right-40 {
  right: 40px;
}

.left-40 {
  left: 40px;
}

.margin-45 {
  margin: 45px;
}

.margin-t-45 {
  margin-top: 45px;
}

.margin-r-45 {
  margin-right: 45px;
}

.margin-b-45 {
  margin-bottom: 45px;
}

.margin-l-45 {
  margin-left: 45px;
}

.top-45 {
  top: 45px;
}

.bottom-45 {
  bottom: 45px;
}

.right-45 {
  right: 45px;
}

.left-45 {
  left: 45px;
}

.margin-50 {
  margin: 50px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-r-50 {
  margin-right: 50px;
}

.margin-b-50 {
  margin-bottom: 50px;
}

.margin-l-50 {
  margin-left: 50px;
}

.top-50 {
  top: 50px;
}

.bottom-50 {
  bottom: 50px;
}

.right-50 {
  right: 50px;
}

.left-50 {
  left: 50px;
}

.margin-55 {
  margin: 55px;
}

.margin-t-55 {
  margin-top: 55px;
}

.margin-r-55 {
  margin-right: 55px;
}

.margin-b-55 {
  margin-bottom: 55px;
}

.margin-l-55 {
  margin-left: 55px;
}

.top-55 {
  top: 55px;
}

.bottom-55 {
  bottom: 55px;
}

.right-55 {
  right: 55px;
}

.left-55 {
  left: 55px;
}

.margin-60 {
  margin: 60px;
}

.margin-t-60 {
  margin-top: 60px;
}

.margin-r-60 {
  margin-right: 60px;
}

.margin-b-60 {
  margin-bottom: 60px;
}

.margin-l-60 {
  margin-left: 60px;
}

.top-60 {
  top: 60px;
}

.bottom-60 {
  bottom: 60px;
}

.right-60 {
  right: 60px;
}

.left-60 {
  left: 60px;
}

.margin-65 {
  margin: 65px;
}

.margin-t-65 {
  margin-top: 65px;
}

.margin-r-65 {
  margin-right: 65px;
}

.margin-b-65 {
  margin-bottom: 65px;
}

.margin-l-65 {
  margin-left: 65px;
}

.top-65 {
  top: 65px;
}

.bottom-65 {
  bottom: 65px;
}

.right-65 {
  right: 65px;
}

.left-65 {
  left: 65px;
}

.margin-70 {
  margin: 70px;
}

.margin-t-70 {
  margin-top: 70px;
}

.margin-r-70 {
  margin-right: 70px;
}

.margin-b-70 {
  margin-bottom: 70px;
}

.margin-l-70 {
  margin-left: 70px;
}

.top-70 {
  top: 70px;
}

.bottom-70 {
  bottom: 70px;
}

.right-70 {
  right: 70px;
}

.left-70 {
  left: 70px;
}

.margin-75 {
  margin: 75px;
}

.margin-t-75 {
  margin-top: 75px;
}

.margin-r-75 {
  margin-right: 75px;
}

.margin-b-75 {
  margin-bottom: 75px;
}

.margin-l-75 {
  margin-left: 75px;
}

.top-75 {
  top: 75px;
}

.bottom-75 {
  bottom: 75px;
}

.right-75 {
  right: 75px;
}

.left-75 {
  left: 75px;
}

.margin-80 {
  margin: 80px;
}

.margin-t-80 {
  margin-top: 80px;
}

.margin-r-80 {
  margin-right: 80px;
}

.margin-b-80 {
  margin-bottom: 80px;
}

.margin-l-80 {
  margin-left: 80px;
}

.top-80 {
  top: 80px;
}

.bottom-80 {
  bottom: 80px;
}

.right-80 {
  right: 80px;
}

.left-80 {
  left: 80px;
}

.margin-85 {
  margin: 85px;
}

.margin-t-85 {
  margin-top: 85px;
}

.margin-r-85 {
  margin-right: 85px;
}

.margin-b-85 {
  margin-bottom: 85px;
}

.margin-l-85 {
  margin-left: 85px;
}

.top-85 {
  top: 85px;
}

.bottom-85 {
  bottom: 85px;
}

.right-85 {
  right: 85px;
}

.left-85 {
  left: 85px;
}

.margin-90 {
  margin: 90px;
}

.margin-t-90 {
  margin-top: 90px;
}

.margin-r-90 {
  margin-right: 90px;
}

.margin-b-90 {
  margin-bottom: 90px;
}

.margin-l-90 {
  margin-left: 90px;
}

.top-90 {
  top: 90px;
}

.bottom-90 {
  bottom: 90px;
}

.right-90 {
  right: 90px;
}

.left-90 {
  left: 90px;
}

.margin-95 {
  margin: 95px;
}

.margin-t-95 {
  margin-top: 95px;
}

.margin-r-95 {
  margin-right: 95px;
}

.margin-b-95 {
  margin-bottom: 95px;
}

.margin-l-95 {
  margin-left: 95px;
}

.top-95 {
  top: 95px;
}

.bottom-95 {
  bottom: 95px;
}

.right-95 {
  right: 95px;
}

.left-95 {
  left: 95px;
}

.margin-100 {
  margin: 100px;
}

.margin-t-100 {
  margin-top: 100px;
}

.margin-r-100 {
  margin-right: 100px;
}

.margin-b-100 {
  margin-bottom: 100px;
}

.margin-l-100 {
  margin-left: 100px;
}

.top-100 {
  top: 100px;
}

.bottom-100 {
  bottom: 100px;
}

.right-100 {
  right: 100px;
}

.left-100 {
  left: 100px;
}

/* ************* END MARGINS PX *************** */
/* ************* MARGINS % *************** */
.margin-00 {
  margin: 0%;
}

.margin-t-00 {
  margin-top: 0%;
}

.margin-r-00 {
  margin-right: 0%;
}

.margin-b-00 {
  margin-bottom: 0%;
}

.margin-l-00 {
  margin-left: 0%;
}

.margin-05 {
  margin: 5%;
}

.margin-t-05 {
  margin-top: 5%;
}

.margin-r-05 {
  margin-right: 5%;
}

.margin-b-05 {
  margin-bottom: 5%;
}

.margin-l-05 {
  margin-left: 5%;
}

.margin-010 {
  margin: 10%;
}

.margin-t-010 {
  margin-top: 10%;
}

.margin-r-010 {
  margin-right: 10%;
}

.margin-b-010 {
  margin-bottom: 10%;
}

.margin-l-010 {
  margin-left: 10%;
}

.margin-015 {
  margin: 15%;
}

.margin-t-015 {
  margin-top: 15%;
}

.margin-r-015 {
  margin-right: 15%;
}

.margin-b-015 {
  margin-bottom: 15%;
}

.margin-l-015 {
  margin-left: 15%;
}

.margin-020 {
  margin: 20%;
}

.margin-t-020 {
  margin-top: 20%;
}

.margin-r-020 {
  margin-right: 20%;
}

.margin-b-020 {
  margin-bottom: 20%;
}

.margin-l-020 {
  margin-left: 20%;
}

.margin-025 {
  margin: 25%;
}

.margin-t-025 {
  margin-top: 25%;
}

.margin-r-025 {
  margin-right: 25%;
}

.margin-b-025 {
  margin-bottom: 25%;
}

.margin-l-025 {
  margin-left: 25%;
}

.margin-030 {
  margin: 30%;
}

.margin-t-030 {
  margin-top: 30%;
}

.margin-r-030 {
  margin-right: 30%;
}

.margin-b-030 {
  margin-bottom: 30%;
}

.margin-l-030 {
  margin-left: 30%;
}

.margin-035 {
  margin: 35%;
}

.margin-t-035 {
  margin-top: 35%;
}

.margin-r-035 {
  margin-right: 35%;
}

.margin-b-035 {
  margin-bottom: 35%;
}

.margin-l-035 {
  margin-left: 35%;
}

.margin-040 {
  margin: 40%;
}

.margin-t-040 {
  margin-top: 40%;
}

.margin-r-040 {
  margin-right: 40%;
}

.margin-b-040 {
  margin-bottom: 40%;
}

.margin-l-040 {
  margin-left: 40%;
}

.margin-045 {
  margin: 45%;
}

.margin-t-045 {
  margin-top: 45%;
}

.margin-r-045 {
  margin-right: 45%;
}

.margin-b-045 {
  margin-bottom: 45%;
}

.margin-l-045 {
  margin-left: 45%;
}

.margin-050 {
  margin: 50%;
}

.margin-t-050 {
  margin-top: 50%;
}

.margin-r-050 {
  margin-right: 50%;
}

.margin-b-050 {
  margin-bottom: 50%;
}

.margin-l-050 {
  margin-left: 50%;
}

.margin-055 {
  margin: 55%;
}

.margin-t-055 {
  margin-top: 55%;
}

.margin-r-055 {
  margin-right: 55%;
}

.margin-b-055 {
  margin-bottom: 55%;
}

.margin-l-055 {
  margin-left: 55%;
}

.margin-060 {
  margin: 60%;
}

.margin-t-060 {
  margin-top: 60%;
}

.margin-r-060 {
  margin-right: 60%;
}

.margin-b-060 {
  margin-bottom: 60%;
}

.margin-l-060 {
  margin-left: 60%;
}

.margin-065 {
  margin: 65%;
}

.margin-t-065 {
  margin-top: 65%;
}

.margin-r-065 {
  margin-right: 65%;
}

.margin-b-065 {
  margin-bottom: 65%;
}

.margin-l-065 {
  margin-left: 65%;
}

.margin-070 {
  margin: 70%;
}

.margin-t-070 {
  margin-top: 70%;
}

.margin-r-070 {
  margin-right: 70%;
}

.margin-b-070 {
  margin-bottom: 70%;
}

.margin-l-070 {
  margin-left: 70%;
}

.margin-075 {
  margin: 75%;
}

.margin-t-075 {
  margin-top: 75%;
}

.margin-r-075 {
  margin-right: 75%;
}

.margin-b-075 {
  margin-bottom: 75%;
}

.margin-l-075 {
  margin-left: 75%;
}

.margin-080 {
  margin: 80%;
}

.margin-t-080 {
  margin-top: 80%;
}

.margin-r-080 {
  margin-right: 80%;
}

.margin-b-080 {
  margin-bottom: 80%;
}

.margin-l-080 {
  margin-left: 80%;
}

.margin-085 {
  margin: 85%;
}

.margin-t-085 {
  margin-top: 85%;
}

.margin-r-085 {
  margin-right: 85%;
}

.margin-b-085 {
  margin-bottom: 85%;
}

.margin-l-085 {
  margin-left: 85%;
}

.margin-090 {
  margin: 90%;
}

.margin-t-090 {
  margin-top: 90%;
}

.margin-r-090 {
  margin-right: 90%;
}

.margin-b-090 {
  margin-bottom: 90%;
}

.margin-l-090 {
  margin-left: 90%;
}

.margin-095 {
  margin: 95%;
}

.margin-t-095 {
  margin-top: 95%;
}

.margin-r-095 {
  margin-right: 95%;
}

.margin-b-095 {
  margin-bottom: 95%;
}

.margin-l-095 {
  margin-left: 95%;
}

.margin-0100 {
  margin: 100%;
}

.margin-t-0100 {
  margin-top: 100%;
}

.margin-r-0100 {
  margin-right: 100%;
}

.margin-b-0100 {
  margin-bottom: 100%;
}

.margin-l-0100 {
  margin-left: 100%;
}

/* ************* END MARGINS % *************** */
/* ************* PADDINGS PX *************** */
.padding-0 {
  padding: 0px;
}

.padding-t-0 {
  padding-top: 0px;
}

.padding-r-0 {
  padding-right: 0px;
}

.padding-b-0 {
  padding-bottom: 0px;
}

.padding-l-0 {
  padding-left: 0px;
}

.padding-1 {
  padding: 1px;
}

.padding-t-1 {
  padding-top: 1px;
}

.padding-r-1 {
  padding-right: 1px;
}

.padding-b-1 {
  padding-bottom: 1px;
}

.padding-l-1 {
  padding-left: 1px;
}

.padding-2 {
  padding: 2px;
}

.padding-t-2 {
  padding-top: 2px;
}

.padding-r-2 {
  padding-right: 2px;
}

.padding-b-2 {
  padding-bottom: 2px;
}

.padding-l-2 {
  padding-left: 2px;
}

.padding-3 {
  padding: 3px;
}

.padding-t-3 {
  padding-top: 3px;
}

.padding-r-3 {
  padding-right: 3px;
}

.padding-b-3 {
  padding-bottom: 3px;
}

.padding-l-3 {
  padding-left: 3px;
}

.padding-4 {
  padding: 4px;
}

.padding-t-4 {
  padding-top: 4px;
}

.padding-r-4 {
  padding-right: 4px;
}

.padding-b-4 {
  padding-bottom: 4px;
}

.padding-l-4 {
  padding-left: 4px;
}

.padding-5 {
  padding: 5px;
}

.padding-t-5 {
  padding-top: 5px;
}

.padding-r-5 {
  padding-right: 5px;
}

.padding-b-5 {
  padding-bottom: 5px;
}

.padding-l-5 {
  padding-left: 5px;
}

.padding-6 {
  padding: 6px;
}

.padding-t-6 {
  padding-top: 6px;
}

.padding-r-6 {
  padding-right: 6px;
}

.padding-b-6 {
  padding-bottom: 6px;
}

.padding-l-6 {
  padding-left: 6px;
}

.padding-7 {
  padding: 7px;
}

.padding-t-7 {
  padding-top: 7px;
}

.padding-r-7 {
  padding-right: 7px;
}

.padding-b-7 {
  padding-bottom: 7px;
}

.padding-l-7 {
  padding-left: 7px;
}

.padding-8 {
  padding: 8px;
}

.padding-t-8 {
  padding-top: 8px;
}

.padding-r-8 {
  padding-right: 8px;
}

.padding-b-8 {
  padding-bottom: 8px;
}

.padding-l-8 {
  padding-left: 8px;
}

.padding-9 {
  padding: 9px;
}

.padding-t-9 {
  padding-top: 9px;
}

.padding-r-9 {
  padding-right: 9px;
}

.padding-b-9 {
  padding-bottom: 9px;
}

.padding-l-9 {
  padding-left: 9px;
}

.padding-10 {
  padding: 10px;
}

.padding-t-10 {
  padding-top: 10px;
}

.padding-r-10 {
  padding-right: 10px;
}

.padding-b-10 {
  padding-bottom: 10px;
}

.padding-l-10 {
  padding-left: 10px;
}

.padding-12 {
  padding: 12px;
}

.padding-t-12 {
  padding-top: 12px;
}

.padding-r-12 {
  padding-right: 12px;
}

.padding-b-12 {
  padding-bottom: 12px;
}

.padding-l-12 {
  padding-left: 12px;
}

.padding-14 {
  padding: 14px;
}

.padding-t-14 {
  padding-top: 14px;
}

.padding-r-14 {
  padding-right: 14px;
}

.padding-b-14 {
  padding-bottom: 14px;
}

.padding-l-14 {
  padding-left: 14px;
}

.padding-16 {
  padding: 16px;
}

.padding-t-16 {
  padding-top: 16px;
}

.padding-r-16 {
  padding-right: 16px;
}

.padding-b-16 {
  padding-bottom: 16px;
}

.padding-l-16 {
  padding-left: 16px;
}

.padding-18 {
  padding: 18px;
}

.padding-t-18 {
  padding-top: 18px;
}

.padding-r-18 {
  padding-right: 18px;
}

.padding-b-18 {
  padding-bottom: 18px;
}

.padding-l-18 {
  padding-left: 18px;
}

.padding-20 {
  padding: 20px;
}

.padding-t-20 {
  padding-top: 20px;
}

.padding-r-20 {
  padding-right: 20px;
}

.padding-b-20 {
  padding-bottom: 20px;
}

.padding-l-20 {
  padding-left: 20px;
}

.padding-25 {
  padding: 25px;
}

.padding-t-25 {
  padding-top: 25px;
}

.padding-r-25 {
  padding-right: 25px;
}

.padding-b-25 {
  padding-bottom: 25px;
}

.padding-l-25 {
  padding-left: 25px;
}

.padding-30 {
  padding: 30px;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-r-30 {
  padding-right: 30px;
}

.padding-b-30 {
  padding-bottom: 30px;
}

.padding-l-30 {
  padding-left: 30px;
}

.padding-35 {
  padding: 35px;
}

.padding-t-35 {
  padding-top: 35px;
}

.padding-r-35 {
  padding-right: 35px;
}

.padding-b-35 {
  padding-bottom: 35px;
}

.padding-l-35 {
  padding-left: 35px;
}

.padding-40 {
  padding: 40px;
}

.padding-t-40 {
  padding-top: 40px;
}

.padding-r-40 {
  padding-right: 40px;
}

.padding-b-40 {
  padding-bottom: 40px;
}

.padding-l-40 {
  padding-left: 40px;
}

.padding-45 {
  padding: 45px;
}

.padding-t-45 {
  padding-top: 45px;
}

.padding-r-45 {
  padding-right: 45px;
}

.padding-b-45 {
  padding-bottom: 45px;
}

.padding-l-45 {
  padding-left: 45px;
}

.padding-50 {
  padding: 50px;
}

.padding-t-50 {
  padding-top: 50px;
}

.padding-r-50 {
  padding-right: 50px;
}

.padding-b-50 {
  padding-bottom: 50px;
}

.padding-l-50 {
  padding-left: 50px;
}

/* ************* END PADDINGS PX *************** */
/* ************* PADDINGS & POSITIONS % *************** */
.padding-00 {
  padding: 0%;
}

.padding-t-00 {
  padding-top: 0%;
}

.padding-r-00 {
  padding-right: 0%;
}

.padding-b-00 {
  padding-bottom: 0%;
}

.padding-l-00 {
  padding-left: 0%;
}

.top-00 {
  top: 0%;
}

.bottom-00 {
  bottom: 0%;
}

.right-00 {
  right: 0%;
}

.left-00 {
  left: 0%;
}

.padding-05 {
  padding: 5%;
}

.padding-t-05 {
  padding-top: 5%;
}

.padding-r-05 {
  padding-right: 5%;
}

.padding-b-05 {
  padding-bottom: 5%;
}

.padding-l-05 {
  padding-left: 5%;
}

.top-05 {
  top: 5%;
}

.bottom-05 {
  bottom: 5%;
}

.right-05 {
  right: 5%;
}

.left-05 {
  left: 5%;
}

.padding-010 {
  padding: 10%;
}

.padding-t-010 {
  padding-top: 10%;
}

.padding-r-010 {
  padding-right: 10%;
}

.padding-b-010 {
  padding-bottom: 10%;
}

.padding-l-010 {
  padding-left: 10%;
}

.top-010 {
  top: 10%;
}

.bottom-010 {
  bottom: 10%;
}

.right-010 {
  right: 10%;
}

.left-010 {
  left: 10%;
}

.padding-015 {
  padding: 15%;
}

.padding-t-015 {
  padding-top: 15%;
}

.padding-r-015 {
  padding-right: 15%;
}

.padding-b-015 {
  padding-bottom: 15%;
}

.padding-l-015 {
  padding-left: 15%;
}

.top-015 {
  top: 15%;
}

.bottom-015 {
  bottom: 15%;
}

.right-015 {
  right: 15%;
}

.left-015 {
  left: 15%;
}

.padding-020 {
  padding: 20%;
}

.padding-t-020 {
  padding-top: 20%;
}

.padding-r-020 {
  padding-right: 20%;
}

.padding-b-020 {
  padding-bottom: 20%;
}

.padding-l-020 {
  padding-left: 20%;
}

.top-020 {
  top: 20%;
}

.bottom-020 {
  bottom: 20%;
}

.right-020 {
  right: 20%;
}

.left-020 {
  left: 20%;
}

.padding-025 {
  padding: 25%;
}

.padding-t-025 {
  padding-top: 25%;
}

.padding-r-025 {
  padding-right: 25%;
}

.padding-b-025 {
  padding-bottom: 25%;
}

.padding-l-025 {
  padding-left: 25%;
}

.top-025 {
  top: 25%;
}

.bottom-025 {
  bottom: 25%;
}

.right-025 {
  right: 25%;
}

.left-025 {
  left: 25%;
}

.padding-030 {
  padding: 30%;
}

.padding-t-030 {
  padding-top: 30%;
}

.padding-r-030 {
  padding-right: 30%;
}

.padding-b-030 {
  padding-bottom: 30%;
}

.padding-l-030 {
  padding-left: 30%;
}

.top-030 {
  top: 30%;
}

.bottom-030 {
  bottom: 30%;
}

.right-030 {
  right: 30%;
}

.left-030 {
  left: 30%;
}

.padding-035 {
  padding: 35%;
}

.padding-t-035 {
  padding-top: 35%;
}

.padding-r-035 {
  padding-right: 35%;
}

.padding-b-035 {
  padding-bottom: 35%;
}

.padding-l-035 {
  padding-left: 35%;
}

.top-035 {
  top: 35%;
}

.bottom-035 {
  bottom: 35%;
}

.right-035 {
  right: 35%;
}

.left-035 {
  left: 35%;
}

.padding-040 {
  padding: 40%;
}

.padding-t-040 {
  padding-top: 40%;
}

.padding-r-040 {
  padding-right: 40%;
}

.padding-b-040 {
  padding-bottom: 40%;
}

.padding-l-040 {
  padding-left: 40%;
}

.top-040 {
  top: 40%;
}

.bottom-040 {
  bottom: 40%;
}

.right-040 {
  right: 40%;
}

.left-040 {
  left: 40%;
}

.padding-045 {
  padding: 45%;
}

.padding-t-045 {
  padding-top: 45%;
}

.padding-r-045 {
  padding-right: 45%;
}

.padding-b-045 {
  padding-bottom: 45%;
}

.padding-l-045 {
  padding-left: 45%;
}

.top-045 {
  top: 45%;
}

.bottom-045 {
  bottom: 45%;
}

.right-045 {
  right: 45%;
}

.left-045 {
  left: 45%;
}

.padding-050 {
  padding: 50%;
}

.padding-t-050 {
  padding-top: 50%;
}

.padding-r-050 {
  padding-right: 50%;
}

.padding-b-050 {
  padding-bottom: 50%;
}

.padding-l-050 {
  padding-left: 50%;
}

.top-050 {
  top: 50%;
}

.bottom-050 {
  bottom: 50%;
}

.right-050 {
  right: 50%;
}

.left-050 {
  left: 50%;
}

.padding-055 {
  padding: 55%;
}

.padding-t-055 {
  padding-top: 55%;
}

.padding-r-055 {
  padding-right: 55%;
}

.padding-b-055 {
  padding-bottom: 55%;
}

.padding-l-055 {
  padding-left: 55%;
}

.top-055 {
  top: 55%;
}

.bottom-055 {
  bottom: 55%;
}

.right-055 {
  right: 55%;
}

.left-055 {
  left: 55%;
}

.padding-060 {
  padding: 60%;
}

.padding-t-060 {
  padding-top: 60%;
}

.padding-r-060 {
  padding-right: 60%;
}

.padding-b-060 {
  padding-bottom: 60%;
}

.padding-l-060 {
  padding-left: 60%;
}

.top-060 {
  top: 60%;
}

.bottom-060 {
  bottom: 60%;
}

.right-060 {
  right: 60%;
}

.left-060 {
  left: 60%;
}

.padding-065 {
  padding: 65%;
}

.padding-t-065 {
  padding-top: 65%;
}

.padding-r-065 {
  padding-right: 65%;
}

.padding-b-065 {
  padding-bottom: 65%;
}

.padding-l-065 {
  padding-left: 65%;
}

.top-065 {
  top: 65%;
}

.bottom-065 {
  bottom: 65%;
}

.right-065 {
  right: 65%;
}

.left-065 {
  left: 65%;
}

.padding-070 {
  padding: 70%;
}

.padding-t-070 {
  padding-top: 70%;
}

.padding-r-070 {
  padding-right: 70%;
}

.padding-b-070 {
  padding-bottom: 70%;
}

.padding-l-070 {
  padding-left: 70%;
}

.top-070 {
  top: 70%;
}

.bottom-070 {
  bottom: 70%;
}

.right-070 {
  right: 70%;
}

.left-070 {
  left: 70%;
}

.padding-075 {
  padding: 75%;
}

.padding-t-075 {
  padding-top: 75%;
}

.padding-r-075 {
  padding-right: 75%;
}

.padding-b-075 {
  padding-bottom: 75%;
}

.padding-l-075 {
  padding-left: 75%;
}

.top-075 {
  top: 75%;
}

.bottom-075 {
  bottom: 75%;
}

.right-075 {
  right: 75%;
}

.left-075 {
  left: 75%;
}

.padding-080 {
  padding: 80%;
}

.padding-t-080 {
  padding-top: 80%;
}

.padding-r-080 {
  padding-right: 80%;
}

.padding-b-080 {
  padding-bottom: 80%;
}

.padding-l-080 {
  padding-left: 80%;
}

.top-080 {
  top: 80%;
}

.bottom-080 {
  bottom: 80%;
}

.right-080 {
  right: 80%;
}

.left-080 {
  left: 80%;
}

.padding-085 {
  padding: 85%;
}

.padding-t-085 {
  padding-top: 85%;
}

.padding-r-085 {
  padding-right: 85%;
}

.padding-b-085 {
  padding-bottom: 85%;
}

.padding-l-085 {
  padding-left: 85%;
}

.top-085 {
  top: 85%;
}

.bottom-085 {
  bottom: 85%;
}

.right-085 {
  right: 85%;
}

.left-085 {
  left: 85%;
}

.padding-090 {
  padding: 90%;
}

.padding-t-090 {
  padding-top: 90%;
}

.padding-r-090 {
  padding-right: 90%;
}

.padding-b-090 {
  padding-bottom: 90%;
}

.padding-l-090 {
  padding-left: 90%;
}

.top-090 {
  top: 90%;
}

.bottom-090 {
  bottom: 90%;
}

.right-090 {
  right: 90%;
}

.left-090 {
  left: 90%;
}

.padding-095 {
  padding: 95%;
}

.padding-t-095 {
  padding-top: 95%;
}

.padding-r-095 {
  padding-right: 95%;
}

.padding-b-095 {
  padding-bottom: 95%;
}

.padding-l-095 {
  padding-left: 95%;
}

.top-095 {
  top: 95%;
}

.bottom-095 {
  bottom: 95%;
}

.right-095 {
  right: 95%;
}

.left-095 {
  left: 95%;
}

.padding-0100 {
  padding: 100%;
}

.padding-t-0100 {
  padding-top: 100%;
}

.padding-r-0100 {
  padding-right: 100%;
}

.padding-b-0100 {
  padding-bottom: 100%;
}

.padding-l-0100 {
  padding-left: 100%;
}

.top-0100 {
  top: 100%;
}

.bottom-0100 {
  bottom: 100%;
}

.right-0100 {
  right: 100%;
}

.left-0100 {
  left: 100%;
}

/* ************* END PADDINGS % *************** */
/* ************* PROPERTIES BOX *************** */
.width-5 {
  width: 5px;
}

.height-5 {
  height: 5px;
}

.width-10 {
  width: 10px;
}

.height-10 {
  height: 10px;
}

.width-15 {
  width: 15px;
}

.height-15 {
  height: 15px;
}

.width-20 {
  width: 20px;
}

.height-20 {
  height: 20px;
}

.width-25 {
  width: 25px;
}

.height-25 {
  height: 25px;
}

.width-30 {
  width: 30px;
}

.height-30 {
  height: 30px;
}

.width-35 {
  width: 35px;
}

.height-35 {
  height: 35px;
}

.width-40 {
  width: 40px;
}

.height-40 {
  height: 40px;
}

.width-45 {
  width: 45px;
}

.height-45 {
  height: 45px;
}

.width-50 {
  width: 50px;
}

.height-50 {
  height: 50px;
}

.width-55 {
  width: 55px;
}

.height-55 {
  height: 55px;
}

.width-60 {
  width: 60px;
}

.height-60 {
  height: 60px;
}

.width-65 {
  width: 65px;
}

.height-65 {
  height: 65px;
}

.width-70 {
  width: 70px;
}

.height-70 {
  height: 70px;
}

.width-75 {
  width: 75px;
}

.height-75 {
  height: 75px;
}

.width-80 {
  width: 80px;
}

.height-80 {
  height: 80px;
}

.width-85 {
  width: 85px;
}

.height-85 {
  height: 85px;
}

.width-90 {
  width: 90px;
}

.height-90 {
  height: 90px;
}

.width-95 {
  width: 95px;
}

.height-95 {
  height: 95px;
}

.width-100 {
  width: 100px;
}

.height-100 {
  height: 100px;
}

.width-05 {
  width: 5%;
}

.height-05 {
  height: 5%;
}

.width-010 {
  width: 10%;
}

.height-010 {
  height: 10%;
}

.width-015 {
  width: 15%;
}

.height-015 {
  height: 15%;
}

.width-020 {
  width: 20%;
}

.height-020 {
  height: 20%;
}

.width-025 {
  width: 25%;
}

.height-025 {
  height: 25%;
}

.width-030 {
  width: 30%;
}

.height-030 {
  height: 30%;
}

.width-035 {
  width: 35%;
}

.height-035 {
  height: 35%;
}

.width-040 {
  width: 40%;
}

.height-040 {
  height: 40%;
}

.width-045 {
  width: 45%;
}

.height-045 {
  height: 45%;
}

.width-050 {
  width: 50%;
}

.height-050 {
  height: 50%;
}

.width-055 {
  width: 55%;
}

.height-055 {
  height: 55%;
}

.width-060 {
  width: 60%;
}

.height-060 {
  height: 60%;
}

.width-065 {
  width: 65%;
}

.height-065 {
  height: 65%;
}

.width-070 {
  width: 70%;
}

.height-070 {
  height: 70%;
}

.width-075 {
  width: 75%;
}

.height-075 {
  height: 75%;
}

.width-080 {
  width: 80%;
}

.height-080 {
  height: 80%;
}

.width-085 {
  width: 85%;
}

.height-085 {
  height: 85%;
}

.width-090 {
  width: 90%;
}

.height-090 {
  height: 90%;
}

.width-095 {
  width: 95%;
}

.height-095 {
  height: 95%;
}

.width-0100 {
  width: 100%;
}

.height-0100 {
  height: 100%;
}

.height-100vh {
  height: 100vh;
}

.display-b {
  display: block;
}

.display-ib {
  display: inline-block;
}

.display-f {
  display: flex;
}

.display-if {
  display: inline-flex;
}

.display-n {
  display: none;
}

.display-i {
  display: inline;
}

.display-t {
  display: table;
}

.display-tc {
  display: table-cell;
}

.display-tr {
  display: table-row;
}

.display-it {
  display: inline-table;
}

.table-layout-f {
  table-layout: fixed;
}

.visibility-v {
  visibility: visible;
}

.visibility-h {
  visibility: hidden;
}

.flex-direction-r {
  flex-direction: row;
}

.flex-direction-rr {
  flex-direction: row-reverse;
}

.flex-direction-c {
  flex-direction: column;
}

.flex-direction-cr {
  flex-direction: column-reverse;
}

.flex-wrap-n {
  flex-wrap: nowrap;
}

.flex-wrap-w {
  flex-wrap: wrap;
}

.flex-wrap-wr {
  flex-wrap: wrap-reverse;
}

/*.flex-flow-c{
	flex-flow: column;
}
.flex-flow-cr{
	flex-flow: column-reverse;
}
.flex-flow-n{
	flex-flow: nowrap;
}
.flex-flow-r{
	flex-flow: row;
}
.flex-flow-rr{
	flex-flow: row-reverse;
}
.flex-flow-w{
	flex-flow: wrap;
}
.flex-flow-wr{
	flex-flow: wrap-reverse;
}
.justify-content-c{
	justify-content: center;
}
.justify-content-fe{
	justify-content: flex-end;
}
.justify-content-fs{
	justify-content: flex-start;
}
.justify-content-sa{
	justify-content: space-around;
}
.justify-content-sb{
	justify-content: space-between;
}*/
.position-r {
  position: relative;
}

.position-a {
  position: absolute;
}

.position-f {
  position: fixed;
}

.position-s {
  position: static;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.float-n {
  float: none;
}

.float-n-resp {
  float: left;
}
@media (min-width: 992px) {
  .float-n-resp {
    float: none;
  }
}

.clear-b {
  clear: both;
}

.clear-l {
  clear: left;
}

.clear-r {
  clear: right;
}

.clear-n {
  clear: none;
}

.overflow-h {
  overflow: hidden;
}

.overflow-s {
  overflow: scroll;
}

.overflow-a {
  overflow: auto;
}

.overflow-v {
  overflow: visible;
}

.vertical-align-bl {
  vertical-align: baseline;
}

.vertical-align-s {
  vertical-align: sub;
}

.vertical-align-sp {
  vertical-align: super;
}

.vertical-align-t {
  vertical-align: top;
}

.vertical-align-m {
  vertical-align: middle;
}

.vertical-align-b {
  vertical-align: bottom;
}

.vertical-align-tt {
  vertical-align: text-top;
}

.vertical-align-tb {
  vertical-align: text-bottom;
}

/* ************* END PROPERTIES BOX *************** */
/* BORDER's preguntar a sergio */
.border-t-1 {
  border-top: 1px;
}

.border-r-1 {
  border-right: 1px;
}

.border-b-1 {
  border-bottom: 1px;
}

.border-l-1 {
  border-left: 1px;
}

.border-t-2 {
  border-top: 2px;
}

.border-r-2 {
  border-right: 2px;
}

.border-b-2 {
  border-bottom: 2px;
}

.border-l-2 {
  border-left: 2px;
}

.border-t-3 {
  border-top: 3px;
}

.border-r-3 {
  border-right: 3px;
}

.border-b-3 {
  border-bottom: 3px;
}

.border-l-3 {
  border-left: 3px;
}

.border-t-4 {
  border-top: 4px;
}

.border-r-4 {
  border-right: 4px;
}

.border-b-4 {
  border-bottom: 4px;
}

.border-l-4 {
  border-left: 4px;
}

.border-t-5 {
  border-top: 5px;
}

.border-r-5 {
  border-right: 5px;
}

.border-b-5 {
  border-bottom: 5px;
}

.border-l-5 {
  border-left: 5px;
}

.border-t-6 {
  border-top: 6px;
}

.border-r-6 {
  border-right: 6px;
}

.border-b-6 {
  border-bottom: 6px;
}

.border-l-6 {
  border-left: 6px;
}

.border-t-7 {
  border-top: 7px;
}

.border-r-7 {
  border-right: 7px;
}

.border-b-7 {
  border-bottom: 7px;
}

.border-l-7 {
  border-left: 7px;
}

.border-t-8 {
  border-top: 8px;
}

.border-r-8 {
  border-right: 8px;
}

.border-b-8 {
  border-bottom: 8px;
}

.border-l-8 {
  border-left: 8px;
}

.border-t-9 {
  border-top: 9px;
}

.border-r-9 {
  border-right: 9px;
}

.border-b-9 {
  border-bottom: 9px;
}

.border-l-9 {
  border-left: 9px;
}

.border-t-10 {
  border-top: 10px;
}

.border-r-10 {
  border-right: 10px;
}

.border-b-10 {
  border-bottom: 10px;
}

.border-l-10 {
  border-left: 10px;
}

.border-t-26 {
  border-top: 26%;
}

.border-r-26 {
  border-right: 26%;
}

.border-b-26 {
  border-bottom: 26%;
}

.border-l-26 {
  border-left: 26%;
}

.border-t-27 {
  border-top: 27%;
}

.border-r-27 {
  border-right: 27%;
}

.border-b-27 {
  border-bottom: 27%;
}

.border-l-27 {
  border-left: 27%;
}

.border-t-28 {
  border-top: 28%;
}

.border-r-28 {
  border-right: 28%;
}

.border-b-28 {
  border-bottom: 28%;
}

.border-l-28 {
  border-left: 28%;
}

.border-t-29 {
  border-top: 29%;
}

.border-r-29 {
  border-right: 29%;
}

.border-b-29 {
  border-bottom: 29%;
}

.border-l-29 {
  border-left: 29%;
}

.border-radius-0 {
  border-radius: 0px;
}

.border-radius-tl-0 {
  border-top-left-radius: 0px;
}

.border-radius-tr-0 {
  border-top-right-radius: 0px;
}

.border-radius-bl-0 {
  border-bottom-left-radius: 0px;
}

.border-radius-br-0 {
  border-bottom-right-radius: 0px;
}

.border-radius-1 {
  border-radius: 1px;
}

.border-radius-tl-1 {
  border-top-left-radius: 1px;
}

.border-radius-tr-1 {
  border-top-right-radius: 1px;
}

.border-radius-bl-1 {
  border-bottom-left-radius: 1px;
}

.border-radius-br-1 {
  border-bottom-right-radius: 1px;
}

.border-radius-2 {
  border-radius: 2px;
}

.border-radius-tl-2 {
  border-top-left-radius: 2px;
}

.border-radius-tr-2 {
  border-top-right-radius: 2px;
}

.border-radius-bl-2 {
  border-bottom-left-radius: 2px;
}

.border-radius-br-2 {
  border-bottom-right-radius: 2px;
}

.border-radius-3 {
  border-radius: 3px;
}

.border-radius-tl-3 {
  border-top-left-radius: 3px;
}

.border-radius-tr-3 {
  border-top-right-radius: 3px;
}

.border-radius-bl-3 {
  border-bottom-left-radius: 3px;
}

.border-radius-br-3 {
  border-bottom-right-radius: 3px;
}

.border-radius-4 {
  border-radius: 4px;
}

.border-radius-tl-4 {
  border-top-left-radius: 4px;
}

.border-radius-tr-4 {
  border-top-right-radius: 4px;
}

.border-radius-bl-4 {
  border-bottom-left-radius: 4px;
}

.border-radius-br-4 {
  border-bottom-right-radius: 4px;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-tl-5 {
  border-top-left-radius: 5px;
}

.border-radius-tr-5 {
  border-top-right-radius: 5px;
}

.border-radius-bl-5 {
  border-bottom-left-radius: 5px;
}

.border-radius-br-5 {
  border-bottom-right-radius: 5px;
}

.border-radius-6 {
  border-radius: 6px;
}

.border-radius-tl-6 {
  border-top-left-radius: 6px;
}

.border-radius-tr-6 {
  border-top-right-radius: 6px;
}

.border-radius-bl-6 {
  border-bottom-left-radius: 6px;
}

.border-radius-br-6 {
  border-bottom-right-radius: 6px;
}

.border-radius-7 {
  border-radius: 7px;
}

.border-radius-tl-7 {
  border-top-left-radius: 7px;
}

.border-radius-tr-7 {
  border-top-right-radius: 7px;
}

.border-radius-bl-7 {
  border-bottom-left-radius: 7px;
}

.border-radius-br-7 {
  border-bottom-right-radius: 7px;
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-tl-8 {
  border-top-left-radius: 8px;
}

.border-radius-tr-8 {
  border-top-right-radius: 8px;
}

.border-radius-bl-8 {
  border-bottom-left-radius: 8px;
}

.border-radius-br-8 {
  border-bottom-right-radius: 8px;
}

.border-radius-9 {
  border-radius: 9px;
}

.border-radius-tl-9 {
  border-top-left-radius: 9px;
}

.border-radius-tr-9 {
  border-top-right-radius: 9px;
}

.border-radius-bl-9 {
  border-bottom-left-radius: 9px;
}

.border-radius-br-9 {
  border-bottom-right-radius: 9px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-tl-10 {
  border-top-left-radius: 10px;
}

.border-radius-tr-10 {
  border-top-right-radius: 10px;
}

.border-radius-bl-10 {
  border-bottom-left-radius: 10px;
}

.border-radius-br-10 {
  border-bottom-right-radius: 10px;
}

.border-radius-11 {
  border-radius: 11px;
}

.border-radius-tl-11 {
  border-top-left-radius: 11px;
}

.border-radius-tr-11 {
  border-top-right-radius: 11px;
}

.border-radius-bl-11 {
  border-bottom-left-radius: 11px;
}

.border-radius-br-11 {
  border-bottom-right-radius: 11px;
}

.border-radius-12 {
  border-radius: 12px;
}

.border-radius-tl-12 {
  border-top-left-radius: 12px;
}

.border-radius-tr-12 {
  border-top-right-radius: 12px;
}

.border-radius-bl-12 {
  border-bottom-left-radius: 12px;
}

.border-radius-br-12 {
  border-bottom-right-radius: 12px;
}

.border-radius-13 {
  border-radius: 13px;
}

.border-radius-tl-13 {
  border-top-left-radius: 13px;
}

.border-radius-tr-13 {
  border-top-right-radius: 13px;
}

.border-radius-bl-13 {
  border-bottom-left-radius: 13px;
}

.border-radius-br-13 {
  border-bottom-right-radius: 13px;
}

.border-radius-14 {
  border-radius: 14px;
}

.border-radius-tl-14 {
  border-top-left-radius: 14px;
}

.border-radius-tr-14 {
  border-top-right-radius: 14px;
}

.border-radius-bl-14 {
  border-bottom-left-radius: 14px;
}

.border-radius-br-14 {
  border-bottom-right-radius: 14px;
}

.border-radius-15 {
  border-radius: 15px;
}

.border-radius-tl-15 {
  border-top-left-radius: 15px;
}

.border-radius-tr-15 {
  border-top-right-radius: 15px;
}

.border-radius-bl-15 {
  border-bottom-left-radius: 15px;
}

.border-radius-br-15 {
  border-bottom-right-radius: 15px;
}

.border-radius-16 {
  border-radius: 16px;
}

.border-radius-tl-16 {
  border-top-left-radius: 16px;
}

.border-radius-tr-16 {
  border-top-right-radius: 16px;
}

.border-radius-bl-16 {
  border-bottom-left-radius: 16px;
}

.border-radius-br-16 {
  border-bottom-right-radius: 16px;
}

.border-radius-17 {
  border-radius: 17px;
}

.border-radius-tl-17 {
  border-top-left-radius: 17px;
}

.border-radius-tr-17 {
  border-top-right-radius: 17px;
}

.border-radius-bl-17 {
  border-bottom-left-radius: 17px;
}

.border-radius-br-17 {
  border-bottom-right-radius: 17px;
}

.border-radius-18 {
  border-radius: 18px;
}

.border-radius-tl-18 {
  border-top-left-radius: 18px;
}

.border-radius-tr-18 {
  border-top-right-radius: 18px;
}

.border-radius-bl-18 {
  border-bottom-left-radius: 18px;
}

.border-radius-br-18 {
  border-bottom-right-radius: 18px;
}

.border-radius-19 {
  border-radius: 19px;
}

.border-radius-tl-19 {
  border-top-left-radius: 19px;
}

.border-radius-tr-19 {
  border-top-right-radius: 19px;
}

.border-radius-bl-19 {
  border-bottom-left-radius: 19px;
}

.border-radius-br-19 {
  border-bottom-right-radius: 19px;
}

.border-radius-20 {
  border-radius: 20px;
}

.border-radius-tl-20 {
  border-top-left-radius: 20px;
}

.border-radius-tr-20 {
  border-top-right-radius: 20px;
}

.border-radius-bl-20 {
  border-bottom-left-radius: 20px;
}

.border-radius-br-20 {
  border-bottom-right-radius: 20px;
}

.border-radius-21 {
  border-radius: 21px;
}

.border-radius-tl-21 {
  border-top-left-radius: 21px;
}

.border-radius-tr-21 {
  border-top-right-radius: 21px;
}

.border-radius-bl-21 {
  border-bottom-left-radius: 21px;
}

.border-radius-br-21 {
  border-bottom-right-radius: 21px;
}

.border-radius-22 {
  border-radius: 22px;
}

.border-radius-tl-22 {
  border-top-left-radius: 22px;
}

.border-radius-tr-22 {
  border-top-right-radius: 22px;
}

.border-radius-bl-22 {
  border-bottom-left-radius: 22px;
}

.border-radius-br-22 {
  border-bottom-right-radius: 22px;
}

.border-radius-23 {
  border-radius: 23px;
}

.border-radius-tl-23 {
  border-top-left-radius: 23px;
}

.border-radius-tr-23 {
  border-top-right-radius: 23px;
}

.border-radius-bl-23 {
  border-bottom-left-radius: 23px;
}

.border-radius-br-23 {
  border-bottom-right-radius: 23px;
}

.border-radius-24 {
  border-radius: 24px;
}

.border-radius-tl-24 {
  border-top-left-radius: 24px;
}

.border-radius-tr-24 {
  border-top-right-radius: 24px;
}

.border-radius-bl-24 {
  border-bottom-left-radius: 24px;
}

.border-radius-br-24 {
  border-bottom-right-radius: 24px;
}

.border-radius-25 {
  border-radius: 25px;
}

.border-radius-tl-25 {
  border-top-left-radius: 25px;
}

.border-radius-tr-25 {
  border-top-right-radius: 25px;
}

.border-radius-bl-25 {
  border-bottom-left-radius: 25px;
}

.border-radius-br-25 {
  border-bottom-right-radius: 25px;
}

.border-radius-025 {
  border-radius: 25%;
}

.border-radius-tl-025 {
  border-top-left-radius: 25%;
}

.border-radius-tr-025 {
  border-top-right-radius: 25%;
}

.border-radius-bl-025 {
  border-bottom-left-radius: 25%;
}

.border-radius-br-025 {
  border-bottom-right-radius: 25%;
}

.border-radius-050 {
  border-radius: 50%;
}

.border-radius-tl-050 {
  border-top-left-radius: 50%;
}

.border-radius-tr-050 {
  border-top-right-radius: 50%;
}

.border-radius-bl-050 {
  border-bottom-left-radius: 50%;
}

.border-radius-br-050 {
  border-bottom-right-radius: 50%;
}

.border-radius-075 {
  border-radius: 75%;
}

.border-radius-tl-075 {
  border-top-left-radius: 75%;
}

.border-radius-tr-075 {
  border-top-right-radius: 75%;
}

.border-radius-bl-075 {
  border-bottom-left-radius: 75%;
}

.border-radius-br-075 {
  border-bottom-right-radius: 75%;
}

.border-radius-0100 {
  border-radius: 100%;
}

.border-radius-tl-0100 {
  border-top-left-radius: 100%;
}

.border-radius-tr-0100 {
  border-top-right-radius: 100%;
}

.border-radius-bl-0100 {
  border-bottom-left-radius: 100%;
}

.border-radius-br-0100 {
  border-bottom-right-radius: 100%;
}

.border-t-26 {
  border-top: 26%;
}

.border-r-26 {
  border-right: 26%;
}

.border-b-26 {
  border-bottom: 26%;
}

.border-l-26 {
  border-left: 26%;
}

.border-t-27 {
  border-top: 27%;
}

.border-r-27 {
  border-right: 27%;
}

.border-b-27 {
  border-bottom: 27%;
}

.border-l-27 {
  border-left: 27%;
}

.border-t-28 {
  border-top: 28%;
}

.border-r-28 {
  border-right: 28%;
}

.border-b-28 {
  border-bottom: 28%;
}

.border-l-28 {
  border-left: 28%;
}

.border-t-29 {
  border-top: 29%;
}

.border-r-29 {
  border-right: 29%;
}

.border-b-29 {
  border-bottom: 29%;
}

.border-l-29 {
  border-left: 29%;
}

.border-g-00 {
  border: 1px solid white;
}

.border-t-g-00 {
  border-top: 1px solid white;
}

.border-b-g-00 {
  border-bottom: 1px solid white;
}

.border-l-g-00 {
  border-left: 1px solid white;
}

.border-r-g-00 {
  border-right: 1px solid white;
}

.border-g-05 {
  border: 1px solid #f2f2f2;
}

.border-t-g-05 {
  border-top: 1px solid #f2f2f2;
}

.border-b-g-05 {
  border-bottom: 1px solid #f2f2f2;
}

.border-l-g-05 {
  border-left: 1px solid #f2f2f2;
}

.border-r-g-05 {
  border-right: 1px solid #f2f2f2;
}

.border-g-010 {
  border: 1px solid #e6e6e6;
}

.border-t-g-010 {
  border-top: 1px solid #e6e6e6;
}

.border-b-g-010 {
  border-bottom: 1px solid #e6e6e6;
}

.border-l-g-010 {
  border-left: 1px solid #e6e6e6;
}

.border-r-g-010 {
  border-right: 1px solid #e6e6e6;
}

.border-g-015 {
  border: 1px solid #d9d9d9;
}

.border-t-g-015 {
  border-top: 1px solid #d9d9d9;
}

.border-b-g-015 {
  border-bottom: 1px solid #d9d9d9;
}

.border-l-g-015 {
  border-left: 1px solid #d9d9d9;
}

.border-r-g-015 {
  border-right: 1px solid #d9d9d9;
}

.border-g-020 {
  border: 1px solid #cccccc;
}

.border-t-g-020 {
  border-top: 1px solid #cccccc;
}

.border-b-g-020 {
  border-bottom: 1px solid #cccccc;
}

.border-l-g-020 {
  border-left: 1px solid #cccccc;
}

.border-r-g-020 {
  border-right: 1px solid #cccccc;
}

.border-g-025 {
  border: 1px solid #bfbfbf;
}

.border-t-g-025 {
  border-top: 1px solid #bfbfbf;
}

.border-b-g-025 {
  border-bottom: 1px solid #bfbfbf;
}

.border-l-g-025 {
  border-left: 1px solid #bfbfbf;
}

.border-r-g-025 {
  border-right: 1px solid #bfbfbf;
}

.border-g-030 {
  border: 1px solid #b3b3b3;
}

.border-t-g-030 {
  border-top: 1px solid #b3b3b3;
}

.border-b-g-030 {
  border-bottom: 1px solid #b3b3b3;
}

.border-l-g-030 {
  border-left: 1px solid #b3b3b3;
}

.border-r-g-030 {
  border-right: 1px solid #b3b3b3;
}

.border-g-035 {
  border: 1px solid #a6a6a6;
}

.border-t-g-035 {
  border-top: 1px solid #a6a6a6;
}

.border-b-g-035 {
  border-bottom: 1px solid #a6a6a6;
}

.border-l-g-035 {
  border-left: 1px solid #a6a6a6;
}

.border-r-g-035 {
  border-right: 1px solid #a6a6a6;
}

.border-g-040 {
  border: 1px solid #999999;
}

.border-t-g-040 {
  border-top: 1px solid #999999;
}

.border-b-g-040 {
  border-bottom: 1px solid #999999;
}

.border-l-g-040 {
  border-left: 1px solid #999999;
}

.border-r-g-040 {
  border-right: 1px solid #999999;
}

.border-g-045 {
  border: 1px solid #8c8c8c;
}

.border-t-g-045 {
  border-top: 1px solid #8c8c8c;
}

.border-b-g-045 {
  border-bottom: 1px solid #8c8c8c;
}

.border-l-g-045 {
  border-left: 1px solid #8c8c8c;
}

.border-r-g-045 {
  border-right: 1px solid #8c8c8c;
}

.border-g-050 {
  border: 1px solid gray;
}

.border-t-g-050 {
  border-top: 1px solid gray;
}

.border-b-g-050 {
  border-bottom: 1px solid gray;
}

.border-l-g-050 {
  border-left: 1px solid gray;
}

.border-r-g-050 {
  border-right: 1px solid gray;
}

.border-g-00 {
  border: 1px solid #00cbfa;
}

.border-t-l-00 {
  border-top: 1px solid #00cbfa;
}

.border-b-l-00 {
  border-bottom: 1px solid #00cbfa;
}

.border-l-l-00 {
  border-left: 1px solid #00cbfa;
}

.border-r-l-00 {
  border-right: 1px solid #00cbfa;
}

.border-g-05 {
  border: 1px solid #00b6e1;
}

.border-t-l-05 {
  border-top: 1px solid #15d3ff;
}

.border-b-l-05 {
  border-bottom: 1px solid #15d3ff;
}

.border-l-l-05 {
  border-left: 1px solid #15d3ff;
}

.border-r-l-05 {
  border-right: 1px solid #15d3ff;
}

.border-g-010 {
  border: 1px solid #00a2c7;
}

.border-t-l-010 {
  border-top: 1px solid #2ed8ff;
}

.border-b-l-010 {
  border-bottom: 1px solid #2ed8ff;
}

.border-l-l-010 {
  border-left: 1px solid #2ed8ff;
}

.border-r-l-010 {
  border-right: 1px solid #2ed8ff;
}

.border-g-015 {
  border: 1px solid #008dae;
}

.border-t-l-015 {
  border-top: 1px solid #48ddff;
}

.border-b-l-015 {
  border-bottom: 1px solid #48ddff;
}

.border-l-l-015 {
  border-left: 1px solid #48ddff;
}

.border-r-l-015 {
  border-right: 1px solid #48ddff;
}

.border-g-020 {
  border: 1px solid #007894;
}

.border-t-l-020 {
  border-top: 1px solid #61e1ff;
}

.border-b-l-020 {
  border-bottom: 1px solid #61e1ff;
}

.border-l-l-020 {
  border-left: 1px solid #61e1ff;
}

.border-r-l-020 {
  border-right: 1px solid #61e1ff;
}

.border-g-025 {
  border: 1px solid #00637b;
}

.border-t-l-025 {
  border-top: 1px solid #7be6ff;
}

.border-b-l-025 {
  border-bottom: 1px solid #7be6ff;
}

.border-l-l-025 {
  border-left: 1px solid #7be6ff;
}

.border-r-l-025 {
  border-right: 1px solid #7be6ff;
}

.border-g-030 {
  border: 1px solid #004f61;
}

.border-t-l-030 {
  border-top: 1px solid #94ebff;
}

.border-b-l-030 {
  border-bottom: 1px solid #94ebff;
}

.border-l-l-030 {
  border-left: 1px solid #94ebff;
}

.border-r-l-030 {
  border-right: 1px solid #94ebff;
}

.border-g-035 {
  border: 1px solid #003a48;
}

.border-t-l-035 {
  border-top: 1px solid #aef0ff;
}

.border-b-l-035 {
  border-bottom: 1px solid #aef0ff;
}

.border-l-l-035 {
  border-left: 1px solid #aef0ff;
}

.border-r-l-035 {
  border-right: 1px solid #aef0ff;
}

.border-g-040 {
  border: 1px solid #00252e;
}

.border-t-l-040 {
  border-top: 1px solid #c7f4ff;
}

.border-b-l-040 {
  border-bottom: 1px solid #c7f4ff;
}

.border-l-l-040 {
  border-left: 1px solid #c7f4ff;
}

.border-r-l-040 {
  border-right: 1px solid #c7f4ff;
}

.border-g-045 {
  border: 1px solid #001115;
}

.border-t-l-045 {
  border-top: 1px solid #e1f9ff;
}

.border-b-l-045 {
  border-bottom: 1px solid #e1f9ff;
}

.border-l-l-045 {
  border-left: 1px solid #e1f9ff;
}

.border-r-l-045 {
  border-right: 1px solid #e1f9ff;
}

.border-g-050 {
  border: 1px solid black;
}

.border-t-l-050 {
  border-top: 1px solid #fafeff;
}

.border-b-l-050 {
  border-bottom: 1px solid #fafeff;
}

.border-l-l-050 {
  border-left: 1px solid #fafeff;
}

.border-r-l-050 {
  border-right: 1px solid #fafeff;
}

/* ************* FONTS *************** */
.typo-1 {
  font-family: "Open Sans", sans-serif;
}

.typo-2 {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
}

.typo-3 {
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}

/* incluir lineheights en sizes */
@media (min-width: 0px) {
  .font-size-xxl {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (min-width: 576px) {
  .font-size-xxl {
    font-size: 25px;
    line-height: 36px;
  }
}
@media (min-width: 768px) {
  .font-size-xxl {
    font-size: 30px;
    line-height: 38px;
  }
}
@media (min-width: 992px) {
  .font-size-xxl {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (min-width: 1200px) {
  .font-size-xxl {
    font-size: 40px;
    line-height: 35px;
  }
}

@media (min-width: 0px) {
  .font-size-xl {
    font-size: 19px;
    line-height: 28px;
  }
}
@media (min-width: 576px) {
  .font-size-xl {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .font-size-xl {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (min-width: 992px) {
  .font-size-xl {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (min-width: 1200px) {
  .font-size-xl {
    font-size: 30px;
    line-height: 35px;
  }
}

@media (min-width: 0px) {
  .font-size-l {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 576px) {
  .font-size-l {
    font-size: 17px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .font-size-l {
    font-size: 19px;
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .font-size-l {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .font-size-l {
    font-size: 23px;
    line-height: 27px;
  }
}

@media (min-width: 0px) {
  .font-size-m {
    font-size: 14px;
    line-height: 18px;
  }
}
@media (min-width: 576px) {
  .font-size-m {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .font-size-m {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (min-width: 992px) {
  .font-size-m {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .font-size-m {
    font-size: 17px;
    line-height: 24px;
  }
}

@media (min-width: 0px) {
  .font-size-s {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (min-width: 576px) {
  .font-size-s {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .font-size-s {
    font-size: 13px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .font-size-s {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (min-width: 1200px) {
  .font-size-s {
    font-size: 14px;
    line-height: 25px;
  }
}

@media (min-width: 0px) {
  .font-size-xs {
    font-size: 11px;
    line-height: 20px;
  }
}
@media (min-width: 576px) {
  .font-size-xs {
    font-size: 11px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .font-size-xs {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 992px) {
  .font-size-xs {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .font-size-xs {
    font-size: 13px;
    line-height: 24px;
  }
}

@media (min-width: 0px) {
  .font-size-xxs {
    font-size: 11px;
    line-height: 20px;
  }
}
@media (min-width: 576px) {
  .font-size-xxs {
    font-size: 11px;
    line-height: 20px;
  }
}
@media (min-width: 768px) {
  .font-size-xxs {
    font-size: 11px;
    line-height: 20px;
  }
}
@media (min-width: 992px) {
  .font-size-xxs {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 1200px) {
  .font-size-xxs {
    font-size: 12px;
    line-height: 22px;
  }
}

.line-h-10 {
  line-height: 10px;
}

.line-h-11 {
  line-height: 11px;
}

.line-h-12 {
  line-height: 12px;
}

.line-h-13 {
  line-height: 13px;
}

.line-h-14 {
  line-height: 14px;
}

.line-h-15 {
  line-height: 15px;
}

.line-h-16 {
  line-height: 16px;
}

.line-h-17 {
  line-height: 17px;
}

.line-h-18 {
  line-height: 18px;
}

.line-h-19 {
  line-height: 19px;
}

.line-h-20 {
  line-height: 20px;
}

.line-h-21 {
  line-height: 21px;
}

.line-h-22 {
  line-height: 22px;
}

.line-h-23 {
  line-height: 23px;
}

.line-h-24 {
  line-height: 24px;
}

.line-h-25 {
  line-height: 25px;
}

.line-h-26 {
  line-height: 26px;
}

.line-h-27 {
  line-height: 27px;
}

.line-h-28 {
  line-height: 28px;
}

.line-h-29 {
  line-height: 29px;
}

.line-h-30 {
  line-height: 30px;
}

.line-h-31 {
  line-height: 31px;
}

.line-h-32 {
  line-height: 32px;
}

.line-h-33 {
  line-height: 33px;
}

.line-h-34 {
  line-height: 34px;
}

.line-h-35 {
  line-height: 35px;
}

.line-h-36 {
  line-height: 36px;
}

.line-h-37 {
  line-height: 37px;
}

.line-h-38 {
  line-height: 38px;
}

.line-h-39 {
  line-height: 39px;
}

.line-h-40 {
  line-height: 40px;
}

.line-h-41 {
  line-height: 41px;
}

.line-h-42 {
  line-height: 42px;
}

.line-h-43 {
  line-height: 43px;
}

.line-h-44 {
  line-height: 44px;
}

.line-h-45 {
  line-height: 45px;
}

.line-h-46 {
  line-height: 46px;
}

.line-h-47 {
  line-height: 47px;
}

.line-h-48 {
  line-height: 48px;
}

.line-h-49 {
  line-height: 49px;
}

.line-h-50 {
  line-height: 50px;
}

.line-h-51 {
  line-height: 51px;
}

.line-h-52 {
  line-height: 52px;
}

.line-h-53 {
  line-height: 53px;
}

.line-h-54 {
  line-height: 54px;
}

.line-h-55 {
  line-height: 55px;
}

.line-h-56 {
  line-height: 56px;
}

.line-h-57 {
  line-height: 57px;
}

.line-h-58 {
  line-height: 58px;
}

.line-h-59 {
  line-height: 59px;
}

.line-h-60 {
  line-height: 60px;
}

.line-h-61 {
  line-height: 61px;
}

.line-h-62 {
  line-height: 62px;
}

.line-h-63 {
  line-height: 63px;
}

.line-h-64 {
  line-height: 64px;
}

.line-h-65 {
  line-height: 65px;
}

.line-h-66 {
  line-height: 66px;
}

.line-h-67 {
  line-height: 67px;
}

.line-h-68 {
  line-height: 68px;
}

.line-h-69 {
  line-height: 69px;
}

.line-h-70 {
  line-height: 70px;
}

.line-h-71 {
  line-height: 71px;
}

.line-h-72 {
  line-height: 72px;
}

.line-h-73 {
  line-height: 73px;
}

.line-h-74 {
  line-height: 74px;
}

.line-h-75 {
  line-height: 75px;
}

.line-h-76 {
  line-height: 76px;
}

.line-h-77 {
  line-height: 77px;
}

.line-h-78 {
  line-height: 78px;
}

.line-h-79 {
  line-height: 79px;
}

.line-h-80 {
  line-height: 80px;
}

.font-style-n {
  font-style: normal;
}

.font-style-i {
  font-style: italic;
}

.font-weight-l {
  font-weight: lighter;
}

.font-weight-n {
  font-weight: normal;
}

.font-weight-b {
  font-weight: bold;
}

.text-align-l {
  text-align: left;
}

.text-align-c {
  text-align: center;
}

.text-align-r {
  text-align: right;
}

.text-align-j {
  text-align: justify;
}

.text-trans-l {
  text-transform: lowercase;
}

.text-trans-u {
  text-transform: uppercase;
}

.text-trans-c {
  text-transform: capitalize;
}

/* properties opentype pag:98 net magazine may 2014 */
/* ************* END FONTS *************** */
/* ************* COLORS *************** */
.c-font {
  color: #000;
}

.bg-c-font {
  background-color: #000;
}

.c-font-dark-5 {
  color: black;
}

.c-font-clear-5 {
  color: #0d0d0d;
}

.bg-c-font-dark-5 {
  background-color: black;
}

.bg-c-font-clear-5 {
  background-color: #0d0d0d;
}

.c-font-dark-10 {
  color: black;
}

.c-font-clear-10 {
  color: #1a1a1a;
}

.bg-c-font-dark-10 {
  background-color: black;
}

.bg-c-font-clear-10 {
  background-color: #1a1a1a;
}

.c-font-dark-15 {
  color: black;
}

.c-font-clear-15 {
  color: #262626;
}

.bg-c-font-dark-15 {
  background-color: black;
}

.bg-c-font-clear-15 {
  background-color: #262626;
}

.c-font-dark-20 {
  color: black;
}

.c-font-clear-20 {
  color: #333333;
}

.bg-c-font-dark-20 {
  background-color: black;
}

.bg-c-font-clear-20 {
  background-color: #333333;
}

.c-font-dark-25 {
  color: black;
}

.c-font-clear-25 {
  color: #404040;
}

.bg-c-font-dark-25 {
  background-color: black;
}

.bg-c-font-clear-25 {
  background-color: #404040;
}

.c-font-dark-30 {
  color: black;
}

.c-font-clear-30 {
  color: #4d4d4d;
}

.bg-c-font-dark-30 {
  background-color: black;
}

.bg-c-font-clear-30 {
  background-color: #4d4d4d;
}

.c-font-dark-35 {
  color: black;
}

.c-font-clear-35 {
  color: #595959;
}

.bg-c-font-dark-35 {
  background-color: black;
}

.bg-c-font-clear-35 {
  background-color: #595959;
}

.c-font-dark-40 {
  color: black;
}

.c-font-clear-40 {
  color: #666666;
}

.bg-c-font-dark-40 {
  background-color: black;
}

.bg-c-font-clear-40 {
  background-color: #666666;
}

.c-font-dark-45 {
  color: black;
}

.c-font-clear-45 {
  color: #737373;
}

.bg-c-font-dark-45 {
  background-color: black;
}

.bg-c-font-clear-45 {
  background-color: #737373;
}

.c-font-dark-50 {
  color: black;
}

.c-font-clear-50 {
  color: gray;
}

.bg-c-font-dark-50 {
  background-color: black;
}

.bg-c-font-clear-50 {
  background-color: gray;
}

.c-font-dark-55 {
  color: black;
}

.c-font-clear-55 {
  color: #8c8c8c;
}

.bg-c-font-dark-55 {
  background-color: black;
}

.bg-c-font-clear-55 {
  background-color: #8c8c8c;
}

.c-font-dark-60 {
  color: black;
}

.c-font-clear-60 {
  color: #999999;
}

.bg-c-font-dark-60 {
  background-color: black;
}

.bg-c-font-clear-60 {
  background-color: #999999;
}

.c-font-dark-65 {
  color: black;
}

.c-font-clear-65 {
  color: #a6a6a6;
}

.bg-c-font-dark-65 {
  background-color: black;
}

.bg-c-font-clear-65 {
  background-color: #a6a6a6;
}

.c-font-dark-70 {
  color: black;
}

.c-font-clear-70 {
  color: #b3b3b3;
}

.bg-c-font-dark-70 {
  background-color: black;
}

.bg-c-font-clear-70 {
  background-color: #b3b3b3;
}

.c-font-dark-75 {
  color: black;
}

.c-font-clear-75 {
  color: #bfbfbf;
}

.bg-c-font-dark-75 {
  background-color: black;
}

.bg-c-font-clear-75 {
  background-color: #bfbfbf;
}

.c-font-dark-80 {
  color: black;
}

.c-font-clear-80 {
  color: #cccccc;
}

.bg-c-font-dark-80 {
  background-color: black;
}

.bg-c-font-clear-80 {
  background-color: #cccccc;
}

.c-font-dark-85 {
  color: black;
}

.c-font-clear-85 {
  color: #d9d9d9;
}

.bg-c-font-dark-85 {
  background-color: black;
}

.bg-c-font-clear-85 {
  background-color: #d9d9d9;
}

.c-font-dark-90 {
  color: black;
}

.c-font-clear-90 {
  color: #e6e6e6;
}

.bg-c-font-dark-90 {
  background-color: black;
}

.bg-c-font-clear-90 {
  background-color: #e6e6e6;
}

.c-font-dark-95 {
  color: black;
}

.c-font-clear-95 {
  color: #f2f2f2;
}

.bg-c-font-dark-95 {
  background-color: black;
}

.bg-c-font-clear-95 {
  background-color: #f2f2f2;
}

.c-font-dark-100 {
  color: black;
}

.c-font-clear-100 {
  color: white;
}

.bg-c-font-dark-100 {
  background-color: black;
}

.bg-c-font-clear-100 {
  background-color: white;
}

.c-primary {
  color: #00CBFA;
}

.bg-c-primary {
  background-color: #00CBFA;
}

.bg-c-secondary {
  background-color: #ACCEDA;
}

.c-primary-dark-5 {
  color: #00c1ee;
}

.c-primary-clear-5 {
  color: #0dcefa;
}

.bg-c-primary-dark-5 {
  background-color: #00c1ee;
}

.bg-c-primary-clear-5 {
  background-color: #0dcefa;
}

.c-primary-dark-10 {
  color: #00b7e1;
}

.c-primary-clear-10 {
  color: #1ad0fb;
}

.bg-c-primary-dark-10 {
  background-color: #00b7e1;
}

.bg-c-primary-clear-10 {
  background-color: #1ad0fb;
}

.c-primary-dark-15 {
  color: #00add5;
}

.c-primary-clear-15 {
  color: #26d3fb;
}

.bg-c-primary-dark-15 {
  background-color: #00add5;
}

.bg-c-primary-clear-15 {
  background-color: #26d3fb;
}

.c-primary-dark-20 {
  color: #00a2c8;
}

.c-primary-clear-20 {
  color: #33d5fb;
}

.bg-c-primary-dark-20 {
  background-color: #00a2c8;
}

.bg-c-primary-clear-20 {
  background-color: #33d5fb;
}

.c-primary-dark-25 {
  color: #0098bc;
}

.c-primary-clear-25 {
  color: #40d8fb;
}

.bg-c-primary-dark-25 {
  background-color: #0098bc;
}

.bg-c-primary-clear-25 {
  background-color: #40d8fb;
}

.c-primary-dark-30 {
  color: #008eaf;
}

.c-primary-clear-30 {
  color: #4ddbfc;
}

.bg-c-primary-dark-30 {
  background-color: #008eaf;
}

.bg-c-primary-clear-30 {
  background-color: #4ddbfc;
}

.c-primary-dark-35 {
  color: #0084a3;
}

.c-primary-clear-35 {
  color: #59ddfc;
}

.bg-c-primary-dark-35 {
  background-color: #0084a3;
}

.bg-c-primary-clear-35 {
  background-color: #59ddfc;
}

.c-primary-dark-40 {
  color: #007a96;
}

.c-primary-clear-40 {
  color: #66e0fc;
}

.bg-c-primary-dark-40 {
  background-color: #007a96;
}

.bg-c-primary-clear-40 {
  background-color: #66e0fc;
}

.c-primary-dark-45 {
  color: #00708a;
}

.c-primary-clear-45 {
  color: #73e2fc;
}

.bg-c-primary-dark-45 {
  background-color: #00708a;
}

.bg-c-primary-clear-45 {
  background-color: #73e2fc;
}

.c-primary-dark-50 {
  color: #00667d;
}

.c-primary-clear-50 {
  color: #80e5fd;
}

.bg-c-primary-dark-50 {
  background-color: #00667d;
}

.bg-c-primary-clear-50 {
  background-color: #80e5fd;
}

.c-primary-dark-55 {
  color: #005b71;
}

.c-primary-clear-55 {
  color: #8ce8fd;
}

.bg-c-primary-dark-55 {
  background-color: #005b71;
}

.bg-c-primary-clear-55 {
  background-color: #8ce8fd;
}

.c-primary-dark-60 {
  color: #005164;
}

.c-primary-clear-60 {
  color: #99eafd;
}

.bg-c-primary-dark-60 {
  background-color: #005164;
}

.bg-c-primary-clear-60 {
  background-color: #99eafd;
}

.c-primary-dark-65 {
  color: #004758;
}

.c-primary-clear-65 {
  color: #a6edfd;
}

.bg-c-primary-dark-65 {
  background-color: #004758;
}

.bg-c-primary-clear-65 {
  background-color: #a6edfd;
}

.c-primary-dark-70 {
  color: #003d4b;
}

.c-primary-clear-70 {
  color: #b3effe;
}

.bg-c-primary-dark-70 {
  background-color: #003d4b;
}

.bg-c-primary-clear-70 {
  background-color: #b3effe;
}

.c-primary-dark-75 {
  color: #00333f;
}

.c-primary-clear-75 {
  color: #bff2fe;
}

.bg-c-primary-dark-75 {
  background-color: #00333f;
}

.bg-c-primary-clear-75 {
  background-color: #bff2fe;
}

.c-primary-dark-80 {
  color: #002932;
}

.c-primary-clear-80 {
  color: #ccf5fe;
}

.bg-c-primary-dark-80 {
  background-color: #002932;
}

.bg-c-primary-clear-80 {
  background-color: #ccf5fe;
}

.c-primary-dark-85 {
  color: #001e26;
}

.c-primary-clear-85 {
  color: #d9f7fe;
}

.bg-c-primary-dark-85 {
  background-color: #001e26;
}

.bg-c-primary-clear-85 {
  background-color: #d9f7fe;
}

.c-primary-dark-90 {
  color: #001419;
}

.c-primary-clear-90 {
  color: #e6faff;
}

.bg-c-primary-dark-90 {
  background-color: #001419;
}

.bg-c-primary-clear-90 {
  background-color: #e6faff;
}

.c-primary-dark-95 {
  color: #000a0d;
}

.c-primary-clear-95 {
  color: #f2fcff;
}

.bg-c-primary-dark-95 {
  background-color: #000a0d;
}

.bg-c-primary-clear-95 {
  background-color: #f2fcff;
}

.c-primary-dark-100 {
  color: black;
}

.c-primary-clear-100 {
  color: white;
}

.bg-c-primary-dark-100 {
  background-color: black;
}

.bg-c-primary-clear-100 {
  background-color: white;
}

.c-secondary {
  color: #ACCEDA;
}

.bg-c-secondary {
  background-color: #ACCEDA;
}

.c-secondary-dark-5 {
  color: #a3c4cf;
}

.c-secondary-clear-5 {
  color: #b0d0dc;
}

.bg-c-secondary-dark-5 {
  background-color: #a3c4cf;
}

.bg-c-secondary-clear-5 {
  background-color: #b0d0dc;
}

.c-secondary-dark-10 {
  color: #9bb9c4;
}

.c-secondary-clear-10 {
  color: #b4d3de;
}

.bg-c-secondary-dark-10 {
  background-color: #9bb9c4;
}

.bg-c-secondary-clear-10 {
  background-color: #b4d3de;
}

.c-secondary-dark-15 {
  color: #92afb9;
}

.c-secondary-clear-15 {
  color: #b8d5e0;
}

.bg-c-secondary-dark-15 {
  background-color: #92afb9;
}

.bg-c-secondary-clear-15 {
  background-color: #b8d5e0;
}

.c-secondary-dark-20 {
  color: #8aa5ae;
}

.c-secondary-clear-20 {
  color: #bdd8e1;
}

.bg-c-secondary-dark-20 {
  background-color: #8aa5ae;
}

.bg-c-secondary-clear-20 {
  background-color: #bdd8e1;
}

.c-secondary-dark-25 {
  color: #819ba4;
}

.c-secondary-clear-25 {
  color: #c1dae3;
}

.bg-c-secondary-dark-25 {
  background-color: #819ba4;
}

.bg-c-secondary-clear-25 {
  background-color: #c1dae3;
}

.c-secondary-dark-30 {
  color: #789099;
}

.c-secondary-clear-30 {
  color: #c5dde5;
}

.bg-c-secondary-dark-30 {
  background-color: #789099;
}

.bg-c-secondary-clear-30 {
  background-color: #c5dde5;
}

.c-secondary-dark-35 {
  color: #70868e;
}

.c-secondary-clear-35 {
  color: #c9dfe7;
}

.bg-c-secondary-dark-35 {
  background-color: #70868e;
}

.bg-c-secondary-clear-35 {
  background-color: #c9dfe7;
}

.c-secondary-dark-40 {
  color: #677c83;
}

.c-secondary-clear-40 {
  color: #cde2e9;
}

.bg-c-secondary-dark-40 {
  background-color: #677c83;
}

.bg-c-secondary-clear-40 {
  background-color: #cde2e9;
}

.c-secondary-dark-45 {
  color: #5f7178;
}

.c-secondary-clear-45 {
  color: #d1e4eb;
}

.bg-c-secondary-dark-45 {
  background-color: #5f7178;
}

.bg-c-secondary-clear-45 {
  background-color: #d1e4eb;
}

.c-secondary-dark-50 {
  color: #56676d;
}

.c-secondary-clear-50 {
  color: #d6e7ed;
}

.bg-c-secondary-dark-50 {
  background-color: #56676d;
}

.bg-c-secondary-clear-50 {
  background-color: #d6e7ed;
}

.c-secondary-dark-55 {
  color: #4d5d62;
}

.c-secondary-clear-55 {
  color: #dae9ee;
}

.bg-c-secondary-dark-55 {
  background-color: #4d5d62;
}

.bg-c-secondary-clear-55 {
  background-color: #dae9ee;
}

.c-secondary-dark-60 {
  color: #455257;
}

.c-secondary-clear-60 {
  color: #deebf0;
}

.bg-c-secondary-dark-60 {
  background-color: #455257;
}

.bg-c-secondary-clear-60 {
  background-color: #deebf0;
}

.c-secondary-dark-65 {
  color: #3c484c;
}

.c-secondary-clear-65 {
  color: #e2eef2;
}

.bg-c-secondary-dark-65 {
  background-color: #3c484c;
}

.bg-c-secondary-clear-65 {
  background-color: #e2eef2;
}

.c-secondary-dark-70 {
  color: #343e41;
}

.c-secondary-clear-70 {
  color: #e6f0f4;
}

.bg-c-secondary-dark-70 {
  background-color: #343e41;
}

.bg-c-secondary-clear-70 {
  background-color: #e6f0f4;
}

.c-secondary-dark-75 {
  color: #2b3437;
}

.c-secondary-clear-75 {
  color: #eaf3f6;
}

.bg-c-secondary-dark-75 {
  background-color: #2b3437;
}

.bg-c-secondary-clear-75 {
  background-color: #eaf3f6;
}

.c-secondary-dark-80 {
  color: #22292c;
}

.c-secondary-clear-80 {
  color: #eef5f8;
}

.bg-c-secondary-dark-80 {
  background-color: #22292c;
}

.bg-c-secondary-clear-80 {
  background-color: #eef5f8;
}

.c-secondary-dark-85 {
  color: #1a1f21;
}

.c-secondary-clear-85 {
  color: #f3f8f9;
}

.bg-c-secondary-dark-85 {
  background-color: #1a1f21;
}

.bg-c-secondary-clear-85 {
  background-color: #f3f8f9;
}

.c-secondary-dark-90 {
  color: #111516;
}

.c-secondary-clear-90 {
  color: #f7fafb;
}

.bg-c-secondary-dark-90 {
  background-color: #111516;
}

.bg-c-secondary-clear-90 {
  background-color: #f7fafb;
}

.c-secondary-dark-95 {
  color: #090a0b;
}

.c-secondary-clear-95 {
  color: #fbfdfd;
}

.bg-c-secondary-dark-95 {
  background-color: #090a0b;
}

.bg-c-secondary-clear-95 {
  background-color: #fbfdfd;
}

.c-secondary-dark-100 {
  color: black;
}

.c-secondary-clear-100 {
  color: white;
}

.bg-c-secondary-dark-100 {
  background-color: black;
}

.bg-c-secondary-clear-100 {
  background-color: white;
}

.c-grey {
  color: #FEFEFE;
}

/*.bg-c-secondary{
    background-color:$c-grey;
}*/
.c-grey-5 {
  color: #f1f1f1;
}

.bg-c-dark-5 {
  background-color: #f1f1f1;
}

.c-grey-10 {
  color: #e5e5e5;
}

.bg-c-dark-10 {
  background-color: #e5e5e5;
}

.c-grey-15 {
  color: #d8d8d8;
}

.bg-c-dark-15 {
  background-color: #d8d8d8;
}

.c-grey-20 {
  color: #cbcbcb;
}

.bg-c-dark-20 {
  background-color: #cbcbcb;
}

.c-grey-25 {
  color: #bfbfbf;
}

.bg-c-dark-25 {
  background-color: #bfbfbf;
}

.c-grey-30 {
  color: #b2b2b2;
}

.bg-c-dark-30 {
  background-color: #b2b2b2;
}

.c-grey-35 {
  color: #a5a5a5;
}

.bg-c-dark-35 {
  background-color: #a5a5a5;
}

.c-grey-40 {
  color: #989898;
}

.bg-c-dark-40 {
  background-color: #989898;
}

.c-grey-45 {
  color: #8c8c8c;
}

.bg-c-dark-45 {
  background-color: #8c8c8c;
}

.c-grey-50 {
  color: #7f7f7f;
}

.bg-c-dark-50 {
  background-color: #7f7f7f;
}

.c-grey-55 {
  color: #727272;
}

.bg-c-dark-55 {
  background-color: #727272;
}

.c-grey-60 {
  color: #666666;
}

.bg-c-dark-60 {
  background-color: #666666;
}

.c-grey-65 {
  color: #595959;
}

.bg-c-dark-65 {
  background-color: #595959;
}

.c-grey-70 {
  color: #4c4c4c;
}

.bg-c-dark-70 {
  background-color: #4c4c4c;
}

.c-grey-75 {
  color: #404040;
}

.bg-c-dark-75 {
  background-color: #404040;
}

.c-grey-80 {
  color: #333333;
}

.bg-c-dark-80 {
  background-color: #333333;
}

.c-grey-85 {
  color: #262626;
}

.bg-c-dark-85 {
  background-color: #262626;
}

.c-grey-90 {
  color: #191919;
}

.bg-c-dark-90 {
  background-color: #191919;
}

.c-grey-95 {
  color: #0d0d0d;
}

.bg-c-dark-95 {
  background-color: #0d0d0d;
}

.c-white {
  color: #FFF;
}

.bg-c-white {
  background-color: #FFF;
}

.c-black {
  color: #000;
}

.bg-c-black {
  background-color: #000;
}

.bg-c-dark-rgba-0 {
  background-color: transparent;
}

.bg-c-dark-rgba-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-c-dark-rgba-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-c-dark-rgba-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-c-dark-rgba-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-c-dark-rgba-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-c-dark-rgba-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-c-dark-rgba-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-c-dark-rgba-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-c-dark-rgba-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-c-dark-rgba-100 {
  background-color: rgba(0, 0, 0, 1.0);
}

.bg-c-light-rgba-0 {
  background-color: rgba(255, 255, 255, 0);
}

.bg-c-light-rgba-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-c-light-rgba-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-c-light-rgba-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-c-light-rgba-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-c-light-rgba-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-c-light-rgba-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-c-light-rgba-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-c-light-rgba-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-c-light-rgba-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-c-light-rgba-100 {
  background-color: rgba(255, 255, 255, 1.0);
}

/* ************* END COLORS *************** */
.opacity-00 {
  opacity: 0;
}

.opacity-010 {
  opacity: 0.1;
}

.opacity-020 {
  opacity: 0.2;
}

.opacity-030 {
  opacity: 0.3;
}

.opacity-040 {
  opacity: 0.4;
}

.opacity-050 {
  opacity: 0.5;
}

.opacity-060 {
  opacity: 0.6;
}

.opacity-070 {
  opacity: 0.7;
}

.opacity-080 {
  opacity: 0.8;
}

.opacity-090 {
  opacity: 0.9;
}

.opacity-0100 {
  opacity: 1;
}

.cursor-p {
  cursor: pointer;
}

.ellipsis {
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zindex-0 {
  z-index: 0;
}

.zindex-5 {
  z-index: 5;
}

.zindex-10 {
  z-index: 10;
}

.zindex-15 {
  z-index: 15;
}

.zindex-20 {
  z-index: 20;
}

.zindex-25 {
  z-index: 25;
}

.zindex-30 {
  z-index: 30;
}

.zindex-35 {
  z-index: 35;
}

.zindex-40 {
  z-index: 40;
}

.zindex-45 {
  z-index: 45;
}

.zindex-50 {
  z-index: 50;
}

.zindex-55 {
  z-index: 55;
}

.zindex-60 {
  z-index: 60;
}

.zindex-65 {
  z-index: 65;
}

.zindex-70 {
  z-index: 70;
}

.zindex-75 {
  z-index: 75;
}

.zindex-80 {
  z-index: 80;
}

.zindex-85 {
  z-index: 85;
}

.zindex-90 {
  z-index: 90;
}

.zindex-95 {
  z-index: 95;
}

.zindex-100 {
  z-index: 100;
}

.transform-translate-050 {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.transform-translate-x-050 {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.transform-translate-y-050 {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.transition-0 {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.transition-1000 {
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.transition-2000 {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.transition-3000 {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.transition-4000 {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.transition-5000 {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.transition-6000 {
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.transition-7000 {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.transition-8000 {
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

.transition-9000 {
  -webkit-transition: all 0.9s;
  -moz-transition: all 0.9s;
  -ms-transition: all 0.9s;
  -o-transition: all 0.9s;
  transition: all 0.9s;
}

.transition-10000 {
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

.width-auto {
  width: auto;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
