/*!
Video.js Default Styles (http://videojs.com)
Version 4.12.7
Create your own skin at http://designer.videojs.com
*/
/* SKIN
================================================================================
The main class name for all skin-specific styles. To make your own skin,
replace all occurrences of 'vjs-default-skin' with a new name. Then add your new
skin name to your video tag instead of the default skin.
e.g. <video class="video-js my-skin-name">
*/
.vjs-default-skin {
  color: #cccccc;
}
/* Custom Icon Font
--------------------------------------------------------------------------------
The control icons are from a custom font. Each icon corresponds to a character
(e.g. "\e001"). Font icons allow for easy scaling and coloring of icons.
*/
@font-face {
  font-family: 'VideoJS';
  src: url('font/vjs.eot');
  src: url('font/vjs.eot?#iefix') format('embedded-opentype'), url('font/vjs.woff') format('woff'), url('font/vjs.ttf') format('truetype'), url('font/vjs.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Base UI Component Classes
--------------------------------------------------------------------------------
*/
/* Slider - used for Volume bar and Seek bar */
.vjs-default-skin .vjs-slider {
  /* Replace browser focus highlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9);
}
.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  -webkit-box-shadow: 0 0 2em #ffffff;
  -moz-box-shadow: 0 0 2em #ffffff;
  box-shadow: 0 0 2em #ffffff;
}
.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
}
/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */

  visibility: visible;
  opacity: 1;
  /* transition */
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  -moz-transition: visibility 0.1s, opacity 0.1s;
  -o-transition: visibility 0.1s, opacity 0.1s;
  transition: visibility 0.1s, opacity 0.1s;
}
/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  -webkit-transition: visibility 1s, opacity 1s;
  -moz-transition: visibility 1s, opacity 1s;
  -o-transition: visibility 1s, opacity 1s;
  transition: visibility 1s, opacity 1s;
}
.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none;
}
.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none;
}
/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none;
}
/* Don't hide the control bar if it's audio */
.vjs-audio.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: "";
  }
}
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em;
}
/* Font button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff;
}
.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */

}
/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer;
}
.vjs-default-skin .vjs-play-control:before {
  content: "\e001";
}
.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002";
}
/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none;
}
/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005";
}
.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right;
}
.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0;
}
.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */

  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */

  left: 4.5em;
}
.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em;
}
/* The volume menu button is like menu buttons (captions/subtitles) but works
    a little differently. It needs to be possible to tab to the volume slider
    without hitting space bar on the menu button. To do this we're not using
    display:none to hide the slider menu by default, and instead setting the
    width and height to zero. */
.vjs-default-skin .vjs-volume-menu-button .vjs-menu {
  display: block;
  width: 0;
  height: 0;
  border-top-color: transparent;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  height: 0;
  width: 0;
}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing {
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu .vjs-menu-content,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 10em;
}
/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */

  /* transition */
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%;
}
/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */

  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */

  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-load-progress {
  background: #646464 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.2);
}
/* there are child elements of the load progress bar that represent the
   specific time ranges that have been buffered */
.vjs-default-skin .vjs-load-progress div {
  background: #787878 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.1);
}
.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%;
}
.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em /* Minor adjustment */;
}
/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-default-skin.vjs-live .vjs-live-display {
  display: block;
}
/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em;
}
/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em;
}
.vjs-default-skin .vjs-current-time {
  float: left;
}
.vjs-default-skin .vjs-duration {
  float: left;
}
/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left;
}
.vjs-time-divider {
  float: left;
  line-height: 3em;
}
/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000";
}
/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b";
}
/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
  left: 0.5em;
  top: 0.5em;
  font-size: 3em;
  display: block;
  z-index: 2;
  position: absolute;
  width: 4em;
  height: 2.6em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  /* Need a slightly gray bg so it can be seen on black backgrounds */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  border: 0.1em solid #3b4249;
  /* border-radius */
  -webkit-border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  border-radius: 0.8em;
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em;
}
/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none;
}
/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none;
}
/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 3em #ffffff;
  -moz-box-shadow: 0 0 3em #ffffff;
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.vjs-default-skin .vjs-big-play-button:before {
  content: "\e001";
  font-family: VideoJS;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 2.6em;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-big-play-button {
  display: none;
}
/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none;
}
.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  bottom: 1em;
  right: 0;
  left: 0;
  font-size: 1.4em;
  text-align: center;
  padding: 3px;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  /* Should be hidden by default */

}
/* Show the spinner when waiting for data and seeking to a new time */
.vjs-waiting .vjs-loading-spinner,
.vjs-seeking .vjs-loading-spinner {
  display: block;
  /* only animate when showing because it can be processor heavy */
  /* animation */
}
/* Errors are unrecoverable without user interaction so hide the spinner */
.vjs-error .vjs-loading-spinner {
  display: none;
  /* ensure animation doesn't continue while hidden */
  /* animation */
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
/*.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000;
}*/

.vjs-loading-spinner {
  display: none;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.65em;
  margin-top: -0.65em;
  opacity: 1;
}

.vjs-loading-spinner:after {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    -webkit-animation: rotate 0.6s linear infinite;
    -moz-animation: rotate 0.6s linear infinite;
    -ms-animation: rotate 0.6s linear infinite;
    -o-animation: rotate 0.6s linear infinite;
    animation: rotate 0.6s linear infinite;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #d4d4db;
    border-left: 1px solid #000;
    border-right: 1px solid #d4d4db;
    content: '';
    opacity: 1;

}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer;
}
.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */

  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */

  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */

  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */

  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  -webkit-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  -moz-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
}
.vjs-default-skin .vjs-menu-button:hover .vjs-control-content .vjs-menu,
.vjs-default-skin .vjs-control-content .vjs-menu.vjs-lock-showing {
  display: block;
}
/* prevent menus from opening while scrubbing (FF, IE) */
.vjs-default-skin.vjs-scrubbing .vjs-menu-button:hover .vjs-control-content .vjs-menu {
  display: none;
}
.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000;
}
.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c";
}
/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008";
}
/* Chapters Button */
.vjs-default-skin .vjs-chapters-button:before {
  content: "\e00c";
}
.vjs-default-skin .vjs-chapters-button.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 24em;
  left: -12em;
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #FFF;
  position: relative;
  padding: 0;
  height:100% !important;
  width:100% !important;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */

  font-size: 10px;
  /* Allow poster to be vertically aligned. */

  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/

  /* Provide some basic defaults for fonts */

  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */

  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */

  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute;
}
/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto;
}
.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none;
}
/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}
/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 3em;
  right: 0;
  pointer-events: none;
}
/* Captions Settings Dialog */
.vjs-caption-settings {
  position: relative;
  top: 1em;
  background-color: #000;
  opacity: 0.75;
  color: #FFF;
  margin: 0 auto;
  padding: 0.5em;
  height: 15em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  width: 40em;
}
.vjs-caption-settings .vjs-tracksettings {
  top: 0;
  bottom: 2em;
  left: 0;
  right: 0;
  position: absolute;
  overflow: auto;
}
.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
  float: left;
}
.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after,
.vjs-caption-settings .vjs-tracksettings-controls:after {
  clear: both;
}
.vjs-caption-settings .vjs-tracksettings-controls {
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.vjs-caption-settings .vjs-tracksetting {
  margin: 5px;
  padding: 3px;
  min-height: 40px;
}
.vjs-caption-settings .vjs-tracksetting label {
  display: block;
  width: 100px;
  margin-bottom: 5px;
}
.vjs-caption-settings .vjs-tracksetting span {
  display: inline;
  margin-left: 5px;
}
.vjs-caption-settings .vjs-tracksetting > div {
  margin-bottom: 5px;
  min-height: 20px;
}
.vjs-caption-settings .vjs-tracksetting > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 0;
}
.vjs-caption-settings label > input {
  margin-right: 10px;
}
.vjs-caption-settings input[type="button"] {
  width: 40px;
  height: 40px;
}
/* Hide disabled or unsupported controls */
.vjs-hidden {
  display: none !important;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 2em;
  color: #ccc;
  background-color: #333;
  font-size: 1.8em;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 30em;
  height: 15em;
  margin: 0 auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460;
}
/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */

.detailProfile *,
.detailProfile *:before,
.detailProfile *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }


.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clearfix:after {
  clear: both; }

.hide {
  display: none; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.row {
  margin: 0 auto;
  max-width: 1000000em;
  width: 100%; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }
  .row.collapse > .column,
  .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row .row {
    margin: 0;
    max-width: none;
    width: auto; }
    .row .row:before, .row .row:after {
      content: " ";
      display: table; }
    .row .row:after {
      clear: both; }
    .row .row.collapse {
      margin: 0;
      max-width: none;
      width: auto; }
      .row .row.collapse:before, .row .row.collapse:after {
        content: " ";
        display: table; }
      .row .row.collapse:after {
        clear: both; }

.column,
.columns {
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  width: 100%;
  float: left; }

.columns:first-child {
  padding-left: 0;
}

.columns:last-child {
  padding-right: 0;
}

.column + .column:last-child,
.columns + .column:last-child, .column +
.columns:last-child,
.columns +
.columns:last-child {
  float: right; }
.column + .column.end,
.columns + .column.end, .column +
.columns.end,
.columns +
.columns.end {
  float: left; }

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .small-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .small-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .small-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .small-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .small-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .small-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .small-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .small-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .small-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .small-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .small-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .small-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .small-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .small-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .small-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .small-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  .small-1 {
    width: 8.33333%; }

  .small-2 {
    width: 16.66667%; }

  .small-3 {
    width: 25%; }

  .small-4 {
    width: 33.33333%; }

  .small-5 {
    width: 41.66667%; }

  .small-6 {
    width: 50%; }

  .small-7 {
    width: 58.33333%; }

  .small-8 {
    width: 66.66667%; }

  .small-9 {
    width: 75%; }

  .small-10 {
    width: 83.33333%; }

  .small-11 {
    width: 91.66667%; }

  .small-12 {
    width: 100%; }

  .small-offset-0 {
    margin-left: 0 !important; }

  .small-offset-1 {
    margin-left: 8.33333% !important; }

  .small-offset-2 {
    margin-left: 16.66667% !important; }

  .small-offset-3 {
    margin-left: 25% !important; }

  .small-offset-4 {
    margin-left: 33.33333% !important; }

  .small-offset-5 {
    margin-left: 41.66667% !important; }

  .small-offset-6 {
    margin-left: 50% !important; }

  .small-offset-7 {
    margin-left: 58.33333% !important; }

  .small-offset-8 {
    margin-left: 66.66667% !important; }

  .small-offset-9 {
    margin-left: 75% !important; }

  .small-offset-10 {
    margin-left: 83.33333% !important; }

  .small-offset-11 {
    margin-left: 91.66667% !important; }

  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }

  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none; }

  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left; }

  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right; }

  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; } }


@media only screen and (min-width: 40.0625em) {
  .row {
    margin-bottom: 30px;
  }

  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .medium-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .medium-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .medium-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .medium-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .medium-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .medium-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .medium-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .medium-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .medium-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .medium-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .medium-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .medium-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .medium-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .medium-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .medium-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .medium-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  .medium-1 {
    width: 8.33333%; }

  .medium-2 {
    width: 16.66667%; }

  .medium-3 {
    width: 25%; }

  .medium-4 {
    width: 33.33333%; }

  .medium-5 {
    width: 41.66667%; }

  .medium-6 {
    width: 50%; }

  .medium-7 {
    width: 58.33333%; }

  .medium-8 {
    width: 66.66667%; }

  .medium-9 {
    width: 75%; }

  .medium-10 {
    width: 83.33333%; }

  .medium-11 {
    width: 91.66667%; }

  .medium-12 {
    width: 100%; }

  .medium-offset-0 {
    margin-left: 0 !important; }

  .medium-offset-1 {
    margin-left: 8.33333% !important; }

  .medium-offset-2 {
    margin-left: 16.66667% !important; }

  .medium-offset-3 {
    margin-left: 25% !important; }

  .medium-offset-4 {
    margin-left: 33.33333% !important; }

  .medium-offset-5 {
    margin-left: 41.66667% !important; }

  .medium-offset-6 {
    margin-left: 50% !important; }

  .medium-offset-7 {
    margin-left: 58.33333% !important; }

  .medium-offset-8 {
    margin-left: 66.66667% !important; }

  .medium-offset-9 {
    margin-left: 75% !important; }

  .medium-offset-10 {
    margin-left: 83.33333% !important; }

  .medium-offset-11 {
    margin-left: 91.66667% !important; }

  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }

  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none; }

  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left; }

  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right; }

  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  .push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } 
  
  .medium-clear-padding {
    padding: 0;
  }

  .medium-padding-top {
    padding-top: 15px;
  }


}
@media only screen and (min-width: 64.0625em) {
  .row {
    margin-bottom: 30px;
  }

  .medium-padding-top {
    padding-top: 0;
  }

  
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .large-push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .large-pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .large-push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .large-pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .large-push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .large-pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .large-push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .large-pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .large-push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .large-pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .large-push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .large-pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .large-push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .large-pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .large-push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .large-pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; }

  .column,
  .columns {
    position: relative;
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  .large-1 {
    width: 8.33333%; }

  .large-2 {
    width: 16.66667%; }

  .large-3 {
    width: 25%; }

  .large-4 {
    width: 33.33333%; }

  .large-5 {
    width: 41.66667%; }

  .large-6 {
    width: 50%; }

  .large-7 {
    width: 58.33333%; }

  .large-8 {
    width: 66.66667%; }

  .large-9 {
    width: 75%; }

  .large-10 {
    width: 83.33333%; }

  .large-11 {
    width: 91.66667%; }

  .large-12 {
    width: 100%; }

  .large-offset-0 {
    margin-left: 0 !important; }

  .large-offset-1 {
    margin-left: 8.33333% !important; }

  .large-offset-2 {
    margin-left: 16.66667% !important; }

  .large-offset-3 {
    margin-left: 25% !important; }

  .large-offset-4 {
    margin-left: 33.33333% !important; }

  .large-offset-5 {
    margin-left: 41.66667% !important; }

  .large-offset-6 {
    margin-left: 50% !important; }

  .large-offset-7 {
    margin-left: 58.33333% !important; }

  .large-offset-8 {
    margin-left: 66.66667% !important; }

  .large-offset-9 {
    margin-left: 75% !important; }

  .large-offset-10 {
    margin-left: 83.33333% !important; }

  .large-offset-11 {
    margin-left: 91.66667% !important; }

  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }

  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }

  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none; }

  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left; }

  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right; }

  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375em;
    padding-right: 0.9375em;
    float: left; }

  .push-0 {
    position: relative;
    left: 0;
    right: auto; }

  .pull-0 {
    position: relative;
    right: 0;
    left: auto; }

  .push-1 {
    position: relative;
    left: 8.33333%;
    right: auto; }

  .pull-1 {
    position: relative;
    right: 8.33333%;
    left: auto; }

  .push-2 {
    position: relative;
    left: 16.66667%;
    right: auto; }

  .pull-2 {
    position: relative;
    right: 16.66667%;
    left: auto; }

  .push-3 {
    position: relative;
    left: 25%;
    right: auto; }

  .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }

  .push-4 {
    position: relative;
    left: 33.33333%;
    right: auto; }

  .pull-4 {
    position: relative;
    right: 33.33333%;
    left: auto; }

  .push-5 {
    position: relative;
    left: 41.66667%;
    right: auto; }

  .pull-5 {
    position: relative;
    right: 41.66667%;
    left: auto; }

  .push-6 {
    position: relative;
    left: 50%;
    right: auto; }

  .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }

  .push-7 {
    position: relative;
    left: 58.33333%;
    right: auto; }

  .pull-7 {
    position: relative;
    right: 58.33333%;
    left: auto; }

  .push-8 {
    position: relative;
    left: 66.66667%;
    right: auto; }

  .pull-8 {
    position: relative;
    right: 66.66667%;
    left: auto; }

  .push-9 {
    position: relative;
    left: 75%;
    right: auto; }

  .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }

  .push-10 {
    position: relative;
    left: 83.33333%;
    right: auto; }

  .pull-10 {
    position: relative;
    right: 83.33333%;
    left: auto; }

  .push-11 {
    position: relative;
    left: 91.66667%;
    right: auto; }

  .pull-11 {
    position: relative;
    right: 91.66667%;
    left: auto; } }




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

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



@media only screen and (max-width: 40.0625em) {
  .columns {
    padding: 0 !important;
    padding-bottom: 10px !important;
  }

  .row .row {
    margin: 0;
  }

  .margin-top-2 {
    margin-top: 0;
  }

  .margin-top-1 {
    margin-top: 0;
  }
}


/* Primary imports */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: Helvetica, sans-serif;
}
.font-size-_6em {
  font-size: 0.6em;
}
.font-size-_8em {
  font-size: 0.8em;
}
.font-size-1_2em {
  font-size: 1.2em;
}
.font-size-1_5em {
  font-size: 1.5em;
}
.font-size-2em {
  font-size: 2em;
}
.font-weight-300 {
  font-weight: 300;
}
.font-weight-400 {
  font-weight: 400;
}
.font-weight-700 {
  font-weight: 700;
}
.icon-facebook {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-image: url("#{cdnUrl}/icon-facebook.png");
}
.icon-instagram {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-image: url("#{cdnUrl}/icon-instagram.png");
}
.icon-twitter {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-image: url("#{cdnUrl}/icon-twitter.png");
}
.detail #nav-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s ease-in-out 0.3s, visibility 0s ease;
  -moz-transition: opacity 0.2s ease-in-out 0.3s, visibility 0s ease;
  -o-transition: opacity 0.2s ease-in-out 0.3s, visibility 0s ease;
  -ms-transition: opacity 0.2s ease-in-out 0.3s, visibility 0s ease;
  transition: opacity 0.2s ease-in-out 0.3s, visibility 0s ease;
}
#nav-icon {
  width: 20px;
  height: 14px;
  visibility: hidden;
  opacity: 0;
  position: relative;
  margin: 50px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: opacity 0.01s ease-in-out, visibility 0s ease 0.7s;
  -moz-transition: opacity 0.01s ease-in-out, visibility 0s ease 0.7s;
  -ms-transition: opacity 0.01s ease-in-out, visibility 0s ease 0.7s;
  -o-transition: opacity 0.01s ease-in-out, visibility 0s ease 0.7s;
  transition: opacity 0.01s ease-in-out, visibility 0s ease 0.7s;
  cursor: pointer;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0;
}
#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 8px;
}
#nav-icon span:nth-child(4) {
  top: 16px;
}
#nav-icon.open span:nth-child(1),
#nav-icon.detail span:nth-child(1),
#nav-icon.intro span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2),
#nav-icon.detail span:nth-child(2),
#nav-icon.intro span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3),
#nav-icon.detail span:nth-child(3),
#nav-icon.intro span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4),
#nav-icon.detail span:nth-child(4),
#nav-icon.intro span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}
@-webkit-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 2px;
  }
  15% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}
@-moz-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 2px;
  }
  15% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}
@-moz-keyframes scroll-ani-hor {
  0% {
    opacity: 1;
    left: -1px;
  }
  15% {
    opacity: 1;
    left: 3px;
  }
  50% {
    opacity: 0;
    left: 3px;
  }
  100% {
    opacity: 0;
    left: 0;
  }
}
@-ms-keyframes scroll-ani-hor {
  0% {
    opacity: 1;
    left: -1px;
  }
  15% {
    opacity: 1;
    left: 3px;
  }
  50% {
    opacity: 0;
    left: 3px;
  }
  100% {
    opacity: 0;
    left: 0;
  }
}
.mouse-scroll {
  display: inline-block;
  line-height: 18px;
  font-size: 13px;
  font-weight: normal;
  color: #7f8c8d;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 6px;
  margin-left: 10px;
  text-decoration: none;
  overflow: visible;
}
.mouse-scroll .mouse {
  position: relative;
  display: block;
  width: 15px;
  height: 23px;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
}
.mouse-scroll .mouse .mouse-movement {
  position: absolute;
  display: block;
  top: 0;
  left: 1px;
  width: 3px;
  height: 3px;
  margin: 0;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: scroll-ani 4s linear infinite;
  -moz-animation: scroll-ani 4s linear infinite;
  -ms-animation: scroll-ani 4s linear infinite;
  animation: scroll-ani 4s linear infinite;
}
@-moz-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 2px;
  }
  15% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}
@-webkit-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 2px;
  }
  15% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}
@-o-keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 2px;
  }
  15% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}
@keyframes scroll-ani {
  0% {
    opacity: 1;
    top: 2px;
  }
  15% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 0;
  }
}
@-moz-keyframes scroll-ani-hor {
  0% {
    opacity: 1;
    left: -1px;
  }
  15% {
    opacity: 1;
    left: 3px;
  }
  50% {
    opacity: 0;
    left: 3px;
  }
  100% {
    opacity: 0;
    left: 0;
  }
}
@-webkit-keyframes scroll-ani-hor {
  0% {
    opacity: 1;
    left: -1px;
  }
  15% {
    opacity: 1;
    left: 3px;
  }
  50% {
    opacity: 0;
    left: 3px;
  }
  100% {
    opacity: 0;
    left: 0;
  }
}
@-o-keyframes scroll-ani-hor {
  0% {
    opacity: 1;
    left: -1px;
  }
  15% {
    opacity: 1;
    left: 3px;
  }
  50% {
    opacity: 0;
    left: 3px;
  }
  100% {
    opacity: 0;
    left: 0;
  }
}
@keyframes scroll-ani-hor {
  0% {
    opacity: 1;
    left: -1px;
  }
  15% {
    opacity: 1;
    left: 3px;
  }
  50% {
    opacity: 0;
    left: 3px;
  }
  100% {
    opacity: 0;
    left: 0;
  }
}
@-webkit-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-moz-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-ms-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-o-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 26px;
  }
  100% {
    right: 22px;
  }
}
@-moz-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 26px;
  }
  100% {
    right: 22px;
  }
}
@-ms-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 26px;
  }
  100% {
    right: 22px;
  }
}
@-o-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 26px;
  }
  100% {
    right: 22px;
  }
}
@-webkit-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-moz-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-ms-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-o-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-webkit-keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@-moz-keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@-o-keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@-webkit-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-moz-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-ms-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-o-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-moz-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-ms-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-o-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-webkit-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-moz-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-ms-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-o-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-webkit-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-moz-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-ms-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-o-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-ms-keyframes moveMuybridge {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60.01% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 0;
    opacity: 1;
  }
  99.99999% {
    z-index: 0;
    opacity: 1;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
  100% {
    z-index: 0;
    opacity: 0;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
}
@-ms-keyframes moveInstructions {
  0% {
    transform: translateY(80%) scale(0.8);
    -webkit-transform: translateY(80%) scale(0.8);
    -moz-transform: translateY(80%) scale(0.8);
    -ms-transform: translateY(80%) scale(0.8);
    -o-transform: translateY(80%) scale(0.8);
  }
  60% {
    transform: translateY(60%) scale(0.8);
    -webkit-transform: translateY(60%) scale(0.8);
    -moz-transform: translateY(60%) scale(0.8);
    -ms-transform: translateY(60%) scale(0.8);
    -o-transform: translateY(60%) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-moz-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-o-keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes line-rotate {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(80deg);
    -webkit-transform: rotate(80deg);
    -moz-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    -o-transform: rotate(80deg);
    transform: rotate(80deg);
  }
  80% {
    transform: rotate(110deg);
    -webkit-transform: rotate(110deg);
    -moz-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
    -o-transform: rotate(110deg);
    transform: rotate(110deg);
  }
  90% {
    transform: rotate(100deg);
    -webkit-transform: rotate(100deg);
    -moz-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    -o-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-moz-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 27px;
  }
  100% {
    right: 22px;
  }
}
@-webkit-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 27px;
  }
  100% {
    right: 22px;
  }
}
@-o-keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 27px;
  }
  100% {
    right: 22px;
  }
}
@keyframes navigateLeftAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 27px;
  }
  100% {
    right: 22px;
  }
}
@-moz-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-webkit-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-o-keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@keyframes navigateRightAnimation {
  0% {
    right: 22px;
  }
  50% {
    right: 18px;
  }
  100% {
    right: 22px;
  }
}
@-moz-keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@-webkit-keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@-o-keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@keyframes bottomArrow {
  from {
    background-position: 0px -35px;
  }
  to {
    background-position: 0px -280px;
  }
}
@-moz-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-o-keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@keyframes detailMoveToDetail {
  0% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
  20% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  40% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-moz-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-webkit-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-o-keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@keyframes detailMoveToDetailOut {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  80% {
    transform: translateY(120%) scale(0.8);
    -webkit-transform: translateY(120%) scale(0.8);
    -moz-transform: translateY(120%) scale(0.8);
    -ms-transform: translateY(120%) scale(0.8);
    -o-transform: translateY(120%) scale(0.8);
  }
  100% {
    transform: translateY(120%) scale(1);
    -webkit-transform: translateY(120%) scale(1);
    -moz-transform: translateY(120%) scale(1);
    -ms-transform: translateY(120%) scale(1);
    -o-transform: translateY(120%) scale(1);
  }
}
@-moz-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-webkit-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-o-keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@keyframes mainMoveToDetail {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  40% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  60% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  80% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  100% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
}
@-moz-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-o-keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@keyframes mainMoveToDetailOut {
  0% {
    transform: translateY(-120%) scale(1);
    -webkit-transform: translateY(-120%) scale(1);
    -moz-transform: translateY(-120%) scale(1);
    -ms-transform: translateY(-120%) scale(1);
    -o-transform: translateY(-120%) scale(1);
  }
  20% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  40% {
    transform: translateY(-120%) scale(0.8);
    -webkit-transform: translateY(-120%) scale(0.8);
    -moz-transform: translateY(-120%) scale(0.8);
    -ms-transform: translateY(-120%) scale(0.8);
    -o-transform: translateY(-120%) scale(0.8);
  }
  60% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  80% {
    transform: translateY(0) scale(0.8);
    -webkit-transform: translateY(0) scale(0.8);
    -moz-transform: translateY(0) scale(0.8);
    -ms-transform: translateY(0) scale(0.8);
    -o-transform: translateY(0) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-moz-keyframes moveMuybridge {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60.01% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 0;
    opacity: 1;
  }
  99.99999% {
    z-index: 0;
    opacity: 1;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
  100% {
    z-index: 0;
    opacity: 0;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
}
@-webkit-keyframes moveMuybridge {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60.01% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 0;
    opacity: 1;
  }
  99.99999% {
    z-index: 0;
    opacity: 1;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
  100% {
    z-index: 0;
    opacity: 0;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
}
@-o-keyframes moveMuybridge {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60.01% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 0;
    opacity: 1;
  }
  99.99999% {
    z-index: 0;
    opacity: 1;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
  100% {
    z-index: 0;
    opacity: 0;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
}
@keyframes moveMuybridge {
  0% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 10;
    opacity: 1;
  }
  60.01% {
    transform: translateY(-40%) scale(1);
    -webkit-transform: translateY(-40%) scale(1);
    -moz-transform: translateY(-40%) scale(1);
    -ms-transform: translateY(-40%) scale(1);
    -o-transform: translateY(-40%) scale(1);
    z-index: 0;
    opacity: 1;
  }
  99.99999% {
    z-index: 0;
    opacity: 1;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
  100% {
    z-index: 0;
    opacity: 0;
    transform: translateY(-60%) scale(0.8);
    -webkit-transform: translateY(-60%) scale(0.8);
    -moz-transform: translateY(-60%) scale(0.8);
    -ms-transform: translateY(-60%) scale(0.8);
    -o-transform: translateY(-60%) scale(0.8);
  }
}
@-moz-keyframes moveInstructions {
  0% {
    transform: translateY(80%) scale(0.8);
    -webkit-transform: translateY(80%) scale(0.8);
    -moz-transform: translateY(80%) scale(0.8);
    -ms-transform: translateY(80%) scale(0.8);
    -o-transform: translateY(80%) scale(0.8);
  }
  60% {
    transform: translateY(60%) scale(0.8);
    -webkit-transform: translateY(60%) scale(0.8);
    -moz-transform: translateY(60%) scale(0.8);
    -ms-transform: translateY(60%) scale(0.8);
    -o-transform: translateY(60%) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes moveInstructions {
  0% {
    transform: translateY(80%) scale(0.8);
    -webkit-transform: translateY(80%) scale(0.8);
    -moz-transform: translateY(80%) scale(0.8);
    -ms-transform: translateY(80%) scale(0.8);
    -o-transform: translateY(80%) scale(0.8);
  }
  60% {
    transform: translateY(60%) scale(0.8);
    -webkit-transform: translateY(60%) scale(0.8);
    -moz-transform: translateY(60%) scale(0.8);
    -ms-transform: translateY(60%) scale(0.8);
    -o-transform: translateY(60%) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@-o-keyframes moveInstructions {
  0% {
    transform: translateY(80%) scale(0.8);
    -webkit-transform: translateY(80%) scale(0.8);
    -moz-transform: translateY(80%) scale(0.8);
    -ms-transform: translateY(80%) scale(0.8);
    -o-transform: translateY(80%) scale(0.8);
  }
  60% {
    transform: translateY(60%) scale(0.8);
    -webkit-transform: translateY(60%) scale(0.8);
    -moz-transform: translateY(60%) scale(0.8);
    -ms-transform: translateY(60%) scale(0.8);
    -o-transform: translateY(60%) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
@keyframes moveInstructions {
  0% {
    transform: translateY(80%) scale(0.8);
    -webkit-transform: translateY(80%) scale(0.8);
    -moz-transform: translateY(80%) scale(0.8);
    -ms-transform: translateY(80%) scale(0.8);
    -o-transform: translateY(80%) scale(0.8);
  }
  60% {
    transform: translateY(60%) scale(0.8);
    -webkit-transform: translateY(60%) scale(0.8);
    -moz-transform: translateY(60%) scale(0.8);
    -ms-transform: translateY(60%) scale(0.8);
    -o-transform: translateY(60%) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
  }
}
.center-both {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.center-both-force {
  left: 50% !important;
  position: absolute !important;
  top: 50% !important;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}
.display-none {
  display: none !important;
}
.opacity-0 {
  opacity: 0 !important;
}
.opacity-1 {
  opacity: 1 !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.pointer_events-none {
  pointer-events: none !important;
}
.position-absolute {
  position: absolute !important;
}
.visibility-hidden {
  visibility: hidden !important;
}
/* Links */
a {
  color: #dcdcdc;
  text-decoration: none;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
:focus {
  outline: 0;
}
/* General (elements and rules alphabetized) */
html,
body {
  width: 100%;
  height: 100%;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/pattern.jpg");
  background-size: 50% 50%;
  background-repeat: repeat;
  overflow: hidden;
  font-family: "signo", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
img {
  max-width: 100%;
  height: auto;
}
.preloader {
  display: none;
}
.loading .navigateLeft,
.loading .navigateRight,
.loading .animationframe,
.loading .artistName,
.loading .arrowDownButton,
.loading .header-menu,
.loading .introductionContainer {
  opacity: 0;
}
.loading #main,
.loading #detail {
  visibility: hidden;
}
.navigateLeft,
.navigateRight,
.animationframe,
.artistName,
.arrowDownButton,
.header-menu,
.introductionContainer {
  opacity: 1;
  -webkit-transition: opacity 1.5s ease;
  -moz-transition: opacity 1.5s ease;
  -ms-transition: opacity 1.5s ease;
  -o-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}
.loading #main #mainPush {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}
.loading #detail #detailPush {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}
.introductionContainer {
  overflow: hidden;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 200000;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  background-color: transparent;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  -moz-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  -ms-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  -o-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  transition: opacity 0.5s ease-out, visibility 0s ease-out;
}
.introductionContainer.animate .muybridge {
  -webkit-animation: moveMuybridge 0.6s forwards ease;
  -moz-animation: moveMuybridge 0.6s forwards ease;
  -ms-animation: moveMuybridge 0.6s forwards ease;
  -o-animation: moveMuybridge 0.6s forwards ease;
  animation: moveMuybridge 0.6s forwards ease;
  transform-origin: center bottom;
  -ms-transform-origin: center bottom;
}
.introductionContainer.animate .plainInstructions {
  -webkit-animation: moveInstructions 0.6s forwards ease;
  -moz-animation: moveInstructions 0.6s forwards ease;
  -ms-animation: moveInstructions 0.6s forwards ease;
  -o-animation: moveInstructions 0.6s forwards ease;
  animation: moveInstructions 0.6s forwards ease;
  -webkit-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out 0.6s;
  -ms-transition: background-color 0.5s ease-out 0.6s;
  -o-transition: background-color 0.5s ease-out 0.6s;
  transition: background-color 0.5s ease-out 0.6s;
  background-color: rgba(255,255,255,0.92);
  transform-origin: center top;
  -ms-transform-origin: center top;
}
.introductionContainer.hideIntro {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -moz-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -ms-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -o-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
}
.introductionContainer.hideIntro .plainInstructions {
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
  -moz-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  -o-transform: translateY(0) scale(1);
}
.introductionContainer.hideIntro .muybridge {
  -webkit-transform: translateY(-60%) scale(0.8);
  -moz-transform: translateY(-60%) scale(0.8);
  -ms-transform: translateY(-60%) scale(0.8);
  -o-transform: translateY(-60%) scale(0.8);
  z-index: 0;
}
.introductionContainer.showInstructions .plainInstructions {
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
  -moz-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  -o-transform: translateY(0) scale(1);
  background-color: rgba(255,255,255,0.92);
}
.introductionContainer.showInstructions .muybridge {
  -webkit-transform: translateY(-60%) scale(0.8);
  -moz-transform: translateY(-60%) scale(0.8);
  -ms-transform: translateY(-60%) scale(0.8);
  -o-transform: translateY(-60%) scale(0.8);
  z-index: 0;
  opacity: 0;
}
.introductionContainer .muybridge {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
}
.introductionContainer .plainInstructions {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  background-color: #fff;
}
.introductionContainer .plainInstructions:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -5px;
}
.introductionContainer .plainInstructions .introductionBG {
  position: absolute;
/*background-image url($cdnAssetsUrl\/images/instructions_bg.jpg)*/
  background-size: cover;
  background-repeat: none;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  top: 0;
}
.introductionContainer .plainInstructions .introduction {
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  margin-left: 15%;
  padding: 0;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn {
  margin-top: 0;
  position: relative;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn #nav-icon {
  visibility: visible;
  opacity: 1;
  background-color: #000;
  border-radius: 100px;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn #nav-icon span {
  width: 55%;
  background: #fff;
  left: 8px;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn #nav-icon span:nth-child(1) {
  display: none;
  top: 0;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn #nav-icon span:nth-child(2),
.introductionContainer .plainInstructions .introduction .intro-close-btn #nav-icon span:nth-child(3) {
  top: 17px;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn #nav-icon span:nth-child(4) {
  display: none;
  top: 16px;
}
.introductionContainer .plainInstructions .introduction .intro-close-btn .closeCaption {
  position: absolute;
  top: 0;
  left: 50%;
  top: 33px;
  font-size: 0.4375em;
  font-family: "proxima-nova", sans-serif;
  letter-spacing: 1px;
  margin-left: -17px;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper {
  position: relative;
  width: 60%;
  margin-left: 20%;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper:before {
  display: block;
  content: "";
  width: 100%;
  height: 10%;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper .introText {
  position: relative;
  width: 100%;
  text-align: center;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper .introText .divider {
  width: 12px;
  height: 1px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #000;
  display: inline-block;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper .introText h1 {
  font-weight: 700;
  font-size: 1.125em;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper .introText p {
  font-family: "proxima-nova", sans-serif;
  font-size: 0.9375em;
  margin-bottom: 80px;
  line-height: 1.2em;
}
.introductionContainer .plainInstructions .introduction .introTextWrapper .introText p b {
  font-weight: 700;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction {
  position: relative;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 35px;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125em;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll {
  position: relative;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  background-color: #000;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/mouse_icon.png");
  background-size: 100%;
  border-radius: 100px;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll:before {
  content: ' ';
  position: absolute;
  top: 42px;
  color: #fff;
  right: 9px;
  z-index: 100000;
  width: 17px;
  height: 20px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/intro-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll:after {
  content: ' ';
  position: absolute;
  top: -28px;
  color: #fff;
  right: 9px;
  z-index: 100000;
  width: 17px;
  height: 20px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/intro-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll p {
  position: absolute;
  width: 300px;
  letter-spacing: 1px;
  font-size: 0.9375em;
  top: 77px;
  text-align: center;
  left: -130px;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .swipeToChange {
  position: relative;
  display: inline-block;
  width: 200px;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125em;
  height: 35px;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .swipeToChange p {
  position: absolute;
  width: 300px;
  letter-spacing: 1px;
  top: 77px;
  text-align: center;
  left: -130px;
  font-size: 0.9375em;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .swipeToChange .bottomScroll {
  position: relative;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  background-color: #000;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/mouse_icon.png");
  background-size: 100%;
  border-radius: 100px;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .swipeToChange .bottomScroll .mouse-scroll .mouse .mouse-movement {
  top: 6px;
  left: -1px;
  -webkit-animation: scroll-ani-hor 4s linear infinite;
  -moz-animation: scroll-ani-hor 4s linear infinite;
  -ms-animation: scroll-ani-hor 4s linear infinite;
  animation: scroll-ani-hor 4s linear infinite;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .swipeToChange .bottomScroll:before {
  content: ' ';
  position: absolute;
  top: 8px;
  color: #fff;
  right: -26px;
  z-index: 100000;
  width: 17px;
  height: 20px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/intro-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .swipeToChange .bottomScroll:after {
  content: ' ';
  position: absolute;
  top: 8px;
  color: #fff;
  left: -26px;
  z-index: 100000;
  width: 17px;
  height: 20px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/intro-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .clickToExplore {
  position: relative;
  display: inline-block;
  width: 200px;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125em;
  height: 35px;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .clickToExplore p {
  position: absolute;
  width: 300px;
  letter-spacing: 1px;
  top: 77px;
  text-align: center;
  left: -130px;
  font-size: 0.9375em;
}
.introductionContainer .plainInstructions .introduction .scrollIntroduction .clickToExplore .bottomScroll {
  position: relative;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-top: 6px;
  background-color: #000;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/intro-click-icon.png");
  background-size: 100%;
  border-radius: 100px;
}
.glassesDetailContainer .preloaderGlasses {
  display: none;
}
.loading .preloader,
.glassesDetailContainer.loading .preloaderGlasses {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  z-index: 20000000;
  width: 50px;
  height: 50px;
}
.loading .preloader .throbber,
.glassesDetailContainer.loading .preloaderGlasses .throbber {
  display: block;
  width: 50px;
  height: 50px;
}
.loading .preloader .throbber:after,
.glassesDetailContainer.loading .preloaderGlasses .throbber:after {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-animation: rotate 0.6s linear infinite;
  -moz-animation: rotate 0.6s linear infinite;
  -ms-animation: rotate 0.6s linear infinite;
  -o-animation: rotate 0.6s linear infinite;
  animation: rotate 0.6s linear infinite;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border-top: 1px solid #000;
  border-bottom: 1px solid #d4d4db;
  border-left: 1px solid #000;
  border-right: 1px solid #d4d4db;
  content: '';
  opacity: 1;
}
.detail .glassesDetailContainer {
  top: 197px;
}
.glassesDetailContainer {
  position: absolute;
  top: 200px;
  left: 50px;
  z-index: 10000;
  width: calc(100% - 100px);
  background-color: #fff;
  height: calc(100% - 100px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -moz-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -ms-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -o-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
}
.glassesDetailContainer .collectionGlasses {
  display: none;
  position: relative;
  width: 100%;
  height: calc(100% - 100px);
}
.glassesDetailContainer .collectionGlasses.show {
  display: block;
}
.glassesDetailContainer .collectionGlasses .collectionGlassesContent {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 400px;
  margin-bottom: 50px;
}
.glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem .collectionGlassesImage {
  position: relative;
  width: 60%;
  height: 85%;
  max-width: 900px;
  margin-left: 20%;
  float: left;
  text-align: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem .collectionGlassesCaption {
  position: relative;
  float: left;
  width: 60%;
  margin-left: 20%;
  text-align: center;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8625em;
  line-height: 1.425em;
  margin-top: -5px;
}
.glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem .collectionGlassesCaption button {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.75em;
  margin-top: 15px;
}
.glassesDetailContainer .detailGlasses {
  position: relative;
  width: 100%;
  height: calc(100% - 100px);
  display: none;
}
.glassesDetailContainer .detailGlasses.show {
  display: block;
}
.glassesDetailContainer .detailGlasses .detailGlassesContent {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.glassesDetailContainer .detailGlasses .detailGlassesContent .detailGlassesCopy {
  position: relative;
  width: 25%;
  float: left;
  margin-left: 3%;
  margin-top: 3%;
  margin-bottom: 100px;
  height: calc(93% - 100px);
}
.glassesDetailContainer .detailGlasses .detailGlassesContent .detailGlassesCopy h1 {
  font-size: 1.2em;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.glassesDetailContainer .detailGlasses .detailGlassesContent .detailGlassesCopy p {
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8625em;
  line-height: 1.425em;
  margin-top: 18px;
}
.glassesDetailContainer .detailGlasses .detailGlassesContent .detailGlassesImage {
  position: relative;
  width: 60%;
  height: 85%;
  max-height: 400px;
  max-width: 900px;
  margin-left: 3%;
  float: left;
  text-align: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.glassesDetailContainer .detailGlasses .detailGlassesContent .detailGlassesCaption {
  position: relative;
  float: left;
  width: 60%;
  margin-left: 3%;
  text-align: center;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8625em;
  line-height: 1.425em;
  margin-top: -30px;
}
.glassesDetailContainer .detailGlasses .detailGlassesContent .detailGlassesCaption button {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.75em;
  margin-top: 15px;
  cursor: pointer;
}
.glassesDetailContainer.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  -moz-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  -ms-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  -o-transition: opacity 0.5s ease-out, visibility 0s ease-out;
  transition: opacity 0.5s ease-out, visibility 0s ease-out;
}
.topNavOpen #lightbox {
  top: 197px;
}
#lightbox {
  position: absolute;
  top: 47px;
  left: 50px;
  z-index: 10000;
  width: calc(100% - 100px);
  background-color: #fff;
  height: calc(100% - 47px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: top 0.3s ease, opacity 0.3s ease-out, visibility 0.5s ease-out 0.3s;
  -moz-transition: top 0.3s ease, opacity 0.3s ease-out, visibility 0.5s ease-out 0.3s;
  -ms-transition: top 0.3s ease, opacity 0.3s ease-out, visibility 0.5s ease-out 0.3s;
  -o-transition: top 0.3s ease, opacity 0.3s ease-out, visibility 0.5s ease-out 0.3s;
  transition: top 0.3s ease, opacity 0.3s ease-out, visibility 0.5s ease-out 0.3s;
}
#lightbox .lightboxImage {
  position: absolute;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
}
#lightbox .lightboxImage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#lightbox.show {
  cursor: url("//videos.prada.com/prada-raw-avenue/assets/images/cursor-icon.png"), auto;
  cursor: -webkit-image-set(url("//videos.prada.com/prada-raw-avenue/assets/images/cursor-icon.png") 1x, url("//videos.prada.com/prada-raw-avenue/assets/images/cursor-icon-x2.png") 2x), auto;
  opacity: 1;
  visibility: visible;
  -webkit-transition: top 0.5s ease, opacity 0.5s ease-out, visibility 0.5s ease-out;
  -moz-transition: top 0.5s ease, opacity 0.5s ease-out, visibility 0.5s ease-out;
  -ms-transition: top 0.5s ease, opacity 0.5s ease-out, visibility 0.5s ease-out;
  -o-transition: top 0.5s ease, opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: top 0.5s ease, opacity 0.5s ease-out, visibility 0.5s ease-out;
}
@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
.teaser #main .animationContainer .animationframe {
  background-size: cover;
}
.teaser #main #scrollContainer {
  cursor: auto;
}
.detail #main #mainPush {
  -webkit-animation: mainMoveToDetail 2s forwards ease;
  -moz-animation: mainMoveToDetail 2s forwards ease;
  -ms-animation: mainMoveToDetail 2s forwards ease;
  -o-animation: mainMoveToDetail 2s forwards ease;
  animation: mainMoveToDetail 2s forwards ease;
}
#main {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: top 0.5s ease;
  -moz-transition: top 0.5s ease;
  -ms-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  overflow: hidden;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/pattern.jpg");
  background-size: 50% 50%;
  background-repeat: repeat;
  z-index: 0;
}
#main #mainPush {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-animation: mainMoveToDetailOut 2s forwards ease;
  -moz-animation: mainMoveToDetailOut 2s forwards ease;
  -ms-animation: mainMoveToDetailOut 2s forwards ease;
  -o-animation: mainMoveToDetailOut 2s forwards ease;
  animation: mainMoveToDetailOut 2s forwards ease;
  transform: translateY(0) scale(1);
  -webkit-transform: translateY(0) scale(1);
  -moz-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  -o-transform: translateY(0) scale(1);
}
#main #coming-soon {
  position: absolute;
  z-index: 10;
  width: 80%;
  margin-left: 10%;
  opacity: 0;
  text-align: center;
  font-size: 2.25em;
  bottom: 30px;
  z-index: 1000;
  margin-top: -1em;
  letter-spacing: 7px;
}
#main #coming-soon a {
  color: #000;
}
#main #coming-soon a:hover {
  color: #000;
  text-decoration: underline;
}
#main #coming-soon.in {
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#main .animationContainer {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 0;
  width: calc(100% - 100px);
  background-color: #fff;
  height: calc(100% - 100px);
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#main .animationContainer .animationFrames {
  width: 90%;
  height: calc(100% - 110px);
  margin-left: 5%;
  margin-top: 10px;
}
#main .animationContainer .animationFrames .animationframe {
  position: static;
  float: left;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
#main #scrollContainer {
  width: 120%;
  height: 120%;
  overflow: scroll;
  cursor: pointer;
  position: absolute;
  z-index: 100;
}
#main #scrollContainer .scrollObj {
  width: 2000000px;
  height: 2000000px;
  z-index: 100;
}
#main .ui-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
#main .ui-overlay div {
  pointer-events: all;
}
#main .ui-overlay .artistName {
  font-size: 0.9375em;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  bottom: 107px;
  pointer-events: none;
  left: 50px;
  width: calc(100% - 100px);
  letter-spacing: 3px;
  text-align: center;
}
#main .ui-overlay .arrowDownButton {
  position: absolute;
  width: 35px;
  height: 35px;
  bottom: 0;
  left: 50%;
  margin-left: -13px;
  bottom: 60px;
}
#main .ui-overlay .legal {
  bottom: 18px;
  left: 50px;
  position: absolute;
  letter-spacing: 1px;
  font-size: 8px;
  color: #000;
  z-index: 1000;
}
#main .ui-overlay .legal span {
  cursor: pointer;
  margin-left: 20px;
}
#main .ui-overlay .legal span:hover {
  text-decoration: underline;
}
#main .ui-overlay .legal a {
  color: #000;
}
#main .ui-overlay .legal a:hover {
  text-decoration: underline;
}
#main .ui-overlay .shareGeneral {
  position: absolute;
  z-index: 1000;
  bottom: 12px;
  right: 50px;
}
#main .ui-overlay .shareGeneral ul li {
  float: left;
  padding: 5px;
  cursor: pointer;
  margin-left: 5px;
}
#main .ui-overlay .shareGeneral ul li.fb-share {
  width: 5px;
}
#main .ui-overlay .shareGeneral ul li.twitter-share {
  width: 11px;
}
#main .ui-overlay .shareGeneral ul li.tumblr-share {
  width: 6px;
}
#main .ui-overlay .shareGeneral ul li.pinterest-share {
  width: 9px;
}
#main .ui-overlay .bottomArrow {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -17px;
  width: 35px;
  height: 35px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/bottom-arrow-sprite-5.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0px 0px;
}
#main .ui-overlay .bottomArrow.flip {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
#main .ui-overlay .bottomArrow:hover,
#main .ui-overlay .bottomArrow.animate {
  -webkit-animation: bottomArrow 0.8s steps(7) infinite;
  -moz-animation: bottomArrow 0.8s steps(7) infinite;
  -ms-animation: bottomArrow 0.8s steps(7) infinite;
  -o-animation: bottomArrow 0.8s steps(7) infinite;
  animation: bottomArrow 0.8s steps(7) infinite;
}
#main .ui-overlay .navigateLeft {
  position: absolute;
  left: 0;
  width: 50px;
  cursor: pointer;
  height: 100%;
  z-index: 1000;
}
#main .ui-overlay .navigateLeft.animate:before {
  -webkit-animation: navigateLeftAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  -moz-animation: navigateLeftAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  -ms-animation: navigateLeftAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  -o-animation: navigateLeftAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  animation: navigateLeftAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
}
#main .ui-overlay .navigateLeft:before {
  content: " ";
  position: absolute;
  top: 50%;
  color: #fff;
  right: 22px;
  z-index: 100000;
  width: 8px;
  height: 12px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/arrow-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
#main .ui-overlay .navigateRight {
  position: absolute;
  right: 0;
  width: 50px;
  height: 100%;
  z-index: 1000;
  cursor: pointer;
}
#main .ui-overlay .navigateRight.animate:before {
  -webkit-animation: navigateRightAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  -moz-animation: navigateRightAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  -ms-animation: navigateRightAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  -o-animation: navigateRightAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
  animation: navigateRightAnimation 0.4s cubic-bezier(0.715, -0.27, 0.38, 1.36);
}
#main .ui-overlay .navigateRight:before {
  content: " ";
  position: absolute;
  top: 50%;
  color: #fff;
  right: 22px;
  z-index: 100000;
  width: 8px;
  height: 12px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.spriteSheet {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.spriteSheet .spriteAnimationContainer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.spriteSheet .spriteAnimationContainer .spriteAnimationFrame {
  position: static;
  float: left;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.spriteSheet .spriteScrollContainer {
  width: 120%;
  height: 120%;
  overflow: scroll;
  cursor: pointer;
  position: absolute;
  z-index: 100;
}
.spriteSheet .spriteScrollContainer .spriteScrollObj {
  width: 2000000px;
  height: 2000000px;
  z-index: 100;
}
.no-touch .header .currentIllustrator .navigateLeft:hover:before {
  right: 26px;
}
.no-touch .header .currentIllustrator .navigateRight:hover:before {
  right: 18px;
}
.no-touch #main .ui-overlay .navigateLeft:hover:before {
  right: 26px;
}
.no-touch #main .ui-overlay .navigateRight:hover:before {
  right: 18px;
}
.topNav-glasses.topNavOpen .header ul.header-menu li.glasses-btn {
  opacity: 0.3;
}
.topNav-pancake.topNavOpen .header ul.header-menu li.pancake-btn {
  opacity: 0.3;
}
.detail .header {
  height: 47px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  z-index: 1000;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/pattern.jpg");
  background-size: 50% 50%;
  background-repeat: repeat;
  -webkit-transition: top 0.5s ease;
  -moz-transition: top 0.5s ease;
  -ms-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
.header .detailIllustratorName {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.header .detailIllustratorName .background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/pattern.jpg");
  background-size: 50% 50%;
  background-repeat: repeat;
  z-index: 2;
}
.header .detailIllustratorName .currentIllustrator {
  width: 100%;
  height: 30px;
  background-color: #fff;
  position: absolute;
  text-transform: uppercase;
  bottom: 0;
  text-align: center;
  font-size: 0.8em;
  letter-spacing: 3px;
  line-height: 2.4em;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
.header .detailIllustratorName .currentIllustrator .currentIllustratorName {
  position: relative;
  z-index: 0;
}
.header .detailIllustratorName .currentIllustrator.show {
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
.header .detailIllustratorName .currentIllustrator .navigateLeft {
  position: absolute;
  left: -8px;
  top: 0;
  width: 50px;
  cursor: pointer;
  height: 100%;
  z-index: 1;
}
.header .detailIllustratorName .currentIllustrator .navigateLeft:before {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  color: #fff;
  right: 22px;
  z-index: 100000;
  width: 8px;
  height: 12px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/arrow-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.header .detailIllustratorName .currentIllustrator .navigateRight {
  position: absolute;
  right: -10px;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 1000;
  cursor: pointer;
  z-index: 1;
}
.header .detailIllustratorName .currentIllustrator .navigateRight:before {
  content: " ";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  color: #fff;
  right: 22px;
  z-index: 100000;
  width: 8px;
  height: 12px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.header .logo {
  position: absolute;
  left: 50px;
  top: 17px;
  width: 190px;
}
.header .logo img.mobile {
  display: none;
}
.header #nav-icon {
  position: absolute;
  right: 6px;
  top: 8px;
  background-color: #000;
  border-radius: 100px;
  width: 35px;
  height: 35px;
  margin: 0;
}
.header #nav-icon span {
  width: 55%;
  background: #fff;
  left: 8px;
}
.header #nav-icon span:nth-child(1) {
  top: 0;
}
.header #nav-icon span:nth-child(2),
.header #nav-icon span:nth-child(3) {
  top: 17px;
}
.header #nav-icon span:nth-child(4) {
  top: 16px;
}
.header .eyewearCopy {
  position: absolute;
  right: 50px;
  top: 21px;
  font-size: 0.75em;
  margin: 0;
  text-align: right;
  letter-spacing: 3px;
}
.header ul.header-menu {
  position: absolute;
  top: 7px;
  left: 50%;
  margin-left: -71px;
}
.header ul.header-menu li {
  float: left;
  position: relative;
  padding: 5px;
  cursor: pointer;
  margin-left: 5px;
}
.header ul.header-menu li .caption {
  position: absolute;
  font-size: 0.4375em;
  font-family: "proxima-nova", sans-serif;
  letter-spacing: 0.4px;
}
.header ul.header-menu li:hover {
  opacity: 0.3;
}
.header ul.header-menu li:first-child {
  margin-left: 0;
}
.header ul.header-menu li.pancake-btn {
  width: 13px;
  height: 15px;
}
.header ul.header-menu li.pancake-btn .caption {
  bottom: -10px;
  left: -21px;
}
.header ul.header-menu li.pancake-btn span {
  width: 1px;
  height: 15px;
  background-color: #000;
  display: block;
  float: left;
  margin-right: 5px;
}
.header ul.header-menu li.pancake-btn span.last-child {
  margin-right: 0;
}
.header ul.header-menu li.glasses-btn {
  margin-left: 75px;
  width: 32px;
}
.header ul.header-menu li.glasses-btn .caption {
  left: -2px;
  margin-top: 5px;
  letter-spacing: 0.8px;
}
#menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#menu.open {
  visibility: visible;
  opacity: 1;
}
.topNavOpen.topNavOpen-inout .topNav .topNavContent .topNavIllustrators {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.topNavOpen .topNav {
  top: 0;
  pointer-events: auto;
}
.topNavOpen #main,
.topNavOpen .header {
  top: 150px;
}
.topNav-glasses .topNav .topNavContent .topNavIllustrators {
  margin-top: -140px;
}
.topNav {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 150px;
  top: -150px;
  left: 0;
  z-index: 200000;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.08);
  -webkit-transition: top 0.5s ease;
  -moz-transition: top 0.5s ease;
  -ms-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
.topNav .topNavCloseBtn {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  right: 7px;
  cursor: pointer;
  top: 59px;
  position: absolute;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
}
.topNav .topNavContent {
  width: calc(100% - 200px);
  overflow: hidden;
  max-width: 1200px;
  height: 135px;
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
}
.topNav .topNavContent .topNavIllustrators {
  position: relative;
  width: 100%;
  height: 130px;
  margin-bottom: 10px;
  -webkit-transition: margin-top 0.5s ease;
  -moz-transition: margin-top 0.5s ease;
  -ms-transition: margin-top 0.5s ease;
  -o-transition: margin-top 0.5s ease;
  transition: margin-top 0.5s ease;
}
.topNav .topNavContent .topNavIllustrators .topNavItem {
  width: calc(100% / 6 - 10px);
  height: 100%;
  background-size: cover;
  background-position: center center;
  float: left;
  cursor: pointer;
  position: relative;
  margin-left: 12px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.08);
}
.topNav .topNavContent .topNavIllustrators .topNavItem.topNavIllustrator-1 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/top-nav-thumb1.jpg");
}
.topNav .topNavContent .topNavIllustrators .topNavItem.topNavIllustrator-2 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/top-nav-thumb2.jpg");
}
.topNav .topNavContent .topNavIllustrators .topNavItem.topNavIllustrator-3 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/top-nav-thumb3.jpg");
}
.topNav .topNavContent .topNavIllustrators .topNavItem.topNavIllustrator-4 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/top-nav-thumb4.jpg");
}
.topNav .topNavContent .topNavIllustrators .topNavItem.topNavIllustrator-5 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/top-nav-thumb5.jpg");
}
.topNav .topNavContent .topNavIllustrators .topNavItem.topNavIllustrator-6 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/top-nav-thumb6.jpg");
}
.topNav .topNavContent .topNavIllustrators .topNavItem .topNavItemOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  -webkit-transition: opacity 0.5px s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.topNav .topNavContent .topNavIllustrators .topNavItem .topNavItemOverlay .topNavItemOverlayTitle {
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 0.5625em;
  letter-spacing: 2px;
  line-height: 1.3em;
}
.topNav .topNavContent .topNavIllustrators .topNavItem .topNavItemOverlay .topNavItemOverlayTitle a {
  display: none;
}
.topNav .topNavContent .topNavIllustrators .topNavItem:hover .topNavItemOverlay {
  opacity: 1;
}
.topNav .topNavContent .topNavIllustrators .topNavItem:first-child {
  margin-left: 0;
}
.topNav .topNavContent .topNavProducts {
  position: relative;
  width: 100%;
  height: 130px;
}
.topNav .topNavContent .topNavProducts .topNavItem {
  width: calc(100% / 5 - 10px);
  height: 100%;
  background-size: 80%;
  background-position: center center;
  background-repeat: no-repeat;
  float: left;
  cursor: pointer;
  position: relative;
  margin-left: 12px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.08);
  box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.08);
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavProduct-1 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/product_small_0.jpg");
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavProduct-2 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/product_small_1.jpg");
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavProduct-3 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/product_small_2.jpg");
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavProduct-4 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/product_small_3.jpg");
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavCollection {
  margin-left: 0;
  width: calc(100% / 7 - 10px);
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavCollection:hover .collectionText {
  text-decoration: underline;
}
.topNav .topNavContent .topNavProducts .topNavItem.topNavCollection .collectionText {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  width: 100%;
  color: #000;
  text-align: center;
  font-size: 0.5625em;
  letter-spacing: 2px;
  line-height: 1.3em;
}
.topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay .topNavItemOverlayTitle {
  position: absolute;
  top: 50%;
  margin-top: -14px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 0.5625em;
  letter-spacing: 2px;
  line-height: 1.3em;
}
.topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay .topNavItemOverlayTitle a {
  display: none;
}
.topNav .topNavContent .topNavProducts .topNavItem:hover .topNavItemOverlay {
  opacity: 1;
}
.detail #detail #detailPush {
  -webkit-animation: detailMoveToDetail 2s ease;
  -moz-animation: detailMoveToDetail 2s ease;
  -ms-animation: detailMoveToDetail 2s ease;
  -o-animation: detailMoveToDetail 2s ease;
  animation: detailMoveToDetail 2s ease;
}
#detail {
  position: absolute;
  opacity: 1;
  top: 100%;
  visibility: visible;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  width: 100%;
  height: 100%;
  -webkit-transition: top 0s ease 1s;
  -moz-transition: top 0s ease 1s;
  -ms-transition: top 0s ease 1s;
  -o-transition: top 0s ease 1s;
  transition: top 0s ease 1s;
/*-webkit-transition transform .3s ease, visibility 0.1s ease 0.3s*/
/*-moz-transition transform .3s ease, visibility 0.1s ease 0.3s*/
/*-ms-transition transform .3s ease, visibility 0.1s ease 0.3s*/
/*-o-transition transform .3s ease, visibility 0.1s ease 0.3s*/
/*transition transform .3s ease, visibility 0.1s ease 0.3s*/
}
#detail #detailPush {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-animation: detailMoveToDetailOut 2s ease;
  -moz-animation: detailMoveToDetailOut 2s ease;
  -ms-animation: detailMoveToDetailOut 2s ease;
  -o-animation: detailMoveToDetailOut 2s ease;
  animation: detailMoveToDetailOut 2s ease;
}
#detail .illustratorDetail {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/pattern.jpg");
  background-size: 50% 50%;
  background-repeat: repeat;
  position: absolute;
  display: block;
  width: calc(100% - 80px);
  left: 40px;
  height: auto;
  min-height: 100%;
  overflow: hidden;
}
#detail .illustratorDetail.slot-minus-5 {
  transform: translateX(-500%) translateZ(0);
  -webkit-transform: translateX(-500%) translateZ(0);
  -moz-transform: translateX(-500%) translateZ(0);
  -ms-transform: translateX(-500%) translateZ(0);
  -o-transform: translateX(-500%) translateZ(0);
}
#detail .illustratorDetail.slot-minus-4 {
  transform: translateX(-400%) translateZ(0);
  -webkit-transform: translateX(-400%) translateZ(0);
  -moz-transform: translateX(-400%) translateZ(0);
  -ms-transform: translateX(-400%) translateZ(0);
  -o-transform: translateX(-400%) translateZ(0);
}
#detail .illustratorDetail.slot-minus-3 {
  transform: translateX(-300%) translateZ(0);
  -webkit-transform: translateX(-300%) translateZ(0);
  -moz-transform: translateX(-300%) translateZ(0);
  -ms-transform: translateX(-300%) translateZ(0);
  -o-transform: translateX(-300%) translateZ(0);
}
#detail .illustratorDetail.slot-minus-2 {
  transform: translateX(-200%) translateZ(0);
  -webkit-transform: translateX(-200%) translateZ(0);
  -moz-transform: translateX(-200%) translateZ(0);
  -ms-transform: translateX(-200%) translateZ(0);
  -o-transform: translateX(-200%) translateZ(0);
}
#detail .illustratorDetail.slot-minus-1 {
  transform: translateX(-100%) translateZ(0);
  -webkit-transform: translateX(-100%) translateZ(0);
  -moz-transform: translateX(-100%) translateZ(0);
  -ms-transform: translateX(-100%) translateZ(0);
  -o-transform: translateX(-100%) translateZ(0);
}
#detail .illustratorDetail.slot-zero {
  transform: translateX(0) translateZ(0);
  -webkit-transform: translateX(0) translateZ(0);
  -moz-transform: translateX(0) translateZ(0);
  -ms-transform: translateX(0) translateZ(0);
  -o-transform: translateX(0) translateZ(0);
}
#detail .illustratorDetail.slot-plus-1 {
  transform: translateX(100%) translateZ(0);
  -webkit-transform: translateX(100%) translateZ(0);
  -moz-transform: translateX(100%) translateZ(0);
  -ms-transform: translateX(100%) translateZ(0);
  -o-transform: translateX(100%) translateZ(0);
}
#detail .illustratorDetail.slot-plus-2 {
  transform: translateX(200%) translateZ(0);
  -webkit-transform: translateX(200%) translateZ(0);
  -moz-transform: translateX(200%) translateZ(0);
  -ms-transform: translateX(200%) translateZ(0);
  -o-transform: translateX(200%) translateZ(0);
}
#detail .illustratorDetail.slot-plus-3 {
  transform: translateX(300%) translateZ(0);
  -webkit-transform: translateX(300%) translateZ(0);
  -moz-transform: translateX(300%) translateZ(0);
  -ms-transform: translateX(300%) translateZ(0);
  -o-transform: translateX(300%) translateZ(0);
}
#detail .illustratorDetail.slot-plus-4 {
  transform: translateX(300%) translateZ(0);
  -webkit-transform: translateX(300%) translateZ(0);
  -moz-transform: translateX(300%) translateZ(0);
  -ms-transform: translateX(300%) translateZ(0);
  -o-transform: translateX(300%) translateZ(0);
}
#detail .illustratorDetail.slot-plus-5 {
  transform: translateX(300%) translateZ(0);
  -webkit-transform: translateX(300%) translateZ(0);
  -moz-transform: translateX(300%) translateZ(0);
  -ms-transform: translateX(300%) translateZ(0);
  -o-transform: translateX(300%) translateZ(0);
}
#detail .illustratorDetail .detailContent {
  position: relative;
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-top: 50px;
  background-color: transparent;
}
#detail .illustratorDetail .detailContent .detailVideo {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#detail .illustratorDetail .detailContent .detailVideo .videoControls {
  position: absolute;
  bottom: 13px;
  right: 24px;
  z-index: 1001;
  display: none;
}
#detail .illustratorDetail .detailContent .detailVideo .videoControls.show {
  display: block;
}
#detail .illustratorDetail .detailContent .detailVideo .videoControls ul li {
  float: left;
  padding: 5px;
  cursor: pointer;
  margin-left: 13px;
}
#detail .illustratorDetail .detailContent .detailVideo .videoControls ul li.sound-onoff {
  width: 25px;
  height: 25px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/sound-onoff-btn.png");
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}
#detail .illustratorDetail .detailContent .detailVideo .videoControls ul li.sound-onoff.off {
  background-position: left bottom;
}
#detail .illustratorDetail .detailContent .detailVideo .videoControls ul li.fullscreen {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/fullscreen-btn.png");
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.hide {
  opacity: 0;
  display: block;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.ended .play-btn {
  display: none;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.ended .replay-btn {
  display: block;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.detailVideoOverlay-0 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/poster_vanhoek.jpg");
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.detailVideoOverlay-1 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/poster_wong.jpg");
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.detailVideoOverlay-2 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/poster_vanhoek.jpg");
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.detailVideoOverlay-3 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/poster_wong.jpg");
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.detailVideoOverlay-4 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/poster_vanhoek.jpg");
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay.detailVideoOverlay-5 {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/poster_wong.jpg");
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .play-btn,
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .replay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  margin-left: -17px;
  margin-top: -18px;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .replay-btn {
  display: none;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -74px;
  margin-top: 46px;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo.show {
  display: block;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo ul li {
  float: left;
  padding: 5px;
  cursor: pointer;
  margin-left: 13px;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo ul li.fb-share {
  width: 7px;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo ul li.twitter-share {
  width: 16px;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo ul li.tumblr-share {
  width: 9px;
}
#detail .illustratorDetail .detailContent .detailVideo .detailVideoOverlay .shareVideo ul li.pinterest-share {
  width: 12px;
}
#detail .illustratorDetail .detailContent .detailProfile {
  position: relative;
  width: 100%;
  padding-top: 20px;
  min-height: 400px;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next {
  position: absolute;
  z-index: 100;
  right: 30px;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev {
  position: absolute;
  z-index: 100;
  left: 30px;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal {
  position: absolute;
  z-index: 0;
  width: 100%;
  text-align: center;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev {
  letter-spacing: 1px;
  font-size: 8px;
  color: #000;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal span,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next span,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev span {
  cursor: pointer;
  margin-left: 20px;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal span:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next span:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev span:hover {
  text-decoration: underline;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal a,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next a,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev a,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal span.paginate,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next span.paginate,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev span.paginate {
  margin-left: 0;
  color: #000;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal a:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next a:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev a:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .legal span.paginate:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next span.paginate:hover,
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev span.paginate:hover {
  text-decoration: underline;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemImage {
  position: relative;
  cursor: pointer;
  background-color: #fff;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemImage img {
  padding: 15px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .profileItemCaption {
  padding: 33px;
  float: left;
  font-style: italic;
  margin-top: 10px;
  background-color: #fff;
  font-size: 1em;
  line-height: 1.425em;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  font-family: "proxima-nova", sans-serif;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .profileItemCaption span {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-style: normal;
  font-size: 0.8625em;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .profileItemCaption span.videoTitle {
  padding: 0;
  background-color: #fff;
  color: #000;
  font-size: 1em;
  text-transform: uppercase;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemVideo {
  position: relative;
  width: 100%;
  height: 0px;
  padding-bottom: 56%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemVideo iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemBio {
  position: relative;
  padding: 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.1);
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemBio h1 {
  font-size: 1.3em;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
#detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .detailProfileItemBio p {
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8625em;
  margin-top: 25px;
  line-height: 1.425em;
}
#detail.open {
/*-webkit-transition transform .3s ease, visibility 0.1s ease*/
/*-moz-transition transform .3s ease, visibility 0.1s ease*/
/*-ms-transition transform .3s ease, visibility 0.1s ease*/
/*-o-transition transform .3s ease, visibility 0.1s ease*/
/*transition transform .3s ease, visibility 0.1s ease*/
  visibility: visible;
/*transform: translateY(-100%)*/
/*-webkit-transform: translateY(-100%)*/
/*-moz-transform: translateY(-100%)*/
/*-o-transform: translateY(-100%)*/
  -webkit-transition: top 0s ease 0s;
  -moz-transition: top 0s ease 0s;
  -ms-transition: top 0s ease 0s;
  -o-transition: top 0s ease 0s;
  transition: top 0s ease 0s;
  top: 0;
}
#detail.open.animate .illustratorDetail {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#detail.open.animate .illustratorDetail.silent {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.video-js {
  overflow: hidden;
}
/* Mobile overrides */
body.mobile .content {
  font-size: 1.2em;
  line-height: 1.5em;
  padding-top: 60px;
  width: 80%;
}
body.mobile .content.full-width {
  width: 100%;
}
body.mobile .content.full-width .image {
  height: 200px;
}
.mobile.topNavOpen #main,
.mobile.topNavOpen .header {
  top: 0;
}
.mobile #detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .next,
.mobile #detail .illustratorDetail .detailContent .detailProfile .detailProfileGrid .prev {
  display: none;
}
.mobile.intro-step-2 #main .introductionContainer .plainInstructions .introduction .introTextWrapper {
  display: none;
}
.mobile.intro-step-2 #main .introductionContainer .plainInstructions .introduction .scrollIntroduction {
  display: block;
}
.mobile #detail .illustratorDetail .detailContent .detailVideo .videoControls.show {
  display: none;
}
.mobile .introductionContainer .plainInstructions:before {
  content: none;
}
.mobile .introductionContainer .plainInstructions .introduction {
  margin-top: 30px;
}
.mobile .introductionContainer .plainInstructions .introduction .introTextWrapper .introText p {
  margin-bottom: 40px;
}
.mobile .glassesDetailContainer {
  z-index: 2000000;
  top: 37px;
  width: 100%;
  left: 0;
  height: 100%;
}
.mobile .glassesDetailContainer .collectionGlasses {
  height: 100%;
}
.mobile .glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem {
  height: 300px;
  margin-bottom: 20px;
}
.mobile .glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem .collectionGlassesImage {
  height: 150px;
  float: none;
}
.mobile .glassesDetailContainer .collectionGlasses .collectionGlassesContent .collectionGlassesItem .collectionGlassesCaption {
  float: none;
  margin-top: 0;
  margin-bottom: 100px;
}
.mobile.detail .header ul.header-menu {
  right: 60px;
}
.mobile.detail .header .detailIllustratorName .currentIllustrator {
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
.mobile.topNavOpen #nav-icon {
  visibility: visible;
  opacity: 1;
}
.mobile.topNavOpen #detail {
  display: none;
}
.mobile.topNavOpen .header ul.header-menu {
  right: 60px;
}
.mobile.topNavOpen .topNav {
  top: 40px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0s;
  -moz-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0s;
  -ms-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0s;
  -o-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0s;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0s;
}
.mobile.topNavOpen .topNav .topNavContent {
  -webkit-overflow-scrolling: touch;
}
.mobile .topNav {
  top: 30px;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -moz-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -ms-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  -o-transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out 0.5s;
  left: 0;
}
.mobile .topNav .topNavCloseBtn {
  display: none;
}
.mobile .topNav .topNavContent {
  width: 100%;
  height: 100%;
  margin-left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}
.mobile .topNav .topNavContent .topNavIllustrators {
  display: none;
}
.mobile .topNav .topNavContent .topNavProducts {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
.mobile .topNav .topNavContent .topNavProducts .topNavItem {
  width: calc(100% - 50px);
  height: 300px;
  margin-left: 25px;
  float: none;
  margin-top: 15px;
  background-position: center 16%;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.15);
}
.mobile .topNav .topNavContent .topNavProducts .topNavItem.topNavCollection {
  height: 100px;
}
.mobile .topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay {
  top: 55%;
  height: 45%;
  opacity: 1;
  background-color: rgba(0,0,0,0);
}
.mobile .topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay .topNavItemOverlayTitle {
  top: 20%;
  color: #000;
}
.mobile .topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay .topNavItemOverlayTitle a {
  display: inline-block;
}
.mobile .topNav .topNavContent .topNavProducts .topNavItem .topNavItemOverlay .topNavItemOverlayTitle button {
  border: none;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.75em;
  margin-top: 15px;
}
.mobile #nav-icon {
  margin-bottom: 35px !important;
}
.mobile #main .animationContainer {
  position: absolute;
  top: 40px;
  left: 25px;
  z-index: 0;
  width: calc(100% - 50px);
  background-color: #fff;
  height: calc(100% - 80px);
}
.mobile #main .animationContainer .animationFrames {
  margin-top: 0;
  height: calc(100% - 80px);
}
.mobile #main .ui-overlay .shareGeneral {
  bottom: 5px;
  right: 22px;
}
.mobile #main .ui-overlay .legal {
  bottom: 14px;
  left: 26px;
  position: absolute;
  letter-spacing: 1px;
  font-size: 6px;
  color: #000;
}
.mobile #main .ui-overlay .legal a {
  color: #000;
}
.mobile #main .ui-overlay .legal a:hover {
  text-decoration: underline;
}
.mobile #main .ui-overlay .navigateLeft {
  width: 39px;
}
.mobile #main .ui-overlay .navigateRight {
  width: 39px;
  right: -14px;
}
.mobile #main .ui-overlay .artistName {
  font-size: 0.75em;
  bottom: 97px;
  width: calc(100% - 50px);
  left: 25px;
}
.mobile #main .ui-overlay .arrowDownButton {
  bottom: 50px;
}
.mobile #main .introductionContainer {
  width: calc(100% - 50px);
  left: 25px;
}
.mobile #main .introductionContainer .plainInstructions .introduction {
  width: 100%;
  top: 0;
  left: 0;
  margin-left: 0;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction {
  margin-top: -50px;
  display: none;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore {
  height: 95px;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll p,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange .bottomScroll p,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore .bottomScroll p {
  top: 50px;
  font-size: 0.75em;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll .mouse-scroll,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange .bottomScroll .mouse-scroll,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore .bottomScroll .mouse-scroll {
  display: none;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll:before,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange .bottomScroll:before,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore .bottomScroll:before {
  content: none;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll:after,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange .bottomScroll:after,
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore .bottomScroll:after {
  content: none;
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk .bottomScroll {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/scrollToWalk-mobile.png");
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange .bottomScroll {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/swipeToChange-mobile.png");
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore .bottomScroll {
  background-image: url("//videos.prada.com/prada-raw-avenue/assets/images/intro-click-icon.png");
}
.mobile #main .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .mobile-ok {
  font-size: 0.75em;
  font-weight: 700;
  margin-top: 40px;
}
.mobile #main .introductionContainer .plainInstructions .introduction .introTextWrapper {
  width: 80%;
  margin-left: 10%;
}
.mobile #main .introductionContainer .plainInstructions .introduction .introTextWrapper .introText h1 {
  font-size: 0.9375em;
}
.mobile #main .introductionContainer .plainInstructions .introduction .introTextWrapper .introText p {
  font-size: 0.75em;
}
.mobile #main .introductionContainer .plainInstructions .introduction .introTextWrapper .introText p.intro-next {
  font-weight: 700;
}
.mobile #main .introductionContainer .plainInstructions .introduction .introTextWrapper .introText p b {
  font-weight: 700;
}
.mobile #detail .illustratorDetail {
  width: calc(100% - 40px);
  left: 20px;
}
.mobile #detail .illustratorDetail .detailContent {
  width: calc(100% - 10px);
  margin-left: 5px;
  margin-top: 40px;
}
.mobile #detail .illustratorDetail .detailContent .detailProfile {
  padding-top: 10px;
}
.mobile .header {
  height: 37px;
}
.mobile .header #nav-icon {
  background-color: transparent;
  top: 3px;
}
.mobile .header #nav-icon span {
  background-color: #000;
  left: 0;
}
.mobile .header #nav-icon span:nth-child(2),
.mobile .header #nav-icon span:nth-child(3) {
  width: 100%;
}
.mobile .header .logo {
  left: 25px;
  margin-left: 0;
  top: 11px;
  width: 140px;
}
.mobile .header .eyewearCopy {
  display: none;
}
.mobile .header ul.header-menu {
  top: 0px;
  right: 28px;
  margin-left: 0;
  left: auto;
  -webkit-transition: right 0.5s ease;
  -moz-transition: right 0.5s ease;
  -ms-transition: right 0.5s ease;
  -o-transition: right 0.5s ease;
  transition: right 0.5s ease;
}
.mobile .header ul.header-menu li.pancake-btn {
  display: none;
}
.mobile .header ul.header-menu li.glasses-btn {
  width: 26px;
}
.mobile .header ul.header-menu li.glasses-btn p {
  left: -5px;
  margin-top: 3px;
}
.only-mobile {
  display: none;
}
.mobile .only-mobile {
  display: block;
}
@media screen and (orientation: portrait) {
  .mobile #main .animationContainer .animationframe {
    background-size: cover;
  }
}
.mobile #main #coming-soon {
  width: 100%;
  margin-left: 0;
  font-size: 1em;
  bottom: 35px;
  margin-top: -1em;
  letter-spacing: 3px;
}
.mobile #main .ui-overlay .bottomScroll p {
  font-size: 0.8em;
}
@media screen and (max-width: 1070px) {
  .topNav .topNavContent {
    width: calc(100% - 100px);
    margin-left: 10px;
  }
  .topNav .topNavContent {
    width: calc(100% - 100px);
    margin-left: 10px;
  }
}
@media screen and (max-width: 1050px) {
  .introductionContainer .plainInstructions .introduction {
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .introductionContainer .plainInstructions .introduction .introTextWrapper {
    width: 80%;
    margin-left: 10%;
  }
}
@media screen and (max-width: 800px) {
  .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions {
    position: relative;
    width: 200%;
    height: auto;
    text-align: center;
    margin-left: -50%;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk,
  .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange,
  .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore {
    width: 180px;
  }
  .mobile .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    margin-left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .mobile .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .scrollToWalk,
  .mobile .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .swipeToChange,
  .mobile .introductionContainer .plainInstructions .introduction .scrollIntroduction .instructions .clickToExplore {
    width: 200px;
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
@-o-keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(-360deg);
    -webkit-transform: rotateZ(-360deg);
    -moz-transform: rotateZ(-360deg);
    -ms-transform: rotateZ(-360deg);
    -o-transform: rotateZ(-360deg);
  }
  100% {
    transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
  }
}
