@charset "UTF-8";
/**************************************************************
**	IMPORT LIBRARIES
**************************************************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2013 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0, 0, 1, 45deg);
    transform: rotate(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0, 0, 1, 45deg);
    -ms-transform: rotate(0, 0, 1, 45deg);
    transform: rotate(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/**************************************************************
**	FONTS
**************************************************************/
/*---------------------------------------------------------
	-- United Sans
	---------------------------------------------------------*/
@font-face {
  font-family: 'UnitedSansCond-Heavy';
  src: url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.eot');
  src: url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.eot?#iefix') format('embedded-opentype'), url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.woff') format('woff'), url('../fonts/united/condensed-heavy/UnitedSanaCond-Heavy.ttf') format('truetype'), url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.svg#UnitedSansCond-Heavy') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UnitedSansCond-Heavy';
  src: url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.eot');
  src: url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.eot?#iefix') format('embedded-opentype'), url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.woff') format('woff'), url('../fonts/united/condensed-heavy/UnitedSanaCond-Heavy.ttf') format('truetype'), url('../fonts/united/condensed-heavy/UnitedSansCond-Heavy.svg#UnitedSansCond-Heavy') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UnitedSansCond-Medium';
  src: url('../fonts/united/condensed-medium/UnitedSansCond-Medium.eot');
  src: url('../fonts/united/condensed-medium/UnitedSansCond-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/united/condensed-medium/UnitedSansCond-Medium.woff') format('woff'), url('../fonts/united/condensed-medium/UnitedSanaCond-Medium.ttf') format('truetype'), url('../fonts/united/condensed-medium/UnitedSansCond-Medium.svg#UnitedSansCond-Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UnitedSansCond-Bold';
  src: url('../fonts/united/condensed-bold/UnitedSansCond-Bold.eot');
  src: url('../fonts/united/condensed-bold/UnitedSansCond-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/united/condensed-bold/UnitedSansCond-Bold.woff') format('woff'), url('../fonts/united/condensed-bold/UnitedSanaCond-Bold.ttf') format('truetype'), url('../fonts/united/condensed-bold/UnitedSansCond-Bold.svg#UnitedSansCond-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UnitedSansCond-Black';
  src: url('../fonts/united/condensed-black/UnitedSansCond-Black.eot');
  src: url('../fonts/united/condensed-black/UnitedSansCond-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/united/condensed-black/UnitedSansCond-Black.woff') format('woff'), url('../fonts/united/condensed-black/UnitedSanaCond-Black.ttf') format('truetype'), url('../fonts/united/condensed-black/UnitedSansCond-Black.svg#UnitedSansCond-Black') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'UnitedSansReg-Light';
  src: url('../fonts/united/regular-light/UnitedSansReg-Light.eot');
  src: url('../fonts/united/regular-light/UnitedSansReg-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/united/regular-light/UnitedSansReg-Light.woff') format('woff'), url('../fonts/united/regular-light/UnitedSansReg-Light.ttf') format('truetype'), url('../fonts/united/regular-light/UnitedSansReg-Light.svg#UnitedSansReg-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*---------------------------------------------------------
	-- Roboto
	---------------------------------------------------------*/
@font-face {
  font-family: 'roboto_light';
  src: url('../fonts/roboto/roboto-light.eot');
  src: url('../fonts/roboto/roboto-light.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-light.woff') format('woff'), url('../fonts/roboto/roboto-light.ttf') format('truetype'), url('../fonts/roboto/roboto-light.svg#roboto_light') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto_regular';
  src: url('../fonts/roboto/roboto-regular.eot');
  src: url('../fonts/roboto/roboto-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-regular.woff') format('woff'), url('../fonts/roboto/roboto-regular.ttf') format('truetype'), url('../fonts/roboto/roboto-regular.svg#roboto_regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto_medium';
  src: url('../fonts/roboto/roboto-medium.eot');
  src: url('../fonts/roboto/roboto-medium.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-medium.woff') format('woff'), url('../fonts/roboto/roboto-medium.ttf') format('truetype'), url('../fonts/roboto/roboto-medium.svg#roboto_medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto_black';
  src: url('../fonts/roboto/roboto-black.eot');
  src: url('../fonts/roboto/roboto-black.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-black.woff') format('woff'), url('../fonts/roboto/roboto-black.ttf') format('truetype'), url('../fonts/roboto/roboto-black.svg#roboto_black') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto_condensed_regular';
  src: url('../fonts/roboto/roboto-condensed-regular.eot');
  src: url('../fonts/roboto/roboto-condensed-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-condensed-regular.woff') format('woff'), url('../fonts/roboto/roboto-condensed-regular.ttf') format('truetype'), url('../fonts/roboto/roboto-condensed-regular.svg#roboto_condensed_regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto_condensed_bold';
  src: url('../fonts/roboto/roboto-condensed-bold.eot');
  src: url('../fonts/roboto/roboto-condensed-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-condensed-bold.woff') format('woff'), url('../fonts/roboto/roboto-condensed-bold.ttf') format('truetype'), url('../fonts/roboto/roboto-condensed-bold.svg#roboto_condensed_bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'roboto_condensed_bold_italic';
  src: url('../fonts/roboto/roboto-condensed-bold-italic.eot');
  src: url('../fonts/roboto/roboto-condensed-bold-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/roboto-condensed-bold-italic.woff') format('woff'), url('../fonts/roboto/roboto-condensed-bold-italic.ttf') format('truetype'), url('../fonts/roboto/roboto-condensed-bold-italic.svg#roboto_condensed_bold_italic') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*---------------------------------------------------------
	-- Open Sans
	---------------------------------------------------------*/
@font-face {
  font-family: 'open-sans-regular';
  src: url('../fonts/open-sans/regular/open-sans-regular.eot');
  src: url('../fonts/open-sans/regular/open-sans-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans/regular/open-sans-regular.woff') format('woff'), url('../fonts/open-sans/regular/open-sans-regular.ttf') format('truetype'), url('../fonts/open-sans/regular/open-sans-regular.svg#open_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'open-sans-light';
  src: url('../fonts/open-sans/light/open-sans-light.eot');
  src: url('../fonts/open-sans/light/open-sans-light.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans/light/open-sans-light.woff') format('woff'), url('../fonts/open-sans/light/open-sans-light.ttf') format('truetype'), url('../fonts/open-sans/light/open-sans-light.svg#open_sanslight') format('svg');
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: 'open-sans-semibold';
  src: url('../fonts/open-sans/semibold/open-sans-semibold.eot');
  src: url('../fonts/open-sans/semibold/open-sans-semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans/semibold/open-sans-semibold.woff') format('woff'), url('../fonts/open-sans/semibold/open-sans-semibold.ttf') format('truetype'), url('../fonts/open-sans/semibold/open-sans-semibold.svg#open_sanssemibold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'open-sans-extrabold';
  src: url('../fonts/open-sans/extrabold/open-sans-extrabold.eot');
  src: url('../fonts/open-sans/extrabold/open-sans-extrabold.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans/extrabold/open-sans-extrabold.woff') format('woff'), url('../fonts/open-sans/extrabold/open-sans-extrabold.ttf') format('truetype'), url('../fonts/open-sans/extrabold/open-sans-extrabold.svg#open_sansextrabold') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*---------------------------------------------------------
	-- Source Sans Pro
	---------------------------------------------------------*/
@font-face {
  font-family: 'source-sans-pro-regular';
  src: url('../fonts/source-sans-pro/source-sans-pro-regular.eot');
  src: url('../fonts/source-sans-pro/source-sans-pro-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-pro/source-sans-pro-regular.woff') format('woff'), url('../fonts/source-sans-pro/source-sans-pro-regular.ttf') format('truetype'), url('../fonts/source-sans-pro/source-sans-pro-regular.svg#source_sans_pro_regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'source-sans-pro-semibold';
  src: url('../fonts/source-sans-pro/source-sans-pro-semibold.eot');
  src: url('../fonts/source-sans-pro/source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-pro/source-sans-pro-semibold.woff') format('woff'), url('../fonts/source-sans-pro/source-sans-pro-semibold.ttf') format('truetype'), url('../fonts/source-sans-pro/source-sans-pro-semibold.svg#source_sans_pro_semibold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'source-sans-pro-bold';
  src: url('../fonts/source-sans-pro/source-sans-pro-bold.eot');
  src: url('../fonts/source-sans-pro/source-sans-pro-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/source-sans-pro/source-sans-pro-bold.woff') format('woff'), url('../fonts/source-sans-pro/source-sans-pro-bold.ttf') format('truetype'), url('../fonts/source-sans-pro/source-sans-pro-bold.svg#source_sans_pro_bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*---------------------------------------------------------
	-- Personalize Fonts
	---------------------------------------------------------*/
@font-face {
  font-family: 'lane_-_narrowregular';
  src: url('../fonts/personalize/lane/lanenar_-webfont.eot');
  src: url('../fonts/personalize/lane/lanenar_-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/lane/lanenar_-webfont.woff') format('woff'), url('../fonts/personalize/lane/lanenar_-webfont.ttf') format('truetype'), url('../fonts/personalize/lane/lanenar_-webfont.svg#lane_-_narrowregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bosox_revisedregular';
  src: url('../fonts/personalize/bosox/bosox_revised_-webfont.eot');
  src: url('../fonts/personalize/bosox/bosox_revised_-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/bosox/bosox_revised_-webfont.woff') format('woff'), url('../fonts/personalize/bosox/bosox_revised_-webfont.ttf') format('truetype'), url('../fonts/personalize/bosox/bosox_revised_-webfont.svg#bosox_revisedregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'sf_collegiate_solidregular';
  src: url('../fonts/personalize/collegiate/sf_collegiate_solid-webfont.eot');
  src: url('../fonts/personalize/collegiate/sf_collegiate_solid-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/collegiate/sf_collegiate_solid-webfont.woff') format('woff'), url('../fonts/personalize/collegiate/sf_collegiate_solid-webfont.ttf') format('truetype'), url('../fonts/personalize/collegiate/sf_collegiate_solid-webfont.svg#sf_collegiate_solidregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'lobster_regular';
  src: url('../fonts/personalize/lobster/lobster_1.3-webfont.eot');
  src: url('../fonts/personalize/lobster/lobster_1.3-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/lobster/lobster_1.3-webfont.woff') format('woff'), url('../fonts/personalize/lobster/lobster_1.3-webfont.ttf') format('truetype'), url('../fonts/personalize/lobster/lobster_1.3-webfont.svg#lobster_1.3regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'lobster_regular';
  src: url('../fonts/personalize/lobster/lobster_1.3-webfont.eot');
  src: url('../fonts/personalize/lobster/lobster_1.3-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/lobster/lobster_1.3-webfont.woff') format('woff'), url('../fonts/personalize/lobster/lobster_1.3-webfont.ttf') format('truetype'), url('../fonts/personalize/lobster/lobster_1.3-webfont.svg#lobster_1.3regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bebas_neuebold';
  src: url('../fonts/personalize/bebas-neue/bold/bold-webfont.eot');
  src: url('../fonts/personalize/bebas-neue/bold/bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/bebas-neue/bold/bold-webfont.woff2') format('woff2'), url('../fonts/personalize/bebas-neue/bold/bold-webfont.woff') format('woff'), url('../fonts/personalize/bebas-neue/bold/bold-webfont.ttf') format('truetype'), url('../fonts/personalize/bebas-neue/bold/bold-webfont.svg#bebas_neuebold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'league_gothicregular';
  src: url('../fonts/personalize/league-gothic/regular/LeagueGothic-Regular-webfont.eot');
  src: url('../fonts/personalize/league-gothic/regular/LeagueGothic-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/league-gothic/regular/LeagueGothic-Regular-webfont.woff2') format('woff2'), url('../fonts/personalize/league-gothic/regular/LeagueGothic-Regular-webfont.woff') format('woff'), url('../fonts/personalize/league-gothic/regular/LeagueGothic-Regular-webfont.ttf') format('truetype'), url('../fonts/personalize/league-gothic/regular/LeagueGothic-Regular-webfont.svg#league_gothicregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratregular';
  src: url('../fonts/personalize/montserrat/regular/Montserrat-Regular-webfont.eot');
  src: url('../fonts/personalize/montserrat/regular/Montserrat-Regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/montserrat/regular/Montserrat-Regular-webfont.woff2') format('woff2'), url('../fonts/personalize/montserrat/regular/Montserrat-Regular-webfont.woff') format('woff'), url('../fonts/personalize/montserrat/regular/Montserrat-Regular-webfont.ttf') format('truetype'), url('../fonts/personalize/montserrat/regular/Montserrat-Regular-webfont.svg#montserratregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'norwesterregular';
  src: url('../fonts/personalize/norwester/regular/norwester-webfont.eot');
  src: url('../fonts/personalize/norwester/regular/norwester-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/norwester/regular/norwester-webfont.woff2') format('woff2'), url('../fonts/personalize/norwester/regular/norwester-webfont.woff') format('woff'), url('../fonts/personalize/norwester/regular/norwester-webfont.ttf') format('truetype'), url('../fonts/personalize/norwester/regular/norwester-webfont.svg#norwesterregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'sofia_prolight';
  src: url('../fonts/personalize/sofia-pro-light/SofiaProLight-webfont.eot');
  src: url('../fonts/personalize/sofia-pro-light/SofiaProLight-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/sofia-pro-light/SofiaProLight-webfont.woff2') format('woff2'), url('../fonts/personalize/sofia-pro-light/SofiaProLight-webfont.woff') format('woff'), url('../fonts/personalize/sofia-pro-light/SofiaProLight-webfont.ttf') format('truetype'), url('../fonts/personalize/sofia-pro-light/SofiaProLight-webfont.svg#sofia_prolight') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'english_towneregular';
  src: url('../fonts/personalize/english-towne/EnglishTowne-webfont.eot');
  src: url('../fonts/personalize/english-towne/EnglishTowne-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/english-towne/EnglishTowne-webfont.woff2') format('woff2'), url('../fonts/personalize/english-towne/EnglishTowne-webfont.woff') format('woff'), url('../fonts/personalize/english-towne/EnglishTowne-webfont.ttf') format('truetype'), url('../fonts/personalize/english-towne/EnglishTowne-webfont.svg#english_towneregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'vtks_rafiaregular';
  src: url('../fonts/personalize/rafia/Rafia-webfont.eot');
  src: url('../fonts/personalize/rafia/Rafia-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/rafia/Rafia-webfont.woff2') format('woff2'), url('../fonts/personalize/rafia/Rafia-webfont.woff') format('woff'), url('../fonts/personalize/rafia/Rafia-webfont.ttf') format('truetype'), url('../fonts/personalize/rafia/Rafia-webfont.svg#vtks_rafiaregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'ddtextended_bold';
  src: url('../fonts/personalize/ddt/ddt_ex_bd-webfont.eot');
  src: url('../fonts/personalize/ddt/ddt_ex_bd-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/personalize/ddt/ddt_ex_bd-webfont.woff2') format('woff2'), url('../fonts/personalize/ddt/ddt_ex_bd-webfont.woff') format('woff'), url('../fonts/personalize/ddt/ddt_ex_bd-webfont.ttf') format('truetype'), url('../fonts/personalize/ddt/ddt_ex_bd-webfont.svg#ddtextended_bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'porlane';
  src: url('../fonts/porlane/porlane.eot');
  src: url('../fonts/porlane/porlane.eot?#iefix') format('embedded-opentype'), url('../fonts/porlane/porlane.woff') format('woff'), url('../fonts/porlane/porlane.ttf') format('truetype'), url('../fonts/porlane/porlane.svg#micra') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'porlane-slanted';
  src: url('../fonts/porlane/porlane-slanted.eot');
  src: url('../fonts/porlane/porlane-slanted.eot?#iefix') format('embedded-opentype'), url('../fonts/porlane/porlane-slanted.woff') format('woff'), url('../fonts/porlane/porlane-slanted.ttf') format('truetype'), url('../fonts/porlane/porlane-slanted.svg#micra') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rift-soft';
  src: url('../fonts/rift-soft/RiftSoft-Regular.eot');
  src: url('../fonts/rift-soft/RiftSoft-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/rift-soft/RiftSoft-Regular.woff') format('woff'), url('../fonts/rift-soft/RiftSoft-Regular.ttf') format('truetype'), url('../fonts/rift-soft/RiftSoft-Regular.svg#micra') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rift-soft-bold';
  src: url('../fonts/rift-soft/RiftSoft-Bold.eot');
  src: url('../fonts/rift-soft/RiftSoft-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/rift-soft/RiftSoft-Bold.woff') format('woff'), url('../fonts/rift-soft/RiftSoft-Bold.ttf') format('truetype'), url('../fonts/rift-soft/RiftSoft-Bold.svg#micra') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rift-soft-bold-italic';
  src: url('../fonts/rift-soft/RiftSoft-Bold-Italic.eot');
  src: url('../fonts/rift-soft/RiftSoft-Bold-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/rift-soft/RiftSoft-Bold-Italic.woff') format('woff'), url('../fonts/rift-soft/RiftSoft-Bold-Italic.ttf') format('truetype'), url('../fonts/rift-soft/RiftSoft-Bold-Italic.svg#micra') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*---------------------------------------------------------
	-- End Brand Signature Options
	---------------------------------------------------------*/
@font-face {
  font-family: 'blackjack';
  src: url('../fonts/blackjack/blackjack.eot');
  src: url('../fonts/blackjack/blackjack.eot?#iefix') format('embedded-opentype'), url('../fonts/blackjack/blackjack.woff') format('woff'), url('../fonts/blackjack/blackjack.ttf') format('truetype'), url('../fonts/blackjack/blackjack.svg#blackjackregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'dancing-script';
  src: url('../fonts/dancing-script/dancing-script.eot');
  src: url('../fonts/dancing-script/dancing-script.eot?#iefix') format('embedded-opentype'), url('../fonts/dancing-script/dancing-script.woff') format('woff'), url('../fonts/dancing-script/dancing-script.ttf') format('truetype'), url('../fonts/dancing-script/dancing-script.svg#dancingscriptregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'england-hand';
  src: url('../fonts/england-hand/england-hand.eot');
  src: url('../fonts/england-hand/england-hand.eot?#iefix') format('embedded-opentype'), url('../fonts/england-hand/england-hand.woff') format('woff'), url('../fonts/england-hand/england-hand.ttf') format('truetype'), url('../fonts/england-hand/england-hand.svg#englandhand') format('svg');
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: 'abeezee';
  src: url('../fonts/abeezee/abeezee.eot');
  src: url('../fonts/abeezee/abeezee.eot?#iefix') format('embedded-opentype'), url('../fonts/abeezee/abeezee.woff') format('woff'), url('../fonts/abeezee/abeezee.ttf') format('truetype'), url('../fonts/abeezee/abeezee.svg#abeezee') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'vtc-letterer-pro';
  src: url('../fonts/vtc-letterer-pro/vtc_letterer_pro.eot');
  src: url('../fonts/vtc-letterer-pro/vtc_letterer_pro.eot?#iefix') format('embedded-opentype'), url('../fonts/vtc-letterer-pro/vtc_letterer_pro.woff') format('woff'), url('../fonts/vtc-letterer-pro/vtc_letterer_pro.ttf') format('truetype'), url('../fonts/vtc-letterer-pro/vtc_letterer_pro.svg#trashhand') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'college';
  src: url('../fonts/college/college.eot');
  src: url('../fonts/college/college.eot?#iefix') format('embedded-opentype'), url('../fonts/college/college.woff') format('woff'), url('../fonts/college/college.ttf') format('truetype'), url('../fonts/college/college.svg#college') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'micra';
  src: url('../fonts/micra/micra.eot');
  src: url('../fonts/micra/micra.eot?#iefix') format('embedded-opentype'), url('../fonts/micra/micra.woff') format('woff'), url('../fonts/micra/micra.ttf') format('truetype'), url('../fonts/micra/micra.svg#micra') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'arrow-black';
  src: url('../fonts/arrow-black/arrow-black.eot');
  src: url('../fonts/arrow-black/arrow-black.eot?#iefix') format('embedded-opentype'), url('../fonts/arrow-black/arrow-black.woff') format('woff'), url('../fonts/arrow-black/arrow-black.ttf') format('truetype'), url('../fonts/arrow-black/arrow-black.svg#arrow-black') format('svg');
  font-weight: normal;
  font-style: normal;
}
/**************************************************************
**	CUSTOM VARIABLES
**************************************************************/
/*---------------------------------------------------------
	-- Colors
	---------------------------------------------------------*/
/*---------------------------------------------------------
	-- Fonts
	---------------------------------------------------------*/
/**************************************************************
**	GENERAL
**************************************************************/
html,
body {
  width: 1px;
  min-width: 100%;
  *width: 100%;
}
body {
  -ms-overflow-style: scrollbar;
  font-family: 'open-sans-regular';
  padding-right: 0px !important;
  padding-left: 0px !important;
  /* Absolute Center Spinner */
  /* Transparent Overlay */
  /* :not(:required) hides these rules from IE9 and below */
  /* Animation */
}
body h1,
body h2,
body h3 {
  margin: 2px;
  color: #0f233d;
  font-family: 'rift-soft-bold-italic';
  line-height: 0.5;
  text-transform: uppercase;
}
body h1 {
  font-size: 6.4em;
}
body h2 {
  font-size: 3em;
}
body h3 {
  font-size: 2.6em;
}
body input[type=text] {
  font-size: 1.2em;
  padding: 4px 0 4px 6px;
  border: none;
  outline: none;
  background: #efefef;
}
body .st0 {
  stroke: none !important;
}
body .row {
  margin-right: 0;
  margin-left: 0;
}
body .row.no-gutters {
  margin-right: 0;
  margin-left: 0;
  float: left;
}
body .row.no-gutters-centered {
  margin-right: 0;
  margin-left: 0;
}
body .row.no-gutters > [class^="col-"],
body .row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}
body a {
  outline: none;
}
body a:hover,
body a:focus {
  text-decoration: none;
  outline: none;
}
body a:focus {
  outline: none;
}
body .action-btn.btn-cancel-file-upload {
  display: none;
  width: 100%;
  margin: 10px auto 0 auto;
  cursor: pointer;
}
body .action-btn.btn-cancel-file-upload:hover {
  color: #FFFFFF;
  background: #BE2B1B;
}
body a.action-btn.disabled,
body span.action-btn.disabled {
  pointer-events: none;
  opacity: 0.3;
}
body a.action-btn.two-lines,
body span.action-btn.two-lines {
  padding: 11px 25px;
}
body a.action-btn:hover,
body .action-btn.btn-file:hover {
  color: #FFFFFF;
  background: #BE2B1B;
  text-decoration: none;
  transition: 0.1s ease-in;
}
body a.action-btn.btn-secondary {
  border-color: #C2C2C2;
}
body a.action-btn.btn-secondary:hover {
  border-color: #BE2B1B;
}
body p {
  padding-bottom: 15px;
}
body .img-responsive {
  width: 100%;
}
body .loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body .loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
  background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
}
body .loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
body .loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body .tooltip-inner {
  font-size: 0.9em;
}
body #output-container {
  position: fixed;
  top: 10px;
  right: 100px;
  padding: 7px;
  z-index: 1000;
  width: 300px;
  height: 27px;
  min-height: 20px;
  font-size: 0.7em;
  overflow: hidden;
  border: thin solid #EBEBEB;
  background: white;
}
body #output-container #output-header {
  cursor: pointer;
  font-size: 11px;
  font-weight: bolder;
  font-family: helvetica;
  text-align: center;
}
body #output-container.active {
  height: auto;
}
@media (min-width: 768px) {
  body a.action-btn,
  body span.action-btn,
  body .action-btn.btn-file {
    font-size: 16px;
  }
}
/**************************************************************
**	GLOBAL STYLES
**************************************************************/
body {
  /*---------------------------------------------------------
		-- Primary Header
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Primary Header
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Bat view
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Mobile Navigation
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Main Content
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- footer
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Modals
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Buttons
		---------------------------------------------------------*/
  /* Create a custom radio button */
  /*---------------------------------------------------------
		-- Media Queries
		---------------------------------------------------------*/
}
body .fa-question {
  color: #BE2B1B;
  font-size: 0.6em;
  width: 34px;
  height: 34px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
  padding: 6px;
  cursor: pointer;
  background: #eeeeee;
}
body .fa-question:hover {
  color: #FFFFFF;
  background: #BE2B1B;
}
body .fa.fa-question-circle {
  cursor: pointer;
}
body .action-icon {
  opacity: 1;
  background: #BE2B1B;
  color: #FFFFFF;
  border: 1px solid #C2C2C2;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  text-align: center;
  padding-top: 7px;
  cursor: pointer;
  z-index: 20;
  transition: 0.2s ease-in;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
body .action-icon .fa-2x,
body .action-icon .fa-plus,
body .action-icon .fa-times {
  font-size: 1.2em;
}
body .action-icon .fa-times {
  display: block;
  margin: 3px 0 0 -12px;
  font-size: 1.05em;
}
body .action-icon.large {
  border-radius: 15px;
  padding-top: 6px;
}
body .action-icon.cancel {
  border-radius: 15px;
  padding-top: 2px;
  text-align: center;
  text-transform: uppercase;
}
body .action-icon:hover {
  background: #FFFFFF;
  color: #BE2B1B;
  border: 1px solid #BE2B1B;
}
body .action-icon.active {
  opacity: 1;
}
body .loader {
  display: block;
  margin: 0 auto;
  width: 30px;
}
body .offscreen {
  position: absolute;
  top: -10000px;
  left: 0;
}
body .not-clickable {
  pointer-events: none;
}
body .crossed-out {
  text-decoration: line-through;
}
body .slanted {
  font-family: 'rift-soft-bold-italic';
}
body .absolute-v-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
body .absolute-h-center {
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
}
body .bat-view.animated {
  -ms-animation-duration: 300ms;
  -moz-animation-duration: 300ms;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
}
body .note {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-family: 'open-sans-semibold';
}
body .note.large {
  font-size: 12px;
}
body .model-description-note.under-name {
  font-size: 11px;
}
body .model-price.price-container.line-through {
  text-decoration: line-through;
  font-size: 18px !important;
}
body .price.price-container {
  line-height: 1.05;
}
body #error-wrapper #error-message {
  margin: 150px 0;
}
body #error-wrapper #error-message h2 {
  text-align: center;
  font-family: 'roboto_condensed_bold';
  font-size: 60px;
}
body #admin-header {
  padding: 0;
}
body #admin-header a {
  color: #000000;
}
body #admin-header a:hover {
  color: #BE2B1B;
}
body #admin-header .inline-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0px;
}
body #admin-header .inline-list li:first-child {
  width: 240px;
  text-align: left;
  background: #FFFFFF;
}
body #admin-header .inline-list li {
  display: inline-block;
  border-right: 1px solid #c8c8c8;
  padding: 10px 10px;
  text-align: center;
  background: #ececec;
  float: left;
}
body #admin-header .inline-list li strong {
  font-family: 'open-sans-extrabold';
}
body #primary-header {
  width: 100%;
  height: 70px;
  text-align: left;
  padding: 0;
  position: relative;
  z-index: 15;
  overflow: hidden;
  opacity: 1;
  background-size: cover;
  background-image: url('../images/global/header-bg.jpg');
}
body #primary-header .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1250px;
  text-align: center;
}
body #primary-header .container .navbar-brand {
  display: inline;
  height: 70px;
  padding: 7px 0 0 7px;
  width: 200px;
}
body #primary-header .container .container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
body #primary-header .container .nav-item {
  display: inline-block;
  position: relative;
  margin: 11px 0 0;
  padding: 0px;
  height: 30px;
  transition: 0.2s ease-in;
}
body #primary-header .container .nav-item .logo {
  width: 60px;
  margin: -24px 1px 0;
  display: inline-block;
  height: auto;
  vertical-align: top;
}
body #primary-header .container .nav-item .action-btn {
  position: relative;
  width: 100%;
  margin: 5px 2px;
  cursor: pointer;
  color: #FFFFFF;
  font-family: 'rift-soft-bold';
  font-size: 18px;
  line-height: 16px;
  text-align: center;
  word-break: break-word;
}
body #primary-header .container .nav-item .action-btn.custom {
  margin: 15px 0 0 -10px;
  font-family: 'rift-soft-bold-italic';
}
body #primary-header .container .nav-item .action-btn.mlb {
  font-family: 'bebas_neuebold';
  font-size: 16px;
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0px;
  position: absolute;
  vertical-align: middle;
  margin: -1px 0 0;
}
body #primary-header .container .nav-item a {
  display: block;
  height: 100%;
  color: #262626;
  transition: 0.2s ease-in;
  text-decoration: none;
}
body #primary-header .container .nav-item a:hover {
  background-color: transparent;
  color: #FFFFFF;
  text-decoration: underline;
}
body #primary-header .container .nav-item.custom {
  display: inline-block;
}
body #primary-header .container .nav-item.mlb {
  width: 82px;
}
body #primary-header .container #header-cart {
  font-family: 'open-sans-extrabold';
  font-size: 15px;
  height: 100%;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 14%;
  max-width: 120px;
  padding: 0px;
}
body #primary-header .container #header-cart #cart-info-container {
  position: relative;
}
body #primary-header .container #header-cart #cart-info-container #account-status {
  font-size: 0.7em;
  margin: 0 0 0 0;
  color: #FFFFFF;
  background: #222222;
  margin-bottom: 4px;
  cursor: pointer;
  transition: 0.2s ease-in;
}
body #primary-header .container #header-cart #cart-info-container #account-status a {
  height: 18px;
  padding-top: 2px;
  display: block;
  width: 100%;
  color: #FFFFFF;
  transition: 0.2s ease-in;
}
body #primary-header .container #header-cart #cart-info-container #account-status a:hover {
  color: #FFFFFF;
  background: #BE2B1B;
}
body #primary-header .container #header-cart #cart-info-container #account-status:hover {
  background: #FFFFFF;
  color: #BE2B1B;
}
body #primary-header .container #header-cart #cart-info-container #cart-data-container {
  position: absolute;
  width: 100%;
  height: 40px;
  top: 11px;
  left: 0px;
}
body #primary-header .container #header-cart #cart-info-container #cart-data-container .fa.fa-shopping-bag {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 2.5em;
}
body #primary-header .container #header-cart #cart-info-container #cart-data-container #cart-qty {
  position: absolute;
  top: 5px;
  left: 28px;
  padding: 0px 2px;
  color: #FFFFFF;
  font-size: 0.8em;
  font-family: 'open-sans-regular';
  z-index: 2;
  background: #262626;
  min-width: 11px;
}
body #primary-header .container #header-cart #cart-info-container #cart-data-container #cart-price {
  position: absolute;
  top: 11px;
  left: 45px;
  width: 70px;
  color: #FFFFFF;
  font-size: 0.7em;
  font-family: 'open-sans-regular';
}
body #primary-header .container #header-cart #cart-info-container #cart-data-container #header-cart-icon {
  position: absolute;
  margin: 0 auto;
  top: 7px;
  left: 15px;
}
body #primary-header.sticky {
  position: fixed;
}
body .wood.fan-collectible-special-occasions .decal-3 {
  display: none;
}
body .bat-view {
  z-index: 1;
}
body .bat-view .bat-container {
  position: relative;
}
body .part {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
body .bat-view .part.end-cap-outer.svg {
  z-index: 12;
}
body .bat-view .part.end-cap-inner.svg {
  z-index: 13;
}
body .bat-view .part.decal-2 {
  z-index: 20;
}
body .bat-view .part.decal-2-static {
  z-index: 25;
}
body .bat-view .part.cone-outer {
  z-index: 27;
}
body .bat-view .part.cone-inner {
  z-index: 28;
}
body .bat-view .part.overlay {
  z-index: 30;
}
body .composite.fastpitch.lxt .bat-view .part.decal-2-static {
  z-index: 18;
}
body .wood .part {
  z-index: 10;
}
body .wood .part.cupped.img {
  z-index: 1001;
  pointer-events: none;
}
body .wood .part.outline {
  z-index: 1000;
  pointer-events: none;
}
body .wood .part.overlay.img img,
body .wood .part.outline.img img,
body .wood .part.effect img {
  pointer-events: none;
}
body .wood .part.overlay.barrel,
body .wood .part.overlay.handle {
  z-index: 16;
  pointer-events: none;
}
body .wood .part.decal-1,
body .wood .part.decal-3,
body .wood .part.decal-4 {
  z-index: 11;
}
body .wood .part.decal-4-overlay,
body .wood .part.decal-1-overlay {
  z-index: 12;
}
body .wood .part.decal-1.svg.ls {
  z-index: 15px;
}
body .wood .part.decal-2 {
  z-index: 20;
}
body .wood .part.decal-3 {
  z-index: 14;
}
body .wood .part.decal-3-overlay {
  z-index: 15;
}
body .wood .part.decal-4 .collectible-logo-holder {
  width: 100%;
  height: 100%;
}
body .wood .sub-section-wrapper.decal-4-color.colors {
  display: none;
}
body .wood .part.end-cap {
  z-index: 11;
}
body .wood .part.overlay.grip {
  opacity: 0.7;
  z-index: 2001;
}
body .wood .part.grip {
  display: none;
  z-index: 2000;
}
body .wood .part.grip-tape {
  display: none;
  z-index: 14;
}
body .wood .part.grip-tape.img {
  display: none;
  z-index: 15;
}
body .wood .part.grip-tape-overlay {
  display: none;
  z-index: 15;
}
body .wood .part.shadow {
  position: absolute;
  top: 30px;
}
body .wood .part.underlay {
  z-index: -1;
}
body .wood .part.effect {
  pointer-events: none;
  z-index: 11;
}
body .wood .part.decal-1-effect {
  z-index: 14;
}
body .wood .part.decal-3-effect {
  z-index: 14 !important;
}
body .wood .bat-view.zoom-end-cap .part.barrel.svg,
body .wood .bat-view.personalize-end-cap .part.barrel.svg {
  transform: scale(0.9988);
}
body .wood .bat-view.zoom-in .part.barrel.svg svg {
  stroke: #FFFFFF;
  stroke-width: 5;
}
body .wood .bat-view.zoom-in .part.decal-3-effect {
  display: none;
}
body .wood .bat-view.zoom-in .part.overlay.barrel,
body .wood .bat-view.zoom-in .part.overlay.handle {
  opacity: 1;
}
body .wood .bat-view.zoom-in .part.grip.img {
  -webkit-filter: drop-shadow(12px 12px 25px rgba(0, 0, 0, 0.5));
}
body .wood .bat-view.zoom-in .part.grip.svg {
  top: 1px;
  left: 3px;
}
body .swatch img {
  position: absolute;
}
body .swatch-definition {
  overflow: hidden;
}
body .swatch-definition img {
  position: absolute;
  height: 44px;
}
body #mobile-navigation {
  display: none;
}
body #main-content.customize {
  opacity: 0;
  min-height: 800px;
}
body #page-footer {
  padding: 8px 0 0;
  margin: 0 0 -6px;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  background: #262626;
}
body #page-footer .divider {
  padding: 0 2px;
  vertical-align: top;
}
body #page-footer a {
  display: inline;
  padding: 0 0 0 12px;
  margin: 10px 0px 10px;
  padding: 0;
  color: #ffffff;
  font-family: 'open-sans-regular';
  border: none;
  background: transparent;
}
body #page-footer a:hover {
  text-decoration: underline;
}
body #page-footer #sub-footer {
  padding: 4px 0;
}
body #page-footer #sub-footer .divider {
  vertical-align: text-bottom;
}
body .form-group label {
  font-family: 'roboto_black';
  font-size: 0.9em;
  margin-bottom: 2px;
}
body .asterisk {
  color: red;
  font-size: 0.9em;
  font-family: 'helvetica';
}
body .flexc {
  display: block;
  align-items: center;
  padding: 0;
  justify-content: center;
}
body .flexc a {
  display: block;
  flex: auto;
  text-align: center;
  flex-basis: 0;
}
body .modal .modal-content .modal-header {
  color: #ffffff;
  background: #0f233d;
}
body .modal .modal-content .modal-header .modal-title {
  text-transform: uppercase;
}
body .modal .modal-content input[type=text] {
  font-size: 0.94em;
  width: 100%;
}
body .modal .modal-content .close {
  position: absolute;
  right: 30px;
  top: 0px;
  right: 17px;
  font-size: 2em;
  color: #ffffff;
}
body #swing-weight-modal .modal-dialog {
  max-width: 900px;
}
body #swing-weight-modal .modal-dialog .row.swing-weights {
  margin: 30px 0 0;
}
body #swing-weight-modal .modal-dialog .row.swing-weights .weight {
  width: 100%;
  display: inline-block;
  margin: 4px 0 0 0;
  padding: 10px 10px 16px;
  text-align: center;
  font-size: 0.8em;
  color: #ffffff;
  background: #0f233d;
}
body #swing-weight-modal .modal-dialog .row.swing-weights .weight .weight-number {
  color: #0f233d;
  padding: 1px;
  width: 20px;
  height: 20px;
  margin: 0 auto 5px;
  border-radius: 12px;
  background: #ffffff;
}
body #swing-weight-modal .modal-dialog .row.swing-weights .weight .weight-title {
  text-transform: uppercase;
  font-weight: bold;
}
body #swing-weight-modal .modal-dialog .row.swing-weights .weight .weight-desc {
  white-space: nowrap;
  padding: 2px 0 0;
  margin: 2px 0 -5px;
  font-size: 0.74em;
}
body .holiday-message,
body .uttg-message {
  display: block;
  margin: 0 auto 14px auto;
  padding: 6px;
  font-size: 0.8em;
  text-align: center;
  max-width: 312px;
  border: 2px solid #BE2B1B;
}
body .holiday-message .headline,
body .uttg-message .headline {
  font-size: 1.05em;
  font-weight: bold;
  color: #BE2B1B;
  text-transform: uppercase;
  margin: 0 0 -8px;
}
body .holiday-message strong,
body .uttg-message strong {
  font-family: 'open-sans-extrabold';
}
body #save-glove-modal .modal-footer.error,
body #save-glove-modal .modal-footer.success {
  display: none;
  text-align: right;
}
body #save-glove-modal .modal-footer.btn {
  display: inline-block;
}
body button {
  background: none;
  border: none;
}
body button:focus,
body button:active {
  background: none;
  border: none;
  outline: 0;
}
body .btn {
  font-family: 'roboto_condensed_regular';
  text-transform: uppercase;
  border-radius: 0px;
  padding: 0 17px;
  text-align: center;
  line-height: 1.05em;
}
body .sub-section-label {
  margin: 14px 0 -2px;
  color: #262626;
  font-family: 'open-sans-extrabold';
  text-transform: capitalize;
}
body .subnav-item,
body .nav-item .nav-link,
body .answer,
body .btn.btn-primary {
  display: inline-block;
  margin: 5px 10px;
  vertical-align: top;
  height: 40px;
  color: #262626;
  text-align: center;
  font-family: 'open-sans-semibold';
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  border-color: transparent;
  outline: none;
  background: #cac9ce;
}
body .subnav-item:first-child,
body .nav-item .nav-link:first-child,
body .answer {
  margin: 5px 5px 5px 0;
}
body .subnav-item.active,
body .nav-item .nav-link.active,
body .nav-item .nav-link:hover,
body .answer.active,
body .answer:hover,
body .btn.btn-primary:hover {
  color: #ffffff;
  background: #0f233d;
}
body .nav-item:last-child .nav-link {
  margin: 5px 0 5px 0;
}
body .nav.nav-tabs.level-2 .nav-link,
body .subnav.level-2 .answer,
body .nav.nav-tabs.level-3 .nav-link,
body .subnav.level-3 .answer {
  padding: 5px 28px;
  height: 37px;
  font-size: 0.9em;
  border-radius: 20px;
}
body .nav.nav-tabs.level-3 .nav-link,
body .subnav.level-3 .answer {
  padding: 8px 20px;
  height: 33px;
  font-size: 0.8em;
}
body .subnav .nav-tabs {
  border: none;
}
body .subnav ul.level-1,
body .subnav ul.level-2,
body .subnav ul.level-3 {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 8px 0 0 0;
  border: none;
}
body .subnav ul.level-1 .nav-item,
body .subnav ul.level-2 .nav-item,
body .subnav ul.level-3 .nav-item {
  display: inline-block;
  text-align: center;
}
body .subnav ul.level-1 {
  margin: 0;
}
body .subnav .fa {
  font-size: 1.6em;
  margin: 10px 0;
}
body .subnav.no-ul {
  margin-top: 8px;
}
body .answer.no-style {
  background: transparent;
  padding: 0;
}
body .answer.inactive {
  pointer-events: none;
  opacity: 0.3;
}
body .subnav-item.reverse,
body .nav-item .nav-link.reverse,
body .answer.reverse,
body .btn.btn-primary.reverse {
  color: #ffffff;
  background: #0f233d;
}
body .subnav-item.reverse.active,
body .nav-item .nav-link.active.reverse,
body .nav-item .nav-link.reverse:hover,
body .answer.reverse.active,
body .answer.reverse:hover,
body .btn.btn-primary.reverse:hover {
  color: #000000;
  background: #EBEBEB;
}
body .btn.btn-secondary {
  background: #FFFFFF;
  border: 2px solid #999999;
  color: #BE2B1B;
}
body .btn.btn-secondary:hover {
  background-color: #BE2B1B;
  color: #FFFFFF;
  border: 2px solid #BE2B1B;
  transition: 0.2s ease-in;
}
body .btn.btn-secondary.two-lines {
  padding: 2px 25px;
}
body .btn.btn-tertiary {
  background-color: #BE2B1B;
  border: 1px solid #BE2B1B;
  color: #FFFFFF;
  font-size: 16px;
  padding: 11px;
  min-width: 90px;
  margin-bottom: 6px;
}
body .btn.btn-tertiary:hover {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #BE2B1B;
  transition: 0.2s ease-in;
}
body .nav-connector {
  display: none;
  position: absolute;
  z-index: -1;
  left: 20px;
  width: 88%;
  height: 2px;
  top: 24px;
}
body #subnav-bg {
  display: none;
  position: absolute;
  z-index: -2;
  margin-top: 7px;
  width: 100%;
  height: 107px;
  background-color: #f1f1f1;
}
body .radiocontainer {
  display: inline-block;
  position: relative;
  padding: 3px 0 0 0;
  margin: 0 4px 14px;
  cursor: pointer;
  vertical-align: top;
  text-align: left;
  -webkit-user-select: none;
  /* Chrome, Opera, Safari */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  /* Hide the browser's default checkbox */
}
body .radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
body .radiocontainer .radiobtn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  height: 32px;
  width: 32px;
  border: 7px solid #262626;
  background-color: #ffffff;
  border-radius: 50%;
}
body .radiocontainer .radiobtn:after {
  content: "";
  position: absolute;
  display: none;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #262626;
}
body .radiocontainer .radio-label-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  height: 20px;
  font-family: 'open-sans-regular';
  font-size: 0.8em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  overflow: visible;
}
body .radiocontainer.active .radio-label-wrapper {
  color: #0f233d;
  font-family: 'open-sans-semibold';
}
body .radiocontainer:hover input ~ .radiobtn {
  background-color: #ccc;
}
body .radiocontainer input:checked ~ .radiobtn {
  background-color: #ffffff;
}
body .radiocontainer input:checked ~ .radiobtn:after {
  display: block;
}
@media (min-width: 768px) {
  body .nav-connector {
    display: block;
  }
  body #subnav-bg {
    display: block;
    height: 55px;
  }
  body .subnav-item,
  body .nav-item .nav-link,
  body .answer,
  body .btn.btn-primary {
    padding: 5px 14px;
    font-size: 0.96em;
  }
  body .nav.nav-tabs.level-2 .nav-link,
  body .subnav.level-2 .answer,
  body .nav.nav-tabs.level-3 .nav-link,
  body .subnav.level-3 .answer {
    padding: 5px 28px;
    font-size: 0.9em;
  }
  body .nav.nav-tabs.level-3 .nav-link,
  body .subnav.level-3 .answer {
    font-size: 0.8em;
  }
  body .flexc {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
  }
  body .flexc a {
    display: block;
    flex: auto;
    text-align: center;
    flex-basis: 0;
  }
  body #swing-weight-modal .modal-dialog {
    max-width: 900px;
  }
  body #swing-weight-modal .modal-dialog .row.swing-weights {
    margin: 30px 0 0;
  }
  body #swing-weight-modal .modal-dialog .row.swing-weights .weight {
    width: auto;
    display: inline-block;
    margin: 0 2px 0 2px;
    text-align: center;
    font-size: 0.8em;
    color: #ffffff;
    background: #0f233d;
  }
  body #swing-weight-modal .modal-dialog .row.swing-weights .weight .weight-number {
    color: #0f233d;
    padding: 1px;
    width: 20px;
    height: 20px;
    margin: 0 auto 5px;
    border-radius: 12px;
    background: #ffffff;
  }
  body #swing-weight-modal .modal-dialog .row.swing-weights .weight .weight-title {
    text-transform: uppercase;
    font-weight: bold;
  }
  body #swing-weight-modal .modal-dialog .row.swing-weights .weight .weight-desc {
    white-space: nowrap;
    padding: 2px 0 0;
    margin: 2px 0 -5px;
    font-size: 0.74em;
  }
  body #swing-weight-modal .modal-dialog .row.swing-weights .weight .see-bats {
    margin: 8px 0 0;
  }
  body #primary-header .container .nav-item .action-btn {
    line-height: 21px;
    font-size: 23px;
  }
  body #primary-header .container .nav-item .action-btn.custom a {
    margin: 15px 0 0 10px;
  }
  body #primary-header .container .nav-item .action-btn.mlb {
    font-size: 20px;
    margin: -4px 0 0;
  }
  body #primary-header .container .nav-item.mlb {
    width: 102px;
  }
  body .footer .footer-copyright a {
    display: inline-block;
    width: auto;
  }
}
@media (min-width: 992px) {
  body #primary-header .container .nav-item .logo {
    width: 170px;
    margin: -1px 1px 0;
  }
  body #primary-header .container .nav-item .action-btn {
    line-height: 16px;
    font-size: 26px;
  }
  body #primary-header .container .nav-item .action-btn.mlb {
    font-size: 24px;
    margin: 0;
  }
  body #primary-navigation {
    font-size: 14px;
  }
  body #primary-navigation .nav-logo {
    padding-top: 1px;
  }
  body #primary-navigation .nav-logo a img {
    width: 53px;
  }
  body #primary-navigation .nav-logo #header-logo-copy {
    line-height: 1.1em;
    margin-top: 2px;
    font-size: 13px;
  }
  body #primary-navigation .nav-logo #primary-nav-arrow {
    display: block;
  }
}
@media (min-width: 1200px) {
  body {
    padding-top: 0;
  }
}
/**************************************************************
**	HOMEPAGE
**************************************************************/
body.home #main-content {
  min-height: 600px;
}
body.home #main-content #hp-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 1100px;
}
body.home #main-content #hp-wrapper #callout-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 316px;
  margin: 0 auto;
}
body.home #main-content #hp-wrapper .callout {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 342px;
  margin: 0;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  overflow: hidden;
  border-top: 9px solid #ffffff;
  background-color: #333333;
}
body.home #main-content #hp-wrapper .callout .home-button {
  border: 2px solid #ffffff;
}
body.home #main-content #hp-wrapper .callout .headline {
  margin: 20px 0 3px;
  padding: 0;
  color: #ffffff;
  font-family: 'rift-soft-bold-italic';
  font-size: 2.7em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8);
}
body.home #main-content #hp-wrapper .callout p {
  padding: 0;
  text-align: center;
  color: #ffffff;
}
body.home #main-content #hp-wrapper .callout .callout-wrapper {
  position: absolute;
  width: 100%;
  top: 90px;
  text-align: center;
}
body.home #main-content #hp-wrapper .callout .callout-wrapper .callout-header {
  width: 100%;
  height: auto;
  padding: 0;
  color: #ffffff;
  font-family: 'rift-soft-bold-italic';
  font-size: 5em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.8);
}
body.home #main-content #hp-wrapper .callout .callout-wrapper .btn {
  width: 127px;
}
body.home #main-content #hp-wrapper .callout .callout-img {
  width: 100%;
  margin: 0 auto;
}
body.home #main-content #hp-wrapper .callout.fastpitch {
  border-left: none;
  border-right: none;
}
body.home #main-content #hp-wrapper .callout.wide {
  display: block;
  padding: 25px;
  width: 100%;
  height: auto;
  background-size: cover;
}
body.home #main-content #hp-wrapper .callout.wide#announcement {
  background-image: url('../images/home/2023/callout-product-annoucement-bg.jpg');
  background-size: cover;
  background-position: center;
}
body.home #main-content #hp-wrapper .callout.wide#announcement .btn.btn-primary {
  margin: -8px 14px;
}
body.home #main-content #hp-wrapper .callout.wide#gift-bats {
  background-image: url('../images/home/2023/callout-special-occasion-bg.jpg');
}
body.home #main-content #hp-wrapper .callout.wide#gift-bats {
  background-color: #0f233d;
}
body.home #main-content #hp-wrapper .callout.wide#gift-bats #announcement-container {
  text-align: center;
}
body.home #uttg-callout {
  position: fixed;
  z-index: 30000;
  width: 250px;
  top: 90px;
  left: 20px;
}
body.home .require-customer-data-container {
  display: none;
}
body.home #seo {
  margin: 0 auto;
  max-width: 890px;
  padding: 15px 10px 22px;
  font-size: 0.9em;
  text-align: center;
}
body.home #seo a {
  color: #000000;
  text-decoration: underline;
}
body.home #seo a:hover {
  color: #BE2B1B;
}
@media (min-width: 768px) {
  body.home #account-status {
    position: absolute;
    top: 6px;
    right: 12px;
    z-index: 2000;
  }
  body.home #account-status a {
    color: #C2C2C2;
  }
  body.home #account-status a:hover {
    color: #BE2B1B;
  }
  body.home #uttg-callout {
    width: 400px;
    top: 140px;
    left: 20px;
  }
  body.home #main-content #hp-wrapper .callout {
    width: 32.8%;
    display: inline-block;
    border: 9px solid #ffffff;
  }
  body.home #main-content #hp-wrapper .callout .headline {
    margin: 20px 0 2px;
    font-size: 4em;
  }
  body.home #main-content #hp-wrapper .callout.wide {
    border-top: none;
  }
}
@media (min-width: 992px) {
  body.home #main-content #hp-wrapper .callout {
    display: inline-block;
    width: 32.9%;
  }
}
@media (min-width: 1200px) {
  body.home #main-content #hp-wrapper .callout {
    width: 33%;
  }
}
/**************************************************************
**	SELECT MODEL
**************************************************************/
body.select-model {
  /*
		.select li {
		  display: none;
		  cursor: pointer;
		  padding: 5px 10px;
		  border-top: 1px solid black;
		  min-width: 150px;
		}
		
		.select li:first-child {
		  display: block;
		  border-top: 0px;
		}
		
		.select {
		  border: 1px solid black;
		  display: inline-block;
		  padding: 0;
		  border-radius: 4px;
		  position: relative;
		}
		
		.select li:hover {
		  background-color: #ddd;
		}
		
		.select li:first-child:hover {
		  background-color: transparent;
		}
		
		.select.open li {
		  display: block;
		}
		
		.select span:before {
		  position: absolute;
		  top: 5px;
		  right: 15px;
		  content: "\2193";
		}
		
		.select.open span:before {
		  content: "\2191";
		}
		*/
}
body.select-model .families {
  text-align: center;
}
body.select-model .families #model-type-select li {
  cursor: pointer;
}
body.select-model .families .family {
  margin: 10px auto;
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 520px;
  padding: 12px 0;
}
body.select-model .families .family .section-header {
  margin: 12px 0;
  font-size: 3em;
}
body.select-model .families .family .section-header.special-occasion {
  font-size: 2.3em;
}
body.select-model .families .family .section-header.filter-by-swing-weight {
  margin: 10px 0 -12px;
  font-size: 1.2em;
}
body.select-model .families .family .section-desc {
  margin: 15px auto;
}
body.select-model .families .family.fungo {
  max-width: 100%;
}
body.select-model .families .family.scratch {
  background: #e5e5e5 url('../images/model/scratch-bg.png') no-repeat center bottom;
  background-size: 1200px auto;
}
body.select-model .families .family.mlb {
  overflow: -webkit-paged-x;
  overflow: -moz-paged-x;
  height: auto;
  background: #000000;
}
body.select-model .families .family.mlb img.authentic-collection {
  display: block;
  margin: 7px auto 15px;
  max-width: 240px;
}
body.select-model .families .family.mlb .section-header,
body.select-model .families .family.mlb .section-desc,
body.select-model .families .family.mlb .note {
  color: #ffffff;
}
body.select-model .families .family.mlb #select-mlb-model-container {
  margin: 12px auto 0 0;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container {
  position: relative;
  padding-top: 49px;
  padding: 0;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 50;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu {
  min-height: 250px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border: none;
  width: 100%;
  max-width: 1161px;
  margin: 5px auto 0 5px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-filter: none;
  filter: none;
  background-color: #ffffff !important;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content {
  padding: 50px 30px 30px 30px;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-container {
  overflow: hidden;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-wrapper {
  text-align: center;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-series-size {
  font-size: 18px;
  text-transform: uppercase;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-model {
  display: inline-block;
  font-size: 2.1em;
  text-transform: uppercase;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-model .model-name {
  font-size: 1em;
  margin-top: 0px;
  font-family: 'rift-soft-bold';
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .price-container {
  font-size: 3.4em;
  margin-top: 0px;
  font-family: 'rift-soft-bold';
  color: #0f233d;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-description {
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.6em;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .choose-bat-copy {
  font-size: 0.8em;
  padding: 12px 0 0;
  font-family: 'open-sans-semibold';
  color: #0f233d;
  text-transform: uppercase;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-image {
  margin: 20px 0;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-image:hover,
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-image.selected {
  border-left: 4px solid red;
  border-right: 4px solid red;
  cursor: pointer;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-price {
  font-size: 27px;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .btn {
  width: 80%;
  margin-top: 4px;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content a.action-btn {
  cursor: pointer;
  width: 80%;
  display: block;
  margin: 10px auto;
  padding: 14px;
  border-color: #BE2B1B;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content a.action-btn.btn-secondary {
  border-color: #C2C2C2;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content a.action-btn.btn-secondary:hover {
  border-color: #BE2B1B;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .close-model-information {
  display: none;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .close-mlb-model-dropdown-container {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-logo-container .row {
  display: block;
  margin: 0 auto;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .row {
  text-align: center;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper {
  width: 85px;
  padding: 0;
  border: 1px solid #dfdfdf;
  margin: 4px;
  transition: 0.2s ease-out;
  float: none;
  display: inline-block;
  background: transparent;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper .mlb-model-item {
  background: #ffffff;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper .mlb-model-item .mlb-model-item-body {
  cursor: pointer;
  padding: 14px;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper .mlb-model-item .mlb-model-item-body img {
  margin: 0 auto;
  max-height: 115px;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper .mlb-model-item .dropdown-toggle::after {
  display: none;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper.active {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper.inactive {
  background: #bfbfbf;
  border-color: #acacac;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper.inactive .mlb-model-item {
  opacity: 0.5;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper.inactive:hover {
  background: transparent;
  border-color: #dfdfdf;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper.inactive:hover .mlb-model-item {
  opacity: 1;
}
body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-models-container-overlay {
  display: none;
  background: rgba(0, 0, 0, 0.3) !important;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
body.select-model .families .family.special-occasion {
  background: #e5e5e5 url('../images/model/wood/collectibles/special-occasion-bg.jpg') no-repeat center bottom;
  background-size: 1200px auto;
  background-position: center 200px;
}
body.select-model .family-header {
  padding: 4px 0 0;
  width: 100%;
  height: 0px;
  font-size: 2.1em;
  font-family: 'rift-soft-bold-italic';
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  background: transparent;
}
body.select-model .family-header.expanded {
  height: 40px;
  color: #0f233d;
  background-color: #f4f4f4;
}
body.select-model .family-header.fungo.expanded {
  margin: 0 0 27px;
}
body.select-model .section-header {
  text-transform: uppercase;
}
body.select-model .section-desc {
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
  line-height: 1.2;
}
body.select-model .select-model {
  display: block;
  width: 100%;
  font-family: 'open-sans-semibold';
}
body.select-model .scratch-bat-holder {
  margin: 15px auto;
}
body.select-model .scratch-description {
  color: #0f233d;
  font-size: 1.6em;
  font-family: 'open-sans-semibold';
}
body.select-model .model-image {
  display: block;
  margin: -8px auto 16px;
  width: 92%;
  max-width: 800px;
}
body.select-model #model-type-select {
  background-color: #f4f4f4;
}
body.select-model #model-type-select ul {
  padding: 0;
  list-style: none;
}
body.select-model #model-type-select ul li {
  display: inline-block;
  margin: 10px 12px 0;
  font-family: 'rift-soft-bold';
  font-size: 2.6em;
  text-transform: uppercase;
  line-height: 1;
}
body.select-model #model-type-select ul li.active {
  color: #0f233d;
  border-bottom: 4px solid #0f233d;
}
body.select-model #swing-weight-choices.select {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 0 -20px;
  /*
			li .radiobtn, li .radiio {
				display: none;
			}
			*/
}
body.select-model #swing-weight-choices.select li {
  display: inline-block;
  font-family: 'open-sans-semibold';
  font-size: 0.8em;
  color: #666666;
}
body.select-model #models-wrapper,
body.select-model .models-wrapper {
  margin: 24px auto 0px;
  width: 100%;
  max-width: 945px;
  /* selected element arrow indicator -->
			.og-grid li.og-expanded > a::after {
				top: auto;
				border: solid transparent;
				content: " ";
				height: 0;
				width: 0;
				position: absolute;
				pointer-events: none;
				border-bottom-color: #ddd;
				border-width: 15px;
				left: 50%;
				margin: -20px 0 0 -15px;
			}
			*/
  /*
			.select-model {
				margin: 12px 0;
				padding: 12px 20px;
				font-size: 1.3em;
				text-transform: uppercase;
				border-radius: 4px;
				letter-spacing: normal;
				font-family: @open-sans-semi-bold;
				background: @slugger-dark-blue;
				
				a {
					color: #ffffff !important;
				}
			}
			*/
}
body.select-model #models-wrapper .model-container,
body.select-model .models-wrapper .model-container {
  margin-bottom: 18px;
  cursor: pointer;
  display: inline-block;
  max-width: 460px;
}
body.select-model #models-wrapper .model-container a,
body.select-model .models-wrapper .model-container a {
  text-decoration: none;
  color: inherit;
}
body.select-model #models-wrapper .model-container .model-information,
body.select-model .models-wrapper .model-container .model-information {
  display: block;
  height: auto;
  text-align: center;
  border: 1px solid #ffffff;
  background-color: #f7f7f7;
}
body.select-model #models-wrapper .model-container .model-information .model-title,
body.select-model .models-wrapper .model-container .model-information .model-title {
  padding: 6px 0 3px;
  font-family: 'open-sans-semibold';
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #000000;
}
body.select-model #models-wrapper .model-container .model-information .model-title span,
body.select-model .models-wrapper .model-container .model-information .model-title span {
  display: inline-block;
  padding: 0 10px;
}
body.select-model #models-wrapper .model-container .model-information .model-title span.name,
body.select-model .models-wrapper .model-container .model-information .model-title span.name {
  font-family: 'open-sans-semibold';
}
body.select-model #models-wrapper .model-container .model-information .model-title span.div,
body.select-model .models-wrapper .model-container .model-information .model-title span.div {
  padding: 0;
}
body.select-model #models-wrapper .model-container .model-information .model-content,
body.select-model .models-wrapper .model-container .model-information .model-content {
  position: relative;
  padding: 14px;
  min-height: 240px;
  overflow: hidden;
  border: 2px solid transparent;
  background-color: #e9e9e9;
}
body.select-model #models-wrapper .model-container .model-information .model-content .weight-drop-option-wrapper,
body.select-model .models-wrapper .model-container .model-information .model-content .weight-drop-option-wrapper {
  display: inline-block;
  width: auto;
}
body.select-model #models-wrapper .model-container .model-information .model-content .length-weight,
body.select-model .models-wrapper .model-container .model-information .model-content .length-weight {
  font-size: 18px;
  font-family: 'open-sans-semibold';
}
body.select-model #models-wrapper .model-container .model-information .model-content .sizes,
body.select-model .models-wrapper .model-container .model-information .model-content .sizes {
  font-size: 18px;
  font-family: 'open-sans-regular';
}
body.select-model #models-wrapper .model-container .model-information .model-content .description,
body.select-model .models-wrapper .model-container .model-information .model-content .description {
  margin: 12px 0;
  font-size: 13px;
  font-family: 'open-sans-regular';
}
body.select-model #models-wrapper .model-container .model-information .model-content .description p,
body.select-model .models-wrapper .model-container .model-information .model-content .description p {
  padding-bottom: 0px;
  margin-bottom: 5px;
}
body.select-model #models-wrapper .model-container .model-information .model-content .img-container,
body.select-model .models-wrapper .model-container .model-information .model-content .img-container {
  position: relative;
  margin: 20px 0 0 0;
  height: 65px;
}
body.select-model #models-wrapper .model-container .model-information .model-content .img-container img,
body.select-model .models-wrapper .model-container .model-information .model-content .img-container img {
  margin: 0;
  width: 540px;
  display: block;
  max-width: inherit;
  margin-left: -220px;
}
body.select-model #models-wrapper .model-container .model-information .model-content:hover,
body.select-model .models-wrapper .model-container .model-information .model-content:hover {
  background-color: #ffffff;
  border: 2px solid #0f233d;
}
body.select-model #models-wrapper .model-container.special-occasion,
body.select-model .models-wrapper .model-container.special-occasion {
  height: 68px;
  width: 28%;
  max-width: 200px;
  background-image: url('../images/global/bg-trans-white-80.png');
  background-color: transparent;
}
body.select-model #models-wrapper .model-container.special-occasion .model-information,
body.select-model .models-wrapper .model-container.special-occasion .model-information {
  background: transparent;
}
body.select-model #models-wrapper .model-container.special-occasion .model-information .model-title,
body.select-model .models-wrapper .model-container.special-occasion .model-information .model-title {
  background: transparent;
}
body.select-model #models-wrapper .model-container.special-occasion .model-information .model-title img,
body.select-model .models-wrapper .model-container.special-occasion .model-information .model-title img {
  width: 85%;
  margin: 10px auto 0;
}
body.select-model #models-wrapper .model-container.special-occasion svg,
body.select-model .models-wrapper .model-container.special-occasion svg {
  fill: #ffffff;
}
body.select-model #models-wrapper .model-container.special-occasion:hover,
body.select-model .models-wrapper .model-container.special-occasion:hover,
body.select-model #models-wrapper .model-container.special-occasion.active,
body.select-model .models-wrapper .model-container.special-occasion.active,
body.select-model #models-wrapper .model-container.special-occasion.og-expanded,
body.select-model .models-wrapper .model-container.special-occasion.og-expanded {
  background-image: none;
  background-color: #f8f8f8;
}
body.select-model #models-wrapper .og-grid,
body.select-model .models-wrapper .og-grid {
  list-style: none;
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 1070px;
}
body.select-model #models-wrapper .og-grid li,
body.select-model .models-wrapper .og-grid li {
  display: inline-block;
  margin: 10px 5px 0 5px;
  vertical-align: top;
  height: 250px;
}
body.select-model #models-wrapper .og-grid li > a,
body.select-model .models-wrapper .og-grid li > a,
body.select-model #models-wrapper .og-grid li > a img,
body.select-model .models-wrapper .og-grid li > a img {
  border: none;
  outline: none;
  display: block;
  position: relative;
}
body.select-model #models-wrapper .og-expander,
body.select-model .models-wrapper .og-expander {
  position: absolute;
  background: #fff;
  top: auto;
  left: 0;
  width: 100%;
  margin-top: 0px;
  text-align: left;
  height: 0;
  overflow: hidden;
}
body.select-model #models-wrapper .og-expander-inner,
body.select-model .models-wrapper .og-expander-inner {
  margin: 0 auto;
  padding: 0px;
  height: 100%;
  max-width: 1056px;
  text-align: center;
  background: #f8f8f8;
  border: 1px solid #0f233d;
}
body.select-model #models-wrapper .og-expander-inner .btn.btn-primary,
body.select-model .models-wrapper .og-expander-inner .btn.btn-primary {
  padding: 13px 17px;
}
body.select-model #models-wrapper .og-expander-inner .select-model,
body.select-model .models-wrapper .og-expander-inner .select-model {
  display: block;
  margin: 0 auto !important;
  max-width: 120px;
  margin: 12px 0;
  padding: 12px 20px;
  font-size: 1.3em;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: normal;
  font-family: 'open-sans-semibold';
  background: #cac9ce;
  color: #262626;
}
body.select-model #models-wrapper .og-expander-inner .select-model a,
body.select-model .models-wrapper .og-expander-inner .select-model a {
  color: #ffffff !important;
}
body.select-model #models-wrapper .og-expander-inner .select-model:hover,
body.select-model .models-wrapper .og-expander-inner .select-model:hover {
  color: #ffffff;
  background: #0f233d;
}
body.select-model #models-wrapper .og-expander-inner .select-model:hover a:hover,
body.select-model .models-wrapper .og-expander-inner .select-model:hover a:hover {
  color: #ffffff !important;
}
body.select-model #models-wrapper .og-close,
body.select-model .models-wrapper .og-close {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
body.select-model #models-wrapper .og-close::before,
body.select-model .models-wrapper .og-close::before,
body.select-model #models-wrapper .og-close::after,
body.select-model .models-wrapper .og-close::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  height: 1px;
  background: #888;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.select-model #models-wrapper .og-close:hover::before,
body.select-model .models-wrapper .og-close:hover::before,
body.select-model #models-wrapper .og-close:hover::after,
body.select-model .models-wrapper .og-close:hover::after {
  background: #333;
}
body.select-model #models-wrapper .og-details,
body.select-model .models-wrapper .og-details {
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 10px 40px 10px 20px;
  font-family: 'rift-soft-bold';
  font-size: 3em;
  color: #262626;
}
body.select-model #models-wrapper .og-details h3,
body.select-model .models-wrapper .og-details h3 {
  display: inline-block;
  padding: 10px 6px 10px;
  margin-bottom: 0px;
}
body.select-model #models-wrapper .og-details p,
body.select-model .models-wrapper .og-details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #999;
}
body.select-model #models-wrapper .og-details .swing-weight,
body.select-model .models-wrapper .og-details .swing-weight {
  display: block;
  width: 100%;
  margin: -10px 0 2px;
  font-family: 'open-sans-regular';
  font-size: 0.3em;
  letter-spacing: normal;
  text-transform: uppercase;
}
body.select-model #models-wrapper .og-details a,
body.select-model .models-wrapper .og-details a {
  font-weight: 700;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  border: 3px solid #333;
  display: inline-block;
  margin: 30px 0 0;
  outline: none;
}
body.select-model #models-wrapper .og-details a::before,
body.select-model .models-wrapper .og-details a::before {
  content: '\2192';
  display: inline-block;
  margin-right: 10px;
}
body.select-model #models-wrapper .og-details a:hover,
body.select-model .models-wrapper .og-details a:hover {
  border-color: #999;
  color: #999;
}
body.select-model #models-wrapper .og-fullimg,
body.select-model .models-wrapper .og-fullimg {
  margin: 0 0 12px;
  text-align: center;
}
body.select-model #models-wrapper .og-fullimg img,
body.select-model .models-wrapper .og-fullimg img {
  display: inline-block;
  max-height: 100%;
  max-width: 600px;
}
body.select-model #models-wrapper .og-measurements,
body.select-model .models-wrapper .og-measurements {
  width: 100%;
  padding: 15px;
  margin: 0 0 30px;
  background: #ffffff;
}
body.select-model #models-wrapper .og-measurements img,
body.select-model .models-wrapper .og-measurements img {
  width: 100%;
  max-width: 600px;
}
body.select-model #models-wrapper .og-loading,
body.select-model .models-wrapper .og-loading {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ddd;
  box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  -webkit-animation: loader 0.5s infinite ease-in-out both;
  -moz-animation: loader 0.5s infinite ease-in-out both;
  animation: loader 0.5s infinite ease-in-out both;
}
@-webkit-keyframes loader {
  0% {
    background: #ddd;
  }
  33% {
    background: #ccc;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
  }
  66% {
    background: #ccc;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
  }
}
@-moz-keyframes loader {
  0% {
    background: #ddd;
  }
  33% {
    background: #ccc;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
  }
  66% {
    background: #ccc;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
  }
}
@keyframes loader {
  0% {
    background: #ddd;
  }
  33% {
    background: #ccc;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd;
  }
  66% {
    background: #ccc;
    box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc;
  }
}
@media screen and (max-width: 830px) {
  body.select-model #models-wrapper .og-expander h3,
  body.select-model .models-wrapper .og-expander h3 {
    font-size: 32px;
  }
  body.select-model #models-wrapper .og-expander p,
  body.select-model .models-wrapper .og-expander p {
    font-size: 13px;
  }
  body.select-model #models-wrapper .og-expander a,
  body.select-model .models-wrapper .og-expander a {
    font-size: 12px;
  }
}
@media screen and (max-width: 650px) {
  body.select-model #models-wrapper .og-fullimg,
  body.select-model .models-wrapper .og-fullimg {
    display: block;
  }
  body.select-model #models-wrapper .og-fullimg img,
  body.select-model .models-wrapper .og-fullimg img {
    width: 100%;
    margin: 0 0 12px;
  }
  body.select-model #models-wrapper .og-details,
  body.select-model .models-wrapper .og-details {
    float: none;
    width: 100%;
  }
}
body.select-model #models-wrapper .model-container.mlb-prime,
body.select-model .models-wrapper .model-container.mlb-prime,
body.select-model #models-wrapper .model-container.fungo,
body.select-model .models-wrapper .model-container.fungo {
  margin: 0 5px 10px;
  width: 100px;
  height: 100px;
  letter-spacing: 3px;
  border: 1px solid #0f233d;
  background-color: #0f233d;
}
body.select-model #models-wrapper .model-container.mlb-prime .model-information,
body.select-model .models-wrapper .model-container.mlb-prime .model-information,
body.select-model #models-wrapper .model-container.fungo .model-information,
body.select-model .models-wrapper .model-container.fungo .model-information {
  position: relative;
  display: block;
  border: none;
  background-color: transparent;
}
body.select-model #models-wrapper .model-container.mlb-prime .model-information a,
body.select-model .models-wrapper .model-container.mlb-prime .model-information a,
body.select-model #models-wrapper .model-container.fungo .model-information a,
body.select-model .models-wrapper .model-container.fungo .model-information a {
  margin: -21px 0 0;
}
body.select-model #models-wrapper .model-container.mlb-prime .model-information .model-title,
body.select-model .models-wrapper .model-container.mlb-prime .model-information .model-title,
body.select-model #models-wrapper .model-container.fungo .model-information .model-title,
body.select-model .models-wrapper .model-container.fungo .model-information .model-title {
  padding: 23px 0 3px;
  background-color: transparent;
  font-family: 'rift-soft-bold';
  font-size: 2.1em;
  letter-spacing: initial;
}
body.select-model #models-wrapper .model-container.mlb-prime .model-information .model-title .pro-name,
body.select-model .models-wrapper .model-container.mlb-prime .model-information .model-title .pro-name,
body.select-model #models-wrapper .model-container.fungo .model-information .model-title .pro-name,
body.select-model .models-wrapper .model-container.fungo .model-information .model-title .pro-name {
  font-size: 0.24em;
  letter-spacing: normal;
  margin-top: -4px;
  font-family: 'helvetica';
}
body.select-model #models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner,
body.select-model .models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner,
body.select-model #models-wrapper .model-container.fungo .og-expander .og-expander-inner,
body.select-model .models-wrapper .model-container.fungo .og-expander .og-expander-inner {
  border: none;
  background-color: #ffffff;
}
body.select-model #models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner .btn.btn-primary,
body.select-model .models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner .btn.btn-primary,
body.select-model #models-wrapper .model-container.fungo .og-expander .og-expander-inner .btn.btn-primary,
body.select-model .models-wrapper .model-container.fungo .og-expander .og-expander-inner .btn.btn-primary {
  letter-spacing: 0;
}
body.select-model #models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner .btn.btn-primary:hover,
body.select-model .models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner .btn.btn-primary:hover,
body.select-model #models-wrapper .model-container.fungo .og-expander .og-expander-inner .btn.btn-primary:hover,
body.select-model .models-wrapper .model-container.fungo .og-expander .og-expander-inner .btn.btn-primary:hover {
  color: #ffffff;
}
body.select-model #models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner h3,
body.select-model .models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner h3,
body.select-model #models-wrapper .model-container.fungo .og-expander .og-expander-inner h3,
body.select-model .models-wrapper .model-container.fungo .og-expander .og-expander-inner h3 {
  font-family: 'rift-soft-bold';
  font-size: 1.2em;
  color: #000000;
  letter-spacing: initial;
}
body.select-model #models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner .description,
body.select-model .models-wrapper .model-container.mlb-prime .og-expander .og-expander-inner .description,
body.select-model #models-wrapper .model-container.fungo .og-expander .og-expander-inner .description,
body.select-model .models-wrapper .model-container.fungo .og-expander .og-expander-inner .description {
  display: none;
}
body.select-model #models-wrapper a.grid-click-item,
body.select-model .models-wrapper a.grid-click-item {
  height: 105px;
}
body.select-model #models-wrapper .model-container.mlb-prime.og-expanded,
body.select-model .models-wrapper .model-container.mlb-prime.og-expanded,
body.select-model #models-wrapper .model-container.fungo.og-expanded,
body.select-model .models-wrapper .model-container.fungo.og-expanded {
  background: #ffffff;
}
body.select-model #models-wrapper .model-container.mlb-prime.og-expanded a.grid-click-item,
body.select-model .models-wrapper .model-container.mlb-prime.og-expanded a.grid-click-item,
body.select-model #models-wrapper .model-container.fungo.og-expanded a.grid-click-item,
body.select-model .models-wrapper .model-container.fungo.og-expanded a.grid-click-item {
  height: 99px;
  border-bottom: solid 1px #0f233d;
}
body.select-model #models-wrapper .model-container.mlb-prime.og-expanded .model-title,
body.select-model .models-wrapper .model-container.mlb-prime.og-expanded .model-title,
body.select-model #models-wrapper .model-container.fungo.og-expanded .model-title,
body.select-model .models-wrapper .model-container.fungo.og-expanded .model-title {
  color: #0f233d;
}
body.select-model #models-wrapper .model-container.mlb-prime.og-expanded .og-expander,
body.select-model .models-wrapper .model-container.mlb-prime.og-expanded .og-expander,
body.select-model #models-wrapper .model-container.fungo.og-expanded .og-expander,
body.select-model .models-wrapper .model-container.fungo.og-expanded .og-expander {
  background: transparent;
}
body.select-model #models-wrapper .model-container.mlb-prime.og-expanded .og-expander .og-expander-inner .description,
body.select-model .models-wrapper .model-container.mlb-prime.og-expanded .og-expander .og-expander-inner .description,
body.select-model #models-wrapper .model-container.fungo.og-expanded .og-expander .og-expander-inner .description,
body.select-model .models-wrapper .model-container.fungo.og-expanded .og-expander .og-expander-inner .description {
  display: none;
}
body.select-model #models-wrapper .model-container.special-occasion a.grid-click-item,
body.select-model .models-wrapper .model-container.special-occasion a.grid-click-item {
  height: 68px;
}
body.select-model #models-wrapper .model-container.special-occasion .model-information,
body.select-model .models-wrapper .model-container.special-occasion .model-information {
  border: none;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander,
body.select-model .models-wrapper .model-container.special-occasion .og-expander {
  background: transparent;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner {
  border: none;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .og-close,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .og-close {
  display: none;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner h3.price-container,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner h3.price-container {
  margin: 30px 0 12px;
  font-family: 'open-sans-semibold';
  font-size: 1em;
  color: #000000;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .description,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .description {
  display: block;
  font-family: 'open-sans-regular';
  font-size: 0.34em;
  max-width: 800px;
  margin: 0 auto;
  color: black;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .og-fullimg,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .og-fullimg {
  margin: 24px 0 12px;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .select-model,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .select-model {
  margin: 30px auto 0;
}
body.select-model #models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .og-measurements,
body.select-model .models-wrapper .model-container.special-occasion .og-expander .og-expander-inner .og-measurements {
  display: none;
}
body.select-model #models-wrapper-mlb-prime .og-grid {
  position: relative;
  max-width: 855px;
}
body.select-model #models-callouts {
  max-width: 1200px;
  margin: 20px auto;
}
body.select-model #models-callouts .models-callout {
  display: block;
  margin: 0 auto;
  padding: 15px;
  width: 100%;
  color: #ffffff;
  background: #000000;
}
body.select-model #models-callouts .models-callout h2 {
  line-height: 1;
  font-size: 2.3em;
  color: #ffffff;
  text-transform: uppercase;
}
body.select-model #models-callouts .models-callout p {
  padding: 20px;
}
body.select-model #models-callouts .models-callout.left {
  border-top: solid white 0px;
  border-bottom: solid white 10px;
}
body.select-model #models-callouts .models-callout.right {
  border-bottom: solid white 0px;
}
@media (min-width: 768px) {
  body.select-model .families .family .section-header,
  body.select-model .families .family .section-header.special-occasion {
    font-size: 4.4em;
  }
  body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .mlb-model-detail-model .model-name {
    font-size: 2em;
  }
  body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .price-container {
    font-size: 4.4em;
  }
  body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-model-dropdown-container .dropdown-menu .yamm-content .choose-bat-copy {
    font-size: 1em;
    padding: 2px 0 0;
  }
  body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container .mlb-model-item-wrapper {
    width: 109px;
  }
  body.select-model #swing-weight-choices li {
    font-size: 1.2em;
  }
  body.select-model .model-image {
    margin: 10px auto;
    width: 100%;
  }
  body.select-model #models-wrapper .model-container .model-information .model-content .img-container img,
  body.select-model .models-wrapper .model-container .model-information .model-content .img-container img {
    width: 640px;
  }
  body.select-model #models-wrapper .model-container.special-occasion,
  body.select-model .models-wrapper .model-container.special-occasion {
    height: 100px;
    min-height: 108px;
    width: 100%;
  }
  body.select-model #models-wrapper .model-container.special-occasion a.grid-click-item,
  body.select-model .models-wrapper .model-container.special-occasion a.grid-click-item {
    height: 108px;
  }
  body.select-model #models-wrapper .model-container.mlb-prime,
  body.select-model .models-wrapper .model-container.mlb-prime,
  body.select-model #models-wrapper .model-container.fungo,
  body.select-model .models-wrapper .model-container.fungo {
    width: 200px;
    height: 110px;
  }
  body.select-model #models-wrapper .model-container.mlb-prime .model-information .model-title,
  body.select-model .models-wrapper .model-container.mlb-prime .model-information .model-title,
  body.select-model #models-wrapper .model-container.fungo .model-information .model-title,
  body.select-model .models-wrapper .model-container.fungo .model-information .model-title {
    padding: 14px 0 3px;
    font-size: 3.3em;
  }
  body.select-model #models-wrapper .model-container.mlb-prime .model-information .model-title .pro-name,
  body.select-model .models-wrapper .model-container.mlb-prime .model-information .model-title .pro-name,
  body.select-model #models-wrapper .model-container.fungo .model-information .model-title .pro-name,
  body.select-model .models-wrapper .model-container.fungo .model-information .model-title .pro-name {
    margin-top: -12px;
  }
  body.select-model #models-wrapper .model-container.mlb-prime.og-expanded a.grid-click-item,
  body.select-model .models-wrapper .model-container.mlb-prime.og-expanded a.grid-click-item,
  body.select-model #models-wrapper .model-container.fungo.og-expanded a.grid-click-item,
  body.select-model .models-wrapper .model-container.fungo.og-expanded a.grid-click-item {
    height: 105px;
  }
  body.select-model #models-callouts .models-callout {
    display: inline-block;
    width: 49.8%;
  }
  body.select-model .models-callout.left {
    border-right: solid white 10px;
  }
  body.select-model .models-callout.right {
    border-left: solid white 10px;
  }
}
@media (min-width: 992px) {
  body.select-model .families .family .section-header {
    font-size: 4.4em;
  }
  body.select-model .families .family.mlb #select-mlb-model-container {
    margin: 12px auto 0 12px;
  }
  body.select-model .families .family.mlb #select-mlb-model-container #mlb-models-container #mlb-logo-container .row {
    display: flex;
  }
}
/**************************************************************
**	CUSTOMIZE
**************************************************************/
body.customize {
  /*---------------------------------------------------------
		-- Bat Preview Modal
		---------------------------------------------------------*/
  /*---------------------------------------------------------
		-- Media Queries
		---------------------------------------------------------*/
}
body.customize #add-to-cart-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: auto;
  padding: 8px;
  text-align: center;
  line-height: 1.1;
  background: #efefef;
}
body.customize #add-to-cart-wrapper a {
  color: #000000;
  font-family: 'open-sans-semibold';
}
body.customize #add-to-cart-wrapper #terms-wrapper {
  margin: 0;
  padding-bottom: 5px;
}
body.customize #add-to-cart-wrapper #terms-wrapper input {
  margin: 0 6px;
}
body.customize #add-to-cart-wrapper .terms-baseball {
  padding: 0;
  margin: 0 auto 7px;
  font-size: 0.8em;
}
body.customize #add-to-cart-wrapper .sub-section-wrapper.atc {
  font-family: 'open-sans-extrabold';
}
body.customize #add-to-cart-wrapper .sub-section-wrapper.atc .model-price.price-container {
  display: inline-block;
  padding: 0 10px;
  width: 100px;
  vertical-align: middle;
  text-align: right;
  font-size: 1.7em;
  font-family: 'open-sans-semibold';
}
body.customize #add-to-cart-wrapper .sub-section-wrapper.atc #atc-btn {
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  pointer-events: all;
}
body.customize #add-to-cart-wrapper .sub-section-wrapper.atc #atc-btn button {
  margin: 5px auto;
  width: 200px;
  height: 42px;
  line-height: 1;
  font-family: 'open-sans-semibold';
  color: #ffffff;
  background: #0f233d;
}
body.customize #add-to-cart-wrapper .sub-section-wrapper.atc #atc-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
body.customize #add-to-cart-wrapper .shipping-time {
  margin: 7px 0 0;
  font-family: 'open-sans-semibold';
}
body.customize #add-to-cart-wrapper.active {
  display: block;
  margin: 0px 0 -20px;
  z-index: 100;
  font-size: 0.72em;
  text-transform: initial;
}
body.customize .navigation-wrapper {
  background-color: #EBEBEB;
}
body.customize .navigation-wrapper .container {
  width: 100%;
}
body.customize .navigation-wrapper .navigation {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  color: #262626;
  font-family: 'UnitedSansCond-Medium';
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
body.customize .navigation-wrapper .navigation .container {
  max-width: 1000px;
}
body.customize .navigation-wrapper .navigation .container .col {
  display: inline-block;
  width: 22%;
  padding: 0;
  font-size: 0.87em;
}
body.customize .navigation-wrapper .navigation .container .col.personalize {
  margin-left: 13px;
}
body.customize .navigation-wrapper .navigation .container .col.options {
  margin: 0 11px 0 17px;
}
body.customize .navigation-wrapper .navigation .nav-item {
  display: inline-block;
  padding: 7px 0 0;
  width: auto;
  cursor: pointer;
  font-family: 'rift-soft-bold' !important;
  font-size: 0.9em;
  line-height: 1;
}
body.customize .navigation-wrapper .navigation .nav-item span {
  text-shadow: 2px 2px #000000;
}
body.customize .navigation-wrapper .navigation .nav-item.active,
body.customize .navigation-wrapper .navigation .nav-item:hover {
  border-bottom: 6px solid #0f233d;
  color: #0f233d;
  font-family: 'rift-soft-bold-italic' !important;
}
body.customize .navigation-wrapper .navigation.home-nav {
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: height 0.25s ease;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item {
  width: 100%;
  height: 240px;
  margin: 0 -3px;
  padding: 20px;
  color: #FFFFFF;
  border: 5px solid #fff;
  border-bottom: none;
  background-color: #262422;
  background-size: 200px;
  background-position: top;
  background-size: cover !important;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item span {
  display: block;
  width: 100%;
  vertical-align: middle;
  margin: 102px 0 -22px;
  margin: 108px 0 -11px;
  font-size: 44px;
  font-family: 'UnitedSansCond-Bold';
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item a.action-btn {
  padding: 10px 14px 6px;
  color: #ffffff;
  font-size: 0.8em;
  background-color: #000000;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item a.action-btn:hover {
  background-color: #FFC324;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item:hover {
  color: #FFC324;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item:hover a.action-btn {
  background-color: #FFC324;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item.bbcor {
  background: url('../images/home/category-banner-bbcor-2022-q4.jpg') no-repeat 0 -2px;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item.bbcor span {
  color: #ea4b27;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item.usssa {
  background: url('../images/home/category-banner-usssa-2022-q4.jpg') no-repeat 0 -5px;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item.usssa span {
  color: #1548aa;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item.fastpitch {
  background: url('../images/home/category-banner-fastpitch-2022-q4.jpg') no-repeat 0 -15px;
}
body.customize .navigation-wrapper .navigation.home-nav .nav-item.fastpitch span {
  color: #f7f151;
}
body.customize .navigation-wrapper .home-sub-nav {
  height: 50px;
  overflow: hidden;
  transition: height 0.25s ease;
}
body.customize .navigation-wrapper .home-sub-nav.inactive {
  height: 0px;
}
body.customize .navigation-wrapper .navigation.home-nav.inactive {
  height: 0px;
}
body.customize .navigation-wrapper#model-nav .navigation .nav-item {
  padding: 7px 0 0;
  cursor: pointer;
  background: none;
}
body.customize #model-nav.hide {
  height: 0;
  overflow: hidden;
}
body.customize .wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
body.customize .promo .promo-wrapper {
  height: 110px;
  margin-top: 6px;
  font-family: 'UnitedSansCond-Bold';
  font-size: 1.3em;
  line-height: 1.2em;
  text-align: center;
  border: none;
  background: url('../images/home/promos/2023/hero-b-mobile.jpg') no-repeat 0 0;
  background-size: cover;
  background-position: 0 0;
}
body.customize .promo .promo-wrapper .highlight {
  color: #FFC324;
}
body.customize .promo .promo-wrapper .promo-copy-wrapper {
  width: 96%;
  max-width: 400px;
  margin: 10px 0 0 60px;
  padding: 15px;
  color: #ffffff;
}
body.customize .promo .promo-wrapper .promo-copy-wrapper .promo-title {
  font-family: 'open-sans-extrabold';
  font-size: 1.4em;
  line-height: 1.35em;
}
body.customize .promo .promo-wrapper .promo-copy-wrapper .start {
  margin: 10px 0;
}
body.customize .disabled {
  opacity: 0.4;
  cursor: pointer;
}
body.customize .swatch-options {
  overflow: auto;
  padding: 5px;
}
body.customize .swatch-options .swatch {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 6px;
  float: left;
  cursor: pointer;
  border-radius: 21px;
  background-color: orange;
  border: 1px solid #d9d9d9;
}
body.customize .swatch-options .swatch::hover {
  cursor: pointer;
}
body.customize .swatch-options .swatch.selected:after,
body.customize .swatch-options .swatch.active:after {
  position: absolute;
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 17px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  -webkit-text-stroke: 1px #aaaaaa;
  color: #FFFFFF;
}
body.customize .swatch-options .swatch.selected,
body.customize .swatch-options .swatch.active {
  cursor: auto;
}
body.customize .swatch-options .swatch.delete {
  border: thin solid #BE2B1B;
  background: linear-gradient(to top right, rgba(164, 27, 14, 0) 0%, rgba(164, 27, 14, 0) calc(50% - 0.8px), #a41b0e 50%, rgba(164, 27, 14, 0) calc(50% + 0.8px), rgba(164, 27, 14, 0) 100%);
}
body.customize .swatch-options .swatch.delete .fa {
  display: none;
}
body.customize .swatch-options.decal-1-color .swatch.selected,
body.customize .swatch-options.decal-1-color .swatch.active {
  border: thin solid #0f233d !important;
}
body.customize .swatch-options.decal-3-color .swatch.selected,
body.customize .swatch-options.decal-3-color .swatch.active {
  border: thin solid #0f233d !important;
}
body.customize .swatch-options.decal-4-color .collectible-logo-holder {
  display: inline-block;
  margin: 4px;
  width: 90px;
  cursor: pointer;
}
body.customize .swatch-options.decal-4-color .collectible-logo-holder img {
  width: 100%;
}
body.customize .swatch-options.decal-4-color .collectible-logo-holder.special-occasion {
  margin: 10px;
  width: 120px;
  margin: 0;
}
body.customize .swatch-options.decal-4-color .collectible-logo-holder.special-occasion img,
body.customize .swatch-options.decal-4-color .collectible-logo-holder.special-occasion svg {
  width: 100%;
  height: 100%;
}
body.customize #model-info {
  display: block;
  padding: 0px;
  top: 50px;
  width: 100%;
  height: 40px;
  z-index: 100;
  text-align: center;
  float: none;
  vertical-align: middle;
  font-size: 21px;
  font-family: 'open-sans-semibold';
  font-weight: bolder;
  text-transform: uppercase;
  color: #000000;
  background: white;
}
body.customize #model-info a {
  color: #0f233d;
  font-size: inherit;
  text-decoration: underline;
}
body.customize #model-info .name {
  padding-right: 4px;
}
body.customize #model-info .div {
  padding: 0 3px;
}
body.customize #model-info .model-price {
  display: inline-block;
}
body.customize #model-info.usssa .weight-drop-container,
body.customize #model-info.fastpitch .weight-drop-container {
  display: none;
}
body.customize #model-info.review {
  position: fixed;
  top: 70px;
}
body.customize #bat-customizer {
  position: relative;
  margin-bottom: 10px;
  padding-top: 9px;
  height: 293px;
  width: 100%;
  overflow: hidden;
  transition: height 0.35s ease;
}
body.customize #bat-customizer .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
body.customize #bat-customizer .part.highlight {
  z-index: 12 !important;
}
body.customize #bat-customizer .action-icon {
  border: 2px solid #990000;
  opacity: 0;
  padding-top: 5px;
}
body.customize #bat-customizer .action-icon .fa-times {
  font-size: 1.3em;
  margin: 5px;
}
body.customize #bat-customizer .action-icon.active {
  opacity: 1;
}
body.customize #bat-customizer .bat-views {
  position: relative;
  margin: 0px auto;
  height: 100%;
  width: 100%;
  max-width: 1010px;
  transform: scale(1, 1);
  transform-origin: top center;
}
body.customize #bat-customizer .bat-views .bat-view-label {
  display: none;
}
body.customize #bat-customizer .bat-views .view {
  height: 100%;
}
body.customize #bat-customizer .bat-views .bat-view {
  position: relative;
  height: 100%;
  z-index: 30;
}
body.customize #bat-customizer .bat-views .bat-view .part,
body.customize #bat-customizer .bat-views .bat-view .overlay,
body.customize #bat-customizer .bat-views .bat-view .part.img,
body.customize #bat-customizer .bat-views .bat-view .part img,
body.customize #bat-customizer .bat-views .bat-view .filler {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  pointer-events: none;
}
body.customize #bat-customizer .bat-views .bat-view .part svg,
body.customize #bat-customizer .bat-views .bat-view .overlay svg,
body.customize #bat-customizer .bat-views .bat-view .part.img svg,
body.customize #bat-customizer .bat-views .bat-view .part img svg,
body.customize #bat-customizer .bat-views .bat-view .filler svg {
  width: 100%;
  height: auto;
}
body.customize #bat-customizer .bat-views .bat-view .part svg path,
body.customize #bat-customizer .bat-views .bat-view .overlay svg path,
body.customize #bat-customizer .bat-views .bat-view .part.img svg path,
body.customize #bat-customizer .bat-views .bat-view .part img svg path,
body.customize #bat-customizer .bat-views .bat-view .filler svg path {
  pointer-events: all;
}
body.customize #bat-customizer .bat-views .view.up3 {
  width: 100%;
}
body.customize #bat-customizer .bat-views .three-up-diagonal {
  height: 260px;
}
body.customize #bat-customizer .bat-views .three-up-diagonal .bat-mask {
  display: none;
  position: absolute;
  width: 100%;
  height: 88px;
  background: #fff;
  z-index: 2000;
}
body.customize #bat-customizer .bat-views .three-up-diagonal .bat-mask.bottom {
  bottom: 2px;
}
body.customize #bat-customizer .bat-views .three-up-diagonal.meta-5 .bat-mask {
  height: 96px;
}
body.customize #bat-customizer .bat-views .three-up-diagonal.meta-5 .bat-mask.bottom {
  bottom: -28px;
}
body.customize #bat-customizer .bat-views .three-up-diagonal.take-shot {
  width: 1010px;
}
body.customize #bat-customizer .bat-views .three-up-diagonal.mobile .bat-mask.top {
  top: -50px;
}
body.customize #bat-customizer .bat-views .three-up-diagonal.mobile .bat-mask.bottom {
  bottom: -37px;
}
body.customize #bat-customizer .bat-views .barrel-personalize {
  position: relative;
  width: 1200px;
  margin: 0 0 0 -340px;
}
body.customize #bat-customizer .bat-views .barrel-personalize .mask {
  position: absolute;
  width: 760px;
  top: 6px;
  left: 0;
  right: 0;
  transform: translateX(-50%);
  z-index: 100;
}
body.customize #bat-customizer .bat-views .barrel-personalize .personalize-barrel {
  width: 3300px;
  left: -2200px;
}
body.customize #bat-customizer .bat-views .barrel-personalize .barrel-options-wrapper {
  display: block;
  position: relative;
  top: 111px;
  left: 0;
  width: 100%;
  z-index: 100;
}
body.customize #bat-customizer .bat-views .barrel-personalize .barrel-options-wrapper .barrel-text-view {
  display: table;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateX(-50%);
  font-size: 36px;
}
body.customize #bat-customizer .bat-views .barrel-personalize {
  position: relative;
  width: 1200px;
  margin: -44px 0 0 -430px;
  transform: scale(0.45);
}
body.customize #bat-customizer .bat-views .barrel-personalize .mask {
  position: absolute;
  width: 760px;
  top: 6px;
  left: 0;
  right: 0;
  transform: translateX(-50%);
  z-index: 100;
}
body.customize #bat-customizer .bat-views .barrel-personalize .personalize-barrel {
  width: 3300px;
  left: -2200px;
}
body.customize #bat-customizer .bat-views .barrel-personalize .barrel-options-wrapper {
  display: block;
  position: relative;
  top: 111px;
  left: 0;
  width: 100%;
  z-index: 100;
}
body.customize #bat-customizer .bat-views .barrel-personalize .barrel-options-wrapper .barrel-text-view {
  display: table;
  position: absolute;
  left: 0;
  right: 0;
  transform: translateX(-50%);
  font-size: 36px;
}
body.customize #bat-customizer .bat-views .barrel-personalize.mobile {
  margin-top: -75px;
  position: absolute;
  right: -180px;
}
body.customize #bat-customizer .bat-views .barrel-personalize.mobile.wsf-23,
body.customize #bat-customizer .bat-views .barrel-personalize.mobile.wsp-23 {
  right: -440px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap {
  display: none;
  position: absolute;
  top: -8px;
  left: -50%;
  right: -50%;
  margin-right: auto;
  margin-left: auto;
  z-index: 3000;
  display: block;
  width: 568px;
  margin: 0 auto;
  transform-origin: top center;
  transform: scale(0.4, 0.4);
}
body.customize #bat-customizer .bat-views .view.knob-end-cap span {
  display: inline-block;
  width: 385px;
  height: 385px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap {
  display: inline-block;
  position: relative;
  width: 280px;
  max-width: 280px;
  height: 280px;
  transform-origin: top right;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .overlay,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .overlay,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part.img,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part.img,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part img,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part img {
  width: 280px;
  height: 280px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .overlay svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .overlay svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part.img svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part.img svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part img svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part img svg,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .overlay path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .overlay path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part.img path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part.img path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .part img path,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap .part img path {
  width: 280px;
  height: 280px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob img,
body.customize #bat-customizer .bat-views .view.knob-end-cap #end-cap img {
  width: 100%;
  height: 100%;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-image {
  padding: 0;
  position: relative;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-image img {
  margin: 0 auto;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-image .knob-size {
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: 'UnitedSansCond-Bold';
  z-index: 4;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-options-wrapper {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  z-index: 20000;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-options-wrapper .knob-top-text-preview,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 40px;
  font-family: 'open-sans-extrabold';
  text-align: center;
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-options-wrapper .knob-top-text-preview span,
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-options-wrapper .knob-bottom-text-preview span {
  width: auto;
  height: auto;
  vertical-align: top;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob .knob-options-wrapper .knob-bottom-text-preview {
  top: 152px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.standard .knob-image .knob-size {
  font-family: 'UnitedSansCond-Bold';
  top: 110px;
  left: 1px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.standard .knob-image .knob-size .weight-length {
  font-size: 24px;
  line-height: 1em;
  margin: 0;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.standard .knob-image .knob-size .weight-length .length-big {
  font-size: 29px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.standard .knob-image .knob-size .weight-length .length {
  margin: -6px 0 0 34px;
  font-size: 11px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.standard .knob-image .knob-size .weight-length .weight {
  margin: -24px 0 0 -32px;
  font-size: 11px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.standard .knob-image .knob-size .weight-length .oz {
  display: none;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.home-plate .knob-image .knob-size {
  font-family: 'open-sans-extrabold';
  top: 121px;
  left: 9px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.home-plate .knob-image .knob-size .weight-length {
  font-size: 20px;
  line-height: 1.2em;
  margin: 0;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.home-plate .knob-image .knob-size .weight-length .length-big {
  display: none;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.home-plate .knob-image .knob-size .weight-length .length {
  color: #ffffff;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.home-plate .knob-image .knob-size .weight-length .weight {
  margin-left: -19px;
  font-size: 15px;
  margin-top: -2px;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap #knob.home-plate .knob-image .knob-size .weight-length .oz {
  font-size: 10px;
  margin: -13px 22px 0 0;
}
body.customize #bat-customizer .bat-views .view.knob-end-cap.position-for-mobile {
  transform: scale(1);
  top: 0px;
  left: 65px;
}
body.customize #bat-customizer .bat-views #personalizations-and-options {
  position: relative;
  border: thin solid green;
}
body.customize #bat-customizer .bat-views #personalizations-and-options .review-container {
  display: inline-block;
  height: 100%;
  min-height: 300px;
  text-align: center;
  overflow: hidden;
  vertical-align: top;
  border: thin solid green;
}
body.customize #bat-customizer.composite {
  height: 123px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-top-text-preview,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 14px;
  top: 99px;
  text-transform: inherit;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-top-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-bottom-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-top-text-preview .bat-length,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-bottom-text-preview .bat-length {
  padding: 0 6px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.donut .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 32px;
  top: 110px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-top-text-preview,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 19px;
  top: 77px;
  text-transform: inherit;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-top-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-bottom-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-top-text-preview .bat-length,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-bottom-text-preview .bat-length {
  padding: 0 6px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.tire .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 38px;
  color: #ffffff;
  top: 110px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper {
  top: 44px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-top-text-preview,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 15px;
  top: 77px;
  text-transform: inherit;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-top-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-bottom-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-top-text-preview .bat-length,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-bottom-text-preview .bat-length {
  padding: 0 6px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.ninja-star .knob-options-wrapper .knob-bottom-text-preview {
  margin-top: -11px;
  font-size: 35px;
  color: #ffffff;
  top: 110px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper {
  top: 44px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-top-text-preview,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-bottom-text-preview {
  font-size: 15px;
  top: 77px;
  text-transform: inherit;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-top-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-bottom-text-preview .bat-weight,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-top-text-preview .bat-length,
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-bottom-text-preview .bat-length {
  padding: 0 10px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap #knob.long-john-donut .knob-options-wrapper .knob-bottom-text-preview {
  margin-top: -6px;
  font-size: 35px;
  color: #ffffff;
  top: 110px;
}
body.customize #bat-customizer.composite .bat-views .view.knob-end-cap.position-for-mobile {
  transform: scale(1);
  top: 0px;
  left: 65px;
}
body.customize #bat-customizer.composite .bat-views .view.barrel-personalize.position-for-mobile {
  transform: scale(1);
}
body.customize #bat-customizer.wood {
  height: 113px;
}
body.customize #bat-customizer.wood .bat-views .view.up3 .signature-container {
  position: absolute;
  z-index: 100;
  width: 390px;
  transform: scale(0.5);
  right: -55px;
  top: 31px;
}
body.customize #bat-customizer.wood .bat-views .view.up3 #up3 {
  width: 1010px;
  transform: scale(0.38);
  -webkit-transform-origin-y: top;
  -webkit-transform-origin-x: left;
}
body.customize #bat-customizer.wood .bat-views .view.up3 .part.decal-2 {
  top: -20px;
  left: 690px;
  text-align: center;
  max-width: 300px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap.no-rotation {
  -ms-transform: rotate(0deg) scale(0.7);
  -webkit-transform: rotate(0deg) scale(0.7);
  transform: rotate(0deg) scale(0.7);
}
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap {
  position: absolute;
  width: 1500px;
  -ms-transform: rotate(25deg) scale(0.5);
  -webkit-transform: rotate(25deg) scale(0.5);
  transform: rotate(25deg) scale(0.5);
  top: -101px;
  left: -750px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap {
  width: 1500px;
  max-width: 1500px;
  height: 246px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .overlay,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part.img,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part img {
  width: 1500px;
  height: 246px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part svg,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .overlay svg,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part.img svg,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part img svg,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part path,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .overlay path,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part.img path,
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part img path {
  width: 1500px;
  height: 246px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap img {
  width: 100%;
  height: 100%;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize {
  max-width: 360px;
  margin: -30px auto;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob {
  position: relative;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .section-title {
  padding-bottom: 0px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image {
  padding: 40px 0;
  position: relative;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image img {
  margin: 0 auto;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .bat-view.personalize-knob {
  position: relative;
  margin: -80px 10px 0 -10px;
  height: 360px;
  width: 360px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .bat-view.personalize-knob .part {
  position: absolute;
  top: 0;
  left: 0;
  /*img {
										margin-top: 1px;
									}*/
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .bat-view.personalize-knob .decal-2 img,
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .bat-view.personalize-knob .end-cap-img,
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .bat-view.personalize-knob .grip img {
  display: none;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .knob-size {
  position: absolute;
  top: 213px;
  text-align: center;
  width: 100%;
  font-family: 'roboto_condensed_bold';
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .knob-size .length-big {
  font-size: 60px;
  line-height: 1em;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .knob-size .weight-length {
  font-size: 24px;
  line-height: 1em;
  margin-top: -4px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .knob-size .weight-length .weight {
  margin-right: 25px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-image .knob-size .weight-length .length {
  margin-left: 25px;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-options-wrapper {
  position: absolute;
  width: 250px;
  top: 97px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  z-index: 40;
}
body.customize #bat-customizer.wood .bat-views .view.knob-personalize #knob .knob-options-wrapper .knob-text input {
  pointer-events: none;
  font-size: 1.4em;
  font-family: 'Arial';
  border: none;
  width: 100%;
  height: 30px;
  text-transform: uppercase;
  padding: 0;
  margin: 0px;
  line-height: 1em;
  text-align: center;
  background: transparent;
}
body.customize #bat-customizer.wood .bat-views .view.zoom-knob {
  width: 1500px;
  height: 1500px;
  -ms-transform: rotate(-2deg) scale(0.7);
  -webkit-transform: rotate(-2deg) scale(0.7);
  transform: rotate(-2deg) scale(0.7);
  position: absolute;
  top: -1350px;
  left: -700px;
}
body.customize #bat-customizer.wood .bat-views .view.zoom-knob .part.barrel.svg {
  display: none !important;
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text {
  height: 26px;
  margin: 0 0 2px;
  text-align: center;
  font-weight: 500;
  font-size: 1.2em;
  background: transparent;
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text .input {
  height: 27px;
  margin: -3px 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.9em;
  line-height: 1.2;
  white-space: nowrap;
  background: transparent;
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text .input.micra {
  font-size: 0.9em;
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text.model-info .input {
  font-family: 'micra';
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text.signature {
  font-family: 'dancing-script';
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text.slugger-tagline {
  font-family: 'arrow-black';
}
body.customize #bat-customizer.wood .bat-views .signature-container .signature-text.souvenir {
  font-family: 'arrow-black';
}
body.customize #bat-customizer.wood .bat-views .view.barrel-personalize {
  margin: -44px 0 0 -550px;
}
body.customize #bat-customizer.wood .bat-views .view.barrel-personalize #end-brand .signature-container {
  position: absolute;
  z-index: 100;
  width: 390px;
  transform: scale(1.3);
  right: 80px;
  top: 113px;
}
body.customize #bat-customizer.wood .bat-views .view.barrel-personalize #end-brand .bat-view.zoom-in {
  transform: scale(2.3);
  left: -610px;
  top: 50px;
}
body.customize #bat-customizer.wood .bat-views .view.barrel-personalize #end-brand .bat-view.zoom-in .part.decal-3,
body.customize #bat-customizer.wood .bat-views .view.barrel-personalize #end-brand .bat-view.zoom-in .decal-3-overlay,
body.customize #bat-customizer.wood .bat-views .view.barrel-personalize #end-brand .bat-view.zoom-in .decal-3-effect {
  display: none;
}
body.customize #bat-customizer.wood .bat-views .part.overlay.stain-barrel img,
body.customize #bat-customizer.wood .bat-views .part.overlay.stain-handle img {
  display: none;
}
body.customize #bat-customizer.wood.fungo .bat-views .signature-container .signature-text.model-info .input,
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .signature-container .signature-text.model-info .input {
  font-family: 'open-sans-semibold';
}
body.customize #bat-customizer.wood.fungo .bat-views .view.barrel-personalize.take-shot,
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .view.barrel-personalize.take-shot {
  margin-left: -480px;
}
body.customize #bat-customizer.wood.fungo .bat-views .signature-container .signature-text.souvenir .input {
  font-weight: bold;
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .signature-container .signature-text.model-info .input {
  font-family: 'open-sans-semibold';
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.three-up-diagonal .part.decal-4,
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.three-up-diagonal .part.decal-4-overlay {
  top: 40px;
  left: 690px;
  width: 115px;
  height: 75px;
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.three-up-diagonal .part.decal-4.build-your-own {
  /*
						top: 38px;
					    left: 703px;
					    width: 100px;
					    height: 50px;
					    */
  top: 36px;
  left: 691px;
  width: 113px;
  height: 50px;
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.three-up-diagonal .part.decal-4.special-occasion {
  /*
						top: 39px;
					    left: 708px;
					    width: 90px;
					    height: 75px;
					    */
  top: 36px;
  left: 691px;
  width: 113px;
  height: 50px;
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.zoom-in .part.decal-4,
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.zoom-in .part.decal-4-overlay {
  top: 15px;
  left: 800px;
  width: 115px;
  height: 75px;
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.zoom-in .part.decal-4.special-occasion {
  top: 1px;
  top: 10px;
  left: 800px;
  width: 115px;
  height: 75px;
}
body.customize #bat-customizer.fan-collectible-special-occasions.wood .bat-views .bat-view.zoom-in .part.decal-4.build-your-own {
  top: 10px;
  left: 800px;
  width: 115px;
  height: 75px;
}
body.customize #bat-customizer.wood.take-shot {
  margin-left: -270px;
}
body.customize #bat-customizer.hide {
  height: 0px;
}
body.customize #bat-customizer.wood.baseball #bat-viewer .bat-views .three-up-diagonal.wood .part.decal-2 .signature-container {
  margin-top: 59px;
}
body.customize #bat-customizer.wood.baseball #bat-viewer .bat-views .three-up-diagonal.wood .part.decal-2 .signature-container #signature .signature-text.model-info {
  margin-bottom: -5px;
}
body.customize #bat-customizer.wood.baseball #bat-viewer .bat-views .three-up-diagonal.wood .part.decal-2 .signature-container #signature .signature-text.model-info .input {
  font-family: 'micra';
  font-size: 0.8em;
}
body.customize #bat-customizer.wood.baseball #bat-viewer .bat-views .three-up-diagonal.wood .part.decal-2 .signature-container #signature .signature-text.slugger-tagline .input {
  font-family: 'arrow-black';
}
body.customize #bat-customizer.wood.baseball #bat-viewer .bat-views .three-up-diagonal .part.decal-4,
body.customize #bat-customizer.wood.baseball #bat-viewer .bat-views .three-up-diagonal .decal-4-overlay {
  display: none !important;
}
body.customize .bat-views.review {
  margin: 0 auto;
}
body.customize #model-detail {
  width: 95%;
  max-width: 100%;
}
body.customize #model-detail #sections {
  max-width: 780px;
  margin: 10px auto;
  height: 100%;
}
body.customize #model-detail #sections a {
  color: #000000;
  text-decoration: underline;
}
body.customize #model-detail #sections .sub-section-wrapper {
  margin: 4px 0;
  max-width: 829px;
}
body.customize #model-detail #sections .sub-section-wrapper:first-child {
  margin: 2px 0;
}
body.customize #model-detail #sections .section.personalize .subnav .nav-item {
  display: none;
}
body.customize #model-detail #sections .section.personalize .subnav.personalize-fonts .nav-item {
  display: inline-block;
}
body.customize #model-detail #sections .section.personalize .tab-content .barrel-color-font-wrapper {
  display: none;
}
body.customize #model-detail #sections .section.personalize .tab-content .barrel-color-font-wrapper .barrel-text-font-options {
  overflow: auto;
  position: relative;
}
body.customize #model-detail #sections .section.personalize .tab-content .knob-color-font-wrapper {
  display: none;
}
body.customize #model-detail #sections .section.options .sub-section-wrapper {
  display: none;
}
body.customize #model-detail #sections .section.options .sub-section-wrapper.weight-drop {
  display: block;
}
body.customize #model-detail #sections .section.options #done button {
  height: 41px;
  margin: 5px 0;
  font-family: 'open-sans-extrabold';
  color: #ffffff;
  background: #0f233d;
}
body.customize #model-detail #sections .section.options #done button:hover {
  color: #ffffff;
  background: #0f233d;
}
body.customize #model-detail #sections .section.options #done i {
  margin: 0;
  font-size: 1.5em;
  vertical-align: text-top;
}
body.customize #model-detail #sections .section.review {
  opacity: 0;
  height: 100%;
  min-height: 400px;
  margin-top: 180px;
}
body.customize #model-detail #sections .section.review .review-container {
  position: relative;
  display: block;
  vertical-align: top;
  overflow: hidden;
}
body.customize #model-detail #sections .section.review .review-container .review-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: 'open-sans-semibold';
  font-size: 1.2em;
  pointer-events: none;
}
body.customize #model-detail #sections .section.review .review-container .review-title.link {
  pointer-events: all;
}
body.customize #model-detail #sections .section.review .review-container .review-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
body.customize #model-detail #sections .section.review .review-container a {
  color: #0f233d;
}
body.customize #model-detail #sections .section.review .review-container .output {
  display: inline-block;
}
body.customize #model-detail #sections .section.review .review-container .output canvas {
  display: block;
  margin: 0 auto;
  width: 100%;
}
body.customize #model-detail #sections .section.review .review-container .output img {
  display: none;
}
body.customize #model-detail #sections .section.review .review-container .output #association-marks {
  position: absolute;
  width: 200px;
  height: 63px;
  top: -38px;
  left: 44%;
  z-index: 10;
  overflow: hidden;
}
body.customize #model-detail #sections .section.review .review-container .output #association-marks #association-marks-wrapper {
  width: 200px;
  height: 100px;
}
body.customize #model-detail #sections .section.review .review-container .output #association-marks #association-marks-wrapper div {
  width: 100%;
  height: inherit;
  vertical-align: top;
}
body.customize #model-detail #sections .section.review .review-container .output #association-marks #association-marks-wrapper div#association-marks-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
body.customize #model-detail #sections .section.review .review-container .output #association-marks #association-marks-wrapper svg {
  width: 100%;
  height: auto;
}
body.customize #model-detail #sections .section.review .review-container .output #association-marks #association-marks-wrapper svg path {
  display: block !important;
}
body.customize #model-detail #sections .section.review #my-colors {
  width: 100%;
  border-bottom: 1px solid #DADADA;
}
body.customize #model-detail #sections .section.review #my-colors .review-wrapper.barrel {
  margin: 30px 0 0;
  width: 100%;
  text-align: center;
  overflow: visible;
}
body.customize #model-detail #sections .section.review #my-colors .review-wrapper.barrel #drag-bat-three-up-diagonal-output {
  max-height: 262px;
}
body.customize #model-detail #sections .section.review #my-colors .review-wrapper.end-cap #end-cap-output canvas {
  max-width: 280px;
  max-height: 280px;
  width: 100%;
  height: 100%;
}
body.customize #model-detail #sections .section.review #my-personalizations,
body.customize #model-detail #sections .section.review #my-options {
  margin: 0;
}
body.customize #model-detail #sections .section.review #my-personalizations .nav-item,
body.customize #model-detail #sections .section.review #my-options .nav-item {
  margin: 12px 0 0;
}
body.customize #model-detail #sections .section.review #my-personalizations {
  width: 100%;
  border-right: none;
}
body.customize #model-detail #sections .section.review #my-personalizations .review-wrapper.personalize-barrel {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
}
body.customize #model-detail #sections .section.review #my-personalizations .review-wrapper.personalize-barrel .mask {
  min-width: 720px;
  top: 32px;
  transform: translateX(-110px);
}
body.customize #model-detail #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output {
  display: block;
  width: auto;
  margin: -18px auto 0;
  overflow: hidden;
}
body.customize #model-detail #sections .section.review #my-options {
  width: 100%;
  text-align: center;
  overflow: visible;
}
body.customize #model-detail #sections .section.review #my-options .review-wrapper {
  line-height: 2;
  margin: 12px 0 12px;
}
body.customize #model-detail #sections .section.review #my-options .review-wrapper .option {
  text-transform: capitalize;
}
body.customize #model-detail #sections .section.review #my-options .review-wrapper .option-answer,
body.customize #model-detail #sections .section.review #my-options .review-wrapper .option-label {
  font-size: 1.2em;
  color: #0f233d;
}
body.customize #model-detail #sections .section.review #my-options #share-container {
  width: 100%;
  margin-left: -4px;
  padding: 12px;
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  background: #EBEBEB;
}
body.customize #model-detail #sections .section.review #my-options #share-container button {
  height: 39px;
  margin: 5px auto;
  width: 200px;
  height: 42px;
  line-height: 1;
  font-family: 'open-sans-semibold';
  color: #ffffff;
  background: #0f233d;
}
body.customize #model-detail #sections .section.review #my-options #share-container button i {
  font-size: 1.1em;
  margin: 0 0 0 5px;
}
body.customize #model-detail #sections .section.review #my-options #detailed-spec {
  display: block;
  margin: 20px auto 20px;
  font-family: 'open-sans-semibold';
  font-size: 1.2em;
  text-decoration: none;
}
body.customize #model-detail #sections .section.review #my-options #detailed-spec .fa {
  margin: -2px 0 0 2px;
}
body.customize #model-detail #sections .section.review #my-options #detailed-spec:hover {
  color: #000000;
}
body.customize #model-detail #sections .section.review #manufacturing-tolerances {
  position: relative;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-size: 0.8em;
  line-height: 1.2;
}
body.customize #model-detail #sections .section.review #manufacturing-tolerances .note-inner {
  display: block;
  margin: 0 auto;
  max-width: 890px;
}
body.customize #model-detail #sections.expanded {
  max-width: 100%;
}
body.customize #model-detail.composite #sections .section.review {
  margin-top: 216px;
}
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.knob,
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.end-cap {
  display: inline-block;
  margin: 0 auto;
  width: 48%;
}
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.knob .output,
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.end-cap .output {
  display: block;
  margin: 20px auto 0;
}
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.knob .output canvas,
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.end-cap .output canvas {
  width: 100% !important;
  height: auto !important;
}
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.knob .output canvas {
  margin: -20px 0 0 10px;
}
body.customize #model-detail.composite #sections .section.review #my-colors .review-wrapper.end-cap .output canvas {
  margin: -10px 0 0;
}
body.customize #model-detail.review {
  width: 100%;
  font-family: 'open-sans-extrabold';
}
body.customize #model-detail #sections .section.review .review-container .review-title {
  padding: 9px 0 6px;
  background-color: #0f233d;
  color: #ffffff;
  text-transform: uppercase;
}
body.customize #model-detail #sections .section.review .review-container .review-title a {
  color: #ffffff;
}
body.customize #model-detail #sections .section.review .review-container .option .review-title {
  color: #0f233d;
  background-color: transparent;
}
body.customize #model-detail.wood #sections .section.personalize .subnav .nav-item {
  display: inline-block;
}
body.customize #model-detail.wood #sections .section.options .sub-section-wrapper {
  display: none;
}
body.customize #model-detail.wood #sections .section.options .sub-section-wrapper.length {
  display: block;
}
body.customize #model-detail.wood #sections .section.review {
  margin-top: 238px;
}
body.customize #model-detail.wood #sections .section.review .review-container .review-wrapper #ink-dot {
  position: absolute;
  width: 50px;
  height: 93px;
  top: -4px;
  left: 40%;
  z-index: 10;
  overflow: visible;
}
body.customize #model-detail.wood #sections .section.review .review-container .review-wrapper #ink-dot .fa.fa-question-circle {
  font-size: 1.2em;
}
body.customize #model-detail.wood #sections .section.review .review-container .review-wrapper #ink-dot #ink-dot-wrapper {
  width: 120px;
  height: 100px;
}
body.customize #model-detail.wood #sections .section.review .review-container .review-wrapper #ink-dot #ink-dot-wrapper img {
  position: absolute;
  width: 53px;
  top: 0;
  left: 0;
  z-index: 10;
}
body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.barrel {
  margin: 12px 0 -40px;
}
body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.barrel #up3-output {
  height: 80px;
  margin: 50px 0px;
}
body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.barrel #up3-output canvas {
  width: 100% !important;
  height: auto !important;
}
body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.end-cap {
  overflow: hidden;
}
body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.end-cap #end-cap-output {
  margin: 40px auto 20px;
  transform: rotate(25deg);
}
body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.end-cap #end-cap-output canvas {
  margin: 0 0 0 50px;
  max-width: 1500px;
  max-height: 246px;
  width: 100%;
  height: 100%;
  transform: scale(2.3);
}
body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.personalize-barrel {
  display: block;
  width: 100%;
}
body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output {
  margin: 28px auto 0;
  height: 150px;
}
body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output canvas {
  margin: 0 0 0 60px;
}
body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.knob {
  margin: 12px 0 0 20px;
  display: block;
  width: 100%;
}
body.customize #model-detail.wood.game-play #sections .section.color #graphics-content #decal-1 .swatch-options .swatch,
body.customize #model-detail.wood.fungo #sections .section.color #graphics-content #decal-1 .swatch-options .swatch,
body.customize #model-detail.wood.game-play #sections .section.color #graphics-content #decal-3 .swatch-options .swatch,
body.customize #model-detail.wood.fungo #sections .section.color #graphics-content #decal-3 .swatch-options .swatch {
  width: 84px;
  height: 44px;
  border-radius: 0;
  border: none;
  background-size: contain;
}
body.customize #model-detail.wood.game-play #sections .section.color #graphics-content #decal-3 .swatch-options .swatch,
body.customize #model-detail.wood.fungo #sections .section.color #graphics-content #decal-3 .swatch-options .swatch {
  margin: 6px 32px 12px 0;
  width: 120px;
  height: 20px;
}
body.customize #model-detail.wood.game-play #sections .section.review #my-colors,
body.customize #model-detail.wood.fungo #sections .section.review #my-colors {
  border: none;
}
body.customize #model-detail.wood.fungo #sections .section.color #graphics-content #decal-3 .swatch-options .swatch {
  margin: 6px 32px 12px 0;
  width: 120px;
  height: 26px;
}
body.customize #model-detail.wood.featured-designs #sections .section.color #graphics-content .swatch-options:not(.decal-4-color.colors) .swatch,
body.customize #model-detail.wood.collectible #sections .section.color #graphics-content .swatch-options:not(.decal-4-color.colors) .swatch,
body.customize #model-detail.wood.build-your-own #sections .section.color #graphics-content .swatch-options:not(.decal-4-color.colors) .swatch {
  width: 140px;
  height: 60px;
  border-radius: 0;
  border: none;
  background-size: contain;
}
body.customize #model-detail.wood.featured-designs #sections .section.color #graphics-content .swatch-options:not(.decal-4-color.colors) .swatch.active:after,
body.customize #model-detail.wood.collectible #sections .section.color #graphics-content .swatch-options:not(.decal-4-color.colors) .swatch.active:after,
body.customize #model-detail.wood.build-your-own #sections .section.color #graphics-content .swatch-options:not(.decal-4-color.colors) .swatch.active:after {
  top: 9px;
  left: 6px;
}
body.customize #model-detail.wood.featured-designs #sections .section.review #my-colors,
body.customize #model-detail.wood.collectible #sections .section.review #my-colors,
body.customize #model-detail.wood.build-your-own #sections .section.review #my-colors {
  border: none;
}
body.customize #model-detail.wood.featured-designs #sections .section.review #my-colors .review-wrapper.barrel,
body.customize #model-detail.wood.collectible #sections .section.review #my-colors .review-wrapper.barrel,
body.customize #model-detail.wood.build-your-own #sections .section.review #my-colors .review-wrapper.barrel {
  margin: 0;
  height: 130px;
}
body.customize #model-detail.wood.featured-designs #sections .section.review #my-colors .review-wrapper.barrel #up3-output,
body.customize #model-detail.wood.collectible #sections .section.review #my-colors .review-wrapper.barrel #up3-output,
body.customize #model-detail.wood.build-your-own #sections .section.review #my-colors .review-wrapper.barrel #up3-output {
  margin: 0;
}
body.customize #model-detail.wood.featured-designs #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output,
body.customize #model-detail.wood.collectible #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output,
body.customize #model-detail.wood.build-your-own #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output {
  margin: 0 auto;
}
body.customize #model-detail.wood.featured-designs #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output canvas,
body.customize #model-detail.wood.collectible #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output canvas,
body.customize #model-detail.wood.build-your-own #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output canvas {
  margin: 0 0 0 -10px;
}
body.customize #model-detail.wood.featured-designs #sections .section.review #my-personalizations .nav-item.personalize.review-wrapper.personalize-barrel,
body.customize #model-detail.wood.collectible #sections .section.review #my-personalizations .nav-item.personalize.review-wrapper.personalize-barrel,
body.customize #model-detail.wood.build-your-own #sections .section.review #my-personalizations .nav-item.personalize.review-wrapper.personalize-barrel {
  width: 95%;
}
body.customize .bat-container,
body.customize .bat-container-end-cap,
body.customize .bat-container-knob {
  position: relative;
  bottom: 0;
  border-top: 1px solid #DADADA;
}
body.customize .bat-container {
  display: none;
  background: #FFFFFF;
}
body.customize .bat-container #drag-bat-three-up-vertical {
  margin: 24px 0;
}
body.customize .bat-container.active {
  display: block;
}
body.customize .zoom-end-cap.mobile {
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
}
body.customize .zoom-knob.mobile {
  opacity: 1;
  position: relative;
  top: 0;
  left: 0;
}
body.customize #bat-preview-modal.composite #drag-bat-three-up-diagonal {
  top: -12px !important;
  left: 0 !important;
  transform-origin: left;
}
body.customize #bat-preview-modal.vertical.composite #drag-bat-three-up-diagonal {
  transform-origin: inherit;
}
@media (min-width: 768px) {
  body.customize {
    /*
			.swatch {
				width: 76px !important;
				height: 34px !important;
				margin: 1px !important;
			}
			
			.swatch.selected:after {
				top: 4px !important;
				left: 29px !important;
			}
			.swatch.mlb.selected:after {
				top: -6px !important;
				left: 18px !important;
			}
			*/
  }
  body.customize .navigation-wrapper {
    background-color: #EBEBEB;
  }
  body.customize .navigation-wrapper .container {
    width: 100%;
  }
  body.customize .navigation-wrapper .navigation .nav-item {
    font-size: 1.5em;
  }
  body.customize .swatch-options.decal-1-color .swatch.selected,
  body.customize .swatch-options.decal-1-color .swatch.active {
    border: none !important;
  }
  body.customize #bat-customizer {
    height: 293px;
  }
  body.customize #bat-customizer .bat-views .barrel-personalize {
    position: relative;
    width: 1200px;
    margin: 0 0 0 -150px;
    transform: scale(1);
  }
  body.customize #bat-customizer .bat-views .view.knob-end-cap {
    top: -6px;
    transform: scale(0.9, 0.9);
  }
  body.customize #bat-customizer.composite:not(.hide) {
    height: 293px;
  }
  body.customize #bat-customizer.wood {
    height: 263px;
  }
  body.customize #bat-customizer.wood .bat-views .view.up3 #up3 {
    transform: scale(0.7);
  }
  body.customize #bat-customizer.wood .bat-views .view.up3 .part.decal-2 {
    top: -20px;
    left: 690px;
    text-align: center;
    max-width: 300px;
  }
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap {
    width: 1500px;
    -ms-transform: rotate(25deg) scale(0.7);
    -webkit-transform: rotate(25deg) scale(0.7);
    transform: rotate(25deg) scale(0.7);
    position: absolute;
    top: -52px;
    left: -850px;
  }
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap {
    width: 1500px;
    max-width: 1500px;
    height: 246px;
  }
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .overlay,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part.img,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part img {
    width: 1500px;
    height: 246px;
  }
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part svg,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .overlay svg,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part.img svg,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part img svg,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part path,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .overlay path,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part.img path,
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap .part img path {
    width: 1500px;
    height: 246px;
  }
  body.customize #bat-customizer.wood .bat-views .view.knob-end-cap #end-cap img {
    width: 100%;
    height: 100%;
  }
  body.customize #bat-customizer.wood .bat-views .view.barrel-personalize {
    margin: -44px 0 0 -430px;
  }
  body.customize #bat-customizer.wood.hide {
    height: 0px;
  }
  body.customize #overlay-wrapper #overlay-content {
    margin: 105px auto 0 auto;
  }
  body.customize #model-detail {
    width: 100%;
  }
  body.customize #model-detail #sections .section.review {
    margin-top: 212px;
  }
  body.customize #model-detail #sections .section.review #my-colors {
    text-align: center;
  }
  body.customize #model-detail #sections .section.review #my-colors .review-wrapper.barrel {
    width: 100%;
  }
  body.customize #model-detail #sections .section.review #my-colors .review-wrapper.knob,
  body.customize #model-detail #sections .section.review #my-colors .review-wrapper.end-cap {
    margin: 12px 0 0;
    display: inline-block;
    width: 49%;
    max-width: 300px;
  }
  body.customize #model-detail #sections .section.review #my-colors .review-wrapper.knob #knob-output canvas,
  body.customize #model-detail #sections .section.review #my-colors .review-wrapper.end-cap #knob-output canvas {
    margin: -30px auto 0 47px;
  }
  body.customize #model-detail #sections .section.review #my-personalizations {
    width: 100%;
    text-align: center;
    background: #efefef;
  }
  body.customize #model-detail #sections .section.review #my-personalizations .review-wrapper.personalize-barrel {
    margin: 0 auto;
  }
  body.customize #model-detail #sections .section.review #my-options {
    margin: 0 auto;
    width: 100%;
  }
  body.customize #model-detail.composite #sections .section.review {
    margin-top: 190px;
  }
  body.customize #model-detail.wood #sections .section.review {
    margin-top: 210px;
  }
  body.customize #model-detail.wood #sections .section.review .review-container .review-wrapper #ink-dot {
    top: 46px;
  }
  body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.barrel {
    margin: -32px 0 -40px;
  }
  body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.barrel #up3-output {
    height: 250px;
  }
  body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.end-cap {
    width: 100%;
    max-width: 1500px;
  }
  body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.end-cap #end-cap-output {
    margin: -100px auto 130px;
  }
  body.customize #model-detail.wood #sections .section.review #my-colors .review-wrapper.end-cap #end-cap-output canvas {
    margin: -18px 0 0 50px;
    transform: scale(1.3);
  }
  body.customize #model-detail.wood #sections .section.review #my-personalizations {
    background: #ffffff;
  }
  body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.personalize-barrel {
    display: inline-block;
    width: 65%;
  }
  body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output {
    height: 350px;
  }
  body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.personalize-barrel #personalize-barrel-container-output canvas {
    margin: 0 0 0 -270px;
  }
  body.customize #model-detail.wood #sections .section.review #my-personalizations .review-wrapper.knob {
    display: inline-block;
    width: 25%;
  }
  body.customize #model-detail.wood.build-your-own #sections .section.review,
  body.customize #model-detail.wood.featured-designs #sections .section.review {
    margin-top: 185px;
  }
}
@media (min-width: 992px) {
  body.customize #bat-customizer.wood .bat-views .view.up3 #up3 {
    transform: scale(0.8);
  }
}
@media (min-width: 1200px) {
  body.customize #bat-customizer #bat-viewer {
    margin: 240px 0;
  }
  body.customize #bat-customizer #bat-viewer .bat-views #collectible-logo-container {
    left: 125px;
  }
  body.customize #bat-customizer.wood .bat-views .view.up3 #up3 {
    transform: scale(1);
  }
  body.customize #overlay-wrapper #overlay-content .your-bat:after {
    font-family: 'FontAwesome';
    content: "\f0da";
    position: relative;
    color: #FFC324;
    top: -10px;
    right: -15px;
    font-size: 45px;
  }
}
/**************************************************************
**	SPEC SHEET
**************************************************************/
body.specs {
  /*---------------------------------------------------------
		-- Section
		---------------------------------------------------------*/
}
body.specs #spec-wrapper {
  /*---------------------------------------------------------
			-- Media Queries
			---------------------------------------------------------*/
}
body.specs #spec-wrapper #specs-error {
  text-align: center;
  margin-top: 200px;
  text-transform: uppercase;
  font-family: 'roboto_condensed_bold';
}
body.specs #spec-wrapper .part {
  position: absolute;
  top: 0;
  left: 0;
}
body.specs #spec-wrapper .part img {
  margin-top: 1px;
}
body.specs #spec-wrapper .grip img {
  display: none;
}
body.specs #spec-wrapper #specs-header {
  min-height: 238px;
  background: #F7F7F7;
  margin-bottom: 40px;
}
body.specs #spec-wrapper #specs-header .model-selection h1 {
  font-family: 'roboto_condensed_bold';
  font-size: 25px;
  color: #262626;
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0;
}
body.specs #spec-wrapper #specs-header .three-up-diagonal {
  height: 200px;
}
body.specs #spec-wrapper #specs-header #regenerate-images {
  display: none;
  position: relative;
  padding: 35px;
  text-align: center;
  font-size: 15px;
}
body.specs #spec-wrapper #specs-header .bat-preview {
  text-align: center;
  background: #ffffff;
}
body.specs #spec-wrapper #specs-header .bat-preview.end-brand img {
  position: absolute;
}
body.specs #spec-wrapper #specs-header .bat-preview.knob,
body.specs #spec-wrapper #specs-header .bat-preview.end-cap {
  background: #ffffff;
}
body.specs #spec-wrapper #specs-header .bat-preview.knob img,
body.specs #spec-wrapper #specs-header .bat-preview.end-cap img {
  width: 340px;
  height: 340px;
}
body.specs #spec-wrapper #specs {
  /*background: #EBEBEB;*/
  background: #FFFFFF;
  color: #262626;
  border-top: 1px solid #DADADA;
  padding-top: 20px;
}
body.specs #spec-wrapper #specs .full-design-specs-title {
  margin: 2px 0 20px;
  letter-spacing: initial;
}
body.specs #spec-wrapper #specs .bat-id {
  font-family: 'open-sans-extrabold';
  font-size: 20px;
  text-transform: uppercase;
}
body.specs #spec-wrapper #specs .model-name {
  font-family: 'open-sans-extrabold';
  font-size: 20px;
  text-transform: uppercase;
}
body.specs #spec-wrapper #specs .model-size {
  font-family: 'open-sans-extrabold';
  font-size: 20px;
  text-transform: uppercase;
}
body.specs #spec-wrapper #specs table {
  font-family: 'open-sans-semibold';
}
body.specs #spec-wrapper #specs table thead th {
  background: #0f233d;
  color: #FFFFFF;
}
body.specs #spec-wrapper #specs table tbody td {
  width: 50%;
}
body.specs #spec-wrapper #specs .spec-actions {
  border-top: 4px solid #DADADA;
  margin-top: 5px;
  padding: 30px 0;
}
body.specs #spec-wrapper #specs .spec-actions .spec-action {
  text-align: center;
  margin: 0 auto;
  padding: 5px 0;
}
body.specs #spec-wrapper #specs .spec-actions .spec-action a.action-btn {
  /*height: 70px;
							font-size: 40px;*/
  display: block;
  width: 100%;
  margin: 0 auto;
  /*padding-top: 11px;*/
}
@media (min-width: 500px) {
  body.specs #spec-wrapper #specs-header .three-up-diagonal {
    height: 250px;
  }
  body.specs #spec-wrapper #specs-header .bat-previews .bat-preview.end-brand img {
    right: 6%;
  }
}
@media (min-width: 768px) {
  body.specs #spec-wrapper #specs-header {
    min-height: 272px;
  }
  body.specs #spec-wrapper #specs-header .model-selection h1 {
    font-size: 35px;
  }
  body.specs #spec-wrapper #specs-header .three-up-diagonal {
    height: 250px;
  }
  body.specs #spec-wrapper #specs-header .bat-previews .bat-preview.end-brand img {
    right: 10%;
  }
}
@media (min-width: 992px) {
  body.specs #spec-wrapper #spec-wrapper #specs-header {
    min-height: 297px;
  }
  body.specs #spec-wrapper #spec-wrapper #specs-header .three-up-diagonal {
    height: 300px;
  }
  body.specs #spec-wrapper #spec-wrapper #specs-header .bat-previews .bat-preview.end-brand img {
    right: -30%;
  }
}
@media (min-width: 1200px) {
  body.specs #spec-wrapper #spec-wrapper #specs-header .three-up-diagonal {
    height: 350px;
  }
  body.specs #spec-wrapper #spec-wrapper #specs-header .bat-previews .bat-preview.end-brand img {
    width: 1700px;
    right: 0;
  }
}
body.specs #spec-wrapper.mini-size-bat {
  /*---------------------------------------------------------
			-- Media Queries
			---------------------------------------------------------*/
}
body.specs #spec-wrapper.mini-size-bat .row.bat-previews img {
  margin-left: -40px;
}
body.specs #spec-wrapper.composite {
  /*---------------------------------------------------------
			-- Media Queries
			---------------------------------------------------------*/
}
body.specs #spec-wrapper.composite #specs-error {
  text-align: center;
  margin-top: 200px;
  text-transform: uppercase;
}
body.specs #spec-wrapper.composite .part {
  position: absolute;
  top: 0;
  left: 0;
}
body.specs #spec-wrapper.composite .part img {
  margin-top: 1px;
}
body.specs #spec-wrapper.composite .grip img {
  display: none;
}
body.specs #spec-wrapper.composite #specs-header {
  background: #FFFFFF;
}
body.specs #spec-wrapper.composite #specs-header .container {
  width: 100%;
  max-width: 1169px;
}
body.specs #spec-wrapper.composite #specs-header .model-selection {
  font-size: 35px;
  color: #262626;
  text-transform: uppercase;
  text-align: center;
  margin: 40px 0;
}
body.specs #spec-wrapper.composite #specs-header .three-up-diagonal {
  height: 200px;
}
body.specs #spec-wrapper.composite #specs-header .bat-previews .bat-preview {
  margin: 10px;
}
body.specs #spec-wrapper.composite #specs {
  /*background: #EBEBEB;*/
  background: #F7F7F7;
  color: #262626;
  border-top: 1px solid #DADADA;
  padding-top: 20px;
}
body.specs #spec-wrapper.composite #specs .container {
  width: 100%;
  max-width: 1150px;
}
body.specs #spec-wrapper.composite #specs h2 {
  text-transform: uppercase;
}
body.specs #spec-wrapper.composite #specs .bat-id {
  font-family: 'open-sans-extrabold';
  font-size: 20px;
  text-transform: uppercase;
}
body.specs #spec-wrapper.composite #specs .model-name {
  font-family: 'open-sans-extrabold';
  font-size: 20px;
  text-transform: uppercase;
}
body.specs #spec-wrapper.composite #specs .model-size {
  font-family: 'open-sans-extrabold';
  font-size: 20px;
  text-transform: uppercase;
}
body.specs #spec-wrapper.composite #specs .spec-actions {
  border-top: 4px solid #DADADA;
  margin-top: 5px;
  padding: 30px 0;
}
body.specs #spec-wrapper.composite #specs .spec-actions .spec-action {
  text-align: center;
  margin: 0 auto;
  padding: 5px 0;
}
body.specs #spec-wrapper.composite #specs .spec-actions .spec-action a.action-btn {
  /*height: 70px;
							font-size: 40px;*/
  display: block;
  width: 100%;
  margin: 0 auto;
  /*padding-top: 11px;*/
}
@media (min-width: 768px) {
  body.specs #spec-wrapper.composite #spec-wrapper #specs-header .three-up-diagonal {
    height: 250px;
  }
  body.specs #spec-wrapper.composite #spec-wrapper #specs .container {
    width: auto;
  }
}
@media (min-width: 992px) {
  body.specs #spec-wrapper.composite #spec-wrapper #specs-header .three-up-diagonal {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  body.specs #spec-wrapper.composite #spec-wrapper #specs-header .three-up-diagonal {
    height: 350px;
  }
}
body.specs #spec-wrapper.wood.orig .bat-preview.end-brand,
body.specs #spec-wrapper.wood.orig .bat-preview.end-cap,
body.specs #spec-wrapper.wood.orig .bat-preview.knob {
  display: none;
}
