/* Minification failed. Returning unminified contents.
(2179,36): run-time error CSS1046: Expect comma, found '0'
(2179,40): run-time error CSS1046: Expect comma, found ')'
(3266,59): run-time error CSS1038: Expected hex color, found '#0000'
(3266,106): run-time error CSS1038: Expected hex color, found '#0000'
(3266,111): run-time error CSS1019: Unexpected token, found ' '
(3266,111): run-time error CSS1042: Expected function, found ' '
(3266,111): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(3267,48): run-time error CSS1038: Expected hex color, found '#0000'
(3267,53): run-time error CSS1019: Unexpected token, found ' '
(3267,53): run-time error CSS1042: Expected function, found ' '
(3267,53): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(8659,3): run-time error CSS1031: Expected selector, found '2017'
(8659,3): run-time error CSS1025: Expected comma or open brace, found '2017'
 */
/* Minification failed. Returning unminified contents.
(2164,36): run-time error CSS1046: Expect comma, found '0'
(2164,40): run-time error CSS1046: Expect comma, found ')'
(3251,59): run-time error CSS1038: Expected hex color, found '#0000'
(3251,106): run-time error CSS1038: Expected hex color, found '#0000'
(3251,111): run-time error CSS1019: Unexpected token, found ' '
(3251,111): run-time error CSS1042: Expected function, found ' '
(3251,111): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(3252,48): run-time error CSS1038: Expected hex color, found '#0000'
(3252,53): run-time error CSS1019: Unexpected token, found ' '
(3252,53): run-time error CSS1042: Expected function, found ' '
(3252,53): run-time error CSS1062: Expected semicolon or closing curly-brace, found ' '
(8644,3): run-time error CSS1031: Expected selector, found '2017'
(8644,3): run-time error CSS1025: Expected comma or open brace, found '2017'
 */
/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/**
 * Swiper 3.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: December 13, 2016
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/*fonts*/
/*colors*/
/*#region Font face */
/*#endregion */
.hidden {
  display: none;
}
.clearfix {
  clear: both;
}
.bold {
  font-weight: bold;
}
.left {
  text-align: left;
}
.pull-left {
  float: left;
}
.right {
  text-align: right;
}
.pull-right {
  float: right;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.main {
  margin: 0 auto;
  text-align: center;
}
.link {
  color: #2FCDDD;
  font-weight: bold;
  text-align: center;
  line-height: 14px;
}
.link:hover,
.link:focus {
  color: #021652;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: "MAX-Light";
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  font-family: "MAX-Regular";
  direction: RTL;
}
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0;
}
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}
/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "MAX-Regular";
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}
body,
html {
  font-size: 14px;
  height: 100%;
}
@font-face {
  font-family: 'almoni-dl-300';
  font-weight: 300;
  font-style: normal;
  src: url('/App_Themes/fonts/almoni-dl-aaa-300.eot');
  src: url('/App_Themes/fonts/almoni-dl-aaa-300.eot?#iefix') format('embedded-opentype'), url('/App_Themes/fonts/almoni-dl-aaa-300.woff') format('woff'), url('/App_Themes/fonts/almoni-dl-aaa-300.ttf') format('truetype');
}
@font-face {
  font-family: 'almoni-dl-400';
  font-weight: 400;
  font-style: normal;
  src: url('/App_Themes/fonts/almoni-dl-aaa-400.eot');
  src: url('/App_Themes/fonts/almoni-dl-aaa-400.eot?#iefix') format('embedded-opentype'), url('/App_Themes/fonts/almoni-dl-aaa-400.woff') format('woff'), url('/App_Themes/fonts/almoni-dl-aaa-400.ttf') format('truetype');
}
@font-face {
  font-family: 'almoni-dl-700';
  font-weight: 700;
  font-style: normal;
  src: url('/App_Themes/fonts/almoni-dl-aaa-700.eot');
  src: url('/App_Themes/fonts/almoni-dl-aaa-700.eot?#iefix') format('embedded-opentype'), url('/App_Themes/fonts/almoni-dl-aaa-700.woff') format('woff'), url('/App_Themes/fonts/almoni-dl-aaa-700.ttf') format('truetype');
}
@font-face {
  font-family: 'almoni-dl-900';
  font-weight: 900;
  font-style: normal;
  src: url('/App_Themes/fonts/almoni-dl-aaa-900.eot');
  src: url('/App_Themes/fonts/almoni-dl-aaa-900.eot?#iefix') format('embedded-opentype'), url('/App_Themes/fonts/almoni-dl-aaa-900.woff') format('woff'), url('/App_Themes/fonts/almoni-dl-aaa-900.ttf') format('truetype');
}
@font-face {
  font-family: 'MAX-Light';
  font-display: swap;
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Light.eot');
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Light.eot?#iefix') format('embedded-opentype'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Light.woff') format('woff'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'MAX-Regular';
  font-display: swap;
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Regular.eot');
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Regular.eot?#iefix') format('embedded-opentype'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Regular.woff') format('woff'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'MAX-Medium';
  font-display: swap;
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Medium.eot');
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Medium.eot?#iefix') format('embedded-opentype'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Medium.woff') format('woff'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'MAX-Bold';
  font-display: swap;
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Bold.eot');
  src: url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Bold.eot?#iefix') format('embedded-opentype'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Bold.woff') format('woff'), url('/App_Themes/VirtualGiftCardMobile/fonts/MAX-Bold.ttf') format('truetype');
}
/*
@import this file directly into your existing Less files to use these mixins
*/
.menu {
  /*margin: 0;
    padding: 0;
    position: fixed;
    z-index: 99999999;
    color: @main-color;
    width: 100%;
    height: calc(100vh);
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    right: -1600px;
    top:0;

    &.nav-view {
        right: 0px;
        direction:rtl;
    }*/
  margin: 0;
  padding: 0;
  position: fixed;
  z-index: 99999999;
  color: #021652;
  width: 100%;
  height: calc(100vh);
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  -moz-transition: transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  -webkit-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.menu.nav-view {
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.menu .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.menu .close:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -631px no-repeat;
}
.menu ul {
  width: 85%;
  box-shadow: 0px 0px 60px 0px #000000;
  padding: 0;
  margin: 0;
  background: #ffffff;
  height: 100%;
  position: relative;
  overflow: auto;
}
.menu ul li {
  margin: 0;
  padding: 0 33px;
  font-size: 18px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  list-style-type: none;
  text-align: right;
  border-top: 1px #e0e0df solid;
  cursor: pointer;
  background: #ffffff;
  height: 67px;
  height: 7vh;
  line-height: 67px;
  line-height: 7vh;
}
.menu ul li.logo {
  text-align: center;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 200;
  padding-bottom: 25px;
  padding-top: 45px;
  -webkit-box-shadow: inset 1px -19px 29px -12px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: inset 1px -19px 29px -12px rgba(0, 0, 0, 0.07);
  box-shadow: inset 1px -19px 29px -12px rgba(0, 0, 0, 0.07);
  border-bottom: 0;
  height: 67px;
  height: 17vh;
  line-height: 20px;
  line-height: 5vh;
}
.menu ul li.logo img {
  width: 69%;
  max-width: 200px;
  height: auto;
  padding-bottom: 15px;
}
.menu ul li.version {
  text-align: center;
  font-size: 18px;
  font-weight: 200;
  padding: 12px;
  background: transparent;
  border: 0;
  line-height: 3vh;
  cursor: default;
}
.menu ul li:first-child {
  border: 0;
  cursor: default;
}
.menu ul li .user {
  height: 54px;
  overflow: hidden;
  margin-top: -15px;
}
.menu ul li a {
  text-decoration: none;
  color: inherit;
}
header {
  margin: 0 auto;
  width: 100%;
  min-height: 85px;
  position: fixed;
  background-color: #fff;
  top: 0;
  right: 0;
  z-index: 2;
}
header h1 {
  line-height: 17px;
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 50px;
  font-family: "MAX-Medium";
  font-weight: 100;
}
header.gray {
  background: #E6E7E8;
}
header.gray h1 {
  color: #021652;
}
header.white {
  background: #ffffff;
}
header.transparent {
  background: transparent;
}
header .close,
header .close-w,
header .back,
header .back-w,
header .hamburger {
  position: absolute;
  cursor: pointer;
  top: 10px;
}
header .hamburger .menu-text {
  transform: translate(-3px, 7px);
  display: block;
  font-size: 16px;
  color: #000;
  font-family: "MAX-Light";
}
header .add-convert-app {
  position: fixed;
  top: 2%;
  left: 5%;
  /*    background-color: #021652;*/
  background: url(/App_Themes/VirtualGiftCardMobile/images/plus.svg) no-repeat;
  /*    color: #fff;
    border-radius: 62%;
    -moz-border-radius-topleft: 90px;
    -moz-border-radius-bottomleft: 90px;*/
  height: 24px;
  width: 24px;
  /*    flex-flow: column;
    align-items: center*/
  -webkit-animation-name: animateleft;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  animation-name: animateleft;
  animation-duration: 1s;
  z-index: 3;
}
@-webkit-keyframes animateleft {
  from {
    left: -148px;
    opacity: 0;
  }
  to {
    left: -9px;
    opacity: 1;
  }
}
header .add-convert-app .logo {
  display: block;
  font-size: 35px;
  color: #67eed5;
}
header .add-convert-app .add-card {
  font-size: 16px;
  color: #000;
  display: block;
  font-family: "MAX-Light";
  transform: translate(7px, 28px);
}
header .close {
  left: 10px;
  top: 12px;
}
header .close.close-regulations:before {
  content: '';
  width: 25px;
  height: 25px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/x-blue.png') no-repeat;
  background-size: 18px;
}
header .close:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -631px no-repeat;
}
header .close-w {
  left: 10px;
  top: 12px;
}
header .close-w:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -631px no-repeat;
}
header .back {
  right: 20px;
}
header .back:before {
  content: '';
  width: 39px;
  height: 30px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/arrow-right.png') no-repeat;
  background-size: 25px;
}
header .back-w {
  right: 20px;
}
header .back-w:before {
  content: '';
  width: 39px;
  height: 30px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -234px no-repeat;
}
header .hamburger {
  right: 20px;
  top: 17px;
}
header .hamburger:before {
  content: '';
  width: 29px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/menu-icon.svg') no-repeat;
  background-size: 83%;
}
.single-card-header,
.activation-header-resize,
.activation-header,
.company-header {
  display: none;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 16px;
  color: #c5c4d0;
  line-height: 36px;
  font-weight: normal;
  font-weight: 100;
}
::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 16px;
  color: #c5c4d0;
  line-height: 36px;
  font-weight: normal;
  font-weight: 100;
}
:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 16px;
  color: #c5c4d0;
  line-height: 36px;
  font-weight: normal;
  font-weight: 100;
}
:-moz-placeholder {
  /* Firefox 18- */
  font-size: 15px;
  color: #c5c4d0;
  line-height: 36px;
  font-weight: normal;
  font-weight: 100;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
}
.checkbox {
  font-size: 16px;
  color: #000;
}
.checkbox.white {
  color: #ffffff;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox input[type="checkbox"] + label {
  height: 16px;
  width: 18px;
  display: inline-block;
  padding: 0;
  color: #000;
  background: transparent;
  border: 1px solid #cacece;
  position: relative;
  margin-left: 5px;
  top: 4px;
}
.checkbox input[type="checkbox"]:checked + label {
  background: url('/App_Themes/VirtualGiftCardMobile/images/v_small.png') no-repeat;
  height: 16px;
  width: 18px;
  display: inline-block;
  padding: 0;
}
.button {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 20px;
  color: #000 !important;
  line-height: 45px;
  display: block;
  justify-content: center;
  align-items: center;
  font-family: "MAX-Medium" !important;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  margin: 0 auto;
  cursor: pointer;
  border: none;
  background-color: #2ff2d9 !important;
  font-weight: 500;
  /*button colors and states*/
}
@media (max-width: 768px) {
  .button {
    max-width: 320px;
  }
}
@media (min-width: 768px) {
  .button {
    padding: 0 45px;
    max-width: 330px;
  }
}
.button:hover,
.button:focus {
  outline: none;
}
.button a {
  color: #ffffff;
  text-decoration: none;
}
.button.green2 {
  background-color: #67eed5;
  color: #ffffff;
}
.button.green {
  background-color: #67eed5;
  color: #021652;
}
.button.green:hover,
.button.green:focus {
  background-color: #ffffff;
  border: 1px #67eed5 solid;
  color: #67eed5;
}
.button.green:hover a,
.button.green:focus a {
  color: #67eed5;
}
.button.green.btnVgcNoHover:hover,
.button.green.btnVgcNoHover:focus {
  background-color: #67eed5;
  color: #021652;
  border: none;
}
.button.login,
.button.landing.active {
  width: 260px;
  color: #021652;
  box-shadow: none;
  /*
        &.green:hover,
        &.green:focus {
            width: 60px;
            -webkit-transition: all 1s ease;
            -moz-transition: all 1s ease;
            -o-transition: all 1s ease;
            transition: all 1s ease;
            color: transparent;
            background-color: @green;
            border: none;
        }*/
}
.button.login.red:focus,
.button.landing.active.red:focus,
.button.login.red:hover,
.button.landing.active.red:hover {
  background-color: red;
  color: #ffffff;
}
.button.blue {
  background-color: #021652;
  color: #ffffff;
}
.button.blue:hover,
.button.blue:focus {
  background-color: #ffffff;
  border: 1px #021652 solid;
  color: #021652;
}
.button.hollow-blue {
  background-color: #ffffff;
  border: 1px #021652 solid;
  color: #021652;
}
.button.hollow-blue:hover,
.button.hollow-blue:focus {
  background-color: #021652;
  color: #ffffff;
}
.button.hollow-green {
  background-color: #ffffff;
  border: 1px #67eed5 solid;
  color: #67eed5;
}
.button.hollow-green:hover,
.button.hollow-green:focus {
  background-color: #67eed5;
  color: #ffffff;
}
.button.pink {
  background-color: #ff5050;
}
.button.light-blue {
  background-color: #67eed5;
  color: #021652;
}
.button.light-blue:hover,
.button.light-blue:focus {
  background-color: #67eed5;
}
.button.red {
  background-color: #F71B1B;
  color: #ffffff;
}
.button.red:hover,
.button.red:focus {
  background-color: #dd2a45;
}
.button.big {
  font-size: 28px;
}
.button.small {
  height: 31px;
  line-height: 34px;
  font-size: 15px;
  font-weight: 300;
}
.payment {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 20px;
  color: #000 !important;
  line-height: 49px;
  display: block;
  justify-content: center;
  align-items: center;
  font-family: "MAX-Medium" !important;
  transition: all 0.5s ease;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  background-color: #2ff2d9 !important;
  font-weight: 500;
}
@media (max-width: 768px) {
  .payment {
    max-width: 320px;
  }
}
@media (min-width: 768px) {
  .payment {
    padding: 0 45px;
    max-width: 330px;
  }
}
.payment:hover {
  box-shadow: 0 4px 12px 0 rgba(47, 242, 217, 0.24);
}
.kupon-slider {
  margin: 24px 0 30px 0;
  overflow-x: hidden;
  padding-bottom: 10px;
  padding-right: 20px;
}
@media (max-width: 375px) {
  .kupon-slider {
    padding-bottom: 85px;
  }
}
.kupon-slider h2 {
  font-size: 20px;
  text-align: right;
  color: #000;
  margin-bottom: 32px;
  margin-top: 0;
  font-family: "MAX-Medium";
  font-weight: normal;
}
.kupon-slider .kupon {
  width: 124px;
  height: 132px;
  border-radius: 8px;
  background: #ffffff;
  background: linear-gradient(0deg, #ffffff 43%, #c9f1f6 100%);
  display: flex;
  flex-flow: column;
  align-items: baseline;
  padding: 12px 12px 10px 12px;
  box-sizing: border-box;
}
.kupon-slider .kupon h3 {
  padding-left: 6px;
  margin: 9px 0 0 0;
  font-size: 16px;
  color: #000;
  font-family: "MAX-Medium";
  font-weight: normal;
}
.kupon-slider .kupon .info {
  font-size: 14px;
  color: #000;
  text-align: right;
  display: block;
  line-height: 14px;
  margin: 8px 0 5px 0;
  font-family: 'Max-light';
  height: 42px;
}
.kupon-slider .kupon .arrow-link {
  font-size: 14px;
  color: #08cdd9;
  text-decoration: none;
  display: block;
  position: relative;
  margin-top: 8px;
  font-family: "MAX-Medium";
  font-weight: normal;
  position: absolute;
  bottom: 8px;
  right: 12px;
}
.kupon-slider .kupon .arrow-link:after {
  content: "";
  display: block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/arrow-left.svg') no-repeat;
  background-size: cover;
  width: 24px;
  height: 25px;
  position: absolute;
  left: -20px;
  top: -3px;
}
.kupon-slider .kupon.stampa-title {
  position: relative;
}
.kupon-slider .kupon.stampa-title:before {
  content: "";
  display: block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/stampa.svg') no-repeat;
  background-size: cover;
  width: 69px;
  height: 69px;
  position: absolute;
  left: -7px;
  top: -7px;
}
.kupon-slider .kupon.yellow-back {
  background: #ffffff;
  background: linear-gradient(0deg, #ffffff 59%, #fffb9d 100%);
}
.kupon-slider .kupon.light-blue-back {
  background: #ffffff;
  background: linear-gradient(0deg, #ffffff 59%, #c1eff5 100%);
}
.kupon-slider .kupon.aqua-back {
  background: #ffffff;
  background: linear-gradient(0deg, #ffffff 59%, #b4fae5 100%);
}
.kupon-slider .kupon.purple-back {
  background: #ffffff;
  background: linear-gradient(0deg, #ffffff 59%, #d2e1ff 100%);
}
.kupon-slider .slick-track {
  padding-right: 29px;
}
.kupon-slider .slick-slide {
  width: 140px;
  height: 162px;
  float: right;
  margin-left: 20px;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.08);
  position: relative;
}
.choose-kupon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}
.choose-kupon-wrapper .choose-kupon-sum {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 566px;
  right: 0;
  bottom: 0;
  z-index: 9;
  box-shadow: 4px 4px 16px 0 rgb(0 0 0%);
  border-radius: 25px 25px 0 0;
  padding: 40px 20px 67px 20px;
  box-sizing: border-box;
}
.choose-kupon-wrapper .choose-kupon-sum .close {
  background: url('/App_Themes/VirtualGiftCardMobile/images/close-kupon-sum.svg') no-repeat;
  height: 24px;
  width: 24px;
  background-size: cover;
  position: absolute;
  top: 25px;
  left: 22px;
}
.choose-kupon-wrapper .choose-kupon-sum .main-title h2 {
  display: flex;
  justify-content: center;
  font-size: 24px;
  color: #000;
  margin: 16px 0 24px 0;
}
.choose-kupon-wrapper .choose-kupon-sum .main-title h2 .logo-pic {
  display: inline-block;
  transform: translate(0, 2px);
  margin-right: 11px;
}
.choose-kupon-wrapper .choose-kupon-sum .main-title .sub-title {
  display: block;
  text-align: right;
  font-size: 18px;
  color: #000;
  font-family: 'Max-light';
  line-height: 18px;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0 40px 0;
  grid-column-gap: 28px;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon {
  width: 100%;
  max-width: 100px;
  height: 100px;
  box-sizing: border-box;
  padding: 14px 8px 14px 8px;
  border-radius: 8px;
  text-align: right;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon.current {
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.08);
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon h3 {
  margin: 0;
  font-size: 16px;
  color: #000;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon .sum {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon .buy-in {
  font-size: 14px;
  color: #000;
  font-family: 'Max-light';
  display: block;
  margin-top: 3px;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon .check-kupon {
  display: none;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon.select-kupon {
  border: solid 1px #08cdd9;
  position: relative;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon.select-kupon .check-kupon {
  display: flex;
  width: 24px;
  height: 24px;
  background-color: #08cdd9;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -13px;
  right: -14px;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon.select-kupon .check-kupon .vee {
  background: url('/App_Themes/VirtualGiftCardMobile/images/kupon-Check.svg') no-repeat;
  height: 12px;
  width: 12px;
  background-size: cover;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon .no-money {
  display: none;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon.no-money-alert {
  background-color: #f5f5f5;
}
.choose-kupon-wrapper .choose-kupon-sum .kupon-wrapper .kupon.no-money-alert .no-money {
  font-size: 14px;
  color: #ff8164;
  font-family: 'Max-regular';
  display: block;
  transform: translate(0, 28px);
}
.choose-kupon-wrapper .choose-kupon-sum .choose-kupon {
  font-size: 18px;
  color: #ff8164;
  display: block;
}
.choose-kupon-wrapper .choose-kupon-sum .button-wrapper {
  margin-top: 13px;
}
.choose-kupon-wrapper .choose-kupon-sum .button-wrapper .send-button {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 20px;
  color: #000;
  line-height: 49px;
  display: block;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: all 0.5s ease;
  white-space: nowrap;
  background-color: #2ff2d9;
  text-decoration: none;
}
.choose-kupon-wrapper .choose-kupon-sum .terms {
  margin-top: 40px;
  font-size: 14px;
  color: #000;
  text-align: right;
  font-family: 'Max-light';
}
.choose-kupon-wrapper .dark-back {
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.order-success {
  /*> div {
        height: 680px !important;
    }*/
}
.order-success .main-title h2 {
  margin-top: -15px;
}
.order-success .kupon-sum {
  margin-bottom: 25px;
}
.order-success .kupon-sum .sum {
  display: block;
  font-size: 32px;
  color: #000;
  font-family: 'Max-medium';
}
.order-success .kupon-sum .sum-title {
  font-size: 18px;
  color: #000;
  font-family: 'Max-light';
}
.order-success .your-code {
  font-size: 18px;
  color: #000;
  font-family: 'Max-regular';
}
.order-success .your-code .code {
  font-family: 'Max-bold';
  color: #08cdd9;
}
.order-success .your-code .copy-code {
  background: url('/App_Themes/VirtualGiftCardMobile/images/copy-icon.svg') no-repeat;
  height: 14px;
  width: 12px;
  background-size: cover;
  display: inline-block;
  transform: translate(-6px, 2px);
}
.order-success .how-to-use {
  width: 100%;
  height: 68px;
  border-radius: 8px;
  background-color: #f5f5f5;
  box-sizing: border-box;
  padding: 7px 42px 7px 10px;
  text-align: right;
  margin: 40px 0 24px 0;
  position: relative;
}
.order-success .how-to-use:before {
  content: "";
  display: block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/heart-line.svg') no-repeat;
  height: 24px;
  width: 24px;
  background-size: cover;
  position: absolute;
  top: 25px;
  right: 10px;
}
.order-success .how-to-use h3 {
  font-size: 16px;
  color: #000;
  font-family: 'Max-medium';
  margin: 0;
}
.order-success .how-to-use .info-text {
  font-size: 16px;
  color: #000;
  font-family: 'Max-light';
  display: block;
  line-height: 15px;
}
.order-success .send-sms {
  display: block;
  font-size: 18px;
  text-align: center;
  color: #000;
  font-family: 'Max-regular';
  margin-bottom: 40px;
}
.order-success .terms {
  margin-top: 40px !important;
}
.order-fail > div {
  height: 560px !important;
}
.order-fail .main-title h2 {
  margin: 8px 0 0 0;
}
.order-fail .main-title .sub-title {
  font-size: 20px !important;
  text-align: center !important;
  margin-bottom: 60px;
}
.kupon-list {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: #fff;
  width: 100%;
  height: 85%;
  padding: 45px 0 55px 0;
}
.kupon-list .main-title {
  position: fixed;
  background-color: white;
  width: 100%;
  top: 0px;
  right: 0;
  z-index: 1;
  height: 64px;
  padding: 45px 0;
}
.kupon-list .main-title h1 {
  font-size: 22px;
  color: #000;
  font-family: 'Max-medium';
  text-align: center;
  font-weight: 100;
  margin: 0 0 5px 0;
}
.kupon-list .main-title h2 {
  font-size: 20px;
  color: #000;
  font-family: 'Max-light';
  text-align: center;
  font-weight: 100;
  margin: 0;
}
.kupon-list .main-title .close-page {
  display: block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/close-kupon-sum.svg') no-repeat;
  height: 24px;
  width: 24px;
  background-size: cover;
  position: absolute;
  top: 20px;
  left: 43px;
}
.kupon-list .content .list-table {
  text-align: right;
  padding-top: 110px;
}
.kupon-list .content .list-table .table-row {
  padding: 18px 24px 18px 24px;
  border-top: solid 1px #c1efff;
  display: flex;
  flex-flow: column;
  overflow-x: hidden;
  position: relative;
}
.kupon-list .content .list-table .table-row .top-info {
  display: flex;
  grid-column-gap: 22px;
}
.kupon-list .content .list-table .table-row .top-info .cell-info {
  width: 80px;
}
.kupon-list .content .list-table .table-row .top-info div:nth-child(2) {
  width: 130px;
}
.kupon-list .content .list-table .table-row .collapse-info {
  display: none;
  grid-column-gap: 22px;
}
.kupon-list .content .list-table .table-row .collapse-info .cell-info {
  width: 160px;
}
.kupon-list .content .list-table .table-row .collapse-info div:nth-child(2) {
  width: 130px;
}
.kupon-list .content .list-table .table-row .cell-info .title {
  font-size: 12px;
  color: #44454c;
  display: block;
  font-family: 'Max-light';
  font-weight: 100;
  margin-bottom: 1px;
}
.kupon-list .content .list-table .table-row .cell-info .detail {
  font-size: 16px;
  color: #000;
  display: block;
  font-family: 'Max-medium';
  font-weight: 100;
}
.kupon-list .content .list-table .table-row:after {
  content: "";
  display: block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/arrow-table-Down.svg') no-repeat;
  height: 16px;
  width: 16px;
  background-size: cover;
  position: absolute;
  top: 28px;
  left: 45px;
}
.kupon-list .content .list-table .table-row.collapse-open .collapse-info {
  display: flex;
}
.kupon-list .content .list-table .table-row.collapse-open .top-info {
  margin-bottom: 15px;
}
.kupon-list .content .list-table .table-row.collapse-open:after {
  transform: rotate(180deg);
}
.kupon-list .content .list-table > div:last-child {
  border-bottom: solid 1px #c1efff;
}
.form {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}
.form.position {
  position: absolute;
  margin-top: 30px;
  z-index: 999999;
}
.form.white {
  background: #ffffff;
  width: 100%;
  height: 65vh;
  padding: 6% 0;
  transition: all 0.8s ease;
}
.form.white.resize {
  height: auto;
  padding: 0;
  padding-top: 20px;
}
.form.white .right {
  text-align: right;
  padding: 15px 30px;
  font-size: 24px;
  /*min-height: 29vh;*/
  word-break: break-word;
}
.form.white .right.landing {
  padding: 0px 30px !important;
}
.form.white .text-input {
  width: 67%;
  margin-bottom: 66px;
  padding-bottom: 0;
  height: 28px;
}
.form.white .formCapcha {
  margin: 0 auto;
  width: 305px;
}
.form.white .text-input-label {
  font-size: 24px;
}
.form.white .button-div {
  margin-top: 28px;
}
.form.white .button.LP {
  width: 60px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.form.white .button.active {
  width: 260px;
}
.form.white .button.active.landing.green:focus {
  width: 60px;
}
.form.white .button span {
  display: none;
}
.form.white .downloadApp span {
  display: block;
}
.form.white.slide-up {
  bottom: 0;
}
.form.white p {
  color: #021652;
  font-size: 22px;
  line-height: 29px;
  margin: 0;
  padding: 0;
}
.form.white .notes2 p {
  font-size: 16px;
  margin-top: 7px;
}
.form.white .notes2 p#had-no-code {
  line-height: 1em;
}
.form.white .notes2 p a {
  text-decoration: none;
  color: #021652;
}
.text-input {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  /*height: 80px;*/
}
.text-input.small {
  width: 47%;
  display: inline-block;
}
.text-input .text-input-label {
  width: 100%;
  font-size: 20px;
  color: #000;
  text-align: right;
  margin-top: 30px;
  /*height: 53px;*/
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  right: 0;
  top: -7px;
  padding-bottom: 0;
  margin-bottom: 0;
  z-index: 99;
}
.text-input .clearInput {
  color: #889DB5;
  font-size: 15px;
  width: 15px;
  height: 15px;
  position: absolute;
  background-color: transparent;
  border: 0;
  top: 30px;
  left: 0;
  display: none;
  outline: 0;
}
.text-input .text-input-field {
  color: #000 !important;
  border: 0;
  border-bottom: 1px solid #c5c4d0;
  width: 100%;
  font-size: 25px;
  box-sizing: border-box;
  outline: 0;
  height: 55px;
  text-align: right;
  line-height: 0;
  padding-top: 21px;
  letter-spacing: 0.2em;
}
.text-input .text-input-field:focus,
.text-input .text-input-field.active {
  border-bottom: 1px solid #021652;
}
.text-input .text-input-field:focus + label,
.text-input .text-input-field.active + label {
  font-size: 15px;
  top: -30px;
}
.text-input .text-input-field.white {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.text-input .text-input-field#tel {
  direction: ltr;
  padding-right: 0;
  font-size: 32px;
  font-family: "MAX-Light";
}
.text-input .text-input-field#kodimut {
  direction: ltr;
  font-size: 32px;
  font-family: "MAX-Light";
}
.text-input .text-input-field#activation {
  direction: ltr;
}
.text-input.blue {
  background: transparent;
}
.text-input.blue .text-input-field {
  background: transparent;
  color: #021652;
  font-size: 38px;
}
.text-input.blue .text-input-field:focus,
.text-input.blue .text-input-field.active {
  border-bottom: 1px solid #021652;
}
.text-input .input-field {
  width: 100%;
  color: #021652;
  font-size: 16px;
  border: 0;
  border-bottom: 1px solid #c5c4d0;
  padding-top: 5px;
  outline: 0;
  line-height: 30px;
}
.text-input .validation-error {
  display: none;
  color: #F71B1B;
  position: relative;
  top: 0;
  height: 0;
  margin-top: 10px;
}
.text-input.error .text-input-field {
  border-bottom: 1px solid #F71B1B !important;
}
.text-input.error .validation-error {
  display: block;
}
.text-input.error .text-input-label {
  font-size: 15px;
  top: -22px;
}
.card-text-input-list textarea {
  width: 100%;
  height: 300px;
  max-height: 219px;
  background-color: transparent;
  border: 0;
  outline: 0;
  resize: none;
  box-sizing: border-box;
  background-attachment: local;
  background-image: linear-gradient(to right, transparent 10px, transparent 10px), linear-gradient(to left, transparent 10px, transparent 10px), repeating-linear-gradient(transparent, transparent 62px, #ccc 30px, #ccc 62px, transparent 64px);
  font-size: 25px;
  line-height: 63px;
  padding-top: 20px;
}
.card-text-input-list .bus-name-letters,
.card-text-input-list .total-letters {
  color: #021652;
  font-size: 14px;
  float: left;
  display: block;
}
.buttons-div .button {
  display: inline-block;
}
.buttonBottomDiv {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+49&0+0,1+35 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 49%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 49%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 49%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
  margin: 0 auto;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 50px 0 30px;
}
.buttonTopDiv {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+49&0+0,1+35 */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 49%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 49%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 35%, #ffffff 49%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
  margin: 0 auto;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 50px 0 30px;
}
.container-app {
  background-color: #fff;
  color: #021652;
  text-align: center;
  margin: 0 auto;
  position: relative;
  height: 100vh;
  padding: 0;
  overflow-y: auto;
}
.container-app .personalOrders {
  font-family: "MAX-Regular";
}
.container-app .personalOrders .orders-title {
  padding: 30px 0;
}
.container-app .personalOrders .orders-table {
  margin: 0 auto;
}
.container-app .personalOrders .orders-table td {
  padding: 0 5px;
}
.container-app .personalOrders .orders-table img {
  max-width: 100px;
  border-radius: 4px;
  margin-top: 10px;
  background-color: transparent;
}
.container-app .personalOrders .action-wrapper {
  margin: 15px auto;
}
.container-app .main-text {
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  position: relative;
  width: 100%;
}
.container-app .main-text span {
  display: block;
}
.container-app .main-text.single-card {
  margin-top: -26%;
  padding-bottom: 32px;
}
@media screen and (device-aspect-ratio: 0.56221889) {
  .container-app .main-text.single-card {
    margin-top: -22% !important;
  }
}
@media screen and (min-device-width: 414px) and (-webkit-device-pixel-ratio: 3) {
  .container-app .main-text.single-card {
    margin-top: -22% !important;
  }
}
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) {
  .container-app .main-text.single-card {
    margin-top: -35% !important;
  }
}
@media screen and (device-aspect-ratio: 0.56338028) {
  .container-app .main-text.single-card {
    margin-top: -120px !important;
  }
}
.container-app .main-text.right {
  text-align: right;
}
.container-app .main-text.padding p {
  padding: 0 24px;
}
.container-app .main-text p.navy-blue {
  color: #021652;
}
.container-app .main-text.navy-blue {
  color: #021652;
}
.container-app .main-text .details .description {
  font-size: 18px;
  text-align: right;
}
.container-app .main-text .details .number {
  font-size: 32px;
  font-weight: 400;
  direction: ltr;
}
.container-app .main-text .text-title {
  font-size: 32px;
  font-weight: 100;
  max-width: 300px;
  margin: 0 auto;
  font-family: "MAX-Medium";
  color: #000;
}
.container-app .main-text .text-title-single-card {
  font-size: 34px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  font-family: "MAX-Light";
  color: #021652;
  text-decoration: none;
  margin-top: 44px;
}
.container-app .main-text .text-title-single-card.company-title {
  /* margin-top: 25px;*/
  margin-top: 3em;
}
.container-app .main-text .text-title-phone {
  font-size: 32px;
  margin: 0 auto;
  letter-spacing: 0.05em;
  font-family: "MAX-Medium";
  color: #000;
}
.container-app .main-text .text-title-phone a[href^=tel] {
  color: inherit;
  text-decoration: inherit;
}
.container-app .main-text .text-second {
  font-size: 20px;
  font-weight: 100;
  margin: 0 auto;
  font-family: "MAX-Light";
  color: #000;
}
.container-app .main-text .text-card {
  font-size: 30px;
  font-weight: 400;
}
.container-app .main-text .text-not-activated-descr {
  font-size: 22px;
  font-weight: 400;
  padding-top: 15px;
  padding-top: 4vh;
  color: black;
}
.container-app .main-text .text-not-activated {
  font-size: 25px;
  font-weight: 400;
  color: black;
}
.container-app .main-text .text-description {
  font-size: 22px;
  font-family: "MAX-Light";
}
.container-app .main-text .text-balance-desc {
  font-size: 18px;
  font-family: "MAX-Light";
  color: #000;
}
.container-app .main-text .transfer-desc {
  font-size: 15px !important;
  font-weight: lighter !important;
  font-family: "MAX-Light";
}
.container-app .main-text .text-digital {
  font-size: 18px;
  font-family: 'Max-regular';
  direction: rtl;
  color: #000 !important;
}
.container-app .main-text .text-digital-descr {
  font-size: 18px;
  font-family: "MAX-regular";
  direction: rtl;
  color: #000 !important;
}
.container-app .main-text .text-digital-descr h3 {
  font-family: "MAX-Light";
  font-size: 16px;
}
.container-app .main-text .text-name {
  font-size: 55px;
  font-weight: 200;
}
.container-app .main-text .nis {
  display: inline-block;
  line-height: 0;
  margin: 0;
}
.container-app .main-text .text-date {
  display: inline-block;
}
.container-app .main-text .text-phone {
  font-size: 25px;
  font-weight: 400;
}
.container-app .main-text .text-notes {
  font-size: 18px;
  font-family: "MAX-Medium";
  margin-top: 20px;
  white-space: nowrap;
  color: #000;
}
@media (max-width: 360px) {
  .container-app .main-text .text-notes {
    font-size: 14px;
  }
}
.container-app .main-text .text-notes-transfer {
  font-size: 26px !important;
  font-family: "MAX-Light";
  font-weight: bold;
  color: #000;
}
.container-app .main-text .text-success-descr {
  font-size: 31px;
  line-height: 13px;
  font-family: "MAX-Light";
  padding-top: 16%;
  padding-top: 5vh;
  color: #000;
}
.container-app .main-text .text-success {
  font-family: "MAX-Light";
  font-size: 57px;
  line-height: 57px;
  color: #000;
}
.container-app .main-text .text-balance {
  font-size: 32px;
  font-family: "MAX-Medium";
  margin: 17px auto 0 auto;
  line-height: 0;
  color: #000;
}
@media (max-width: 360px) {
  .container-app .main-text .text-balance {
    margin-bottom: 27px;
  }
}
.container-app .main-text .text-balance-transfer {
  font-size: 58px;
}
.container-app .main-text .text-date-big {
  font-size: 80px;
  font-weight: 200;
  margin-top: 33px;
  margin-bottom: 38px;
  line-height: 0;
  color: #000;
}
@media (max-width: 360px) {
  .container-app .main-text .text-date-big {
    font-size: 67px;
    margin-top: 24px;
    margin-bottom: 26px;
    color: #000;
  }
}
.container-app .main-text .text-balance,
.container-app .main-text .text-balance-desc {
  display: block;
}
.container-app .form-text {
  width: 85%;
  text-align: center;
  margin: 0 auto;
}
.container-app .form-text p {
  font-size: 18px;
  color: #1a3e73;
}
.container-app #divActivationTel {
  margin-top: 40px;
  margin-bottom: 80px;
}
.container-app #divActivationTel .text-input-label {
  font-family: "MAX-Medium";
  font-size: 16px;
}
.container-app .margin20 {
  margin-top: 20px;
}
.container-app .margin30 {
  margin-top: 24px;
}
@media (max-width: 360px) {
  .container-app .margin30 {
    margin-top: 15px;
  }
}
.container-app .margin-30 {
  margin-top: -30px;
}
.container-app .margin45 {
  margin-top: 45px;
}
.container-app .margin60 {
  margin-top: 60px;
}
.container-app .marginL20 {
  margin-left: 20px;
}
.container-app .logo-company {
  width: 100%;
  background: #fff;
  padding: 10% 0 0;
}
.container-app .logo-company img {
  max-width: 130px;
}
.contact {
  padding-top: 25%;
}
.contact .main-text {
  margin-bottom: 30%;
}
.contact .main-image {
  margin-bottom: 10%;
}
.contact .main-image img {
  width: 30%;
}
.contact .icon-text {
  font-size: 20px !important;
}
.contact .icons-wrapper {
  padding-top: 6%;
}
.contact .icons-wrapper ul li a {
  text-decoration: none;
}
.contact .text-title {
  font-size: 30px !important;
}
.start {
  padding: 15% 6% 37% 6%;
}
.start #divConfirmCode .text-input-label {
  font-size: 16px;
  font-family: "MAX-Medium";
}
.start .white {
  margin-top: 80px;
}
.start .white #btnConfirmContinue {
  margin-top: 24px;
}
.white p {
  color: #021652;
  font-size: 16px;
}
.white p a {
  color: #0092d0;
  text-decoration: none;
}
.white p a#lnkUsageCondition {
  padding-right: 5px;
}
.digital-div-text {
  display: none;
}
.digital-div-text .blue-text {
  margin-top: 7%;
  margin-top: 4vh;
  color: #000;
  font-size: 22px;
  font-family: "MAX-Medium";
}
.digital-div-text .text-notes {
  margin-top: 3%;
  margin-top: 2vh;
  font-size: 16px;
  color: #000 !important;
}
.swiper-pagination.main-swiper-pagination {
  /*position: fixed;*/
  top: 63.5%;
  max-height: 12px;
  direction: ltr;
}
.download-giftcard-app {
  position: fixed;
  right: -9px;
  bottom: 50%;
  background-color: #021652;
  color: #fff;
  -moz-border-radius-topleft: 90px;
  -webkit-border-top-left-radius: 90px;
  border-top-left-radius: 90px;
  -moz-border-radius-bottomleft: 90px;
  -webkit-border-bottom-left-radius: 90px;
  border-bottom-left-radius: 90px;
  height: 87px;
  width: 110px;
  display: none;
  flex-flow: column;
  align-items: center;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-name: animatebottom;
  animation-duration: 1s;
}
@-webkit-keyframes animatebottom {
  from {
    right: -148px;
    opacity: 0;
  }
  to {
    right: -9px;
    opacity: 1;
  }
}
.download-giftcard-app .logo {
  display: block;
  font-size: 21px;
}
.download-giftcard-app .title {
  font-family: MAX-Regular;
  display: block;
  max-width: 71px;
  text-align: center;
  font-size: 18px;
  line-height: 17px;
  margin-top: 10px;
}
.download-giftcard-app .close {
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 100%;
  background-color: #67eed5;
  width: 21px;
  height: 21px;
  display: flex;
  justify-content: center;
  color: #021652;
  font-size: 22px;
  font-weight: 800;
  line-height: 15px;
}
.main-swiper-pagination.swiper-pagination-bullets {
  display: none !important;
}
#popupWait {
  background-color: transparent;
  width: 105px;
  height: 105px;
  top: 24%;
  left: 46%;
  position: fixed;
  display: none;
}
#popupWait .bClose {
  display: none;
}
#popupWait h2 {
  display: none !important;
}
.b-modal {
  background-color: #f2f4f7 !important;
}
.spinner-loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #67eed5 94%, #0000) top / 8px 8px no-repeat, conic-gradient(#0000 30%, #67eed5);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: s3 1s infinite linear;
  margin: 25px;
}
@keyframes s3 {
  100% {
    transform: rotate(1turn);
  }
}
.payment-div {
  margin-top: 9%;
  display: none;
  background: #ffffff;
  height: 0%;
  min-height: 57vh;
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
@media screen and (device-aspect-ratio: 0.56338028) {
  .payment-div {
    bottom: -20px !important;
    min-height: 50vh !important;
  }
}
.payment-div .barGray {
  position: fixed;
  bottom: 0;
  display: block;
  height: 55px;
  z-index: 99999;
  width: 100%;
}
.payment-div .barGray.footerDiv {
  color: #1a3e73;
  font-size: 19px;
}
.payment-div .margin40 {
  margin-top: 40px;
}
.payment-div progress {
  width: 100%;
  height: 2px;
  display: block;
  background-color: #67eed5;
  border-radius: 0;
  box-shadow: none;
}
.payment-div progress::-webkit-progress-bar {
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.payment-div progress::-webkit-progress-value {
  /* style rules */
}
.payment-div progress::-moz-progress-bar {
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}
.payment-div .codeShort-text {
  display: none;
}
.payment-div .main-text {
  /*margin-top: 50px;
        margin-top: 9vh;*/
  color: #123b6c;
  padding: 0px 40px;
  width: auto;
}
.payment-div .main-text .pull-left .description {
  text-align: left;
}
.payment-div .main-text .text-notes {
  font-size: 18px;
  white-space: normal;
}
.payment-div .main-text .text-notes.small {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 3vh;
}
.payment-div .main-text .text-notes.small.margin20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.payment-div .main-text .text-notes.full-number {
  font-size: 16px;
}
.payment-div .main-text .text-card {
  margin-top: 9px;
  margin-top: 2vh;
  display: block;
  font-size: 35px;
}
.payment-div .main-text .barcode img {
  max-width: 200px;
  display: block;
  clear: both;
  margin: 0 auto;
  text-align: center;
}
.payment-div .main-text #paymentCardId {
  direction: ltr;
  display: inline-block;
}
.payment-div .main-text .details {
  margin-top: 9px;
  margin-top: 2vh;
  display: block;
}
.payment-div .how-to-use-lnk {
  margin: 200px auto 0 auto;
  position: relative;
  bottom: 155px;
  display: block;
  height: 55px;
  z-index: 99999;
  width: 100%;
  padding: 0;
  color: #3030ed;
  display: none;
}
.payment-div .buttonDiv {
  text-align: center;
  position: relative;
  top: -16px;
  margin: 0 auto;
  z-index: 9999;
  height: 35px;
}
.payment-div .buttonDiv .button {
  width: 50%;
  display: inline-block;
  padding: 0 1%;
  min-width: 150px;
  white-space: nowrap;
  width: 38vw;
}
.payment-div .buttonDiv .button.active {
  background-color: #67eed5;
  color: #ffffff;
  z-index: 9999 !important;
}
.payment-div .buttonDiv .button.inactive {
  background-color: #ffffff;
  border: 1px #67eed5 solid;
  color: #67eed5;
  z-index: 1;
}
.payment-div .buttonDiv .button.code-btn {
  position: relative;
  z-index: 6;
  height: 35px !important;
  line-height: 37px !important;
}
.payment-div .buttonDiv .button.codeShort-btn {
  margin-right: -53px;
  position: relative;
  z-index: 2;
  height: 35px;
  margin-right: -37px;
  line-height: 37px !important;
}
.payment-div .buttonDiv .button.codeShort-btn label {
  margin-right: 4px;
}
.balance-text-div {
  width: 100%;
  margin: 15px 0;
  text-align: center;
  max-width: 167px;
}
.balance-text-div.resize .text-balance-desc,
.balance-text-div.resize .text-balance {
  font-size: 37px;
  font-weight: 300;
  font-family: "MAX-Light";
  line-height: 22px;
  line-height: 8vh;
  margin: 0 auto;
  text-align: center;
  width: auto;
  display: inline-block;
  float: right;
}
@media screen and (device-aspect-ratio: 0.56221889) {
  .balance-text-div.resize .text-balance-desc,
  .balance-text-div.resize .text-balance {
    line-height: 12vh;
  }
}
.balance-text-div.resize .text-balance {
  width: 75px;
}
.balance-text-div.resize .text-notes {
  display: none;
}
.switch {
  position: relative;
  top: -20px;
  margin: 0 auto;
  height: 35px;
  width: 92%;
  background: #fff;
  border-radius: 27px;
  border: 1px #67eed5 solid;
  z-index: 999999;
}
.switch.visibility-hidden {
  visibility: hidden;
}
.switch-label {
  position: relative;
  z-index: 2;
  float: left;
  width: 49%;
  line-height: 35px;
  font-size: 19px;
  color: #67eed5;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.switch-input {
  display: none;
}
.switch-input:checked + .switch-label {
  font-weight: 300;
  color: #fff;
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
}
.switch-input:checked + .switch-label-on ~ .switch-selection {
  left: 51%;
}
.switch-selection {
  left: 0px;
  display: block;
  position: absolute;
  z-index: 1;
  width: 50%;
  height: 35px;
  background: #67eed5;
  border-radius: 27px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.switch.switch-on .switch-selection {
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.switch-label.active {
  color: #021652;
}
.copyText {
  cursor: pointer;
  display: inline !important;
  margin-right: 10px;
}
.copyText img {
  width: 16px;
  height: 16px;
}
.error-wrapper {
  padding-top: 50px;
}
.error-wrapper.margin {
  padding-top: 100px;
}
.error-wrapper p {
  color: #021652;
}
.error-wrapper p.oops {
  font-size: 36px;
  line-height: 0;
  font-weight: bold;
}
.error-wrapper p.text {
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto;
}
.error-wrapper p.text20 {
  font-size: 18px;
  font-weight: bold;
  width: 294px;
  margin: 0 auto;
  margin-top: -10px;
}
.error-wrapper p.text28 {
  font-size: 28px;
  font-weight: bold;
  line-height: 0;
  margin: 32px 0;
}
.error-wrapper p.text24 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 0;
}
.error-wrapper p.red {
  font-size: 24px;
  font-weight: bold;
  color: #ff5050;
  text-align: center;
  line-height: 0;
}
.error-wrapper p.small {
  line-height: 0;
  padding: 0;
  margin: 0;
}
.error-wrapper p.bold {
  padding-top: 20px;
}
.error-wrapper p.margin {
  margin: 20px 0;
}
.error-wrapper p.margin-top {
  margin-top: 50px;
}
.error-wrapper .table {
  padding-top: 38px;
  margin: 0 auto;
  height: auto !important;
}
.error-wrapper .table table {
  width: 572px !important;
  height: auto !important;
}
.error-wrapper .table table th:first-child,
.error-wrapper .table table td:first-child {
  padding-right: 50px;
}
.error-wrapper .button {
  margin: 0 auto;
  margin-top: 32px;
}
.error-wrapper .button.margin {
  margin-top: 52px;
}
.error-wrapper .button.margin-left {
  margin-left: 20px;
}
.tabs {
  margin: 0 auto;
  width: 100%;
  padding-top: 10vh;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: none;
  height: 39vh !important;
}
@media (max-width: 375px) {
  .tabs {
    height: 26vh !important;
  }
}
@media (max-width: 320px) {
  .tabs {
    height: 15vh !important;
  }
}
.tabs .form-home-div {
  margin-top: -120px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.tabs .form-home-div .button.expired {
  display: none;
}
.tabs .form-home-div .button.payment {
  display: none;
}
.tabs .form-home-div .button.activation {
  display: none;
}
.tabs .form-home-div .button.digitalization {
  display: none;
}
.tabs .form-home-div .button.cancel-transfer {
  display: none;
}
.tabs ul {
  list-style-type: none;
  margin: 0 auto;
  text-align: center;
  padding: 9px 0 0 0;
  display: flex;
  justify-content: center;
  grid-column-gap: 60px;
  box-shadow: 2px 0 16px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  position: fixed;
  right: 0;
  width: 100%;
  bottom: 0;
}
.tabs ul li {
  display: flex;
  font-size: 12px;
  margin-bottom: 20px;
  font-family: "MAX-medium";
  align-items: center;
  flex-flow: column;
  color: #000;
  white-space: nowrap;
}
.tabs ul li .aqua-circle {
  display: block;
  background-color: #2ff2d9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  margin-bottom: 3px;
}
.tabs ul li a {
  text-decoration: none;
  color: #021652;
}
.tabs ul li:before {
  padding-bottom: 6px;
  display: block;
  content: "";
  text-align: center;
}
.tabs ul li .friend {
  /*  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
                background-color: #ffffff;
                position: relative;
                overflow: hidden;*/
  width: 26px;
  height: 23px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/gift.svg') no-repeat 0 4px;
  background-size: 18px;
  transform: translate(4px, 8px);
}
.tabs ul li .friend .new {
  background: url('/App_Themes/VirtualGiftCardMobile/images/new.svg') no-repeat;
  width: 47px;
  height: 44px;
  display: block;
  position: absolute;
  top: -12px;
  left: -9px;
}
.tabs ul li .charge-gift-card {
  /*  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
                background-color: #ffffff;
                position: relative;
                overflow: hidden;*/
  width: 30px;
  height: 27px;
  display: inline-block;
  background: url(/App_Themes/VirtualGiftCardMobile/images/charge-icon.svg) no-repeat 0 4px;
  background-size: 23px;
  transform: translate(3px, 4px);
}
.tabs ul li .companies {
  width: 23px;
  height: 28px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/home.svg') no-repeat;
  background-size: 18px;
  transform: translate(2px, 8px);
}
.tabs ul li .transactions {
  width: 30px;
  height: 25px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/transaction.svg') no-repeat;
  background-size: 23px;
  transform: translate(2px, 8px);
}
.message-box-bg {
  width: 100%;
  padding: 60px 0 8% 0;
  margin: 0 auto;
  text-align: center;
  margin-top: -21px;
}
.message-box-bg .text-name {
  line-height: 45px;
}
.message-box-bg .main-text {
  display: none;
  margin-top: 12px;
  height: 140px;
  height: 23vh;
  /*@media screen and (device-aspect-ratio: 40/71) {
            margin-top: -10px !important;
        }*/
}
.message-box-bg .main-text.resize {
  height: auto;
}
@media (max-width: 360px) {
  .message-box-bg .main-text {
    height: 16vh;
    /*margin-top: 16px;*/
  }
}
@media screen and (device-aspect-ratio: 0.56338028) {
  .message-box-bg .main-text .text-balance-desc {
    margin-top: -5px !important;
  }
}
.message-box-bg .swiper-container {
  padding-top: 20px;
  width: 100%;
  direction: ltr;
  margin-top: 50px;
}
@media (max-width: 360px) {
  .message-box-bg .swiper-container {
    padding-bottom: 10%;
    padding-bottom: 8vh;
  }
}
.message-box-bg .swiper-container.resize {
  padding-bottom: 0%;
  height: 220px;
  height: 34vh;
}
.message-box-bg .swiper-container.resize .text {
  top: 82%;
}
.message-box-bg .swiper-slide {
  width: 65% !important;
}
.message-box-bg .swiper-slide:nth-child(2n) {
  width: 65% !important;
}
.message-box-bg .swiper-slide:nth-child(3n) {
  width: 65% !important;
}
.message-box-bg .swiper-slide-active {
  /*margin-top: -28px;*/
  -moz-transition: margin-top 0.3s ease-in-out;
  -o-transition: margin-top 0.3s ease-in-out;
  -webkit-transition: margin-top 0.3s ease-in-out;
  transition: margin-top 0.3s ease-in-out;
}
.message-box-bg .swiper-slide-active .message-box {
  height: 136px;
}
.message-box-bg .swiper-slide-active .message-box.sender-box .senderName {
  /* width: calc(~"100% - 83px");*/
  text-overflow: ellipsis;
  overflow: hidden;
  height: 25px;
  white-space: nowrap;
  direction: rtl;
  display: inline-block;
  color: #ffffff;
  margin-top: 10px;
}
@media screen and (device-aspect-ratio: 0.56338028) {
  .message-box-bg .swiper-slide-active .message-box.sender-box .senderName {
    margin-top: -3px !important;
  }
}
.message-box-bg .swiper-slide-active .message-box img {
  /*width: 122%;
                max-width: 308px;
                margin-top: 10px;*/
  -moz-transform: scale(1.22, 1.22);
  -ms-transform: scale(1.22, 1.22);
  -o-transform: scale(1.22, 1.22);
  -webkit-transform: scale(1.22, 1.22);
  transform: scale(1.22, 1.22);
}
.message-box-bg .swiper-slide-active .message-box .text {
  visibility: visible;
}
.message-box-bg .swiper-slide-active .message-box.gray:before {
  display: block;
}
.message-box-bg .swiper-slide-active.single-card {
  margin-top: -28px;
}
.message-box-bg .swiper-slide-active.single-card .message-box {
  padding-bottom: 0;
  height: 130px;
  height: 22vh;
}
.message-box-bg .swiper-slide-active.single-card .message-box img {
  margin: 0 auto;
  margin-top: 0;
  margin-top: 3vh;
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.message-box-bg .swiper-slide-active.single-card .message-box .text {
  font-size: 14px;
  top: 88%;
}
.message-box-bg .swiper-slide-active.single-card .message-box.gray .text-header {
  font-size: 26px;
  padding-top: 24px;
}
.message-box-bg .swiper-slide-active.single-card .message-box.gray .text {
  /* font-size: 19px;*/
  font-size: 53%;
  width: 80%;
}
.message-box-bg .swiper-slide-active.single-card .message-box.gray:before {
  display: none;
}
.message-box-bg .swiper-slide-active.single-card .main-text {
  margin-top: 24px;
}
.message-box-bg .swiper-slide-prev .message-box.gray:before,
.message-box-bg .swiper-slide-next .message-box.gray:before {
  visibility: hidden;
}
.message-box-bg .swiper-slide-prev .message-box .text,
.message-box-bg .swiper-slide-next .message-box .text {
  visibility: hidden;
}
.message-box-bg .swiper-slide-next .message-box img {
  margin-left: -36px;
}
.message-box-bg .swiper-slide-prev .message-box img {
  margin-left: 18px;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: transparent !important;
  opacity: 1 !important;
  border: 1px #021652 solid !important;
}
.swiper-pagination-bullet-active {
  background: #021652 !important;
}
.swiper-pagination.disabled {
  display: none;
}
.digital-box img {
  width: auto;
}
.message-box {
  height: auto;
  width: 100%;
  max-width: 308px;
  color: #ffffff;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
.message-box img {
  /*margin-left: -26px;*/
  width: 100%;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.message-box .card-img {
  max-width: 175px;
  border-radius: 4px;
  margin-top: 10px;
  background-color: transparent;
  width: 142.5px;
  height: 90.5px;
}
.message-box.disabled {
  max-width: 180px;
  margin-top: 0;
}
.message-box.noslide {
  width: 121px;
}
.message-box span {
  display: block;
}
.message-box span.logo {
  /*background-image: url('/img/logo.png');
            background-size: 100% auto;
            background-position: 0 44px;
            max-width: 135px;
            height: 100px;
            background-repeat: no-repeat;
            text-align: center;
            margin: 0 auto;*/
}
.message-box span.logo.noslide {
  width: 121px;
}
.message-box span.text {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  /*padding-top: 48%;*/
  position: absolute;
  top: 55%;
  /*top: 12vh;*/
  text-align: center;
  left: 10%;
  right: 10%;
}
.message-box span.text.noslide {
  text-shadow: #0f3c6f 0px 0px 0px;
}
.message-box.gray {
  color: #464646;
}
.message-box.gray:before {
  content: "";
  background-image: url('/img/lock.png');
  width: 72px;
  height: 72px;
  background-position: right bottom;
  background-size: 100%;
  background-repeat: no-repeat;
  display: none;
  position: absolute;
  bottom: -10px;
  right: -4vw;
  z-index: 1;
}
@media (max-width: 360px) {
  .message-box.gray:before {
    bottom: 18px;
  }
}
.message-box.gray .text-header {
  font-size: 33px;
  padding-top: 44px;
}
.message-box.gray .text {
  font-size: 19px;
  font-weight: 300;
  color: #000000;
}
.icons-wrapper {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}
.icons-wrapper ul {
  padding: 0;
  margin: 0 auto;
  text-align: center;
}
.icons-wrapper li {
  display: inline-block;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  padding-right: 30px;
}
.icons-wrapper li:first-child {
  padding-right: 0;
}
.icon-box {
  padding: 0;
  cursor: pointer;
}
.icon-box.position {
  position: absolute;
  top: 27px;
  left: 40px;
}
.icon-box .icons {
  height: 40px;
  width: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 0px 5px 16px 0px #000000;
  display: block;
  margin: 0 auto;
  text-align: center;
}
.icon-box .icons:before {
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: 12px;
  display: block;
}
.icon-box .icons.icon-plus:before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -470px no-repeat;
}
.icon-box .icons.gray {
  height: 50px;
  width: 50px;
  background-color: #e0e0df;
  border-radius: 80px;
  box-shadow: 0px 0 0 0px #ffffff;
}
.icon-box .icons.gray:before {
  top: 16px;
  left: 6px;
}
.icon-box .icons.icon-mail:before {
  content: "";
  width: 38px;
  height: 27px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mail.png') no-repeat;
  background-size: 25px;
}
.icon-box .icons.icon-phone:before {
  content: "";
  width: 35px;
  height: 30px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/phone.png') no-repeat;
  background-size: 25px;
}
.icon-box .icons.icon-man:before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -575px no-repeat;
  top: 8px;
}
.icon-box .icons.icon-help:before {
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -605px no-repeat;
  top: 13px;
}
.icon-box .icon-text {
  font-size: 29px;
  color: #1a4271;
  text-align: center;
  line-height: 35px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}
.icon-box .icon-text-small {
  font-size: 16px;
  color: #191b4b;
  text-align: center;
  line-height: 14px;
  display: block;
  margin-top: 10px;
  width: 87px;
  font-weight: bold;
  cursor: pointer;
}
.card-list {
  display: none;
  background: #ffffff;
  height: 320px;
  height: 45vh;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.card-list #cardTxHistoryUl {
  height: 400px;
  overflow: scroll;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 360px) {
  .card-list {
    height: 55vh;
  }
}
.card-list .nis {
  margin-right: 5px;
}
.card-list .barGray {
  position: absolute;
  bottom: 0;
}
@media (max-width: 360px) {
  .card-list .barGray {
    position: relative;
  }
}
.card-list .barGray .company {
  float: right;
  padding-right: 15px;
  padding-right: 4vh;
  font-weight: bold;
  font-size: 22px;
}
.card-list .barGray .card-sum {
  padding-left: 15px;
  padding-left: 4vh;
  float: left;
  font-weight: bold;
}
@media (min-width: 787px) {
  .message-box-bg.ConvertCardheader {
    padding: 1% 0 8% 0;
  }
}
.card-convert {
  display: none;
  background: #ffffff;
  height: 320px;
  height: 55vh;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 23;
}
.card-convert .headerConvertCard {
  display: none;
}
.card-convert .logo-left {
  position: relative;
}
.card-convert .giftCardImage {
  display: block;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 100%;
  position: absolute;
  top: 0;
  cursor: pointer;
  opacity: 0;
}
@media (max-width: 787px) {
  .card-convert.upmeMobile {
    height: 94vh;
  }
  .card-convert.upmeMobile .headerConvertCard {
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    top: -67px;
    font-size: 24px;
  }
}
.card-convert #convertCardCardNumberWarp {
  margin-top: 5rem;
}
.card-convert #convertCardCardNumber {
  direction: ltr;
}
.card-convert #convertCardExp {
  direction: ltr;
}
.card-convert .text-input .text-input-field {
  font-size: 25px;
}
.card-convert .text-center {
  text-align: center;
}
.card-convert .float-btn {
  position: absolute;
  bottom: 95%;
  right: 5%;
  background-color: #021652;
  color: #fff;
  border-radius: 62%;
  -moz-border-radius-topleft: 90px;
  -moz-border-radius-bottomleft: 90px;
  height: 35px;
  width: 35px;
  flex-flow: column;
  align-items: center;
  z-index: 3;
}
.card-convert .float-btn .text {
  color: #021652;
  display: block;
  width: 64px;
  margin-top: 5px;
}
.card-convert .float-btn .logo {
  display: block;
  font-size: 27px;
  color: #67eed5;
}
.card-convert .float-btn-left {
  position: absolute;
  bottom: 95%;
  right: 80%;
  background-color: #021652;
  color: #fff;
  border-radius: 62%;
  -moz-border-radius-topleft: 90px;
  -moz-border-radius-bottomleft: 90px;
  height: 47px;
  width: 47px;
  flex-flow: column;
  align-items: center;
  z-index: 3;
}
.card-convert .float-btn-left .text {
  color: #021652;
}
.card-convert .float-btn-left .logo {
  display: block;
  font-size: 39px;
  color: #67eed5;
}
.card-convert .float-btn-left img {
  height: 50px;
}
.card-convert .btnVgcActivate {
  margin-top: 10vh;
}
.card-convert .btnVgcActivate.error {
  background-color: red !important;
  color: white !important;
  border: 1px #ff000063 solid;
}
.card-convert .p-100 {
  width: 84%;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  grid-column-gap: 50px;
}
@media (min-width: 787px) {
  .card-convert .p-100 {
    margin-right: auto;
  }
}
.card-convert .p-5 {
  display: inline-flex;
  flex: 0 0 auto;
  width: 50%;
}
.card-convert .divConvertCardBalance {
  margin-top: 20px;
}
.single-card-header .headerConvertCard {
  display: none;
}
@media (max-width: 787px) {
  .single-card-header.listCard .headerConvertCard {
    position: absolute;
    display: block;
    right: 3rem;
    left: 3rem;
    top: -12px;
    font-size: 24px;
  }
}
.list-card-convert {
  display: none;
  background: #ffffff;
  height: 320px;
  height: 94vh;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  z-index: 99;
  width: 100%;
  overflow-y: scroll;
}
@media (min-width: 787px) {
  .list-card-convert {
    height: 93vh;
  }
}
.list-card-convert .headerConvertCard {
  display: none;
}
@media (max-width: 787px) {
  .list-card-convert .headerConvertCard {
    position: fixed;
    display: block;
    right: 3rem;
    left: 3rem;
    top: -12px;
    font-size: 24px;
  }
}
.list-card-convert .list-card-convert-p100 {
  width: 100%;
  display: flex;
  margin-top: 2rem;
}
.list-card-convert .list-card-convert-p50img {
  display: inline-flex;
  flex: 0 0 auto;
  width: 24%;
  margin: 0px 1rem;
  align-items: start;
  justify-content: flex-start;
}
@media (max-width: 787px) {
  .list-card-convert .list-card-convert-p50img {
    width: 21%;
  }
}
.list-card-convert .list-card-convert-p50img img {
  width: 6rem;
  flex: 0 0 auto;
  display: inline-flex;
}
@media (min-width: 787px) {
  .list-card-convert .list-card-convert-p50img img {
    width: 12rem;
  }
}
.list-card-convert .list-card-convert-p50span {
  display: inline-flex;
  flex: 0 0 auto;
  width: 50%;
  margin: 0px 1rem;
  align-items: start;
  justify-content: flex-start;
}
.list-card-convert .list-card-convert-p50span span {
  display: inline-flex;
  flex: 1 1 auto;
  margin: auto;
  width: 50%;
  text-align: start;
  position: relative;
  font-size: 1.6rem;
}
@media (min-width: 787px) {
  .list-card-convert .list-card-convert-p50span span {
    font-size: 1.8rem;
  }
}
#headerConvert span {
  display: block;
}
#headerConvert .textDigital {
  font-size: 32px;
  font-weight: 400;
  direction: rtl;
}
#headerConvert .textDigitalDescr {
  font-size: 25px;
  line-height: 25px;
  padding-top: 16px;
  font-family: "MAX-Light";
  direction: rtl;
  font-weight: bold;
}
.cards ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cards ul li {
  display: block;
  text-align: right;
  border-bottom: 1px solid #e0e0df;
  clear: both;
  width: 100%;
  position: relative;
}
.cards ul li .card-box {
  display: block;
  padding: 8px 50px 8px 0;
}
.cards ul li .card-img {
  margin-left: 10px;
  display: inline-block;
  float: right;
}
.cards ul li .card-img img {
  width: 80%;
  height: auto;
  min-height: 57px;
}
.cards ul li .card-text {
  font-size: 23px;
  line-height: 64px;
  display: inline-block;
}
.cards ul li .date {
  display: block;
  line-height: 0;
  font-size: 16px;
  margin-top: 15px;
}
.cards ul li .company {
  line-height: 39px;
  font-size: 23px;
}
.cards ul li .company .company-name {
  width: 63%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
}
.cards ul li .card-sum {
  float: left;
  text-align: left;
  padding-left: 30px;
  line-height: 30px;
  font-size: 23px;
  direction: ltr;
}
.swiper-pagination-bullets {
  bottom: 20px !important;
}
@media screen and (device-aspect-ratio: 0.56338028) {
  .swiper-pagination-bullets {
    margin-bottom: -15px !important;
  }
}
.error-code {
  border-bottom: 1px solid #F71B1B !important;
}
.company-img {
  margin-bottom: 2%;
  margin-left: 15px;
  margin-right: 15px;
  vertical-align: middle;
}
.code-label {
  top: -22px !important;
}
.text-no-transctions {
  font-size: 35px;
  font-weight: 400;
  padding-top: 15px;
  padding-top: 22vh;
}
@media (max-width: 360px) {
  .regulations .condition-btn {
    margin-right: 89px !important;
  }
}
.img-gc {
  height: 90px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 100%;
  z-index: 9999;
}
.barGray {
  background: #E6E7E8;
  margin: 0 auto;
  width: 100%;
  height: 50px;
  font-size: 23px;
  color: #021652;
  text-align: center;
  line-height: 36px;
  font-weight: 400;
}
.notes {
  font-size: 1.2em;
  color: #021652;
  opacity: 0.5;
  line-height: 25px;
  height: 50px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 30px;
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
}
.remodal {
  background: #ffffff;
  border-radius: 20px;
}
.remodal.modal-download {
  width: 85%;
}
.remodal .modal-header .remodal-close::before {
  color: #021652;
  font-size: 32px;
}
.remodal .modal-body p {
  font-size: 22px;
  color: #123b6c;
}
.remodal .modal-body .button {
  margin-top: 35px;
}
.app-logo img {
  width: 18%;
  height: auto;
}
.close-modal {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
}
.close-modal:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -631px no-repeat;
}
/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
body.resize {
  min-height: 340px;
}
.landing-page.resize {
  background: #ffffff;
}
.landing-page .btnVgcActivate {
  display: none;
}
.landing-page .img-gc {
  height: 66px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.landing-page #card {
  max-width: 750px;
  margin: 0 auto;
}
.landing-page .gift-card {
  display: block;
  margin: 0 auto;
  text-align: center;
  height: 90vh !important;
  max-height: 90vh !important;
  overflow: hidden;
  /*background: red;*/
}
.landing-page .gift-card img {
  width: 100%;
  height: auto;
  /*margin-top: -7vh;*/
}
.landing-page .message-box {
  display: none;
  /*width: 58vw;
        padding-bottom: 0;
        height: 22vh;*/
  /*span {
            &.logo {
                background-position: 0px 30px;
                height: 81px;
            }
        }*/
}
.landing-page .message-box.no-slide img {
  margin: 0 auto;
  max-width: 200px;
  border-radius: 4px;
  margin-top: 10px;
  background-color: transparent;
}
.landing-page .message-box.no-slide .text {
  top: 59%;
}
.landing-page .message-box .cardText {
  width: 185px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  padding-right: 30px;
}
.landing-page .back {
  padding-top: 50px;
  width: 58vw;
  position: relative;
}
.landing-page .logo-resize {
  display: none;
  padding: 2% 0;
  background: #0d2c85;
  /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #0d2c85 42%, #06154e 100%);
  /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #0d2c85 42%, #06154e 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #0d2c85 42%, #06154e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0d2c85', endColorstr='#06154e', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  height: 60px;
}
.landing-page .logo-resize p {
  color: white;
  font-size: 24px;
  line-height: 29px;
  margin: 15px auto;
  padding: 0;
}
.landing-page .logo-resize .close-w {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
}
.landing-page .logo-resize .close-w:before {
  content: '';
  width: 25px;
  height: 25px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/x.png') no-repeat;
  background-size: 18px;
}
.landing-page .main-text,
.landing-page .form {
  display: none;
}
.landing-page .main-text .nis,
.landing-page .form .nis {
  display: inline-block;
}
.landing-page .main-text {
  /*padding-top: 10px;*/
  margin-bottom: 12px;
}
.custom-greeting-link-div {
  padding-bottom: 15px;
}
.custom-greeting-link-div .custom-greeting-link {
  color: #479BA2;
  font-size: 20px;
}
.button-wrapper {
  display: flex;
  flex-flow: column;
}
.button-wrapper.reverse {
  flex-flow: column-reverse;
}
.button-wrapper .button {
  font-size: 22px;
}
.button-wrapper .link-redirect {
  font-size: 16px;
  margin-top: 7px;
  color: #021652;
  line-height: 29px;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.regulations-tab {
  display: none;
  position: fixed;
  bottom: 0;
  height: 30px;
  z-index: 99999;
  width: 100%;
}
.regulations-tab a {
  text-decoration: none;
}
.company-list {
  display: none;
  background: #ffffff;
  /* Old browsers */
  height: 10%;
  height: 94vh;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.company-list.resize {
  height: 83%;
  height: 93vh;
}
.company-list header {
  position: fixed;
  top: 0;
  z-index: 9999;
}
.company-list .title-slide {
  background: url(/App_Themes/VirtualGiftCardMobile/images/background_gray.jpg) no-repeat;
  position: relative;
  height: 45px;
  line-height: 35px;
  margin-top: 0;
  color: #021652;
  font-size: 27px;
  font-family: "MAX-Light";
  text-align: center;
  z-index: 1;
}
.company-list .title-slide span {
  left: auto;
  position: relative;
}
.company-list .title-slide span:after {
  content: "";
  /* border-bottom: 2px #4BCEA1 solid; */
  background: #021652;
  height: 2px;
  width: 100%;
  max-width: 150px;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 8px;
}
.company-list .logos {
  margin-top: 5vh;
  text-align: center;
  height: 483px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.company-list .logos img {
  border-style: none;
  max-width: 140px;
  text-align: center;
}
.company-list .logos.double img {
  max-width: 255px;
}
.company-list .swiper-container {
  direction: ltr;
  margin-bottom: 55px;
}
.company-list .swiper-slide .title-slide span {
  left: auto;
  position: relative;
  z-index: 1;
}
.company-list .swiper-slide.swiper-slide-next {
  position: relative;
  z-index: 3;
}
.company-list .swiper-slide.swiper-slide-next .title-slide span {
  left: -8%;
  opacity: 0.5;
  position: absolute;
}
.company-list .swiper-slide.swiper-slide-next .title-slide span:after {
  display: none;
}
.company-list .swiper-slide.swiper-slide-prev {
  position: relative;
  z-index: 3;
}
.company-list .swiper-slide.swiper-slide-prev .title-slide span {
  right: -14%;
  opacity: 0.5;
  position: absolute;
}
.company-list .swiper-slide.swiper-slide-prev .title-slide span:after {
  display: none;
}
.company-list .swiper-slide .swiper-slide-active {
  position: relative;
  z-index: 1;
}
.company-list .swiper-slide .swiper-slide-active .title-slide span {
  left: auto;
  opacity: 1;
  position: absolute;
  z-index: 1;
}
.regulations {
  display: none;
  background: #ffffff !important;
  height: 100%;
  height: 116vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}
.regulations header {
  position: fixed;
  top: 0;
  z-index: 8;
}
.regulations footer {
  position: fixed;
  top: 0;
  z-index: 2;
}
.regulations .buttonDiv {
  display: none;
  text-align: center;
  position: fixed;
  top: 50px;
  width: 100%;
  margin: 0 auto;
  height: 80px;
  height: 13vh;
  z-index: 9999;
  padding-top: 20px;
  margin-left: -34px;
  background: -moz-linear-gradient(top, #ffffff 51%, #ffffff 65%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, #ffffff 51%, #ffffff 65%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, #ffffff 51%, #ffffff 65%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#00ffffff', GradientType=0);
}
.regulations .button {
  font-size: 22px;
}
.regulations .regul-btn {
  max-width: 220px;
 /* max-width: 33vw;*/
  padding: 0;
  position: relative;
  z-index: 2;
  height: 47px;
  line-height: 47px;
}
.regulations .condition-btn {
  max-width: 220px;
  /*max-width: 45vw;
  margin-right: 99px;*/
  height: 45px;
  line-height: 45px;
  padding-right: 1px;
  padding-left: 0;
}
.regulations .main-text {
  padding-top: 120px;
  padding-top: 21vh;
  background: #ffffff;
  overflow-y: auto !important;
  height: 100%;
  height: 100vh;
  margin-bottom: 30px;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 19px;
}
.transfer * {
  box-sizing: border-box;
}
.transfer .top-main {
  min-height: 40vh;
  padding-bottom: 10px;
}
.transfer .top-main .close-w {
  z-index: 9999;
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
}
.transfer .top-main .close-w:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -631px no-repeat;
}
.transfer .top-main h1 {
  font-family: "MAX-Bold";
  font-size: 28px;
}
.transfer .top-main .sub-title {
  font-family: "MAX-Regular";
  font-size: 20px;
  margin-top: 20px;
  display: block;
  padding: 10px;
}
.transfer .top-main .sub-title.page-2 {
  padding: 10px 50px;
}
.transfer .top-main .message-box-friend {
  margin: 0 auto;
  padding-top: 50px;
  color: black;
  height: auto;
  width: 100%;
  max-width: 308px;
  text-align: center;
  position: relative;
}
.transfer .top-main .message-box-friend .card-info {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.transfer .top-main .message-box-friend .card-info .card-img {
  display: block;
  width: 74px;
  height: 46px;
  border-radius: 4px;
}
.transfer .top-main .message-box-friend .card-info .info {
  line-height: 20px;
  margin: 6px 10px 0 0;
  text-align: right;
}
.transfer .top-main .message-box-friend .card-info .info span {
  display: block;
  font-size: 16px;
}
.transfer .top-main .message-box-friend .card-info .info span.amount {
  font-family: "MAX-Medium";
  font-size: 30px;
}
.transfer .top-main .message-box-friend .card-info.success {
  flex-flow: column;
  align-items: center;
}
.transfer .top-main .message-box-friend .card-info.success .card-img {
  width: 96px;
  height: 60px;
}
.transfer .top-main .message-box-friend .card-info.success .info {
  text-align: center;
  margin: 0;
}
.transfer .top-main .message-box-friend .card-info.success .info span {
  margin-top: 6px;
}
.transfer .top-main .title-page {
  position: relative;
  font-size: 42px;
  letter-spacing: 0.05em;
  font-family: "MAX-Light";
  font-weight: normal;
  color: #021652;
}
.transfer .content-main {
  background: #ffffff;
  width: 100%;
  min-height: 60vh;
  padding: 35px 0 0;
  transition: all 0.8s ease;
  position: relative;
  /*.select-contact {
            top: -20px;
            right: 10px;
            width: 65px;
            z-index: 10;
            text-align: center;
            position: absolute;

            .icon-man {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: inline-block;
                box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.3);
                background: url(../../img/mysprite.sprite.png) 0px -565px no-repeat;
                background-color: #ffffff;
            }

            .text {
                font-size: 14px;
                color: #191b4b;
                font-weight: bold;
                line-height: 1em;
                display: inline-block;
            }
        }*/
}
.transfer .content-main .header-resize {
  width: 100%;
  display: none;
  margin: 0 auto;
  min-height: 50px;
  position: relative;
  background: #021652;
}
.transfer .content-main .header-resize h1 {
  font-size: 25px;
  background: url(/App_Themes/VirtualGiftCardMobile/images/background_gray.jpg) no-repeat;
  text-align: center;
  line-height: 50px;
  font-weight: 400;
}
.transfer .content-main .header-resize .close-w {
  left: 10px;
  top: 12px;
  position: absolute;
}
.transfer .content-main .header-resize .close-w:before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url('/App_Themes/VirtualGiftCardMobile/images/mysprite.sprite.png') -10px -631px no-repeat;
}
.transfer .content-main .error-message-top-wrap {
  color: red;
  height: 18px;
  display: block;
}
.transfer .content-main .message-to {
  font-size: 20px;
  margin-top: 30px;
  padding-bottom: 10px;
}
.transfer .content-main .message-to .title {
  font-family: "MAX-Bold";
  font-size: 28px;
  color: #000000;
}
.transfer .content-main .message-to a {
  color: inherit !important;
  text-decoration: none !important;
}
.transfer .content-main .message-to #lblDetails {
  text-decoration: none;
  color: #05144D !important;
  font-family: "MAX-Bold";
}
.transfer .content-main .message-to .margin-message {
  display: block;
  font-size: 24px;
}
.transfer .content-main .message-to #lblDetails2 {
  font-size: 33px;
  color: darkgrey;
  text-decoration: none;
}
.transfer .content-main .message-to .success-message {
  margin-top: 20px;
  color: #44454c;
  font-size: 20px;
}
.transfer .content-main .message-to .success-message .line {
  font-size: 20px;
  display: block;
  color: #44454c;
  line-height: 1.3;
}
.transfer .content-main .message-to .error-message {
  margin-top: 20px;
  color: #44454c;
  font-size: 20px;
  padding: 20px;
}
.transfer .content-main .new-amount-wrap {
  margin-top: 70px;
}
.transfer .content-main .new-amount-wrap .new-amount {
  font-size: 28px;
  color: black;
  font-family: "MAX-Medium";
  display: block;
}
.transfer .content-main .new-amount-wrap .new-amount-desc {
  font-size: 16px;
  color: #44454c;
  font-family: "MAX-Regular";
}
.transfer .content-main .text-input #txbTel {
  direction: ltr;
}
.transfer .content-main .text-input #txbAmount {
  direction: ltr;
}
.transfer .content-main .text-input .text-input-field {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}
.transfer .content-main .input-textarea {
  position: relative;
}
.transfer .content-main .input-textarea #txbMessage {
  text-align: center;
  height: 110px;
}
.transfer .content-main .input-textarea textarea {
  width: 100%;
  height: 180px;
  border: 0;
  outline: 0;
  resize: none;
  box-sizing: border-box;
  background-attachment: local;
  font-size: 26px;
  line-height: 29px;
  font-family: "MAX-Regular";
  color: #05144D;
  border-bottom: 1px solid #c5c4d0;
}
.transfer .content-main .input-textarea textarea::-webkit-input-placeholder {
  font-size: 17px;
  color: #889DB5;
}
.transfer .content-main .input-textarea textarea::-moz-placeholder {
  font-size: 17px;
  color: #889DB5;
}
.transfer .content-main .input-textarea textarea:-ms-input-placeholder {
  font-size: 17px;
  color: #889DB5;
}
.transfer .content-main .input-textarea textarea:-moz-placeholder {
  font-size: 17px;
  color: #889DB5;
}
.transfer .content-main .input-textarea textarea:focus {
  border-bottom: 1px solid #05144D;
}
.transfer .content-main .input-textarea .total-letters {
  color: #05144D;
  font-size: 14px;
  text-align: left;
  display: block;
}
.transfer .content-main .notice {
  text-align: right;
  font-size: 13px;
  color: #6c757d;
  padding: 0px 15px;
}
.transfer .content-main .notice p {
  font-family: "MAX-Bold";
  margin-bottom: 4px;
}
.transfer .content-main .notice .notice-amount {
  display: block;
}
.transfer .content-main .button {
  outline: none;
  margin-top: 50px;
  font-family: "MAX-Regular";
}
.transfer .content-main .link-prev {
  display: block;
  text-decoration: none;
  font-size: 20px;
  margin-top: 15px;
  color: #479ba2;
  font-family: "MAX-Medium";
}
.transfer.resize {
  background: #ffffff;
}
.transfer.resize .header-resize {
  display: block;
}
.transfer.resize .top-main {
  display: none;
}
.transfer.resize .content-main {
  padding: 0;
}
.transfer.resize .content-main .select-contact {
  display: none;
}
.transfer-greeting * {
  box-sizing: border-box;
}
.transfer-greeting .content-main .message-to {
  font-size: 20px;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #c5c4d0;
}
.transfer-greeting .content-main .input-textarea textarea {
  width: 100%;
  height: 180px;
  border: 0;
  outline: 0;
  resize: none;
  box-sizing: border-box;
  background-attachment: local;
  font-size: 26px;
  line-height: 29px;
  font-family: "MAX-Regular";
  color: #05144D;
  border-bottom: 1px solid #c5c4d0;
}
.transfer-greeting .content-main .input-textarea textarea::-webkit-input-placeholder {
  font-size: 20px;
  color: #889DB5;
}
.transfer-greeting .content-main .input-textarea textarea::-moz-placeholder {
  font-size: 20px;
  color: #889DB5;
}
.transfer-greeting .content-main .input-textarea textarea:-ms-input-placeholder {
  font-size: 20px;
  color: #889DB5;
}
.transfer-greeting .content-main .input-textarea textarea:-moz-placeholder {
  font-size: 20px;
  color: #889DB5;
}
.transfer-greeting .content-main .input-textarea textarea:focus {
  border-bottom: 1px solid #05144D;
}
.transfer-greeting .content-main .input-textarea .total-letters {
  color: #05144D;
  font-size: 14px;
  text-align: left;
  display: block;
}
.transfer-greeting .content-main .button {
  outline: none;
  margin-top: 20px;
  border: 1px #4BCEA1 solid;
  font-family: "MAX-Regular";
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .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(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .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.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
Contact GitHub API Training Shop Blog About
© 2017 GitHub, Inc. Terms Privacy Security Status Help
