/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap"); */
* {
  /* font-family: 'Montserrat', sans-serif; */
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.blockcode {
  margin: 20px auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background:white;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 12%), 0 2px 10px rgb(0 0 0 / 8%);
}

.blockcode .blockcode {
  margin: 20px 0;
}

.blockcode .header {
  font-size: 16px;
  font-weight:600;
  margin: 10px 0;
  color:rgb(54, 49, 49);
  border-bottom:1px solid #aaa;
}

.blockcode .description {
  font-size: 15px;
  margin: 10px 0;
}

.blockcode .example {
  border: 1px solid #f4f4f4;
  /* margin: 0 20px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  /* padding: 20px; */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blockcode .example > * {
  margin: 15px;
}

.blockcode .example2 {
  border: 1px solid #f4f4f4;
  /* margin: 0 20px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* padding: 20px; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blockcode .example2 > * {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}

.blockcode .example3 {
  border: 1px solid #f4f4f4;
  /* margin: 0 20px; */
  display: block;
  padding: 20px;
}

.blockcode .example4 {
  border: 1px solid #f4f4f4;
  margin: 0 20px;
  display: block;
  padding: 20px;
  height: 300px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

.r-w {
  width:90%;
}

@media (max-width: 768px) {
  .blockcode {
    padding: 10px;
  }
  .r-w {
    width:100%;
  }
}

.cdb-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #f4f4f4;
}

.cdb-accordion .accordion {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #f4f4f4;
  padding: 10px;
}

.cdb-accordion .accordion .accordion-header.no-icon::after {
  content: '' !important;
}

.cdb-accordion .accordion .accordion-header {
  text-align: left;
  font-size: 18px;
  width: 100%;
  padding: 10px 15px;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  position: relative;
  text-decoration: none;
}

.cdb-accordion .accordion .accordion-header::after {
  font-family: FontAwesome;
  font-weight: lighter;
  font-size: 15px;
  content: '\f078';
  text-align: center;
  width: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cdb-accordion .accordion .accordion-header:focus {
  color: #8a8a8a;
}

.cdb-accordion .accordion .accordion-panel {
  overflow: hidden;
  -webkit-transition-property: max-height, visibility;
  transition-property: max-height, visibility;
  -webkit-transition-timing-function: ease;
      transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
  padding: 0 1.5%;
}

.cdb-accordion .accordion.js-enabled .accordion-panel {
  visibility: hidden;
}

.cdb-accordion .accordion.is-active .accordion-panel {
  visibility: visible;
}

.cdb-accordion .accordion.active .accordion-header::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  content: '\f078';
}

.accordion .accordion-panel {
  max-height:0px;
}

.accordion.active .accordion-panel {
  max-height:1000px;
}

.container-alert {
  margin: 'auto';
  width: '80%';
  display: 'flex';
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: 'column';
          flex-direction: 'column';
  -webkit-box-align: 'center';
      -ms-flex-align: 'center';
          align-items: 'center';
  -webkit-box-pack: 'center';
      -ms-flex-pack: 'center';
          justify-content: 'center';
  min-height: '100vh';
  margin-top: 2rem;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
  color: #fff;
}

.alert-primary {
  background: #276ef1;
}

.alert-secondary {
  background: #7356bf;
}

.alert-success {
  background: #05944f;
}

.alert-danger {
  background: #e11900;
}

.alert-warning {
  background: #ffe975;
  color: #735909;
}

.alert-info {
  background: #17a2b8;
}

.alert-dark {
  background: #000000;
}

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

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

.delay-1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-4s {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.delay-5s {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.fast {
  -webkit-animation-duration: 800ms;
          animation-duration: 800ms;
}

.faster {
  -webkit-animation-duration: 500ms;
          animation-duration: 500ms;
}

.slow {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.slower {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: unset !important;
            animation: unset !important;
  }
}

@-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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-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 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 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 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;
}

/*!
   * animate.css -http://daneden.me/animate
   * Version - 3.7.0
   * Licensed under the MIT license - http://opensource.org/licenses/MIT
   *
   * Copyright (c) 2018 Daniel Eden
   */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -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);
  }
  40%,
  43% {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
    -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);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
    -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);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -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);
  }
  40%,
  43% {
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
    -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);
  }
  70% {
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
    -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);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

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

@-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;
}

@-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-name: headShake;
          animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-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;
}

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  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-transform-origin: center;
          transform-origin: center;
  -webkit-animation-name: jello;
          animation-name: jello;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
          animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-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-animation-duration: 0.75s;
          animation-duration: 0.75s;
}

@-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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.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-animation-duration: 0.75s;
          animation-duration: 0.75s;
}

@-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 fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

@-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 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 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 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) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
            transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  from {
    opacity: 0;
    -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;
  }
  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% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  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 {
    opacity: 0;
    -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;
  }
  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% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  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;
          backface-visibility: visible;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    opacity: 0;
    -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;
  }
  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% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  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 {
    opacity: 0;
    -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;
  }
  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% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  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;
          backface-visibility: visible;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
          animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  }
  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
}

.flipOutY {
  -webkit-animation-name: flipOutY;
          animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-backface-visibility: visible;
          backface-visibility: visible;
}

@-webkit-keyframes lightSpeedIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.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 {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
            transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}

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

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

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

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

.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  -webkit-animation-name: rotateOut;
          animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
          animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
          animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
          animation-name: rotateOutUpLeft;
}

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

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

.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% {
    opacity: 1;
    -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;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 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% {
    opacity: 1;
    -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;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
  }
}

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
          animation-name: jackInTheBox;
}

@-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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

@-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 {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

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

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

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

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

.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

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

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

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

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

@keyframes slideInUp {
  from {
    visibility: visible;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  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;
}

.autocomplete-suggestions {
  list-style: none;
  position: absolute;
  right: 0;
  left: 0;
  z-index: 100;
  display: none;
  padding-left: 0;
  overflow-y: auto;
  list-style-type: none;
  background: #fff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.autocomplete-suggestion {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  padding: 12px 15px;
  font-size: 0.875rem;
  cursor: pointer;
}

.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}

.autocomplete-suggestion.selected {
  background: #f0f0f0;
}

.badge {
  border-radius: 0;
  font-weight: 200;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  padding: 7.5px 8.75px;
  font-size: 0.65rem;
}

.badge-flat {
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

.badge-lg {
  padding: 10px 15px;
  font-size: 1rem;
}

.badge-sm {
  padding: 4.5px 6px;
  font-size: 0.5rem;
}

.breadcrumb {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
  border-radius: 0;
}

.breadcrumb-flat {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.breadcrumb-item {
  color: #000000;
}

.container-buttons {
  width: 95%;
  margin: auto;
}

.btn {
  border-radius: 0;
  padding: 0 1rem;
  margin-right: 1rem;
  font-weight: 400;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 10px 20px;
}

.btn-primary {
  border-color: #276ef1;
  background: #276ef1;
}

.btn-primary:active {
  outline-color: #276ef1;
}

.btn-secondary {
  border-color: #7356bf;
  background: #7356bf;
}

.btn-success {
  background: #05944f;
  border-color: #05944f;
}

.btn-danger {
  background: #e11900;
  border-color: #e11900;
}

.btn-warning {
  background: #ffe975;
  color: #735909;
  border-color: #ffe975;
}

.btn-info {
  color: #fff;
  background: #17a2b8;
  border-color: #17a2b8;
}

.btn-light {
  background: #eeeeee;
  border-color: #eeeeee;
}

.btn-dark {
  background: #000000;
  border-color: #000000;
  color: #fff;
}

.btn-outline-primary {
  border-color: #276ef1;
}

.btn-outline-primary:active {
  background: #276ef1;
}

.btn-outline-secondary {
  border-color: #7356bf;
}

.btn-outline-secondary:active {
  background: #7356bf;
}

.btn-outline-dark {
  border-color: #000000;
}

.btn-outline-dark:active {
  background: #000000;
}

.btn-outline-success {
  border-color: #05944f;
}

.btn-outline-success:active {
  background: #05944f;
}

.btn-outline-light {
  border-color: #eeeeee;
  color: #eeeeee;
  background: transparent;
}

.btn-outline-light:active {
  background: white;
  color: #000;
}

.btn-outline-warning {
  border-color: #ffe975;
}

.btn-outline-warning:active {
  background: #ffe975;
  color: #735909;
}

.btn-outline-info {
  border-color: #17a2b8;
}

.btn-outline-info:active {
  background: #17a2b8;
}

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

.btn i {
  margin: 0 0.5rem;
}

.btn-flat {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-flat:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-lg {
  padding: 20px 40px;
}

.btn-sm {
  padding: 5px 10px;
}

.btn-group .btn {
  margin-right: 0px;
}

.btn-group .btn-rounded {
  border-radius: 30px !important;
}

.btn-group-vertical .btn {
  margin-bottom: 0px;
}

.btn-group-lg .btn {
  padding: 20px 40px;
}

.btn-toolbar {
  border-radius: 0;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 2px solid #e2e2e2;
}

.card-border {
  border-top: 8px solid #e2e2e2 !important;
  border-bottom: 8px solid #e2e2e2 !important;
  border-left: none;
  border-right: none;
}

.card-title {
  margin: 10px 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.card-body {
  padding: 15px;
}

.custom-check-inline {
  display: inline;
}

.custom-check-input {
  visibility: hidden;
}

.custom-check-input + label:before {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  margin-right: 10px;
  content: '\00a0';
  display: inline-block;
}

.custom-check-input:checked + label:before {
  background: #ffffff;
  border: 1px solid #000000;
  color: #000000;
  content: '\2713';
  text-align: center;
}

.custom-check .bg-primary + label:before {
  background: #276ef1 !important;
}

.custom-check .bg-info + label:before {
  background: #17a2b8 !important;
}

.custom-check .bg-danger + label:before {
  background: #e11900 !important;
}

.custom-check .bg-success + label:before {
  background: #05944f !important;
}

.custom-check .bg-warning + label:before {
  background: #ffe975 !important;
}

.custom-check .bg-dark + label:before {
  background: #000000 !important;
}

.custom-check .bg-light + label:before {
  background: #eeeeee !important;
}

.custom-check .bg-secondary + label:before {
  background: #7356bf !important;
}

.custom-check .text-primary:checked + label:before {
  color: #276ef1;
}

.custom-check .text-secondary:checked + label:before {
  color: #7356bf;
}

.custom-check .text-danger:checked + label:before {
  color: #e11900;
}

.custom-check .text-success:checked + label:before {
  color: #05944f;
}

.custom-check .text-warning:checked + label:before {
  color: #ffe975;
}

.custom-check .text-dark:checked + label:before {
  color: #000000;
}

.custom-check .text-light:checked + label:before {
  color: #eeeeee;
}

.custom-check .text-info:checked + label:before {
  color: #17a2b8;
}

.custom-check .border-primary + label:before {
  border: 1px solid #276ef1;
}

.custom-check .border-info + label:before {
  border: 1px solid #17a2b8;
}

.custom-check .border-danger + label:before {
  border: 1px solid #e11900;
}

.custom-check .border-success + label:before {
  border: 1px solid #05944f;
}

.custom-check .border-warning + label:before {
  border: 1px solid #ffe975;
}

.custom-check .border-dark + label:before {
  border: 1px solid #000000;
}

.custom-check .border-light + label:before {
  border: 1px solid #eeeeee;
}

.custom-check .border-secondary + label:before {
  border: 1px solid #7356bf;
}

.pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pane-img {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.pane-xs {
  width: 2rem;
  height: 2rem;
}

.pane-sm {
  width: 2.5rem;
  height: 2.5rem;
}

.pane-md {
  width: 3rem;
  height: 3rem;
}

.pane-lg {
  width: 4.5rem;
  height: 4.5rem;
}

.cprogress-bar {
  display: inline-block;
  width: 275px;
  height: 275px;
  margin: 7px;
  padding: 0;
}

.cprogress-bar .progress-active {
  position: relative;
  top: -279px;
}

.cprogress-bar p {
  position: relative;
  margin: 0;
  padding: 0;
  width: 275px;
  top: -460px;
  font-size: 54px;
  font-weight: 900;
  text-align: center;
}

#progressControllerContainer {
  position: absolute;
  top: 320px;
  padding: 10px 80px;
}

.card {
  border-radius: 0;
  border-width: 2px;
}

.dataTable-wrapper.no-header .dataTable-container {
  border-top: 1px solid #d9d9d9;
}

.dataTable-wrapper.no-footer .dataTable-container {
  border-bottom: 1px solid #d9d9d9;
}

.dataTable-top,
.dataTable-bottom {
  padding: 8px 10px;
}

.dataTable-top > div:first-child,
.dataTable-bottom > div:first-child {
  float: left;
}

.dataTable-top > div:last-child,
.dataTable-bottom > div:last-child {
  float: right;
}

.dataTable-selector {
  padding: 6px;
}

.dataTable-input {
  padding: 6px 12px;
}

.dataTable-info {
  margin: 7px 0;
}

.dataTable-pagination ul {
  margin: 0;
  padding-left: 0;
}

.dataTable-pagination li {
  list-style: none;
  float: left;
}

.dataTable-pagination a {
  border: 1px solid transparent;
  float: left;
  margin-left: 2px;
  padding: 6px 12px;
  position: relative;
  text-decoration: none;
  color: #fff;
  background: #333;
}

.dataTable-pagination a:hover {
  background-color: #d9d9d9;
}

.dataTable-pagination .active a,
.dataTable-pagination .active a:focus,
.dataTable-pagination .active a:hover {
  background-color: #d9d9d9;
  cursor: default;
}

.dataTable-pagination .ellipsis a,
.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
  cursor: not-allowed;
}

.dataTable-pagination .disabled a,
.dataTable-pagination .disabled a:focus,
.dataTable-pagination .disabled a:hover {
  cursor: not-allowed;
  opacity: 0.4;
}

.dataTable-pagination .pager a {
  font-weight: bold;
}

.dataTable-table {
  max-width: 100%;
  width: 100%;
  border-spacing: 0;
}

.dataTable-table > tbody > tr > td,
.dataTable-table > tbody > tr > th,
.dataTable-table > tfoot > tr > td,
.dataTable-table > tfoot > tr > th,
.dataTable-table > thead > tr > td,
.dataTable-table > thead > tr > th {
  vertical-align: top;
  padding: 8px 10px;
}

.dataTable-table > thead > tr > th {
  vertical-align: bottom;
  text-align: left;
  border-bottom: 1px solid #d9d9d9;
}

.dataTable-table > tfoot > tr > th {
  vertical-align: bottom;
  text-align: left;
  border-top: 1px solid #d9d9d9;
}

.dataTable-table th {
  vertical-align: bottom;
  text-align: left;
}

.dataTable-table th a {
  text-decoration: none;
  color: inherit;
}

.dataTable-sorter {
  display: inline-block;
  height: 100%;
  position: relative;
  width: 100%;
}

.dataTable-sorter::before,
.dataTable-sorter::after {
  content: '';
  height: 0;
  width: 0;
  position: absolute;
  right: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  opacity: 0.2;
}

.dataTable-sorter::before {
  border-top: 4px solid #000;
  bottom: 10px;
}

.dataTable-sorter::after {
  border-bottom: 4px solid #000;
  border-top: 4px solid transparent;
  top: 0px;
}

.asc .dataTable-sorter::after,
.desc .dataTable-sorter::before {
  opacity: 0.6;
}

.dataTables-empty {
  text-align: center;
}

.dataTable-top::after,
.dataTable-bottom::after {
  clear: both;
  content: ' ';
  display: table;
}

.datepicker {
  display: none;
}

.datepicker-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.datepicker-container > button,
.datepicker-container > span,
.datepicker-container > h3 {
  border: 0;
  background: transparent;
  padding: 4px 6px;
}

.datepicker.active {
  display: block;
}

.datepicker-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 4px;
}

.date-picker-input {
  border: 2px solid #000;
  border-radius: 0px;
  padding: 3px;
  background: #fcfcfc;
}

.date-picker-input:focus, .date-picker-input:hover {
  border-radius: 0px !important;
}

.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: inline-block;
  border-radius: 0px;
  background-color: white;
}

.datepicker-dropdown .datepicker-picker {
  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
          box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.datepicker-picker span {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0;
  border-radius: 4px;
  cursor: default;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker-footer {
  -webkit-box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
          box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
}

.datepicker-controls {
  background: #000;
  color: #fff;
}

.datepicker-controls,
.datepicker-view,
.datepicker-view .days-of-week,
.datepicker-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.days-of-week {
  background: #000;
  color: #fff;
  padding: 4px 6px;
}

.datepicker-grid {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px;
}

.datepicker-view .dow,
.datepicker-view .days .datepicker-cell {
  -ms-flex-preferred-size: 14.28571%;
      flex-basis: 14.28571%;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.datepicker-view .week,
.datepicker-cell {
  height: 2.25rem;
  line-height: 2.25rem;
}

.datepicker-title {
  -webkit-box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
          box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-header .datepicker-controls {
  padding: 5px 7.5px;
}

.datepicker-controls .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #000;
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: #fff;
  font-size: 1rem;
}

.datepicker-controls .button:focus,
.datepicker-controls .button:active {
  outline: none;
}

.datepicker-controls .button:hover {
  color: #fff;
}

.datepicker-controls .button:focus {
  color: #363636;
}

.datepicker-controls .button:focus:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.datepicker-controls .button:active {
  border-color: #4a4a4a;
  color: #363636;
}

.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}

.datepicker-header .datepicker-controls .button {
  font-weight: bold;
  border-radius: 0px !important;
}

.datepicker-header .datepicker-controls .button:hover {
  background-color: #000;
  border: 1px solid #f3f3f3;
}

.datepicker-header .datepicker-controls .button:focus:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.datepicker-header .datepicker-controls .button:active {
  border: 1px solid #f3f3f3;
}

.datepicker-header .datepicker-controls .button[disabled] {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.datepicker-footer .datepicker-controls .button {
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  width: 100%;
  font-size: 0.75rem;
}

.datepicker-controls .view-switch {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.datepicker-controls .prev-btn,
.datepicker-controls .next-btn {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  width: 2.25rem;
}

.datepicker-controls .prev-btn.disabled,
.datepicker-controls .next-btn.disabled {
  visibility: hidden;
}

.datepicker-view .dow {
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px;
}

.datepicker-view .week {
  width: 2.25rem;
  color: #b5b5b5;
  font-size: 0.75rem;
}

@media (max-width: 22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
  .datepicker-cell.day {
    height: 44px !important;
  }
}

.datepicker-grid {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 25rem;
}

@media (max-width: 22.5rem) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125rem;
  }
}

.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
  border-radius: 0px;
}

.datepicker-cell.focused:not(.selected) {
  background-color: #e8e8e8;
  border: 1px solid #b4b4b4;
  border-radius: 0px;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  border-radius: 0px;
}

.datepicker-cell.disabled {
  color: #dbdbdb;
}

.datepicker-cell.prev:not(.disabled),
.datepicker-cell.next:not(.disabled) {
  color: #7a7a7a;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: whitesmoke;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #eeeeee;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}

.datepicker-cell.today:not(.selected) {
  background-color: #00d1b2;
}

.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}

.datepicker-cell.today.focused:not(.selected) {
  background-color: #00c4a7;
}

.datepicker-cell.range-start:not(.selected),
.datepicker-cell.range-end:not(.selected) {
  background-color: #b5b5b5;
  color: #fff;
}

.datepicker-cell.range-start.focused:not(.selected),
.datepicker-cell.range-end.focused:not(.selected) {
  background-color: #afafaf;
}

.datepicker-cell.range-start {
  border-radius: 4px 0 0 4px;
}

.datepicker-cell.range-end {
  border-radius: 0 4px 4px 0;
}

.datepicker-cell.range {
  border-radius: 0;
  background-color: #dbdbdb;
}

.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d5d5d5;
}

.datepicker-cell.range.disabled {
  color: #c2c2c2;
}

.datepicker-cell.range.focused {
  background-color: #cfcfcf;
}

.datepicker-view.datepicker-grid .datepicker-cell.month {
  text-transform: uppercase;
}

.datepicker-cell.day {
  height: 48.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50% !important;
}

.datepicker-input.in-edit {
  border-color: #2366d1;
}

.datepicker-input.in-edit:focus,
.datepicker-input.in-edit:active {
  -webkit-box-shadow: 0 0 0.25em 0.25em rgba(35, 102, 209, 0.2);
          box-shadow: 0 0 0.25em 0.25em rgba(35, 102, 209, 0.2);
}

.dropdown {
  border-radius: 0;
  padding: 10px;
}

.dropdown .dropdown-menu {
  margin: 20px 0;
}

.dropup .dropdown-menu {
  margin: 20px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dropleft .dropdown-menu {
  margin: 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.dropright .dropdown-menu {
  margin: 0 20px;
}

.dropdown-menu {
  border-radius: 0;
  min-height: 20px;
  min-width: 20px;
  background-color: #fff;
  color: #232323;
  padding: 0.3rem;
}

.dropdown .dropdown-toggle-false:after {
  display: none !important;
}

.icon {
  font-size: 24px;
}

.icon-border {
  padding: 2px 3px;
  border: 0.5px solid #eeeeee;
}

.icon-spin {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.icon-pull {
  float: left;
}

.icon-pulse {
  -webkit-animation: spin 1s steps(8) infinite;
          animation: spin 1s steps(8) infinite;
}

.icon-rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.icon-sm {
  font-size: 15px;
}

.icon-lg {
  font-size: 35px;
}

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

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

.cdb-iframe iframe,
.cdb-iframe video {
  width: 100%;
  height: 100%;
}

.cdb-form {
  position: relative;
  margin-bottom: 1.5rem;
}

.cdb-form input[type=date], .cdb-form input[type=datetime-local],
.cdb-form input[type=email], .cdb-form input[type=number], .cdb-form input[type=password],
.cdb-form input[type=search-md], .cdb-form input[type=search], .cdb-form input[type=tel],
.cdb-form input[type=text], .cdb-form input[type=time], .cdb-form input[type=url], .cdb-form textarea {
  background-color: transparent;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.cdb-form label {
  position: absolute;
  left: 10px;
  top: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: normal;
}

.cdb-form .form-control {
  padding: 0.5rem 0.6rem;
}

.cdb-form .form-control:focus {
  border-color: #276ef1;
}

.cdb-form .form-control:focus ~ label {
  left: 5px;
  top: -10px;
  background: #ffffff;
  padding: 0 5px;
  font-size: 12px;
  color: #276ef1;
}

.cdb-form .prefix {
  position: absolute;
  width: 2rem;
  font-size: 2rem;
  -webkit-transition: color .2s;
  transition: color .2s;
  top: 5px;
}

.cdb-form .prefix ~ input {
  margin-left: 2rem;
  width: calc(100% - 2rem);
}

.cdb-form .prefix ~ label {
  margin-left: 2rem;
}

.form-sm input[type=date], .form-sm input[type=datetime-local],
.form-sm input[type=email], .form-sm input[type=number], .form-sm input[type=password],
.form-sm input[type=search-md], .form-sm input[type=search], .form-sm input[type=tel],
.form-sm input[type=text], .form-sm input[type=time], .form-sm input[type=url], .form-sm textarea {
  height: 1.5rem;
}

.form-sm label {
  top: 5px;
  font-size: 13px;
}

.container-list-group {
  margin: 2rem auto;
  width: 80%;
}

.list-group-item {
  padding: 0.75rem 1.25rem;
}

.list-group-item:first-child, .list-group-item:last-child {
  border-radius: 0;
}

.list-group-item-secondary {
  background: #7356bf;
  color: #fff;
}

.list-group-item-primary {
  background: #276ef1;
  color: #fff;
}

.list-group-item-dark {
  background: #000000;
  color: #fff;
}

.list-group-item-info {
  background: #17a2b8;
  color: #fff;
}

.list-group-item-light {
  background: #eeeeee;
}

.list-group-item-success {
  background: #05944f;
  color: #fff;
}

.list-group-item-warning {
  background: #ffe975;
  color: #735909;
}

.list-group-item-danger {
  background: #e11900;
  color: #fff;
}

.list-group-item-dark {
  background: #000000;
  color: #fff;
}

.view {
  position: relative;
  overflow: hidden;
}

.view img {
  width: 100%;
}

.view .mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-attachment: fixed;
}

.view .pattern-1 {
  background: url(../img/overlays/01.png);
}

.view .pattern-2 {
  background: url(../img/overlays/02.png);
}

.view .pattern-3 {
  background: url(../img/overlays/03.png);
}

.view .pattern-4 {
  background: url(../img/overlays/04.png);
}

.view .pattern-5 {
  background: url(../img/overlays/05.png);
}

.view .pattern-6 {
  background: url(../img/overlays/06.png);
}

.view .pattern-7 {
  background: url(../img/overlays/07.png);
}

.view .pattern-8 {
  background: url(../img/overlays/08.png);
}

.view .pattern-9 {
  background: url(../img/overlays/08.png);
}

.view .rgba-blue-strong {
  background-color: rgba(33, 150, 243, 0.7);
}
.view .rgba-blue-light {
  background-color: rgba(33, 150, 243, 0.3);
}
.view .rgba-red-light {
    background-color:rgba(244, 67, 54, 0.3);
}
.view .rgba-pink-light {
    background-color:rgba(233, 30, 99, 0.3);
}
.view .rgba-yellow-light {
    background-color:rgba(255, 235, 59, 0.3);
}
.view .rgba-orange-light {
    background-color:rgba(255, 152, 0, 0.3);
}
.view .rgba-purple-light {
    background-color:rgba(156, 39, 176, 0.3);
}
.view .rgba-brown-light {
    background-color:rgba(33, 150, 243, 0.3);
}
.view .rgba-teal-light {
    background-color:rgba(0, 150, 136, 0.3);
}
.view .rgba-cyan-light {
    background-color:rgba(0, 188, 212, 0.3);
}
.view .rgba-green-light {
    background-color:rgba(76, 175, 80, 0.3);
}
.view .rgba-indigo-light {
    background-color:rgba(63, 81, 181, 0.3);
}
.view .rgba-dark-light {
    background-color:rgba(0, 0, 0, 0.3);
}
.view .rgba-red-strong {
    background-color:rgba(244, 67, 54, 0.7);
}
.view .rgba-pink-strong {
    background-color:rgba(233, 30, 99, 0.7);
}
.view .rgba-yellow-strong {
    background-color:rgba(255, 235, 59, 0.7);
}
.view .rgba-orange-strong {
    background-color:rgba(255, 152, 0, 0.7);
}
.view .rgba-purple-strong {
    background-color:rgba(156, 39, 176, 0.7);
}
.view .rgba-brown-strong {
    background-color:rgba(153, 102, 51, 0.7);
}
.view .rgba-teal-strong {
    background-color:rgba(0, 150, 136, 0.7);
}
.view .rgba-cyan-strong {
    background-color:rgba(0, 188, 212, 0.7);
}
.view .rgba-green-strong {
    background-color:rgba(76, 175, 80, 0.7);
}
.view .rgba-indigo-strong {
    background-color:rgba(63, 81, 181, 0.7);
}
.view .rgba-dark-strong {
    background-color:rgba(0, 0, 0, 0.7);
}


/* Modal */
.modal-header {
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
}

.modal-header .close {
  outline: none;
  background-color: transparent;
  border: 0;
}

.modal-content {
  border-radius: 0;
}

.modal-top-right {
  position: absolute;
  top: 10px;
  bottom: auto;
  right: 10px;
  left: auto;
}

.modal-top-left {
  position: absolute;
  top: 10px;
  bottom: auto;
  right: auto;
  left: 10px;
}

.modal-bottom-left {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: auto;
  left: 10px;
}

.modal-bottom-right {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: 10px;
  left: auto;
}

.modal-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-collapse {
  width: auto;
}

.navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .navbar-expand-xl .navbar-collapse {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .navbar-expand-lg .navbar-collapse {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar-expand-md .navbar-collapse {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .navbar-expand-sm .navbar-collapse {
    width: 100%;
  }
}

.notification {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  padding: 10px;
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 2s linear;
  transition: opacity 2s linear;
}

.notification-hidden {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s 2s, opacity 2s linear;
  transition: visibility 0s 2s, opacity 2s linear;
}

.notification-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  position: relative;
}

.notification-header .icon-box {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: #000000;
}

.notification-header .icon-box i {
  font-size: 1.33333em;
}

.notification-header .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
}

.notification-header .toggle span {
  width: 50px;
  height: 4px;
  background: #e5e5e5;
  border-radius: 2px;
  margin-bottom: 3px;
  cursor: pointer;
}

.notification-header .btn {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}

.notification .collapse {
  visibility: hidden !important;
  opacity: 0 !important;
  -webkit-transition: visibility 0s 0.5s, opacity 0.5s linear !important;
  transition: visibility 0s 0.5s, opacity 0.5s linear !important;
}

.notification .toggle span:hover {
  background-color: #555;
}

.notification-message {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.multiselect {
  margin: auto;
  max-width: 600px;
  width: calc(100% - 40px);
}

.multiselect .multiselect-select {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border-radius: 0px;
  border: 1px solid #978c8c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  min-height: 44px;
  padding: 5px 10px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}

.multiselect .multiselect-options {
  border-radius: 0px;
  max-height: 150px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px;
          box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  display: none;
  left: 0;
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 5;
}

.multiselect .multiselect-options::-webkit-scrollbar {
  width: 3px;
}

.multiselect .multiselect-options::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #cccccc;
}

.multiselect .multiselect-select--opened .multiselect-options {
  display: block;
}

.multiselect .multiselect-option {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.9rem;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}

.multiselect .multiselect-option--disabled {
  color: #e4e4e4;
}

.multiselect .multiselect-option--selected {
  color: #e4e4e4;
  cursor: initial;
  pointer-events: none;
}

.multiselect .multiselect-option--hidden {
  display: none;
}

.multiselect .multiselect-selected-label {
  -webkit-box-align: 'center';
      -ms-flex-align: 'center';
          align-items: 'center';
  background: #333;
  border-radius: 0px;
  color: #fff;
  cursor: initial;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: 'center';
      -ms-flex-pack: 'center';
          justify-content: 'center';
  margin: 5px 10px 5px 0;
  padding: 5px 7px;
}

.multiselect .multiselect-selected-label:last-of-type {
  margin-right: 0;
}

.multiselect .multiselect-selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
  padding: 3px 0;
}

.multiselect .multiselect-selected-label img {
  cursor: pointer;
  display: inline-block;
  height: 18px;
  margin-left: 7px;
  width: 14px;
}

.multiselect .multiselect-selected-label i:hover {
  color: #e4e4e4;
  text-decoration: none;
}

.multiselect .multiselect-autocomplete {
  background: #f9f9f8;
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 100%;
}

.multiselect .multiselect-placeholder--hidden {
  display: none;
}

.pagination {
  margin: auto;
  padding: 10px;
  border: 0.5px solid #ccc;
  border-radius: 0;
}

.pagination .page-item .page-link {
  background: #000000;
  color: #ffffff;
  margin: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .page-item .page-link-round {
  border-radius: 50%;
}

.pagination-lg {
  padding: 15px;
}

.pagination-lg .page-item .page-link {
  min-width: 45px;
  min-height: 45px;
}

.pagination-sm {
  padding: 5px;
}

.pagination-sm .page-item .page-link {
  min-width: 25px;
  min-height: 25px;
  margin: 0.3rem;
  font-size: 0.65rem;
}

.panel {
  width: 300px;
  border: 1px #ccc solid;
  background-color: #ffffff;
  background-clip: border-box;
}

.panel-title {
  margin: 5px 0px;
  font-size: 1.2em;
  font-weight: 600;
}

.panel-body {
  padding: 20px;
}

.panel-text {
  margin: 0px 0px 10px 0px;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}

.panel-text-sm {
  font-size: 0.75rem;
}

.panel-img img {
  max-width: 100%;
  height: auto;
}

.panel .text-muted {
  opacity: 0.6;
}

.panel-menu {
  font-size: 30px;
}

.panel .pane {
  padding: 10px;
}

.panel .pane-img {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.panel .pane-item {
  font-size: 0.8em;
}

.popover {
  border-width: 2px;
  border-radius: 0;
}

.popover-arrow::after {
  border-width: 2px;
}

.example .progress {
  margin-bottom: 1rem;
}

.progress-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.progress {
  width: 100%;
  border-radius: 20px;
  height: 10px;
}

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

.progress-primary {
  background: #3e98c728;
}

.progress-primary .progress-bar {
  background: #276ef1;
}

.progress-secondary {
  background: #7356bf28;
}

.progress-secondary .progress-bar {
  background: #7356bf;
}

.progress-success {
  background: #05944f28;
}

.progress-success .progress-bar {
  background: #05944f;
}

.progress-danger {
  background: #e1190028;
}

.progress-danger .progress-bar {
  background: #e11900;
}

.progress-warning {
  background: #66512c28;
}

.progress-warning .progress-bar {
  background: #ffe975;
}

.progress-info {
  background: #17a2b828;
}

.progress-info .progress-bar {
  background: #17a2b8;
}

.progress-dark {
  background: #00000028;
}

.progress-dark .progress-bar {
  background: #000000;
}

.progress-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.progress-text-primary {
  color: #276ef1;
}

.progress-text-secondary {
  color: #7356bf;
}

.progress-text-success {
  color: #05944f;
}

.progress-text-danger {
  color: #e11900;
}

.progress-text-warning {
  color: #ffe975;
}

.progress-text-info {
  color: #17a2b8;
}

.progress-text-dark {
  color: #000000;
}

.custom-radio {
  padding: 5px 0px;
  margin-bottom: 10px;
}

.custom-radio-inline {
  display: inline;
}

.custom-radio-input {
  visibility: hidden;
}

.custom-radio-input + label {
  cursor: pointer;
}

.custom-radio-input + label:before {
  display: inline-block;
  height: 0.9rem;
  width: 0.9rem;
  border-radius: 50%;
  margin-right: 1rem;
  -webkit-transition: all 0.15s ease-in-out 0s;
  transition: all 0.15s ease-in-out 0s;
  border: 0.2rem solid currentColor;
  background-color: transparent;
  color: #000000;
  content: "\00a0";
  display: inline-block;
  vertical-align: middle;
}

.custom-radio-input:hover + label:before {
  -webkit-box-shadow: rgba(0, 0, 0, 0.46) 0px 0px 0px 0.4rem;
          box-shadow: rgba(0, 0, 0, 0.46) 0px 0px 0px 0.4rem;
}

.custom-radio-input:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-primary + label:before {
  color: #276ef1;
}

.custom-radio .text-primary:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-primary:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-secondary + label:before {
  color: #7356bf;
}

.custom-radio .text-secondary:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-secondary:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-danger + label:before {
  color: #e11900;
}

.custom-radio .text-danger:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-danger:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-success + label:before {
  color: #05944f;
}

.custom-radio .text-success:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-success:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-warning + label:before {
  color: #ffe975;
}

.custom-radio .text-warning:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-warning:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-dark + label:before {
  color: #000000;
}

.custom-radio .text-dark:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-dark:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-light + label:before {
  color: #eeeeee;
}

.custom-radio .text-light:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-light:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.custom-radio .text-info + label:before {
  color: #17a2b8;
}

.custom-radio .text-info:hover + label:before {
  -webkit-box-shadow: currentColor 0px 0px 0px 0.4rem;
          box-shadow: currentColor 0px 0px 0px 0.4rem;
}

.custom-radio .text-info:checked + label:before {
  background-color: currentColor;
  -webkit-box-shadow: currentColor 0px 0px 0px 0.2rem;
          box-shadow: currentColor 0px 0px 0px 0.2rem;
}

.star-rating {
  margin-top: 2.5rem;
}

.star-rating .star {
  font-size: 2rem;
  color: gray;
  cursor: pointer;
  position: relative;
}

.star-rating .star .star-notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10px;
  background: #333;
  padding: 7.5px;
  border-radius: 0;
  color: #fff !important;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.select {
  padding: 10px 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  outline: none;
}

.select-primary {
  color: #276ef1;
  border-color: #276ef1;
  background: #e6e6ff;
}

.select-secondary {
  color: #7356bf;
  border-color: #7356bf;
  background-color: #f0edf828;
}

.select-success {
  color: #05944f;
  border-color: #05944f;
  background-color: #7a997a28;
}

.select-danger {
  color: #e11900;
  border-color: #e11900;
  background-color: #fce9e9;
}

.select-warning {
  color: #ffe975;
  border-color: #ffe975;
  background-color: #fffbe6;
}

.select-dark {
  color: #ffffff;
  border-color: #000000;
  background-color: #33333328;
}

.select option {
  color: #000;
  background: #fff;
  max-height: 0px;
  overflow-y: scroll;
  -webkit-transition: inherit;
  transition: inherit;
}

.select option::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

.select option::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ccc;
}

.select-sm {
  padding: 5px 5px;
}

.select-lg {
  padding: 20px 10px;
}

.select2 {
  width: 300px;
  display:block !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.select2 i {
  margin-right:10px;
}

.select2.disabled {
  pointer-events:none;
  opacity:0.6;
}

.select2 #div {
  width:100%;
  display:flex;
  padding:10px;
  cursor:pointer;
  transition: inherit;
  border-width:1px;
  border-style:solid;
  box-sizing:border-box;
  align-items:center;
  justify-content:space-between;
}
.select2 #div .fa-angle-down {
    margin:0;
    opacity: 0.5;
    transition: inherit;
}

.select2 #div.active .fa-angle-down {
    opacity:1;
    transform: rotate(-180deg);
}

.select2 #options {
  color:#000;
  /*background:#fff;*/
  max-height:0px;
  overflow-y:scroll;
  transition: inherit;
}
.select2 #options.display {
    max-height:150px;
  }

  .select2 #options::-webkit-scrollbar {
    width:3px;
    background-color:transparent;
  }

  .select2 #options::-webkit-scrollbar-thumb {
    border-radius:5px;
    background-color: #ccc;
  }

  .select2 #options div {
    display:flex;
    background:#fff;
    align-items:center;
    padding:10px;
    cursor:pointer;
    transition: all 0.1s ease-in-out;
  }
  .select2 #options div:hover{
      background-color:#ddd;
  }
  .select2.hoverColor #options div:hover{
      background-color:transparent;
  }
  .select2 #options div span {
    font-size:0.9em;
  }

.select2-primary {
  color: #276ef1;
  border-color: #276ef1;
  background: #e6e6ff;
}

.select2-secondary {
  color: #7356bf;
  border-color: #7356bf;
  background-color: #f0edf8;
}

.select2-success {
  color: #05944f;
  border-color: #05944f;
  background-color: #e7fae7;
}

.select2-danger {
  color: #e11900;
  border-color: #e11900;
  background-color: #fce9e9;
}

.select2-warning {
  color: #ffe975;
  border-color: #ffe975;
  background-color: #fffbe6;
}

.select2-dark {
  color: #ffffff;
  border-color: #000000;
  background-color: #333333;
}

.select2 option {
  color: #000;
  background: #fff;
  max-height: 0px;
  overflow-y: scroll;
  -webkit-transition: inherit;
  transition: inherit;
}

.select2 option::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

.select2 option::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ccc;
}

.sidebar {
  background-color: #333;
  color: #fff;
  height: 100%;
  width: 270px;
  min-width: 270px;
  text-align: left;
  -webkit-transition: width, left, right, 0.5s;
  transition: width, left, right, 0.5s;
  position: relative;
  z-index: 1009;
}

.sidebar a {
  text-decoration: none;
  color: #fff;
}

.sidebar-white {
  background-color: #fff !important;
  color: #333 !important;
}

.sidebar-white .sidebar-header {
  color: #333 !important;
}

.sidebar-white .sidebar-header * {
  color: #333 !important;
}

.sidebar-white .sidebar-item {
  color: #333 !important;
}

.sidebar-white .sidebar-item.active {
  color: #fff !important;
  background: #333 !important;
}

.sidebar-white .sidebar-dropdown:hover .collapse {
  background: #fff;
}

.sidebar-white .sidebar-dropdown:hover .collapse .sub-menu-item {
  color: #333 !important;
}

.sidebar-white .sidebar-dropdown .sidebar-sub-menu.show {
  background: #ffffff !important;
}

.sidebar-white .sidebar-dropdown .sidebar-sub-menu.show .sub-menu-item {
  color: #000000 !important;
}

.sidebar-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidebar-container::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.sidebar-container::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ccc;
}

.sidebar-container .sidebar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 13px 15px;
  text-align: center;
  border-bottom: 0.2px solid #b4b4b4;
}

.sidebar-container .sidebar-toggler {
  margin: 0px 10px;
  cursor: pointer;
  font-size: 22px;
}

.sidebar-container .sidebar-brand {
  margin: 0px 10px;
  cursor: pointer;
  font-weight: bold;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 1;
  visibility: visible;
}

.sidebar-container .sidebar-brand-none {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.sidebar-container .sidebar-nav .sidenav {
  margin: 20px 0px;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu {
  width: 100%;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sub-menu-item .sidebar-icon {
  font-size: 10px;
  margin-right: 15px;
}
.sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sub-menu-item {
  display: block;
  padding: 10px 55px;
  cursor: pointer;
  font-size: 13px;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .active {
  background: #ffffff;
  color: #000000;
}

.sidebar-white .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .active {
  background: #333;
  color: #fff !important;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .active .arrow-wrapper {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sidebar-container .sidebar-nav .sidenav .sidebar-item {
  padding: 15px 30px;
  width: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-item.active {
  color: #333;
  background: #fff;
}

.sidebar-container .sidebar-nav .sidenav .sub-menu-item.active {
  color: #333;
  background: #fff;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-item .sidebar-icon {
  margin: 0px 15px 0px 10px;
  font-size: 12px;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-item span {
  font-size: 13px;
}

.sidebar-container .sidebar-nav .sidenav .sidebar-item .arrow-wrapper {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sidebar-container .sidebar-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  width: 100%;
  bottom: 0;
  margin-top: auto;
}

.sidebar--mobile.sidebar-white .sidebar-dropdown {
  position: relative;
}

.sidebar--mobile.sidebar-white .sidebar-dropdown:hover .collapse {
  display: block;
  background: #fff !important;
}

.sidebar--mobile.sidebar-white .sidebar-dropdown:hover .collapse .sub-menu-item {
  color: #333;
}

.sidebar--mobile {
  min-width: 80px;
  width: 80px;
}

.sidebar--mobile .sidebar-container .sidebar-header {
  padding: 15px 0px;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav {
  margin: 20px 0px;
  z-index: 100;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown {
  position: relative;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu {
  width:initial;
  max-width: 200px;
  margin: 0px;
  display: none;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sub-menu-item {
  display:none;
  font-size:13px;
  padding:5px 0px 5px 20px;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sub-menu-item:first-child {
  padding-top:15px;
  box-shadow: 0px -4px 10px 0px rgba(50, 50, 50, 0.25);
}
.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sub-menu-item:last-child {
  padding-bottom:15px;
  box-shadow:  1px 11px 10px 0px rgba(50, 50, 50, 0.25);
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu[data-show] {
  display:block;
  background: transparent !important;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu[data-show] .sub-menu-item {
  display:block;
  margin-left:10px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: -1px;
  padding-right: 10px;
  width:100%;
  background: #333;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-icon {
  display:none;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-dropdown:hover .collapse {
  display: block;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-dropdown .collapse {
  display: none;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-dropdown .collapse .show {
  display: block;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-dropdown .sidebar-item span,
.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-dropdown .sidebar-item .sidebar-icon {
  display: block;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sidebar-dropdown .sidebar-sub-menu {
  left: 0px !important;
  top: 50px !important;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown .sidebar-sub-menu .sub-menu-item.active {
  color: #333;
  background: #fff;
}

.sidebar-white.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown  .sidebar-sub-menu .sub-menu-item {
  background: #fff;
  color: #333;
}

.sidebar-white.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-dropdown  .sidebar-sub-menu .sub-menu-item.active {
  background: #333;
  color: #fff;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-item {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-item span,
.sidebar--mobile .sidebar-container .sidebar-nav .sidenav .sidebar-item .arrow-wrapper {
  display: none;
}

.sidebar--mobile .sidebar-container .sidebar-footer {
  text-align: center;
  padding: 10px 0px;
}

.custom-range {
  -webkit-appearance: none;
  height: 4px;
  background: #ced4da;
  border-radius: 10px;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #276ef1;
  cursor: pointer;
}

.custom-range::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #276ef1;
  cursor: pointer;
}

.thumb-primary::-webkit-slider-thumb {
  background: #276ef1;
}

.thumb-secondary::-webkit-slider-thumb {
  background: #7356bf;
}

.thumb-info::-webkit-slider-thumb {
  background: #17a2b8;
}

.thumb-success::-webkit-slider-thumb {
  background: #05944f;
}

.thumb-danger::-webkit-slider-thumb {
  background: #e11900;
}

.thumb-warning::-webkit-slider-thumb {
  background: #ffe975;
}

.thumb-white::-webkit-slider-thumb {
  background: #ffffff;
}

.thumb-light::-webkit-slider-thumb {
  background: #eeeeee;
}

.thumb-dark::-webkit-slider-thumb {
  background: #000000;
}

.thumb-primary::-moz-range-thumb {
  background: #276ef1;
}

.thumb-secondary::-moz-range-thumb {
  background: #7356bf;
}

.thumb-info::-moz-range-thumb {
  background: #17a2b8;
}

.thumb-success::-moz-range-thumb {
  background: #05944f;
}

.thumb-danger::-moz-range-thumb {
  background: #e11900;
}

.thumb-warning::-moz-range-thumb {
  background: #ffe975;
}

.thumb-white::-moz-range-thumb {
  background: #ffffff;
}

.thumb-light::-moz-range-thumb {
  background: #eeeeee;
}

.thumb-dark::-moz-range-thumb {
  background: #000000;
}

.spinner, .spinner:before, .spinner:after {
  border-radius: 50%;
}

.spinner {
  font-size: 5px;
  text-indent: -99999em;
  margin: 15px auto;
  position: relative;
  width: 10em;
  height: 10em;
  -webkit-box-shadow: inset 0 0 0 1em;
          box-shadow: inset 0 0 0 1em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.spinner:before, .spinner:after {
  position: absolute;
  content: '';
}

.spinner:before {
  width: 5.2em;
  height: 10.2em;
  background: #ffffff;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.1em 5.1em;
  transform-origin: 5.1em 5.1em;
  -webkit-animation: load2 1.5s infinite ease 1s;
  animation: load2 1.5s infinite ease 1s;
}

.spinner:after {
  width: 5.2em;
  height: 10.2em;
  background: #ffffff;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 4.9em;
  -webkit-transform-origin: 0.1em 5.1em;
  transform-origin: 0.1em 5.1em;
  -webkit-animation: load2 1.5s infinite;
  animation: load2 1.5s infinite;
}

.spinner-sm {
  width: 9em;
  height: 9em;
  font-size: 3px;
}

.spinner-sm:before {
  width: 4.7em;
  height: 9.2em;
  border-radius: 9.2em 0 0 9.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 4.6em 4.6em;
  transform-origin: 4.6em 4.6em;
}

.spinner-sm:after {
  width: 4.7em;
  height: 9.2em;
  border-radius: 0 9.2em 9.2em 0;
  top: -0.1em;
  left: 4.4em;
  -webkit-transform-origin: 0.1em 4.6em;
  transform-origin: 0.1em 4.6em;
}

.spinner-lg {
  width: 14em;
  height: 14em;
  font-size: 7px;
}

.spinner-lg:before {
  width: 7.2em;
  height: 14.2em;
  border-radius: 14.2em 0 0 14.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 7.1em 7.1em;
  transform-origin: 7.1em 7.1em;
}

.spinner-lg:after {
  width: 7.2em;
  height: 14.2em;
  border-radius: 0 14.2em 14.2em 0;
  top: -0.1em;
  left: 6.9em;
  -webkit-transform-origin: 0.1em 7.1em;
  transform-origin: 0.1em 7.1em;
}

.spinner-muilticolor {
  -webkit-animation: muilticolor 1.5s infinite ease 1s;
  animation: muilticolor 1.5s infinite ease 1s;
}

@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes muilticolor {
  0% {
    color: #276ef1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  20% {
    color: #7356bf;
  }
  40% {
    color: #e11900;
  }
  60% {
    color: #ffe975;
  }
  80% {
    color: #05944f;
  }
  100% {
    color: #17a2b8;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes muilticolor {
  0% {
    color: #276ef1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  20% {
    color: #7356bf;
  }
  40% {
    color: #e11900;
  }
  60% {
    color: #ffe975;
  }
  80% {
    color: #05944f;
  }
  100% {
    color: #17a2b8;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.stepper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 10px;
}

.stepper.vertical {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.stepper .steps-container {
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.stepper .steps-container .steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow-x: auto;
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.stepper .steps-container .steps .step {
  display: table-cell;
  text-align: center;
  position: relative;
  min-width: 150px;
  max-width: 150px;
}

.stepper .steps-container .steps .step .step-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5px;
  padding: 10px 0;
  opacity: 0.8;
}

.stepper .steps-container .steps .step .step-title .step-number {
  font-size: 30px;
  font-weight: 600;
}

.stepper .steps-container .steps .step .step-title .step-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  margin-left: 10px;
  text-align: start;
  max-width: 150px;
  word-wrap: break-word;
}

.stepper .steps-container .steps .step .step-indicator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.stepper .steps-container .steps .step .step-indicator .step-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 10px;
}

.stepper .steps-container .steps .step .step-indicator .step-divider span {
  margin: 0 2px;
  border-radius: 6px;
  -webkit-transition: 0.4;
  transition: 0.4;
  opacity: 0.8;
  background-color: #9f9d9d;
}

.stepper .steps-container .steps .step .step-indicator .step-divider span:nth-child(1) {
  width: 6px;
  height: 6px;
}

.stepper .steps-container .steps .step .step-indicator .step-divider span:nth-child(2) {
  width: 50px;
  height: 6px;
}

.stepper .steps-container .steps .step .step-indicator .step-node {
  position: relative;
  cursor: pointer;
  width: 45px;
  height: 45px;
  font-size: 16px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: width 0.3;
  transition: width 0.3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #9f9d9d;
}

.stepper .steps-container .steps .step.prev .step-node {
  background-color: #333333;
  color: #fff;
  border: 2px solid #cccccc;
}

.stepper .steps-container .steps .step.prev .step-title {
  opacity: 1 !important;
}

.stepper .steps-container .steps .step.prev .step-divider span:nth-child(1) {
  background: #333333 !important;
}

.stepper .steps-container .steps .step.prev .step-divider span:nth-child(2) {
  background: #333333 !important;
}

.stepper .steps-container .steps .step.active .step-node {
  background-color: #fff;
  border: 2px solid #333333;
  color: #333;
}

.stepper .steps-container .steps .step.active .step-title {
  opacity: 1 !important;
}

.stepper .steps-container .steps .step.active .step-divider span:nth-child(1) {
  background: #333333 !important;
}

.stepper .steps-container .steps.vertical {
  padding-left: 10px;
  direction: rtl;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stepper .steps-container .steps.vertical .step {
  direction: ltr !important;
}

.stepper .steps-container .steps.vertical .step .step-indicator {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stepper .steps-container .steps.vertical .step .step-indicator .step-divider {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 45px;
  margin-top: 10px;
  margin-left: 0px;
}

.stepper .steps-container .steps.vertical .step .step-indicator .step-divider span {
  margin: 2px 0 !important;
}

.stepper .steps-container .steps.vertical .step .step-indicator .step-divider span:nth-child(2) {
  width: 6px !important;
  height: 50px !important;
}

.stepper .stepper-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.stepper .stepper-content-container.vertical {
  width: calc(100% - 150px);
}

.stepper .stepper-content-container .stepper-content {
  width: 100%;
  padding: 15px 10px;
  display: none;
}

.stepper .stepper-content-container .stepper-content.show {
  display: block;
}

.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.custom-switch input {
  width: 0px;
  height: 0px;
  opacity: 0;
}

.custom-switch .custom-control {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #eeeeee;
  -webkit-transition: .4s;
  transition: .4s;
}

.custom-switch .custom-control:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.custom-switch input:checked + .custom-control {
  background-color: #2196F3;
}

.custom-switch input:checked + .custom-control:before {
  -webkit-transform: translateX(24px);
  transform: translateX(24px);
}

.custom-switch-rounded .custom-control {
  border-radius: 26px;
}

.custom-switch-rounded .custom-control:before {
  border-radius: 50%;
}

.nav.nav-tabs .tab-content {
  margin-top: 30px;
}

.nav.nav-tabs .tab-content .tab-pane {
  display: none;
  -webkit-transition: opacity 300ms linear;
  transition: opacity 300ms linear;
}

.nav.nav-tabs .tab-content .tab-pane.active {
  display: block;
}

.nav.nav-tabs .nav-link {
  margin-top: 5px;
  border: none;
  -webkit-transition: 1s;
  transition: 1s;
  color: #000000;
  border-bottom: 5px solid #e2e2e2;
  font-weight: bold;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.nav.nav-tabs .nav-link.active {
  border-bottom: 5px solid #000000;
}

.table thead tr th {
  border-bottom-color: #eeeeee;
}

.table-primary th,
.table-primary td {
  color: #fff;
  background: #276ef1;
}

.table-secondary th,
.table-secondary td {
  color: #fff;
  background: #7356bf;
}

.table-success th,
.table-success td {
  color: #fff;
  background: #05944f;
}

.table-danger th,
.table-danger td {
  color: #fff;
  background: #e11900;
}

.table-warning th,
.table-warning td {
  color: #735909;
  background: #ffe975;
}

.table-info th,
.table-info td {
  color: #fff;
  background: #17a2b8;
}

.table-info th,
.table-info td {
  color: #fff;
  background: #17a2b8;
}

.table-light th,
.table-light td {
  color: #fff;
  background: #eeeeee;
}

.table-dark th,
.table-dark td {
  color: #fff;
  background: #000000;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background: #eeeeee;
  color: #000000;
}

.table-dark th,
.table-dark td {
  background: #000000;
}

.toast {
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-width: 2px;
  border-radius: 0;
}

.font-weight-bold {
  font-weight: 700;
}

.bg-primary {
  background: #276ef1 !important;
}

.bg-info {
  background: #17a2b8 !important;
}

.bg-danger {
  background: #e11900 !important;
}

.bg-success {
  background: #05944f !important;
}

.bg-warning {
  background: #ffe975 !important;
}

.bg-dark {
  background: #000000 !important;
}

.bg-light {
  background: #eeeeee !important;
}

.bg-secondary {
  background: #7356bf !important;
}

.text-primary {
  color: #276ef1;
}

.text-secondary {
  color: #7356bf;
}

.text-danger {
  color: #e11900;
}

.text-success {
  color: #05944f;
}

.text-warning {
  color: #ffe975;
}

.text-dark {
  color: #000000;
}

.text-light {
  color: #eeeeee;
}

.db-header nav {
  color:#333;
  background:#fff;
  height:64px;
}

.db-header .input-nav:hover {
  border-color:#333;
}

.db-header .input-nav {
  padding:10px;
  height:2rem !important;
  background:transparent;
  border:1px solid rgb(173, 168, 168);
  margin-left:3rem !important;
  width:30rem !important;
}

.db-header .pane-sm {
  width:3rem;
  height:3rem;
}

.shadow .breadcrumb {
  border-top:1px solid rgba(51, 51, 51, 0.2);
}

@media(max-width:900px) {
  .db-header .input-nav {
    margin-left:2rem !important;
    width:15rem !important;
  }
}

@media(max-width:768px) {
  .db-header .input-nav {
    margin-left:0.5rem !important;
    width:12rem !important;
  }
}

@media(max-width:376px) {
  .db-header .input-nav {
    display:none;
  }
}
/*# sourceMappingURL=style.css.map */
